ETH Price: $2,385.21 (+1.62%)

Token

Fukushima Fish (KOI)
 

Overview

Max Total Supply

3,888 KOI

Holders

111

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
29 KOI
0xa94b9d00e62b3e1d61ffa8a40338d8d63a604a8b
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:
FukushimaFishNFT

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 10000 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-17
*/

// File: solmate/src/utils/ReentrancyGuard.sol


pragma solidity >=0.8.0;

/// @notice Gas optimized reentrancy protection for smart contracts.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/ReentrancyGuard.sol)
/// @author Modified from OpenZeppelin (https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/security/ReentrancyGuard.sol)
abstract contract ReentrancyGuard {
    uint256 private locked = 1;

    modifier nonReentrant() virtual {
        require(locked == 1, "REENTRANCY");

        locked = 2;

        _;

        locked = 1;
    }
}

// File: solmate/src/auth/Owned.sol


pragma solidity >=0.8.0;

/// @notice Simple single owner authorization mixin.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/auth/Owned.sol)
abstract contract Owned {
    /*//////////////////////////////////////////////////////////////
                                 EVENTS
    //////////////////////////////////////////////////////////////*/

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

    /*//////////////////////////////////////////////////////////////
                            OWNERSHIP STORAGE
    //////////////////////////////////////////////////////////////*/

    address public owner;

    modifier onlyOwner() virtual {
        require(msg.sender == owner, "UNAUTHORIZED");

        _;
    }

    /*//////////////////////////////////////////////////////////////
                               CONSTRUCTOR
    //////////////////////////////////////////////////////////////*/

    constructor(address _owner) {
        owner = _owner;

        emit OwnershipTransferred(address(0), _owner);
    }

    /*//////////////////////////////////////////////////////////////
                             OWNERSHIP LOGIC
    //////////////////////////////////////////////////////////////*/

    function transferOwnership(address newOwner) public virtual onlyOwner {
        owner = newOwner;

        emit OwnershipTransferred(msg.sender, newOwner);
    }
}

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


pragma solidity ^0.8.13;

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/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: https://raw.githubusercontent.com/ninjaswtf/ERC721A/main/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: https://raw.githubusercontent.com/ninjaswtf/ERC721A/main/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.selector);
        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.selector);

        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 Returns whether the ownership slot at `index` is initialized.
     * An uninitialized slot does not necessarily mean that the slot has no owner.
     */
    function _ownershipIsInitialized(uint256 index) internal view virtual returns (bool) {
        return _packedOwnerships[index] != 0;
    }

    /**
     * @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 packed) {
        if (_startTokenId() <= tokenId) {
            packed = _packedOwnerships[tokenId];
            // If the data at the starting slot does not exist, start the scan.
            if (packed == 0) {
                if (tokenId >= _currentIndex) _revert(OwnerQueryForNonexistentToken.selector);
                // 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, `tokenId` will not underflow.
                //
                // We can directly compare the packed value.
                // If the address is zero, packed will be zero.
                for (;;) {
                    unchecked {
                        packed = _packedOwnerships[--tokenId];
                    }
                    if (packed == 0) continue;
                    if (packed & _BITMASK_BURNED == 0) return packed;
                    // Otherwise, the token is burned, and we must revert.
                    // This handles the case of batch burned tokens, where only the burned bit
                    // of the starting slot is set, and remaining slots are left uninitialized.
                    _revert(OwnerQueryForNonexistentToken.selector);
                }
            }
            // Otherwise, the data exists and we can skip the scan.
            // This is possible because we have already achieved the target condition.
            // This saves 2143 gas on transfers of initialized tokens.
            // If the token is not burned, return `packed`. Otherwise, revert.
            if (packed & _BITMASK_BURNED == 0) return packed;
        }
        _revert(OwnerQueryForNonexistentToken.selector);
    }

    /**
     * @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, uint64 timeStamp, uint256 flags) private pure 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. See {ERC721A-_approve}.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     */
    function approve(address to, uint256 tokenId) public payable virtual override {
        _approve(to, tokenId, true);
    }

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

        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 result) {
        if (_startTokenId() <= tokenId) {
            if (tokenId < _currentIndex) {
                uint256 packed;
                while ((packed = _packedOwnerships[tokenId]) == 0) --tokenId;
                result = packed & _BITMASK_BURNED == 0;
            }
        }
    }

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

        // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
        from = address(uint160(uint256(uint160(from)) & _BITMASK_ADDRESS));

        if (address(uint160(prevOwnershipPacked)) != from) _revert(TransferFromIncorrectOwner.selector);

        (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.selector);

        _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`.

            uint64 _timestamp = uint64(prevOwnershipPacked >> _BITPOS_START_TIMESTAMP);
            bool update = _updateTimestampOnTransfer();

            assembly {
                if update {
                    _timestamp := timestamp()
                }
            }

            _packedOwnerships[tokenId] = _packOwnershipData(
                to, _timestamp, 
                _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;
                    }
                }
            }
        }

        // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
        uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;
        assembly {
            // 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.
                from, // `from`.
                toMasked, // `to`.
                tokenId // `tokenId`.
            )
        }
        if (toMasked == 0) _revert(TransferToZeroAddress.selector);

        _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.selector);
            }
    }

    /**
     * @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.selector);
            }
            assembly {
                revert(add(32, reason), mload(reason))
            }
        }
    }

    /**
     * @dev Flag that specifies whether an ownership timestamp should be updated every transfer
     * 
     * Setting this to false effectively stores the mint time of the token.
     */
    function _updateTimestampOnTransfer() internal virtual returns(bool) {
        return true;
    }


    // =============================================================
    //                        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.selector);

        _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:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.

            uint64 _timestamp;
            assembly { _timestamp := timestamp() }
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to, _timestamp,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
            uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;

            if (toMasked == 0) _revert(MintToZeroAddress.selector);

            uint256 end = startTokenId + quantity;
            uint256 tokenId = startTokenId;

            do {
                assembly {
                    // 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`.
                        tokenId // `tokenId`.
                    )
                }
                // The `!=` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
            } while (++tokenId != end);

            _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.selector);
        if (quantity == 0) _revert(MintZeroQuantity.selector);
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) _revert(MintERC2309QuantityExceedsLimit.selector);

        _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`.
            uint64 _timestamp;
            assembly { _timestamp := timestamp() }
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to, _timestamp,
                _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.selector);
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) _revert(bytes4(0));
            }
        }
    }

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

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

    /**
     * @dev Equivalent to `_approve(to, tokenId, false)`.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _approve(to, tokenId, false);
    }

    /**
     * @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:
     *
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        bool approvalCheck
    ) internal virtual {
        address owner = ownerOf(tokenId);

        if (approvalCheck && _msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                _revert(ApprovalCallerNotOwnerNorApproved.selector);
            }

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

    // =============================================================
    //                        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.selector);
        }

        _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`.

            uint64 _timestamp;
            assembly { _timestamp := timestamp() }

            _packedOwnerships[tokenId] = _packOwnershipData(
                from, _timestamp,
                (_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.selector);
        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)
        }
    }

    /**
     * @dev For more efficient reverts.
     */
    function _revert(bytes4 errorSelector) internal pure {
        assembly {
            mstore(0x00, errorSelector)
            revert(0x00, 0x04)
        }
    }
}

// File: contracts/SupplyController.sol

pragma solidity ^0.8.9;

abstract contract SupplyController {
    
    /**
        Called when a claim is successfully issued
     */
    event Claimed(address claimer, uint256 tokenId, uint256 tokensClaimed);


    event Burned(address burner, uint256 tokensBurned);


    /**
      Claims the tokens
     */
    function claim(uint256 tokenId) external virtual;


    /**
       Gets the claimable tokens available for a given NFT
     */
    function getClaimableTokens(address a, uint256 tokenId) external virtual returns (uint256); 


    /**
        Determines based on certain criteria if minting (anything that is able to generate new tokens) is allowed.

        e.g. We have a fixed supply and the current token count would surpass the max amount
     */
    function isMintingAllowed() external virtual returns (bool);


    /**
       Determines based on certain criteria if burning is allowed.  
     */     
    function isBurningAllowed() external virtual returns (bool);



    /**
      Events
     */
     function onPreTransfer(address from,
        address to,
        uint256 startTokenId,
        uint256 quantity) external virtual{}


    function onPostTransfer(address from,
        address to,
        uint256 startTokenId,
        uint256 quantity) external virtual{}

}

// File: contracts/FukushimaFishNFT.sol

pragma solidity ^0.8.9;







contract FukushimaFishNFT is
    ERC721A("Fukushima Fish", "KOI"),
    Owned(msg.sender),
    ReentrancyGuard,
    ERC2981,
    DefaultOperatorFilterer
{
    function supportsInterface(
        bytes4 interfaceId
    ) public view virtual override(ERC721A, ERC2981) returns (bool) {
        return
            ERC721A.supportsInterface(interfaceId) ||
            ERC2981.supportsInterface(interfaceId) ||
            super.supportsInterface(interfaceId);
    }

    enum MintStatus {
        // 0 = closed
        CLOSED,
        // 1 = open for whitelisted addresses
        WHITELIST,
        // 2 = open for the public
        PUBLIC
    }

    uint256 public WHITELIST_MINT_COST = 0.05 ether;
    // Subject to change
    uint256 public PUBLIC_MINT_COST = 0.0777 ether;

    uint256 constant MAX_PUBLIC_MINT_PER_WALLET = 20;

    uint256 constant MAX_SUPPLY = 3888;

    string constant NO_MINTS_REMAINING = "You have no mints remaining";

    // The default mint status is CLOSED
    MintStatus public mintStatus = MintStatus.CLOSED;

    string _baseTokenURI = "";
    string _unrevealedURI = "";

    string public termsOfServiceURI;
    string public readMeURI;

    bytes32 whitelistMerkleProofRoot = bytes32(0);

    bool _updateOnTransfer = false;

    // the airdropper will mint 323 tokens to the wallet, then transfer the tokens based on who owned them
    address private airdropper;

    function setAirdropper(address _airdropper) external onlyOwner {
        airdropper = _airdropper;
    }

    function mintAirdropTeamMint(address to, uint256 amount) external {
        require(msg.sender == airdropper);
        _mint(to, amount);
    }

    SupplyController public controller;

    function setSupplyController(
        SupplyController _controller
    ) external onlyOwner {
        controller = _controller;
    }

    function setRoyaltyInfo(
        address royaltyReceiver,
        uint96 basisPoints
    ) external onlyOwner {
        _setDefaultRoyalty(royaltyReceiver, basisPoints);
    }

    function getMintTime(uint256 tokenId) external view returns (uint256) {
        TokenOwnership memory ownership = _ownershipOf(tokenId);
        return ownership.startTimestamp;
    }

    function setUpdateOnTransfer(bool status) external onlyOwner {
        _updateOnTransfer = status;
    }

    function _updateTimestampOnTransfer()
        internal
        virtual
        override
        returns (bool)
    {
        return _updateOnTransfer;
    }

    function exists(uint256 id) external view returns (bool) {
        return _exists(id);
    }

    function minted(address _addr) external view returns (uint256) {
        return _numberMinted(_addr);
    }

    function setTermsOfServiceURI(string calldata uri) external onlyOwner {
        termsOfServiceURI = uri;
    }

    function setReadMeURI(string calldata uri) external onlyOwner {
        readMeURI = uri;
    }

    function setMintStatus(MintStatus status) external onlyOwner {
        mintStatus = status;
    }

    function setMerkleRoot(bytes32 merkleRoot) external onlyOwner {
        whitelistMerkleProofRoot = merkleRoot;
    }

    function setBaseTokenURI(string calldata uri) external onlyOwner {
        _baseTokenURI = uri;
    }

    function setUnrevealedTokenURI(string calldata uri) external onlyOwner {
        _unrevealedURI = uri;
    }

    function setWhitelistMintPrice(uint256 cost) external onlyOwner {
        WHITELIST_MINT_COST = cost;
    }

    function setPublicMintPrice(uint256 cost) external onlyOwner {
        PUBLIC_MINT_COST = cost;
    }

    function ownerMint(address to, uint256 amount) external onlyOwner {
        // supply limit checks
        require(_totalMinted() < MAX_SUPPLY, "minted out.");
        require(
            _totalMinted() + amount <= MAX_SUPPLY,
            "mint amount would be out of range."
        );
        _mint(to, amount);
    }

    // Validate checks if the given address and proof result in the merkle tree root.
    // if the proof & the hashed address resolves to the provided proof, then the address
    // is within the whitelist.
    function validate(
        address addr,
        uint256 limit,
        bytes32[] calldata proof,
        uint256 path
    ) public view returns (bool) {
        bytes32 hash = keccak256(abi.encode(addr, limit));

        for (uint256 i; i < proof.length; i++) {
            // check if the path is odd and inverse the hash
            if (path & 1 == 1) {
                hash = keccak256(abi.encodePacked(hash, proof[i]));
            } else {
                hash = keccak256(abi.encodePacked(proof[i], hash));
            }

            // this divides the path by 2 lol bitwise ops > division
            path >>= 1;
        }

        return hash == whitelistMerkleProofRoot;
    }

    function publicMint(uint256 amount) external payable nonReentrant {
        uint256 currentSupply = _totalMinted();
        // supply limit checks
        require(
            msg.sender == tx.origin &&
                amount > 0 &&
                amount <= MAX_PUBLIC_MINT_PER_WALLET &&
                currentSupply < MAX_SUPPLY &&
                currentSupply + amount <= MAX_SUPPLY &&
                mintStatus == MintStatus.PUBLIC
        );

        uint256 minimumPayment = amount * PUBLIC_MINT_COST;

        require(msg.value >= minimumPayment, "not enough ether sent for mint!");

        _mint(msg.sender, amount);

        if (msg.value > minimumPayment) {
            // refund if the user somehow overpaid
            uint256 refund = msg.value - minimumPayment;
            (bool ok, ) = payable(msg.sender).call{value: refund}("");
            require(ok);
        }
    }

    function whitelistMint(
        uint256 amount,
        uint256 limit,
        bytes32[] calldata proof,
        uint256 path
    ) external payable nonReentrant {
        address msgSender = msg.sender;

        uint256 currentSupply = _totalMinted();

        // supply & sanity checks
        require(
            amount > 0 &&
                amount <= limit &&
                currentSupply < MAX_SUPPLY &&
                currentSupply + amount <= MAX_SUPPLY &&
                msg.sender == tx.origin &&
                mintStatus != MintStatus.CLOSED
        );

        // account mint limit checks
        uint256 _minted = _numberMinted(msgSender);
        require(proof.length > 0 && validate(msgSender, limit, proof, path));
        require(_minted < limit, "Mint limit reached!");
        uint256 remaining = limit - _minted;
        require(amount > 0 && amount <= remaining);

        // payment checks

        uint256 minimumPayment = amount * WHITELIST_MINT_COST;

        require(msg.value >= minimumPayment, "not enough ether sent for mint!");

        _mint(msgSender, amount);

        if (msg.value > minimumPayment) {
            // refund if the user somehow overpaid
            uint256 refund = msg.value - minimumPayment;
            (bool ok, ) = payable(msgSender).call{value: refund}("");
            require(ok);
        }
    }

    function tokenURI(uint256 id) public view override returns (string memory) {
        require(_exists(id));
        // baseTokenURI is empty, assume the token is unrevealed, and default to the unrevealed URI
        // else concatenate the base URI with the token ID and the JSON URI
        return
            bytes(_baseTokenURI).length == 0
                ? _unrevealedURI
                : string(
                    abi.encodePacked(_baseTokenURI, _toString(id), ".json")
                );
    }

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

    function withdraw(address to) external onlyOwner {
        (bool ok, ) = payable(to).call{value: address(this).balance}("");
        require(ok);
    }

    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal override {
        if (address(controller) != address(0)) {
            controller.onPreTransfer(from, to, startTokenId, quantity);
        }
    }

    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal override {
        if (address(controller) != address(0)) {
            controller.onPostTransfer(from, to, startTokenId, quantity);
        }
    }

    /**
        Overrides for OperatorFilterer   
     */

    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);
    }
}

Contract Security Audit

Contract ABI

[{"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":"user","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":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_MINT_COST","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":"controller","outputs":[{"internalType":"contract SupplyController","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getMintTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintAirdropTeamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintStatus","outputs":[{"internalType":"enum FukushimaFishNFT.MintStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"readMeURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"_airdropper","type":"address"}],"name":"setAirdropper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum FukushimaFishNFT.MintStatus","name":"status","type":"uint8"}],"name":"setMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"cost","type":"uint256"}],"name":"setPublicMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setReadMeURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"royaltyReceiver","type":"address"},{"internalType":"uint96","name":"basisPoints","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract SupplyController","name":"_controller","type":"address"}],"name":"setSupplyController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setTermsOfServiceURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setUnrevealedTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setUpdateOnTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"cost","type":"uint256"}],"name":"setWhitelistMintPrice","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":[],"name":"termsOfServiceURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","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":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"limit","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"path","type":"uint256"}],"name":"validate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"limit","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"path","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600160095566b1a2bc2ec50000600c556701140bbd030c4000600d55600e805460ff1916905560a060405260006080908152600f906200004090826200033d565b506040805160208101909152600081526010906200005f90826200033d565b5060006013556014805460ff191690553480156200007c57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb66001336040518060400160405280600e81526020016d08cead6eae6d0d2dac2408cd2e6d60931b815250604051806040016040528060038152602001624b4f4960e81b8152508160029081620000e991906200033d565b506003620000f882826200033d565b505060016000908155600880546001600160a01b0319166001600160a01b0385169081179091556040519092507f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506daaeb6d7670e522a718067333cd4e3b1562000290578015620001de57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b158015620001bf57600080fd5b505af1158015620001d4573d6000803e3d6000fd5b5050505062000290565b6001600160a01b038216156200022f5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401620001a4565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200027657600080fd5b505af11580156200028b573d6000803e3d6000fd5b505050505b505062000409565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002c357607f821691505b602082108103620002e457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200033857600081815260208120601f850160051c81016020861015620003135750805b601f850160051c820191505b8181101562000334578281556001016200031f565b5050505b505050565b81516001600160401b0381111562000359576200035962000298565b62000371816200036a8454620002ae565b84620002ea565b602080601f831160018114620003a95760008415620003905750858301515b600019600386901b1c1916600185901b17855562000334565b600085815260208120601f198616915b82811015620003da57888601518255948401946001909101908401620003b9565b5085821015620003f95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61328d80620004196000396000f3fe6080604052600436106102f25760003560e01c80636352211e1161018f578063a22cb465116100e1578063dc489c9b1161008a578063e985e9c511610064578063e985e9c514610814578063f2fde38b1461085d578063f77c47911461087d57600080fd5b8063dc489c9b146107c9578063e3d1a7be146107e9578063e49b1a7c146107ff57600080fd5b8063c447e72d116100bb578063c447e72d14610769578063c528cfc414610789578063c87b56dd146107a957600080fd5b8063a22cb46514610716578063a611708e14610736578063b88d4fde1461075657600080fd5b8063820de0c51161014357806395d89b411161011d57806395d89b41146106c45780639da3f8fd146106d9578063a2080c5b1461070057600080fd5b8063820de0c5146106645780638da5cb5b146106845780638ed6e589146106a457600080fd5b80637cb64759116101745780637cb64759146106045780637e386b6514610624578063814c8c551461064457600080fd5b80636352211e146105c457806370a08231146105e457600080fd5b80632db1154411610248578063484b973c116101fc57806351cff8d9116101d657806351cff8d91461056457806352875bc3146105845780635d82cf6e146105a457600080fd5b8063484b973c146105045780634f558e79146105245780634ffecb491461054457600080fd5b806341f434341161022d57806341f43434146104ba57806342842e0e146104dc57806342b41aad146104ef57600080fd5b80632db115441461048757806330176e131461049a57600080fd5b806318160ddd116102aa5780631e7269c5116102845780631e7269c51461041557806323b872dd146104355780632a55205a1461044857600080fd5b806318160ddd146103bb5780631babc84a146103e25780631c4072e21461040257600080fd5b806306fdde03116102db57806306fdde031461034e578063081812fc14610370578063095ea7b3146103a857600080fd5b806301ffc9a7146102f757806302fa7c471461032c575b600080fd5b34801561030357600080fd5b50610317610312366004612928565b61089d565b60405190151581526020015b60405180910390f35b34801561033857600080fd5b5061034c610347366004612961565b6108cc565b005b34801561035a57600080fd5b50610363610939565b6040516103239190612a19565b34801561037c57600080fd5b5061039061038b366004612a2c565b6109cb565b6040516001600160a01b039091168152602001610323565b61034c6103b6366004612a45565b610a1f565b3480156103c757600080fd5b5060015460005403600019015b604051908152602001610323565b3480156103ee57600080fd5b5061034c6103fd366004612a71565b610a38565b61034c610410366004612b28565b610a9f565b34801561042157600080fd5b506103d4610430366004612b83565b610d26565b61034c610443366004612ba0565b610d51565b34801561045457600080fd5b50610468610463366004612be1565b610d7c565b604080516001600160a01b039093168352602083019190915201610323565b61034c610495366004612a2c565b610e5b565b3480156104a657600080fd5b5061034c6104b5366004612a71565b611009565b3480156104c657600080fd5b506103906daaeb6d7670e522a718067333cd4e81565b61034c6104ea366004612ba0565b611070565b3480156104fb57600080fd5b50610363611095565b34801561051057600080fd5b5061034c61051f366004612a45565b611123565b34801561053057600080fd5b5061031761053f366004612a2c565b611273565b34801561055057600080fd5b5061034c61055f366004612a71565b61127e565b34801561057057600080fd5b5061034c61057f366004612b83565b6112e5565b34801561059057600080fd5b5061034c61059f366004612b83565b61139f565b3480156105b057600080fd5b5061034c6105bf366004612a2c565b611433565b3480156105d057600080fd5b506103906105df366004612a2c565b611492565b3480156105f057600080fd5b506103d46105ff366004612b83565b61149d565b34801561061057600080fd5b5061034c61061f366004612a2c565b6114fc565b34801561063057600080fd5b5061031761063f366004612c03565b61155b565b34801561065057600080fd5b5061034c61065f366004612c49565b611670565b34801561067057600080fd5b5061034c61067f366004612a71565b61170f565b34801561069057600080fd5b50600854610390906001600160a01b031681565b3480156106b057600080fd5b5061034c6106bf366004612c78565b611776565b3480156106d057600080fd5b50610363611801565b3480156106e557600080fd5b50600e546106f39060ff1681565b6040516103239190612cc4565b34801561070c57600080fd5b506103d4600d5481565b34801561072257600080fd5b5061034c610731366004612d05565b611810565b34801561074257600080fd5b5061034c610751366004612a2c565b611824565b61034c610764366004612d62565b611883565b34801561077557600080fd5b5061034c610784366004612a45565b6118b0565b34801561079557600080fd5b506103d46107a4366004612a2c565b6118cc565b3480156107b557600080fd5b506103636107c4366004612a2c565b6118ed565b3480156107d557600080fd5b5061034c6107e4366004612b83565b6119d6565b3480156107f557600080fd5b506103d4600c5481565b34801561080b57600080fd5b50610363611a6f565b34801561082057600080fd5b5061031761082f366004612e60565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561086957600080fd5b5061034c610878366004612b83565b611a7c565b34801561088957600080fd5b50601554610390906001600160a01b031681565b60006108a882611b3a565b806108b757506108b782611c1b565b806108c657506108c682611c1b565b92915050565b6008546001600160a01b0316331461092b5760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a4544000000000000000000000000000000000000000060448201526064015b60405180910390fd5b6109358282611cb2565b5050565b60606002805461094890612e8e565b80601f016020809104026020016040519081016040528092919081815260200182805461097490612e8e565b80156109c15780601f10610996576101008083540402835291602001916109c1565b820191906000526020600020905b8154815290600101906020018083116109a457829003601f168201915b5050505050905090565b60006109d682611ddd565b610a0357610a037fcf4700e400000000000000000000000000000000000000000000000000000000611e44565b506000908152600660205260409020546001600160a01b031690565b81610a2981611e4e565b610a338383611f3c565b505050565b6008546001600160a01b03163314610a925760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610922565b6011610a33828483612f2f565b600954600114610af15760405162461bcd60e51b815260206004820152600a60248201527f5245454e5452414e4359000000000000000000000000000000000000000000006044820152606401610922565b6002600955336000610b066000546000190190565b9050600087118015610b185750858711155b8015610b255750610f3081105b8015610b3c5750610f30610b39888361303c565b11155b8015610b4757503332145b8015610b6a57506000600e5460ff166002811115610b6757610b67612c95565b14155b610b7357600080fd5b6001600160a01b0382166000908152600560205260409081902054901c67ffffffffffffffff168415801590610bb15750610bb1838888888861155b565b610bba57600080fd5b868110610c095760405162461bcd60e51b815260206004820152601360248201527f4d696e74206c696d6974207265616368656421000000000000000000000000006044820152606401610922565b6000610c15828961304f565b9050600089118015610c275750808911155b610c3057600080fd5b6000600c548a610c409190613062565b905080341015610c925760405162461bcd60e51b815260206004820152601f60248201527f6e6f7420656e6f7567682065746865722073656e7420666f72206d696e7421006044820152606401610922565b610c9c858b611f48565b80341115610d15576000610cb0823461304f565b90506000866001600160a01b03168260405160006040518083038185875af1925050503d8060008114610cff576040519150601f19603f3d011682016040523d82523d6000602084013e610d04565b606091505b5050905080610d1257600080fd5b50505b505060016009555050505050505050565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c166108c6565b826001600160a01b0381163314610d6b57610d6b33611e4e565b610d7684848461205e565b50505050565b6000828152600b602090815260408083208151808301909252546001600160a01b038116808352740100000000000000000000000000000000000000009091046bffffffffffffffffffffffff16928201929092528291610e1d575060408051808201909152600a546001600160a01b03811682527401000000000000000000000000000000000000000090046bffffffffffffffffffffffff1660208201525b602081015160009061271090610e41906bffffffffffffffffffffffff1687613062565b610e4b9190613079565b91519350909150505b9250929050565b600954600114610ead5760405162461bcd60e51b815260206004820152600a60248201527f5245454e5452414e4359000000000000000000000000000000000000000000006044820152606401610922565b6002600955600054600019013233148015610ec85750600082115b8015610ed5575060148211155b8015610ee25750610f3081105b8015610ef95750610f30610ef6838361303c565b11155b8015610f1b57506002600e5460ff166002811115610f1957610f19612c95565b145b610f2457600080fd5b6000600d5483610f349190613062565b905080341015610f865760405162461bcd60e51b815260206004820152601f60248201527f6e6f7420656e6f7567682065746865722073656e7420666f72206d696e7421006044820152606401610922565b610f903384611f48565b80341115610fff576000610fa4823461304f565b604051909150600090339083908381818185875af1925050503d8060008114610fe9576040519150601f19603f3d011682016040523d82523d6000602084013e610fee565b606091505b5050905080610ffc57600080fd5b50505b5050600160095550565b6008546001600160a01b031633146110635760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610922565b600f610a33828483612f2f565b826001600160a01b038116331461108a5761108a33611e4e565b610d76848484612284565b601280546110a290612e8e565b80601f01602080910402602001604051908101604052809291908181526020018280546110ce90612e8e565b801561111b5780601f106110f05761010080835404028352916020019161111b565b820191906000526020600020905b8154815290600101906020018083116110fe57829003601f168201915b505050505081565b6008546001600160a01b0316331461117d5760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610922565b610f3061118d6000546000190190565b106111da5760405162461bcd60e51b815260206004820152600b60248201527f6d696e746564206f75742e0000000000000000000000000000000000000000006044820152606401610922565b610f30816111eb6000546000190190565b6111f5919061303c565b11156112695760405162461bcd60e51b815260206004820152602260248201527f6d696e7420616d6f756e7420776f756c64206265206f7574206f662072616e6760448201527f652e0000000000000000000000000000000000000000000000000000000000006064820152608401610922565b6109358282611f48565b60006108c682611ddd565b6008546001600160a01b031633146112d85760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610922565b6012610a33828483612f2f565b6008546001600160a01b0316331461133f5760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610922565b6000816001600160a01b03164760405160006040518083038185875af1925050503d806000811461138c576040519150601f19603f3d011682016040523d82523d6000602084013e611391565b606091505b505090508061093557600080fd5b6008546001600160a01b031633146113f95760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610922565b601580547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6008546001600160a01b0316331461148d5760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610922565b600d55565b60006108c68261229f565b60006001600160a01b0382166114d6576114d67f8f4eb60400000000000000000000000000000000000000000000000000000000611e44565b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146115565760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610922565b601355565b604080516001600160a01b0387166020820152908101859052600090819060600160405160208183030381529060405280519060200120905060005b8481101561166157836001166001036115fb57818686838181106115bd576115bd6130b4565b905060200201356040516020016115de929190918252602082015260400190565b604051602081830303815290604052805190602001209150611648565b85858281811061160d5761160d6130b4565b905060200201358260405160200161162f929190918252602082015260400190565b6040516020818303038152906040528051906020012091505b60019390931c9280611659816130e3565b915050611597565b50601354149695505050505050565b6008546001600160a01b031633146116ca5760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610922565b600e80548291907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600183600281111561170757611707612c95565b021790555050565b6008546001600160a01b031633146117695760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610922565b6010610a33828483612f2f565b6008546001600160a01b031633146117d05760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610922565b601480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60606003805461094890612e8e565b8161181a81611e4e565b610a3383836123bd565b6008546001600160a01b0316331461187e5760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610922565b600c55565b836001600160a01b038116331461189d5761189d33611e4e565b6118a985858585612447565b5050505050565b60145461010090046001600160a01b0316331461126957600080fd5b6000806118d88361249b565b6020015167ffffffffffffffff169392505050565b60606118f882611ddd565b61190157600080fd5b600f805461190e90612e8e565b15905061194557600f6119208361252c565b6040516020016119319291906130fd565b6040516020818303038152906040526108c6565b6010805461195290612e8e565b80601f016020809104026020016040519081016040528092919081815260200182805461197e90612e8e565b80156119cb5780601f106119a0576101008083540402835291602001916119cb565b820191906000526020600020905b8154815290600101906020018083116119ae57829003601f168201915b505050505092915050565b6008546001600160a01b03163314611a305760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610922565b601480546001600160a01b03909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b601180546110a290612e8e565b6008546001600160a01b03163314611ad65760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610922565b600880547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03831690811790915560405133907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a350565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff0000000000000000000000000000000000000000000000000000000083161480611bcd57507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b806108c65750507fffffffff00000000000000000000000000000000000000000000000000000000167f5b5e139f000000000000000000000000000000000000000000000000000000001490565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a0000000000000000000000000000000000000000000000000000000014806108c657507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146108c6565b6127106bffffffffffffffffffffffff82161115611d385760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c2065786365656460448201527f2073616c655072696365000000000000000000000000000000000000000000006064820152608401610922565b6001600160a01b038216611d8e5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610922565b604080518082019091526001600160a01b039092168083526bffffffffffffffffffffffff90911660209092018290527401000000000000000000000000000000000000000090910217600a55565b600081600111611e3f57600054821015611e3f5760005b5060008281526004602052604081205490819003611e1c57611e15836131ca565b9250611df4565b7c0100000000000000000000000000000000000000000000000000000000161590505b919050565b8060005260046000fd5b6daaeb6d7670e522a718067333cd4e3b15611f39576040517fc61711340000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611ed4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ef891906131e1565b611f39576040517fede71dcc0000000000000000000000000000000000000000000000000000000081526001600160a01b0382166004820152602401610922565b50565b6109358282600161258e565b6000805490829003611f7d57611f7d7fb562e8dd00000000000000000000000000000000000000000000000000000000611e44565b611f8a600084838561267f565b426001600160a01b03841660a082901b6001851460e11b17176000838152600460209081526040808320939093556001600160a01b0387168083526005909152918120805468010000000000000001870201905581900361200e5761200e7f2e07630000000000000000000000000000000000000000000000000000000000611e44565b828401835b808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a481816001019150810361201357506000908155610a3392509050848385612725565b60006120698261229f565b6001600160a01b0394851694909150811684146120a9576120a97fa114810000000000000000000000000000000000000000000000000000000000611e44565b60008281526006602052604090208054338082146001600160a01b03881690911417612123576001600160a01b038616600090815260076020908152604080832033845290915290205460ff16612123576121237f59c896be00000000000000000000000000000000000000000000000000000000611e44565b612130868686600161267f565b801561213b57600082555b6001600160a01b03808716600090815260056020526040808220805460001901905591871681529081208054600101905560a084901c9061217e60145460ff1690565b9050801561218a574291505b60008681526004602052604081207c020000000000000000000000000000000000000000000000000000000060a085901b6001600160a01b038b1617811790915586169003612209576001860160008181526004602052604081205490036122075760005481146122075760008181526004602052604090208690555b505b50506001600160a01b0385168481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a48060000361226e5761226e7fea553b3400000000000000000000000000000000000000000000000000000000611e44565b61227b8787876001612725565b50505050505050565b610a3383838360405180602001604052806000815250611883565b6000816001116123945750600081815260046020526040812054908190036123685760005482106122f3576122f37fdf2d9b4200000000000000000000000000000000000000000000000000000000611e44565b5b506000190160008181526004602052604090205480156122f4577c0100000000000000000000000000000000000000000000000000000000811660000361233a57919050565b6123637fdf2d9b4200000000000000000000000000000000000000000000000000000000611e44565b6122f4565b7c0100000000000000000000000000000000000000000000000000000000811660000361239457919050565b611e3f7fdf2d9b4200000000000000000000000000000000000000000000000000000000611e44565b3360008181526007602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b612452848484610d51565b6001600160a01b0383163b15610d765761246e84848484612797565b610d7657610d767fd1a57ed600000000000000000000000000000000000000000000000000000000611e44565b6040805160808101825260008082526020820181905291810182905260608101919091526108c66124cb8361229f565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff1660208201527c0100000000000000000000000000000000000000000000000000000000831615159181019190915260e89190911c606082015290565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a90048061254657508190037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0909101908152919050565b600061259983611492565b90508180156125b15750336001600160a01b03821614155b1561260a576001600160a01b038116600090815260076020908152604080832033845290915290205460ff1661260a5761260a7fcfb3b94200000000000000000000000000000000000000000000000000000000611e44565b60008381526006602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b6015546001600160a01b031615610d76576015546040517fb62425a00000000000000000000000000000000000000000000000000000000081526001600160a01b038681166004830152858116602483015260448201859052606482018490529091169063b62425a0906084015b600060405180830381600087803b15801561270757600080fd5b505af115801561271b573d6000803e3d6000fd5b5050505050505050565b6015546001600160a01b031615610d76576015546040517fa1d5ed100000000000000000000000000000000000000000000000000000000081526001600160a01b038681166004830152858116602483015260448201859052606482018490529091169063a1d5ed10906084016126ed565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a02906127e59033908990889088906004016131fe565b6020604051808303816000875af192505050801561283e575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261283b9181019061323a565b60015b6128ac573d80801561286c576040519150601f19603f3d011682016040523d82523d6000602084013e612871565b606091505b5080516000036128a4576128a47fd1a57ed600000000000000000000000000000000000000000000000000000000611e44565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050949350505050565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114611f3957600080fd5b60006020828403121561293a57600080fd5b8135612945816128fa565b9392505050565b6001600160a01b0381168114611f3957600080fd5b6000806040838503121561297457600080fd5b823561297f8161294c565b915060208301356bffffffffffffffffffffffff811681146129a057600080fd5b809150509250929050565b60005b838110156129c65781810151838201526020016129ae565b50506000910152565b600081518084526129e78160208601602086016129ab565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061294560208301846129cf565b600060208284031215612a3e57600080fd5b5035919050565b60008060408385031215612a5857600080fd5b8235612a638161294c565b946020939093013593505050565b60008060208385031215612a8457600080fd5b823567ffffffffffffffff80821115612a9c57600080fd5b818501915085601f830112612ab057600080fd5b813581811115612abf57600080fd5b866020828501011115612ad157600080fd5b60209290920196919550909350505050565b60008083601f840112612af557600080fd5b50813567ffffffffffffffff811115612b0d57600080fd5b6020830191508360208260051b8501011115610e5457600080fd5b600080600080600060808688031215612b4057600080fd5b8535945060208601359350604086013567ffffffffffffffff811115612b6557600080fd5b612b7188828901612ae3565b96999598509660600135949350505050565b600060208284031215612b9557600080fd5b81356129458161294c565b600080600060608486031215612bb557600080fd5b8335612bc08161294c565b92506020840135612bd08161294c565b929592945050506040919091013590565b60008060408385031215612bf457600080fd5b50508035926020909101359150565b600080600080600060808688031215612c1b57600080fd5b8535612c268161294c565b945060208601359350604086013567ffffffffffffffff811115612b6557600080fd5b600060208284031215612c5b57600080fd5b81356003811061294557600080fd5b8015158114611f3957600080fd5b600060208284031215612c8a57600080fd5b813561294581612c6a565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6020810160038310612cff577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b91905290565b60008060408385031215612d1857600080fd5b8235612d238161294c565b915060208301356129a081612c6a565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008060008060808587031215612d7857600080fd5b8435612d838161294c565b93506020850135612d938161294c565b925060408501359150606085013567ffffffffffffffff80821115612db757600080fd5b818701915087601f830112612dcb57600080fd5b813581811115612ddd57612ddd612d33565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908382118183101715612e2357612e23612d33565b816040528281528a6020848701011115612e3c57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612e7357600080fd5b8235612e7e8161294c565b915060208301356129a08161294c565b600181811c90821680612ea257607f821691505b602082108103612edb577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b601f821115610a3357600081815260208120601f850160051c81016020861015612f085750805b601f850160051c820191505b81811015612f2757828155600101612f14565b505050505050565b67ffffffffffffffff831115612f4757612f47612d33565b612f5b83612f558354612e8e565b83612ee1565b6000601f841160018114612f8f5760008515612f775750838201355b600019600387901b1c1916600186901b1783556118a9565b6000838152602090207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0861690835b82811015612fde5786850135825560209485019460019092019101612fbe565b5086821015612ffb5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b808201808211156108c6576108c661300d565b818103818111156108c6576108c661300d565b80820281158282048414176108c6576108c661300d565b6000826130af577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060001982036130f6576130f661300d565b5060010190565b600080845461310b81612e8e565b60018281168015613123576001811461315657613185565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0084168752821515830287019450613185565b8860005260208060002060005b8581101561317c5781548a820152908401908201613163565b50505082870194505b5050505083516131998183602088016129ab565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b6000816131d9576131d961300d565b506000190190565b6000602082840312156131f357600080fd5b815161294581612c6a565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261323060808301846129cf565b9695505050505050565b60006020828403121561324c57600080fd5b8151612945816128fa56fea2646970667358221220cd13124056ab386d1bd396b4913f26cec3d252018f4965bd1e43550169f4e3e064736f6c63430008120033

Deployed Bytecode

0x6080604052600436106102f25760003560e01c80636352211e1161018f578063a22cb465116100e1578063dc489c9b1161008a578063e985e9c511610064578063e985e9c514610814578063f2fde38b1461085d578063f77c47911461087d57600080fd5b8063dc489c9b146107c9578063e3d1a7be146107e9578063e49b1a7c146107ff57600080fd5b8063c447e72d116100bb578063c447e72d14610769578063c528cfc414610789578063c87b56dd146107a957600080fd5b8063a22cb46514610716578063a611708e14610736578063b88d4fde1461075657600080fd5b8063820de0c51161014357806395d89b411161011d57806395d89b41146106c45780639da3f8fd146106d9578063a2080c5b1461070057600080fd5b8063820de0c5146106645780638da5cb5b146106845780638ed6e589146106a457600080fd5b80637cb64759116101745780637cb64759146106045780637e386b6514610624578063814c8c551461064457600080fd5b80636352211e146105c457806370a08231146105e457600080fd5b80632db1154411610248578063484b973c116101fc57806351cff8d9116101d657806351cff8d91461056457806352875bc3146105845780635d82cf6e146105a457600080fd5b8063484b973c146105045780634f558e79146105245780634ffecb491461054457600080fd5b806341f434341161022d57806341f43434146104ba57806342842e0e146104dc57806342b41aad146104ef57600080fd5b80632db115441461048757806330176e131461049a57600080fd5b806318160ddd116102aa5780631e7269c5116102845780631e7269c51461041557806323b872dd146104355780632a55205a1461044857600080fd5b806318160ddd146103bb5780631babc84a146103e25780631c4072e21461040257600080fd5b806306fdde03116102db57806306fdde031461034e578063081812fc14610370578063095ea7b3146103a857600080fd5b806301ffc9a7146102f757806302fa7c471461032c575b600080fd5b34801561030357600080fd5b50610317610312366004612928565b61089d565b60405190151581526020015b60405180910390f35b34801561033857600080fd5b5061034c610347366004612961565b6108cc565b005b34801561035a57600080fd5b50610363610939565b6040516103239190612a19565b34801561037c57600080fd5b5061039061038b366004612a2c565b6109cb565b6040516001600160a01b039091168152602001610323565b61034c6103b6366004612a45565b610a1f565b3480156103c757600080fd5b5060015460005403600019015b604051908152602001610323565b3480156103ee57600080fd5b5061034c6103fd366004612a71565b610a38565b61034c610410366004612b28565b610a9f565b34801561042157600080fd5b506103d4610430366004612b83565b610d26565b61034c610443366004612ba0565b610d51565b34801561045457600080fd5b50610468610463366004612be1565b610d7c565b604080516001600160a01b039093168352602083019190915201610323565b61034c610495366004612a2c565b610e5b565b3480156104a657600080fd5b5061034c6104b5366004612a71565b611009565b3480156104c657600080fd5b506103906daaeb6d7670e522a718067333cd4e81565b61034c6104ea366004612ba0565b611070565b3480156104fb57600080fd5b50610363611095565b34801561051057600080fd5b5061034c61051f366004612a45565b611123565b34801561053057600080fd5b5061031761053f366004612a2c565b611273565b34801561055057600080fd5b5061034c61055f366004612a71565b61127e565b34801561057057600080fd5b5061034c61057f366004612b83565b6112e5565b34801561059057600080fd5b5061034c61059f366004612b83565b61139f565b3480156105b057600080fd5b5061034c6105bf366004612a2c565b611433565b3480156105d057600080fd5b506103906105df366004612a2c565b611492565b3480156105f057600080fd5b506103d46105ff366004612b83565b61149d565b34801561061057600080fd5b5061034c61061f366004612a2c565b6114fc565b34801561063057600080fd5b5061031761063f366004612c03565b61155b565b34801561065057600080fd5b5061034c61065f366004612c49565b611670565b34801561067057600080fd5b5061034c61067f366004612a71565b61170f565b34801561069057600080fd5b50600854610390906001600160a01b031681565b3480156106b057600080fd5b5061034c6106bf366004612c78565b611776565b3480156106d057600080fd5b50610363611801565b3480156106e557600080fd5b50600e546106f39060ff1681565b6040516103239190612cc4565b34801561070c57600080fd5b506103d4600d5481565b34801561072257600080fd5b5061034c610731366004612d05565b611810565b34801561074257600080fd5b5061034c610751366004612a2c565b611824565b61034c610764366004612d62565b611883565b34801561077557600080fd5b5061034c610784366004612a45565b6118b0565b34801561079557600080fd5b506103d46107a4366004612a2c565b6118cc565b3480156107b557600080fd5b506103636107c4366004612a2c565b6118ed565b3480156107d557600080fd5b5061034c6107e4366004612b83565b6119d6565b3480156107f557600080fd5b506103d4600c5481565b34801561080b57600080fd5b50610363611a6f565b34801561082057600080fd5b5061031761082f366004612e60565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561086957600080fd5b5061034c610878366004612b83565b611a7c565b34801561088957600080fd5b50601554610390906001600160a01b031681565b60006108a882611b3a565b806108b757506108b782611c1b565b806108c657506108c682611c1b565b92915050565b6008546001600160a01b0316331461092b5760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a4544000000000000000000000000000000000000000060448201526064015b60405180910390fd5b6109358282611cb2565b5050565b60606002805461094890612e8e565b80601f016020809104026020016040519081016040528092919081815260200182805461097490612e8e565b80156109c15780601f10610996576101008083540402835291602001916109c1565b820191906000526020600020905b8154815290600101906020018083116109a457829003601f168201915b5050505050905090565b60006109d682611ddd565b610a0357610a037fcf4700e400000000000000000000000000000000000000000000000000000000611e44565b506000908152600660205260409020546001600160a01b031690565b81610a2981611e4e565b610a338383611f3c565b505050565b6008546001600160a01b03163314610a925760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610922565b6011610a33828483612f2f565b600954600114610af15760405162461bcd60e51b815260206004820152600a60248201527f5245454e5452414e4359000000000000000000000000000000000000000000006044820152606401610922565b6002600955336000610b066000546000190190565b9050600087118015610b185750858711155b8015610b255750610f3081105b8015610b3c5750610f30610b39888361303c565b11155b8015610b4757503332145b8015610b6a57506000600e5460ff166002811115610b6757610b67612c95565b14155b610b7357600080fd5b6001600160a01b0382166000908152600560205260409081902054901c67ffffffffffffffff168415801590610bb15750610bb1838888888861155b565b610bba57600080fd5b868110610c095760405162461bcd60e51b815260206004820152601360248201527f4d696e74206c696d6974207265616368656421000000000000000000000000006044820152606401610922565b6000610c15828961304f565b9050600089118015610c275750808911155b610c3057600080fd5b6000600c548a610c409190613062565b905080341015610c925760405162461bcd60e51b815260206004820152601f60248201527f6e6f7420656e6f7567682065746865722073656e7420666f72206d696e7421006044820152606401610922565b610c9c858b611f48565b80341115610d15576000610cb0823461304f565b90506000866001600160a01b03168260405160006040518083038185875af1925050503d8060008114610cff576040519150601f19603f3d011682016040523d82523d6000602084013e610d04565b606091505b5050905080610d1257600080fd5b50505b505060016009555050505050505050565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c166108c6565b826001600160a01b0381163314610d6b57610d6b33611e4e565b610d7684848461205e565b50505050565b6000828152600b602090815260408083208151808301909252546001600160a01b038116808352740100000000000000000000000000000000000000009091046bffffffffffffffffffffffff16928201929092528291610e1d575060408051808201909152600a546001600160a01b03811682527401000000000000000000000000000000000000000090046bffffffffffffffffffffffff1660208201525b602081015160009061271090610e41906bffffffffffffffffffffffff1687613062565b610e4b9190613079565b91519350909150505b9250929050565b600954600114610ead5760405162461bcd60e51b815260206004820152600a60248201527f5245454e5452414e4359000000000000000000000000000000000000000000006044820152606401610922565b6002600955600054600019013233148015610ec85750600082115b8015610ed5575060148211155b8015610ee25750610f3081105b8015610ef95750610f30610ef6838361303c565b11155b8015610f1b57506002600e5460ff166002811115610f1957610f19612c95565b145b610f2457600080fd5b6000600d5483610f349190613062565b905080341015610f865760405162461bcd60e51b815260206004820152601f60248201527f6e6f7420656e6f7567682065746865722073656e7420666f72206d696e7421006044820152606401610922565b610f903384611f48565b80341115610fff576000610fa4823461304f565b604051909150600090339083908381818185875af1925050503d8060008114610fe9576040519150601f19603f3d011682016040523d82523d6000602084013e610fee565b606091505b5050905080610ffc57600080fd5b50505b5050600160095550565b6008546001600160a01b031633146110635760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610922565b600f610a33828483612f2f565b826001600160a01b038116331461108a5761108a33611e4e565b610d76848484612284565b601280546110a290612e8e565b80601f01602080910402602001604051908101604052809291908181526020018280546110ce90612e8e565b801561111b5780601f106110f05761010080835404028352916020019161111b565b820191906000526020600020905b8154815290600101906020018083116110fe57829003601f168201915b505050505081565b6008546001600160a01b0316331461117d5760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610922565b610f3061118d6000546000190190565b106111da5760405162461bcd60e51b815260206004820152600b60248201527f6d696e746564206f75742e0000000000000000000000000000000000000000006044820152606401610922565b610f30816111eb6000546000190190565b6111f5919061303c565b11156112695760405162461bcd60e51b815260206004820152602260248201527f6d696e7420616d6f756e7420776f756c64206265206f7574206f662072616e6760448201527f652e0000000000000000000000000000000000000000000000000000000000006064820152608401610922565b6109358282611f48565b60006108c682611ddd565b6008546001600160a01b031633146112d85760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610922565b6012610a33828483612f2f565b6008546001600160a01b0316331461133f5760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610922565b6000816001600160a01b03164760405160006040518083038185875af1925050503d806000811461138c576040519150601f19603f3d011682016040523d82523d6000602084013e611391565b606091505b505090508061093557600080fd5b6008546001600160a01b031633146113f95760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610922565b601580547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6008546001600160a01b0316331461148d5760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610922565b600d55565b60006108c68261229f565b60006001600160a01b0382166114d6576114d67f8f4eb60400000000000000000000000000000000000000000000000000000000611e44565b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146115565760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610922565b601355565b604080516001600160a01b0387166020820152908101859052600090819060600160405160208183030381529060405280519060200120905060005b8481101561166157836001166001036115fb57818686838181106115bd576115bd6130b4565b905060200201356040516020016115de929190918252602082015260400190565b604051602081830303815290604052805190602001209150611648565b85858281811061160d5761160d6130b4565b905060200201358260405160200161162f929190918252602082015260400190565b6040516020818303038152906040528051906020012091505b60019390931c9280611659816130e3565b915050611597565b50601354149695505050505050565b6008546001600160a01b031633146116ca5760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610922565b600e80548291907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600183600281111561170757611707612c95565b021790555050565b6008546001600160a01b031633146117695760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610922565b6010610a33828483612f2f565b6008546001600160a01b031633146117d05760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610922565b601480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60606003805461094890612e8e565b8161181a81611e4e565b610a3383836123bd565b6008546001600160a01b0316331461187e5760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610922565b600c55565b836001600160a01b038116331461189d5761189d33611e4e565b6118a985858585612447565b5050505050565b60145461010090046001600160a01b0316331461126957600080fd5b6000806118d88361249b565b6020015167ffffffffffffffff169392505050565b60606118f882611ddd565b61190157600080fd5b600f805461190e90612e8e565b15905061194557600f6119208361252c565b6040516020016119319291906130fd565b6040516020818303038152906040526108c6565b6010805461195290612e8e565b80601f016020809104026020016040519081016040528092919081815260200182805461197e90612e8e565b80156119cb5780601f106119a0576101008083540402835291602001916119cb565b820191906000526020600020905b8154815290600101906020018083116119ae57829003601f168201915b505050505092915050565b6008546001600160a01b03163314611a305760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610922565b601480546001600160a01b03909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b601180546110a290612e8e565b6008546001600160a01b03163314611ad65760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610922565b600880547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03831690811790915560405133907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a350565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff0000000000000000000000000000000000000000000000000000000083161480611bcd57507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b806108c65750507fffffffff00000000000000000000000000000000000000000000000000000000167f5b5e139f000000000000000000000000000000000000000000000000000000001490565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a0000000000000000000000000000000000000000000000000000000014806108c657507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146108c6565b6127106bffffffffffffffffffffffff82161115611d385760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c2065786365656460448201527f2073616c655072696365000000000000000000000000000000000000000000006064820152608401610922565b6001600160a01b038216611d8e5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610922565b604080518082019091526001600160a01b039092168083526bffffffffffffffffffffffff90911660209092018290527401000000000000000000000000000000000000000090910217600a55565b600081600111611e3f57600054821015611e3f5760005b5060008281526004602052604081205490819003611e1c57611e15836131ca565b9250611df4565b7c0100000000000000000000000000000000000000000000000000000000161590505b919050565b8060005260046000fd5b6daaeb6d7670e522a718067333cd4e3b15611f39576040517fc61711340000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611ed4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ef891906131e1565b611f39576040517fede71dcc0000000000000000000000000000000000000000000000000000000081526001600160a01b0382166004820152602401610922565b50565b6109358282600161258e565b6000805490829003611f7d57611f7d7fb562e8dd00000000000000000000000000000000000000000000000000000000611e44565b611f8a600084838561267f565b426001600160a01b03841660a082901b6001851460e11b17176000838152600460209081526040808320939093556001600160a01b0387168083526005909152918120805468010000000000000001870201905581900361200e5761200e7f2e07630000000000000000000000000000000000000000000000000000000000611e44565b828401835b808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a481816001019150810361201357506000908155610a3392509050848385612725565b60006120698261229f565b6001600160a01b0394851694909150811684146120a9576120a97fa114810000000000000000000000000000000000000000000000000000000000611e44565b60008281526006602052604090208054338082146001600160a01b03881690911417612123576001600160a01b038616600090815260076020908152604080832033845290915290205460ff16612123576121237f59c896be00000000000000000000000000000000000000000000000000000000611e44565b612130868686600161267f565b801561213b57600082555b6001600160a01b03808716600090815260056020526040808220805460001901905591871681529081208054600101905560a084901c9061217e60145460ff1690565b9050801561218a574291505b60008681526004602052604081207c020000000000000000000000000000000000000000000000000000000060a085901b6001600160a01b038b1617811790915586169003612209576001860160008181526004602052604081205490036122075760005481146122075760008181526004602052604090208690555b505b50506001600160a01b0385168481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a48060000361226e5761226e7fea553b3400000000000000000000000000000000000000000000000000000000611e44565b61227b8787876001612725565b50505050505050565b610a3383838360405180602001604052806000815250611883565b6000816001116123945750600081815260046020526040812054908190036123685760005482106122f3576122f37fdf2d9b4200000000000000000000000000000000000000000000000000000000611e44565b5b506000190160008181526004602052604090205480156122f4577c0100000000000000000000000000000000000000000000000000000000811660000361233a57919050565b6123637fdf2d9b4200000000000000000000000000000000000000000000000000000000611e44565b6122f4565b7c0100000000000000000000000000000000000000000000000000000000811660000361239457919050565b611e3f7fdf2d9b4200000000000000000000000000000000000000000000000000000000611e44565b3360008181526007602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b612452848484610d51565b6001600160a01b0383163b15610d765761246e84848484612797565b610d7657610d767fd1a57ed600000000000000000000000000000000000000000000000000000000611e44565b6040805160808101825260008082526020820181905291810182905260608101919091526108c66124cb8361229f565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff1660208201527c0100000000000000000000000000000000000000000000000000000000831615159181019190915260e89190911c606082015290565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a90048061254657508190037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0909101908152919050565b600061259983611492565b90508180156125b15750336001600160a01b03821614155b1561260a576001600160a01b038116600090815260076020908152604080832033845290915290205460ff1661260a5761260a7fcfb3b94200000000000000000000000000000000000000000000000000000000611e44565b60008381526006602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b6015546001600160a01b031615610d76576015546040517fb62425a00000000000000000000000000000000000000000000000000000000081526001600160a01b038681166004830152858116602483015260448201859052606482018490529091169063b62425a0906084015b600060405180830381600087803b15801561270757600080fd5b505af115801561271b573d6000803e3d6000fd5b5050505050505050565b6015546001600160a01b031615610d76576015546040517fa1d5ed100000000000000000000000000000000000000000000000000000000081526001600160a01b038681166004830152858116602483015260448201859052606482018490529091169063a1d5ed10906084016126ed565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a02906127e59033908990889088906004016131fe565b6020604051808303816000875af192505050801561283e575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261283b9181019061323a565b60015b6128ac573d80801561286c576040519150601f19603f3d011682016040523d82523d6000602084013e612871565b606091505b5080516000036128a4576128a47fd1a57ed600000000000000000000000000000000000000000000000000000000611e44565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050949350505050565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114611f3957600080fd5b60006020828403121561293a57600080fd5b8135612945816128fa565b9392505050565b6001600160a01b0381168114611f3957600080fd5b6000806040838503121561297457600080fd5b823561297f8161294c565b915060208301356bffffffffffffffffffffffff811681146129a057600080fd5b809150509250929050565b60005b838110156129c65781810151838201526020016129ae565b50506000910152565b600081518084526129e78160208601602086016129ab565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061294560208301846129cf565b600060208284031215612a3e57600080fd5b5035919050565b60008060408385031215612a5857600080fd5b8235612a638161294c565b946020939093013593505050565b60008060208385031215612a8457600080fd5b823567ffffffffffffffff80821115612a9c57600080fd5b818501915085601f830112612ab057600080fd5b813581811115612abf57600080fd5b866020828501011115612ad157600080fd5b60209290920196919550909350505050565b60008083601f840112612af557600080fd5b50813567ffffffffffffffff811115612b0d57600080fd5b6020830191508360208260051b8501011115610e5457600080fd5b600080600080600060808688031215612b4057600080fd5b8535945060208601359350604086013567ffffffffffffffff811115612b6557600080fd5b612b7188828901612ae3565b96999598509660600135949350505050565b600060208284031215612b9557600080fd5b81356129458161294c565b600080600060608486031215612bb557600080fd5b8335612bc08161294c565b92506020840135612bd08161294c565b929592945050506040919091013590565b60008060408385031215612bf457600080fd5b50508035926020909101359150565b600080600080600060808688031215612c1b57600080fd5b8535612c268161294c565b945060208601359350604086013567ffffffffffffffff811115612b6557600080fd5b600060208284031215612c5b57600080fd5b81356003811061294557600080fd5b8015158114611f3957600080fd5b600060208284031215612c8a57600080fd5b813561294581612c6a565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6020810160038310612cff577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b91905290565b60008060408385031215612d1857600080fd5b8235612d238161294c565b915060208301356129a081612c6a565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008060008060808587031215612d7857600080fd5b8435612d838161294c565b93506020850135612d938161294c565b925060408501359150606085013567ffffffffffffffff80821115612db757600080fd5b818701915087601f830112612dcb57600080fd5b813581811115612ddd57612ddd612d33565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908382118183101715612e2357612e23612d33565b816040528281528a6020848701011115612e3c57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612e7357600080fd5b8235612e7e8161294c565b915060208301356129a08161294c565b600181811c90821680612ea257607f821691505b602082108103612edb577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b601f821115610a3357600081815260208120601f850160051c81016020861015612f085750805b601f850160051c820191505b81811015612f2757828155600101612f14565b505050505050565b67ffffffffffffffff831115612f4757612f47612d33565b612f5b83612f558354612e8e565b83612ee1565b6000601f841160018114612f8f5760008515612f775750838201355b600019600387901b1c1916600186901b1783556118a9565b6000838152602090207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0861690835b82811015612fde5786850135825560209485019460019092019101612fbe565b5086821015612ffb5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b808201808211156108c6576108c661300d565b818103818111156108c6576108c661300d565b80820281158282048414176108c6576108c661300d565b6000826130af577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060001982036130f6576130f661300d565b5060010190565b600080845461310b81612e8e565b60018281168015613123576001811461315657613185565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0084168752821515830287019450613185565b8860005260208060002060005b8581101561317c5781548a820152908401908201613163565b50505082870194505b5050505083516131998183602088016129ab565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b6000816131d9576131d961300d565b506000190190565b6000602082840312156131f357600080fd5b815161294581612c6a565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261323060808301846129cf565b9695505050505050565b60006020828403121561324c57600080fd5b8151612945816128fa56fea2646970667358221220cd13124056ab386d1bd396b4913f26cec3d252018f4965bd1e43550169f4e3e064736f6c63430008120033

Deployed Bytecode Sourcemap

76436:9861:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76601:310;;;;;;;;;;-1:-1:-1;76601:310:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;76601:310:0;;;;;;;;78348:180;;;;;;;;;;-1:-1:-1;78348:180:0;;;;;:::i;:::-;;:::i;:::-;;39650:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;46700:227::-;;;;;;;;;;-1:-1:-1;46700:227:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2401:55:1;;;2383:74;;2371:2;2356:18;46700:227:0;2237:226:1;85415:190:0;;;;;;:::i;:::-;;:::i;35392:323::-;;;;;;;;;;-1:-1:-1;84348:1:0;35666:12;35453:7;35650:13;:28;-1:-1:-1;;35650:46:0;35392:323;;;2934:25:1;;;2922:2;2907:18;35392:323:0;2788:177:1;79234:112:0;;;;;;;;;;-1:-1:-1;79234:112:0;;;;;:::i;:::-;;:::i;82334:1402::-;;;;;;:::i;:::-;;:::i;79117:109::-;;;;;;;;;;-1:-1:-1;79117:109:0;;;;;:::i;:::-;;:::i;85613:205::-;;;;;;:::i;:::-;;:::i;17740:442::-;;;;;;;;;;-1:-1:-1;17740:442:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;5744:55:1;;;5726:74;;5831:2;5816:18;;5809:34;;;;5699:18;17740:442:0;5552:297:1;81411:915:0;;;;;;:::i;:::-;;:::i;79691:103::-;;;;;;;;;;-1:-1:-1;79691:103:0;;;;;:::i;:::-;;:::i;9887:143::-;;;;;;;;;;;;2303:42;9887:143;;85826:213;;;;;;:::i;:::-;;:::i;77624:23::-;;;;;;;;;;;;;:::i;80148:328::-;;;;;;;;;;-1:-1:-1;80148:328:0;;;;;:::i;:::-;;:::i;79015:94::-;;;;;;;;;;-1:-1:-1;79015:94:0;;;;;:::i;:::-;;:::i;79354:96::-;;;;;;;;;;-1:-1:-1;79354:96:0;;;;;:::i;:::-;;:::i;84365:154::-;;;;;;;;;;-1:-1:-1;84365:154:0;;;;;:::i;:::-;;:::i;78203:137::-;;;;;;;;;;-1:-1:-1;78203:137:0;;;;;:::i;:::-;;:::i;80037:103::-;;;;;;;;;;-1:-1:-1;80037:103:0;;;;;:::i;:::-;;:::i;41052:152::-;;;;;;;;;;-1:-1:-1;41052:152:0;;;;;:::i;:::-;;:::i;36576:242::-;;;;;;;;;;-1:-1:-1;36576:242:0;;;;;:::i;:::-;;:::i;79565:118::-;;;;;;;;;;-1:-1:-1;79565:118:0;;;;;:::i;:::-;;:::i;80695:708::-;;;;;;;;;;-1:-1:-1;80695:708:0;;;;;:::i;:::-;;:::i;79458:99::-;;;;;;;;;;-1:-1:-1;79458:99:0;;;;;:::i;:::-;;:::i;79802:110::-;;;;;;;;;;-1:-1:-1;79802:110:0;;;;;:::i;:::-;;:::i;1336:20::-;;;;;;;;;;-1:-1:-1;1336:20:0;;;;-1:-1:-1;;;;;1336:20:0;;;78730:106;;;;;;;;;;-1:-1:-1;78730:106:0;;;;;:::i;:::-;;:::i;39826:104::-;;;;;;;;;;;;;:::i;77462:48::-;;;;;;;;;;-1:-1:-1;77462:48:0;;;;;;;;;;;;;;;:::i;77190:46::-;;;;;;;;;;;;;;;;85206:201;;;;;;;;;;-1:-1:-1;85206:201:0;;;;;:::i;:::-;;:::i;79920:109::-;;;;;;;;;;-1:-1:-1;79920:109:0;;;;;:::i;:::-;;:::i;86047:247::-;;;;;;:::i;:::-;;:::i;78006:146::-;;;;;;;;;;-1:-1:-1;78006:146:0;;;;;:::i;:::-;;:::i;78536:186::-;;;;;;;;;;-1:-1:-1;78536:186:0;;;;;:::i;:::-;;:::i;83744:512::-;;;;;;;;;;-1:-1:-1;83744:512:0;;;;;:::i;:::-;;:::i;77892:106::-;;;;;;;;;;-1:-1:-1;77892:106:0;;;;;:::i;:::-;;:::i;77110:47::-;;;;;;;;;;;;;;;;77586:31;;;;;;;;;;;;;:::i;47658:164::-;;;;;;;;;;-1:-1:-1;47658:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;47779:25:0;;;47755:4;47779:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;47658:164;1980:165;;;;;;;;;;-1:-1:-1;1980:165:0;;;;;:::i;:::-;;:::i;78160:34::-;;;;;;;;;;-1:-1:-1;78160:34:0;;;;-1:-1:-1;;;;;78160:34:0;;;76601:310;76720:4;76757:38;76783:11;76757:25;:38::i;:::-;:93;;;;76812:38;76838:11;76812:25;:38::i;:::-;76757:146;;;;76867:36;76891:11;76867:23;:36::i;:::-;76737:166;76601:310;-1:-1:-1;;76601:310:0:o;78348:180::-;1427:5;;-1:-1:-1;;;;;1427:5:0;1413:10;:19;1405:44;;;;-1:-1:-1;;;1405:44:0;;11288:2:1;1405:44:0;;;11270:21:1;11327:2;11307:18;;;11300:30;11366:14;11346:18;;;11339:42;11398:18;;1405:44:0;;;;;;;;;78472:48:::1;78491:15;78508:11;78472:18;:48::i;:::-;78348:180:::0;;:::o;39650:100::-;39704:13;39737:5;39730:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39650:100;:::o;46700:227::-;46776:7;46801:16;46809:7;46801;:16::i;:::-;46796:73;;46819:50;46827:41;46819:7;:50::i;:::-;-1:-1:-1;46889:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;46889:30:0;;46700:227::o;85415:190::-;85544:8;11669:30;11690:8;11669:20;:30::i;:::-;85565:32:::1;85579:8;85589:7;85565:13;:32::i;:::-;85415:190:::0;;;:::o;79234:112::-;1427:5;;-1:-1:-1;;;;;1427:5:0;1413:10;:19;1405:44;;;;-1:-1:-1;;;1405:44:0;;11288:2:1;1405:44:0;;;11270:21:1;11327:2;11307:18;;;11300:30;11366:14;11346:18;;;11339:42;11398:18;;1405:44:0;11086:336:1;1405:44:0;79315:17:::1;:23;79335:3:::0;;79315:17;:23:::1;:::i;82334:1402::-:0;531:6;;541:1;531:11;523:34;;;;-1:-1:-1;;;523:34:0;;14308:2:1;523:34:0;;;14290:21:1;14347:2;14327:18;;;14320:30;14386:12;14366:18;;;14359:40;14416:18;;523:34:0;14106:334:1;523:34:0;579:1;570:6;:10;82532::::1;82512:17;82579:14;35868:7:::0;36059:13;-1:-1:-1;;36059:31:0;;35813:296;82579:14:::1;82555:38;;82672:1;82663:6;:10;:46;;;;;82704:5;82694:6;:15;;82663:46;:93;;;;;77332:4;82730:13;:26;82663:93;:150;;;;-1:-1:-1::0;77332:4:0::1;82777:22;82793:6:::0;82777:13;:22:::1;:::i;:::-;:36;;82663:150;:194;;;;-1:-1:-1::0;82834:10:0::1;82848:9;82834:23;82663:194;:246;;;;-1:-1:-1::0;82892:17:0::1;82878:10;::::0;::::1;;:31;::::0;::::1;;;;;;:::i;:::-;;;82663:246;82641:279;;;::::0;::::1;;-1:-1:-1::0;;;;;36989:25:0;;82971:15:::1;36989:25:::0;;;:18;:25;;30873:2;36989:25;;;;;:50;;30735:13;36988:82;83032:16;;;;;:59:::1;;;83052:39;83061:9;83072:5;83079;;83086:4;83052:8;:39::i;:::-;83024:68;;;::::0;::::1;;83121:5;83111:7;:15;83103:47;;;::::0;-1:-1:-1;;;83103:47:0;;14966:2:1;83103:47:0::1;::::0;::::1;14948:21:1::0;15005:2;14985:18;;;14978:30;15044:21;15024:18;;;15017:49;15083:18;;83103:47:0::1;14764:343:1::0;83103:47:0::1;83161:17;83181:15;83189:7:::0;83181:5;:15:::1;:::i;:::-;83161:35;;83224:1;83215:6;:10;:33;;;;;83239:9;83229:6;:19;;83215:33;83207:42;;;::::0;::::1;;83291:22;83325:19;;83316:6;:28;;;;:::i;:::-;83291:53;;83378:14;83365:9;:27;;83357:71;;;::::0;-1:-1:-1;;;83357:71:0;;15620:2:1;83357:71:0::1;::::0;::::1;15602:21:1::0;15659:2;15639:18;;;15632:30;15698:33;15678:18;;;15671:61;15749:18;;83357:71:0::1;15418:355:1::0;83357:71:0::1;83441:24;83447:9;83458:6;83441:5;:24::i;:::-;83494:14;83482:9;:26;83478:251;;;83577:14;83594:26;83606:14:::0;83594:9:::1;:26;:::i;:::-;83577:43;;83636:7;83657:9;-1:-1:-1::0;;;;;83649:23:0::1;83680:6;83649:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83635:56;;;83714:2;83706:11;;;::::0;::::1;;83510:219;;83478:251;-1:-1:-1::0;;616:1:0;607:6;:10;-1:-1:-1;;;;;;;;82334:1402:0:o;79117:109::-;-1:-1:-1;;;;;36989:25:0;;79171:7;36989:25;;;:18;:25;;30873:2;36989:25;;;;30735:13;36989:50;;36988:82;79198:20;36900:178;85613:205;85756:4;-1:-1:-1;;;;;11395:18:0;;11403:10;11395:18;11391:83;;11430:32;11451:10;11430:20;:32::i;:::-;85773:37:::1;85792:4;85798:2;85802:7;85773:18;:37::i;:::-;85613:205:::0;;;;:::o;17740:442::-;17837:7;17895:27;;;:17;:27;;;;;;;;17866:56;;;;;;;;;-1:-1:-1;;;;;17866:56:0;;;;;;;;;;;;;;;;;;17837:7;;17935:92;;-1:-1:-1;17986:29:0;;;;;;;;;17996:19;17986:29;-1:-1:-1;;;;;17986:29:0;;;;;;;;;;;;;17935:92;18077:23;;;;18039:21;;18548:5;;18064:36;;18063:58;18064:36;:10;:36;:::i;:::-;18063:58;;;;:::i;:::-;18142:16;;;-1:-1:-1;18039:82:0;;-1:-1:-1;;17740:442:0;;;;;;:::o;81411:915::-;531:6;;541:1;531:11;523:34;;;;-1:-1:-1;;;523:34:0;;14308:2:1;523:34:0;;;14290:21:1;14347:2;14327:18;;;14320:30;14386:12;14366:18;;;14359:40;14416:18;;523:34:0;14106:334:1;523:34:0;579:1;570:6;:10;81488:21:::1;36059:13:::0;-1:-1:-1;;36059:31:0;81605:9:::1;81591:10;:23;:54:::0;::::1;;;;81644:1;81635:6;:10;81591:54;:111;;;;;77291:2;81666:6;:36;;81591:111;:158;;;;;77332:4;81723:13;:26;81591:158;:215;;;;-1:-1:-1::0;77332:4:0::1;81770:22;81786:6:::0;81770:13;:22:::1;:::i;:::-;:36;;81591:215;:267;;;;-1:-1:-1::0;81841:17:0::1;81827:10;::::0;::::1;;:31;::::0;::::1;;;;;;:::i;:::-;;81591:267;81569:300;;;::::0;::::1;;81882:22;81916:16;;81907:6;:25;;;;:::i;:::-;81882:50;;81966:14;81953:9;:27;;81945:71;;;::::0;-1:-1:-1;;;81945:71:0;;15620:2:1;81945:71:0::1;::::0;::::1;15602:21:1::0;15659:2;15639:18;;;15632:30;15698:33;15678:18;;;15671:61;15749:18;;81945:71:0::1;15418:355:1::0;81945:71:0::1;82029:25;82035:10;82047:6;82029:5;:25::i;:::-;82083:14;82071:9;:26;82067:252;;;82166:14;82183:26;82195:14:::0;82183:9:::1;:26;:::i;:::-;82238:43;::::0;82166;;-1:-1:-1;82225:7:0::1;::::0;82246:10:::1;::::0;82166:43;;82225:7;82238:43;82225:7;82238:43;82166;82246:10;82238:43:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82224:57;;;82304:2;82296:11;;;::::0;::::1;;82099:220;;82067:252;-1:-1:-1::0;;616:1:0;607:6;:10;-1:-1:-1;81411:915:0:o;79691:103::-;1427:5;;-1:-1:-1;;;;;1427:5:0;1413:10;:19;1405:44;;;;-1:-1:-1;;;1405:44:0;;11288:2:1;1405:44:0;;;11270:21:1;11327:2;11307:18;;;11300:30;11366:14;11346:18;;;11339:42;11398:18;;1405:44:0;11086:336:1;1405:44:0;79767:13:::1;:19;79783:3:::0;;79767:13;:19:::1;:::i;85826:213::-:0;85973:4;-1:-1:-1;;;;;11395:18:0;;11403:10;11395:18;11391:83;;11430:32;11451:10;11430:20;:32::i;:::-;85990:41:::1;86013:4;86019:2;86023:7;85990:22;:41::i;77624:23::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;80148:328::-;1427:5;;-1:-1:-1;;;;;1427:5:0;1413:10;:19;1405:44;;;;-1:-1:-1;;;1405:44:0;;11288:2:1;1405:44:0;;;11270:21:1;11327:2;11307:18;;;11300:30;11366:14;11346:18;;;11339:42;11398:18;;1405:44:0;11086:336:1;1405:44:0;77332:4:::1;80265:14;35868:7:::0;36059:13;-1:-1:-1;;36059:31:0;;35813:296;80265:14:::1;:27;80257:51;;;::::0;-1:-1:-1;;;80257:51:0;;16469:2:1;80257:51:0::1;::::0;::::1;16451:21:1::0;16508:2;16488:18;;;16481:30;16547:13;16527:18;;;16520:41;16578:18;;80257:51:0::1;16267:335:1::0;80257:51:0::1;77332:4;80358:6;80341:14;35868:7:::0;36059:13;-1:-1:-1;;36059:31:0;;35813:296;80341:14:::1;:23;;;;:::i;:::-;:37;;80319:121;;;::::0;-1:-1:-1;;;80319:121:0;;16809:2:1;80319:121:0::1;::::0;::::1;16791:21:1::0;16848:2;16828:18;;;16821:30;16887:34;16867:18;;;16860:62;16958:4;16938:18;;;16931:32;16980:19;;80319:121:0::1;16607:398:1::0;80319:121:0::1;80451:17;80457:2;80461:6;80451:5;:17::i;79015:94::-:0;79066:4;79090:11;79098:2;79090:7;:11::i;79354:96::-;1427:5;;-1:-1:-1;;;;;1427:5:0;1413:10;:19;1405:44;;;;-1:-1:-1;;;1405:44:0;;11288:2:1;1405:44:0;;;11270:21:1;11327:2;11307:18;;;11300:30;11366:14;11346:18;;;11339:42;11398:18;;1405:44:0;11086:336:1;1405:44:0;79427:9:::1;:15;79439:3:::0;;79427:9;:15:::1;:::i;84365:154::-:0;1427:5;;-1:-1:-1;;;;;1427:5:0;1413:10;:19;1405:44;;;;-1:-1:-1;;;1405:44:0;;11288:2:1;1405:44:0;;;11270:21:1;11327:2;11307:18;;;11300:30;11366:14;11346:18;;;11339:42;11398:18;;1405:44:0;11086:336:1;1405:44:0;84426:7:::1;84447:2;-1:-1:-1::0;;;;;84439:16:0::1;84463:21;84439:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84425:64;;;84508:2;84500:11;;;::::0;::::1;78203:137:::0;1427:5;;-1:-1:-1;;;;;1427:5:0;1413:10;:19;1405:44;;;;-1:-1:-1;;;1405:44:0;;11288:2:1;1405:44:0;;;11270:21:1;11327:2;11307:18;;;11300:30;11366:14;11346:18;;;11339:42;11398:18;;1405:44:0;11086:336:1;1405:44:0;78308:10:::1;:24:::0;;;::::1;-1:-1:-1::0;;;;;78308:24:0;;;::::1;::::0;;;::::1;::::0;;78203:137::o;80037:103::-;1427:5;;-1:-1:-1;;;;;1427:5:0;1413:10;:19;1405:44;;;;-1:-1:-1;;;1405:44:0;;11288:2:1;1405:44:0;;;11270:21:1;11327:2;11307:18;;;11300:30;11366:14;11346:18;;;11339:42;11398:18;;1405:44:0;11086:336:1;1405:44:0;80109:16:::1;:23:::0;80037:103::o;41052:152::-;41124:7;41167:27;41186:7;41167:18;:27::i;36576:242::-;36648:7;-1:-1:-1;;;;;36672:19:0;;36668:69;;36693:44;36701:35;36693:7;:44::i;:::-;-1:-1:-1;;;;;;36755:25:0;;;;;:18;:25;;;;;;30735:13;36755:55;;36576:242::o;79565:118::-;1427:5;;-1:-1:-1;;;;;1427:5:0;1413:10;:19;1405:44;;;;-1:-1:-1;;;1405:44:0;;11288:2:1;1405:44:0;;;11270:21:1;11327:2;11307:18;;;11300:30;11366:14;11346:18;;;11339:42;11398:18;;1405:44:0;11086:336:1;1405:44:0;79638:24:::1;:37:::0;79565:118::o;80695:708::-;80888:23;;;-1:-1:-1;;;;;5744:55:1;;80888:23:0;;;5726:74:1;5816:18;;;5809:34;;;80846:4:0;;;;5699:18:1;;80888:23:0;;;;;;;;;;;;80878:34;;;;;;80863:49;;80930:9;80925:419;80941:16;;;80925:419;;;81045:4;81052:1;81045:8;81057:1;81045:13;81041:195;;81113:4;81119:5;;81125:1;81119:8;;;;;;;:::i;:::-;;;;;;;81096:32;;;;;;;;17356:19:1;;;17400:2;17391:12;;17384:28;17437:2;17428:12;;17199:247;81096:32:0;;;;;;;;;;;;;81086:43;;;;;;81079:50;;81041:195;;;81204:5;;81210:1;81204:8;;;;;;;:::i;:::-;;;;;;;81214:4;81187:32;;;;;;;;17356:19:1;;;17400:2;17391:12;;17384:28;17437:2;17428:12;;17199:247;81187:32:0;;;;;;;;;;;;;81177:43;;;;;;81170:50;;81041:195;81331:1;81322:10;;;;;80959:3;;;;:::i;:::-;;;;80925:419;;;-1:-1:-1;81371:24:0;;81363:32;;80695:708;-1:-1:-1;;;;;;80695:708:0:o;79458:99::-;1427:5;;-1:-1:-1;;;;;1427:5:0;1413:10;:19;1405:44;;;;-1:-1:-1;;;1405:44:0;;11288:2:1;1405:44:0;;;11270:21:1;11327:2;11307:18;;;11300:30;11366:14;11346:18;;;11339:42;11398:18;;1405:44:0;11086:336:1;1405:44:0;79530:10:::1;:19:::0;;79543:6;;79530:10;:19;::::1;::::0;79543:6;79530:19:::1;::::0;::::1;;;;;;:::i;:::-;;;;;;79458:99:::0;:::o;79802:110::-;1427:5;;-1:-1:-1;;;;;1427:5:0;1413:10;:19;1405:44;;;;-1:-1:-1;;;1405:44:0;;11288:2:1;1405:44:0;;;11270:21:1;11327:2;11307:18;;;11300:30;11366:14;11346:18;;;11339:42;11398:18;;1405:44:0;11086:336:1;1405:44:0;79884:14:::1;:20;79901:3:::0;;79884:14;:20:::1;:::i;78730:106::-:0;1427:5;;-1:-1:-1;;;;;1427:5:0;1413:10;:19;1405:44;;;;-1:-1:-1;;;1405:44:0;;11288:2:1;1405:44:0;;;11270:21:1;11327:2;11307:18;;;11300:30;11366:14;11346:18;;;11339:42;11398:18;;1405:44:0;11086:336:1;1405:44:0;78802:17:::1;:26:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;78730:106::o;39826:104::-;39882:13;39915:7;39908:14;;;;;:::i;85206:201::-;85335:8;11669:30;11690:8;11669:20;:30::i;:::-;85356:43:::1;85380:8;85390;85356:23;:43::i;79920:109::-:0;1427:5;;-1:-1:-1;;;;;1427:5:0;1413:10;:19;1405:44;;;;-1:-1:-1;;;1405:44:0;;11288:2:1;1405:44:0;;;11270:21:1;11327:2;11307:18;;;11300:30;11366:14;11346:18;;;11339:42;11398:18;;1405:44:0;11086:336:1;1405:44:0;79995:19:::1;:26:::0;79920:109::o;86047:247::-;86222:4;-1:-1:-1;;;;;11395:18:0;;11403:10;11395:18;11391:83;;11430:32;11451:10;11430:20;:32::i;:::-;86239:47:::1;86262:4;86268:2;86272:7;86281:4;86239:22;:47::i;:::-;86047:247:::0;;;;;:::o;78006:146::-;78105:10;;;;;-1:-1:-1;;;;;78105:10:0;78091;:24;78083:33;;;;;78536:186;78597:7;78617:31;78651:21;78664:7;78651:12;:21::i;:::-;78690:24;;;78683:31;;;78536:186;-1:-1:-1;;;78536:186:0:o;83744:512::-;83804:13;83838:11;83846:2;83838:7;:11::i;:::-;83830:20;;;;;;84065:13;84059:27;;;;;:::i;:::-;:32;;-1:-1:-1;84059:189:0;;84191:13;84206;84216:2;84206:9;:13::i;:::-;84174:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;84059:189;;;84111:14;84059:189;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84039:209;83744:512;-1:-1:-1;;83744:512:0:o;77892:106::-;1427:5;;-1:-1:-1;;;;;1427:5:0;1413:10;:19;1405:44;;;;-1:-1:-1;;;1405:44:0;;11288:2:1;1405:44:0;;;11270:21:1;11327:2;11307:18;;;11300:30;11366:14;11346:18;;;11339:42;11398:18;;1405:44:0;11086:336:1;1405:44:0;77966:10:::1;:24:::0;;-1:-1:-1;;;;;77966:24:0;;::::1;;;::::0;;;::::1;::::0;;;::::1;::::0;;77892:106::o;77586:31::-;;;;;;;:::i;1980:165::-;1427:5;;-1:-1:-1;;;;;1427:5:0;1413:10;:19;1405:44;;;;-1:-1:-1;;;1405:44:0;;11288:2:1;1405:44:0;;;11270:21:1;11327:2;11307:18;;;11300:30;11366:14;11346:18;;;11339:42;11398:18;;1405:44:0;11086:336:1;1405:44:0;2061:5:::1;:16:::0;;;::::1;-1:-1:-1::0;;;;;2061:16:0;::::1;::::0;;::::1;::::0;;;2095:42:::1;::::0;2116:10:::1;::::0;2095:42:::1;::::0;-1:-1:-1;;2095:42:0::1;1980:165:::0;:::o;38748:639::-;38833:4;39157:25;;;;;;:102;;-1:-1:-1;39234:25:0;;;;;39157:102;:179;;;-1:-1:-1;;39311:25:0;;;;;38748:639::o;17470:215::-;17572:4;17596:41;;;17611:26;17596:41;;:81;;-1:-1:-1;15146:25:0;15131:40;;;;17641:36;15022:157;18832:332;18548:5;18935:33;;;;;18927:88;;;;-1:-1:-1;;;18927:88:0;;19103:2:1;18927:88:0;;;19085:21:1;19142:2;19122:18;;;19115:30;19181:34;19161:18;;;19154:62;19252:12;19232:18;;;19225:40;19282:19;;18927:88:0;18901:406:1;18927:88:0;-1:-1:-1;;;;;19034:22:0;;19026:60;;;;-1:-1:-1;;;19026:60:0;;19514:2:1;19026:60:0;;;19496:21:1;19553:2;19533:18;;;19526:30;19592:27;19572:18;;;19565:55;19637:18;;19026:60:0;19312:349:1;19026:60:0;19121:35;;;;;;;;;-1:-1:-1;;;;;19121:35:0;;;;;;;;;;;;;;;;;19099:57;;;;;:19;:57;18832:332::o;48080:368::-;48145:11;48192:7;84348:1;48173:26;48169:272;;48230:13;;48220:7;:23;48216:214;;;48264:14;48297:60;-1:-1:-1;48314:26:0;;;;:17;:26;;;;;;;48304:42;;;48297:60;;48348:9;;;:::i;:::-;;;48297:60;;;31511:8;48385:24;:29;;-1:-1:-1;48216:214:0;48080:368;;;:::o;74784:165::-;74885:13;74879:4;74872:27;74926:4;74920;74913:18;11812:647;2303:42;12003:45;:49;11999:453;;12302:67;;;;;12353:4;12302:67;;;20102:34:1;-1:-1:-1;;;;;20172:15:1;;20152:18;;;20145:43;2303:42:0;;12302;;20014:18:1;;12302:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12297:144;;12397:28;;;;;-1:-1:-1;;;;;2401:55:1;;12397:28:0;;;2383:74:1;2356:18;;12397:28:0;2237:226:1;12297:144:0;11812:647;:::o;46417:124::-;46506:27;46515:2;46519:7;46528:4;46506:8;:27::i;59125:2403::-;59198:20;59221:13;;;59249;;;59245:53;;59264:34;59272:25;59264:7;:34::i;:::-;59311:61;59341:1;59345:2;59349:12;59363:8;59311:21;:61::i;:::-;59870:11;-1:-1:-1;;;;;45347:28:0;;45496:23;45492:39;;;45963:1;45950:15;;45924:24;45920:46;45489:50;45479:61;59897:31;;;;:17;:31;;;;;;;;:185;;;;-1:-1:-1;;;;;60300:22:0;;;;;:18;:22;;;;;;:71;;60338:32;60326:45;;60300:71;;;60561:13;;;60557:54;;60576:35;60584:26;60576:7;:35::i;:::-;60642:23;;;:12;60727:676;61146:7;61102:8;61057:1;60991:25;60928:1;60863;60832:358;61398:3;61385:9;;;;;;:16;60727:676;;-1:-1:-1;61419:13:0;:19;;;61460:60;;-1:-1:-1;61419:13:0;-1:-1:-1;61493:2:0;61497:12;61511:8;61460:20;:60::i;50434:3841::-;50576:27;50606;50625:7;50606:18;:27::i;:::-;-1:-1:-1;;;;;50761:22:0;;;;50576:57;;-1:-1:-1;50821:45:0;;;;50817:95;;50868:44;50876:35;50868:7;:44::i;:::-;50926:27;49542:24;;;:15;:24;;;;;49770:26;;72852:10;49167:30;;;-1:-1:-1;;;;;48860:28:0;;49145:20;;;49142:56;51112:189;;-1:-1:-1;;;;;47779:25:0;;47755:4;47779:25;;;:18;:25;;;;;;;;72852:10;47779:35;;;;;;;;;;51200:101;;51250:51;51258:42;51250:7;:51::i;:::-;51314:43;51336:4;51342:2;51346:7;51355:1;51314:21;:43::i;:::-;51450:15;51447:160;;;51590:1;51569:19;51562:30;51447:160;-1:-1:-1;;;;;51987:24:0;;;;;;;:18;:24;;;;;;51985:26;;-1:-1:-1;;51985:26:0;;;52056:22;;;;;;;;52054:24;;51985:26;52054:24;;;31394:3;52397:46;;;;52473:28;78982:17;;;;;78844:163;52473:28;52459:42;;52549:6;52546:77;;;52593:11;52579:25;;52546:77;52654:26;;;;:17;:26;;;;;31791:8;45496:23;45492:39;;;-1:-1:-1;;;;;45347:28:0;;45479:61;;;52654:188;;;52962:47;;:52;;52958:627;;53067:1;53057:11;;53035:19;53190:30;;;:17;:30;;;;;;:35;;53186:384;;53328:13;;53313:11;:28;53309:242;;53475:30;;;;:17;:30;;;;;:52;;;53309:242;53016:569;52958:627;-1:-1:-1;;;;;;;53717:20:0;;54097:7;53717:20;54027:4;53969:25;53698:16;;53834:299;54158:8;54170:1;54158:13;54154:58;;54173:39;54181:30;54173:7;:39::i;:::-;54225:42;54246:4;54252:2;54256:7;54265:1;54225:20;:42::i;:::-;50565:3710;;;;50434:3841;;;:::o;54371:193::-;54517:39;54534:4;54540:2;54544:7;54517:39;;;;;;;;;;;;:16;:39::i;42532:2012::-;42599:14;42649:7;84348:1;42630:26;42626:1853;;-1:-1:-1;42682:26:0;;;;:17;:26;;;;;;;42808:11;;;42804:1292;;42855:13;;42844:7;:24;42840:77;;42870:47;42878:38;42870:7;:47::i;:::-;43474:607;-1:-1:-1;;;43570:9:0;43552:28;;;;:17;:28;;;;;;43626:25;;43474:607;43626:25;31511:8;43678:6;:24;43706:1;43678:29;43674:48;;42532:2012;;;:::o;43674:48::-;44014:47;44022:38;44014:7;:47::i;:::-;43474:607;;42804:1292;31511:8;44423:6;:24;44451:1;44423:29;44419:48;;42532:2012;;;:::o;44419:48::-;44489:47;44497:38;44489:7;:47::i;47267:234::-;72852:10;47362:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;47362:49:0;;;;;;;;;;;;:60;;;;;;;;;;;;;47438:55;;586:41:1;;;47362:49:0;;72852:10;47438:55;;559:18:1;47438:55:0;;;;;;;47267:234;;:::o;55162:416::-;55337:31;55350:4;55356:2;55360:7;55337:12;:31::i;:::-;-1:-1:-1;;;;;55383:14:0;;;:19;55379:192;;55422:56;55453:4;55459:2;55463:7;55472:5;55422:30;:56::i;:::-;55417:154;;55499:56;55507:47;55499:7;:56::i;41393:166::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41504:47:0;41523:27;41542:7;41523:18;:27::i;:::-;-1:-1:-1;;;;;;;;;;;;;44753:41:0;;;;31394:3;44839:33;;;44805:68;;-1:-1:-1;;;44805:68:0;31511:8;44903:24;;:29;;-1:-1:-1;;;44884:48:0;;;;31915:3;44972:28;;;;-1:-1:-1;;;44943:58:0;-1:-1:-1;44643:366:0;72972:1745;73037:17;73471:4;73464;73458:11;73454:22;73563:1;73557:4;73550:15;73638:4;73635:1;73631:12;73624:19;;;73720:1;73715:3;73708:14;73824:3;74063:5;74045:428;74111:1;74106:3;74102:11;74095:18;;74282:2;74276:4;74272:13;74268:2;74264:22;74259:3;74251:36;74376:2;74366:13;;74433:25;74045:428;74433:25;-1:-1:-1;74503:13:0;;;74618:14;;;;74680:19;;;74618:14;72972:1745;-1:-1:-1;72972:1745:0:o;66117:474::-;66246:13;66262:16;66270:7;66262;:16::i;:::-;66246:32;;66295:13;:45;;;;-1:-1:-1;72852:10:0;-1:-1:-1;;;;;66312:28:0;;;;66295:45;66291:201;;;-1:-1:-1;;;;;47779:25:0;;47755:4;47779:25;;;:18;:25;;;;;;;;72852:10;47779:35;;;;;;;;;;66355:137;;66425:51;66433:42;66425:7;:51::i;:::-;66504:24;;;;:15;:24;;;;;;:35;;;;-1:-1:-1;;;;;66504:35:0;;;;;;;;;66555:28;;66504:24;;66555:28;;;;;;;66235:356;66117:474;;;:::o;84527:300::-;84708:10;;-1:-1:-1;;;;;84708:10:0;84700:33;84696:124;;84750:10;;:58;;;;;-1:-1:-1;;;;;20759:15:1;;;84750:58:0;;;20741:34:1;20811:15;;;20791:18;;;20784:43;20843:18;;;20836:34;;;20886:18;;;20879:34;;;84750:10:0;;;;:24;;20652:19:1;;84750:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84527:300;;;;:::o;84835:::-;85015:10;;-1:-1:-1;;;;;85015:10:0;85007:33;85003:125;;85057:10;;:59;;;;;-1:-1:-1;;;;;20759:15:1;;;85057:59:0;;;20741:34:1;20811:15;;;20791:18;;;20784:43;20843:18;;;20836:34;;;20886:18;;;20879:34;;;85057:10:0;;;;:25;;20652:19:1;;85057:59:0;20449:470:1;57662:691:0;57846:88;;;;;57825:4;;-1:-1:-1;;;;;57846:45:0;;;;;:88;;72852:10;;57913:4;;57919:7;;57928:5;;57846:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57846:88:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;57842:504;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58129:6;:13;58146:1;58129:18;58125:115;;58168:56;58176:47;58168:7;:56::i;:::-;58312:6;58306:13;58297:6;58293:2;58289:15;58282:38;57842:504;58005:64;;58015:54;58005:64;;-1:-1:-1;57662:691:0;;;;;;:::o;14:177:1:-;99:66;92:5;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;:::-;430:5;196:245;-1:-1:-1;;;196:245:1:o;638:154::-;-1:-1:-1;;;;;717:5:1;713:54;706:5;703:65;693:93;;782:1;779;772:12;797:435;864:6;872;925:2;913:9;904:7;900:23;896:32;893:52;;;941:1;938;931:12;893:52;980:9;967:23;999:31;1024:5;999:31;:::i;:::-;1049:5;-1:-1:-1;1106:2:1;1091:18;;1078:32;1154:26;1141:40;;1129:53;;1119:81;;1196:1;1193;1186:12;1119:81;1219:7;1209:17;;;797:435;;;;;:::o;1237:250::-;1322:1;1332:113;1346:6;1343:1;1340:13;1332:113;;;1422:11;;;1416:18;1403:11;;;1396:39;1368:2;1361:10;1332:113;;;-1:-1:-1;;1479:1:1;1461:16;;1454:27;1237:250::o;1492:330::-;1534:3;1572:5;1566:12;1599:6;1594:3;1587:19;1615:76;1684:6;1677:4;1672:3;1668:14;1661:4;1654:5;1650:16;1615:76;:::i;:::-;1736:2;1724:15;1741:66;1720:88;1711:98;;;;1811:4;1707:109;;1492:330;-1:-1:-1;;1492:330:1:o;1827:220::-;1976:2;1965:9;1958:21;1939:4;1996:45;2037:2;2026:9;2022:18;2014:6;1996:45;:::i;2052:180::-;2111:6;2164:2;2152:9;2143:7;2139:23;2135:32;2132:52;;;2180:1;2177;2170:12;2132:52;-1:-1:-1;2203:23:1;;2052:180;-1:-1:-1;2052:180:1:o;2468:315::-;2536:6;2544;2597:2;2585:9;2576:7;2572:23;2568:32;2565:52;;;2613:1;2610;2603:12;2565:52;2652:9;2639:23;2671:31;2696:5;2671:31;:::i;:::-;2721:5;2773:2;2758:18;;;;2745:32;;-1:-1:-1;;;2468:315:1:o;2970:592::-;3041:6;3049;3102:2;3090:9;3081:7;3077:23;3073:32;3070:52;;;3118:1;3115;3108:12;3070:52;3158:9;3145:23;3187:18;3228:2;3220:6;3217:14;3214:34;;;3244:1;3241;3234:12;3214:34;3282:6;3271:9;3267:22;3257:32;;3327:7;3320:4;3316:2;3312:13;3308:27;3298:55;;3349:1;3346;3339:12;3298:55;3389:2;3376:16;3415:2;3407:6;3404:14;3401:34;;;3431:1;3428;3421:12;3401:34;3476:7;3471:2;3462:6;3458:2;3454:15;3450:24;3447:37;3444:57;;;3497:1;3494;3487:12;3444:57;3528:2;3520:11;;;;;3550:6;;-1:-1:-1;2970:592:1;;-1:-1:-1;;;;2970:592:1:o;3567:367::-;3630:8;3640:6;3694:3;3687:4;3679:6;3675:17;3671:27;3661:55;;3712:1;3709;3702:12;3661:55;-1:-1:-1;3735:20:1;;3778:18;3767:30;;3764:50;;;3810:1;3807;3800:12;3764:50;3847:4;3839:6;3835:17;3823:29;;3907:3;3900:4;3890:6;3887:1;3883:14;3875:6;3871:27;3867:38;3864:47;3861:67;;;3924:1;3921;3914:12;3939:642;4052:6;4060;4068;4076;4084;4137:3;4125:9;4116:7;4112:23;4108:33;4105:53;;;4154:1;4151;4144:12;4105:53;4190:9;4177:23;4167:33;;4247:2;4236:9;4232:18;4219:32;4209:42;;4302:2;4291:9;4287:18;4274:32;4329:18;4321:6;4318:30;4315:50;;;4361:1;4358;4351:12;4315:50;4400:70;4462:7;4453:6;4442:9;4438:22;4400:70;:::i;:::-;3939:642;;;;-1:-1:-1;4489:8:1;4571:2;4556:18;4543:32;;3939:642;-1:-1:-1;;;;3939:642:1:o;4586:247::-;4645:6;4698:2;4686:9;4677:7;4673:23;4669:32;4666:52;;;4714:1;4711;4704:12;4666:52;4753:9;4740:23;4772:31;4797:5;4772:31;:::i;4838:456::-;4915:6;4923;4931;4984:2;4972:9;4963:7;4959:23;4955:32;4952:52;;;5000:1;4997;4990:12;4952:52;5039:9;5026:23;5058:31;5083:5;5058:31;:::i;:::-;5108:5;-1:-1:-1;5165:2:1;5150:18;;5137:32;5178:33;5137:32;5178:33;:::i;:::-;4838:456;;5230:7;;-1:-1:-1;;;5284:2:1;5269:18;;;;5256:32;;4838:456::o;5299:248::-;5367:6;5375;5428:2;5416:9;5407:7;5403:23;5399:32;5396:52;;;5444:1;5441;5434:12;5396:52;-1:-1:-1;;5467:23:1;;;5537:2;5522:18;;;5509:32;;-1:-1:-1;5299:248:1:o;6578:709::-;6691:6;6699;6707;6715;6723;6776:3;6764:9;6755:7;6751:23;6747:33;6744:53;;;6793:1;6790;6783:12;6744:53;6832:9;6819:23;6851:31;6876:5;6851:31;:::i;:::-;6901:5;-1:-1:-1;6953:2:1;6938:18;;6925:32;;-1:-1:-1;7008:2:1;6993:18;;6980:32;7035:18;7024:30;;7021:50;;;7067:1;7064;7057:12;7292:271;7366:6;7419:2;7407:9;7398:7;7394:23;7390:32;7387:52;;;7435:1;7432;7425:12;7387:52;7474:9;7461:23;7513:1;7506:5;7503:12;7493:40;;7529:1;7526;7519:12;7568:118;7654:5;7647:13;7640:21;7633:5;7630:32;7620:60;;7676:1;7673;7666:12;7691:241;7747:6;7800:2;7788:9;7779:7;7775:23;7771:32;7768:52;;;7816:1;7813;7806:12;7768:52;7855:9;7842:23;7874:28;7896:5;7874:28;:::i;7937:184::-;7989:77;7986:1;7979:88;8086:4;8083:1;8076:15;8110:4;8107:1;8100:15;8126:400;8273:2;8258:18;;8306:1;8295:13;;8285:201;;8342:77;8339:1;8332:88;8443:4;8440:1;8433:15;8471:4;8468:1;8461:15;8285:201;8495:25;;;8126:400;:::o;8531:382::-;8596:6;8604;8657:2;8645:9;8636:7;8632:23;8628:32;8625:52;;;8673:1;8670;8663:12;8625:52;8712:9;8699:23;8731:31;8756:5;8731:31;:::i;:::-;8781:5;-1:-1:-1;8838:2:1;8823:18;;8810:32;8851:30;8810:32;8851:30;:::i;8918:184::-;8970:77;8967:1;8960:88;9067:4;9064:1;9057:15;9091:4;9088:1;9081:15;9107:1325;9202:6;9210;9218;9226;9279:3;9267:9;9258:7;9254:23;9250:33;9247:53;;;9296:1;9293;9286:12;9247:53;9335:9;9322:23;9354:31;9379:5;9354:31;:::i;:::-;9404:5;-1:-1:-1;9461:2:1;9446:18;;9433:32;9474:33;9433:32;9474:33;:::i;:::-;9526:7;-1:-1:-1;9580:2:1;9565:18;;9552:32;;-1:-1:-1;9635:2:1;9620:18;;9607:32;9658:18;9688:14;;;9685:34;;;9715:1;9712;9705:12;9685:34;9753:6;9742:9;9738:22;9728:32;;9798:7;9791:4;9787:2;9783:13;9779:27;9769:55;;9820:1;9817;9810:12;9769:55;9856:2;9843:16;9878:2;9874;9871:10;9868:36;;;9884:18;;:::i;:::-;10018:2;10012:9;10080:4;10072:13;;9923:66;10068:22;;;10092:2;10064:31;10060:40;10048:53;;;10116:18;;;10136:22;;;10113:46;10110:72;;;10162:18;;:::i;:::-;10202:10;10198:2;10191:22;10237:2;10229:6;10222:18;10277:7;10272:2;10267;10263;10259:11;10255:20;10252:33;10249:53;;;10298:1;10295;10288:12;10249:53;10354:2;10349;10345;10341:11;10336:2;10328:6;10324:15;10311:46;10399:1;10394:2;10389;10381:6;10377:15;10373:24;10366:35;10420:6;10410:16;;;;;;;9107:1325;;;;;;;:::o;10437:388::-;10505:6;10513;10566:2;10554:9;10545:7;10541:23;10537:32;10534:52;;;10582:1;10579;10572:12;10534:52;10621:9;10608:23;10640:31;10665:5;10640:31;:::i;:::-;10690:5;-1:-1:-1;10747:2:1;10732:18;;10719:32;10760:33;10719:32;10760:33;:::i;11427:437::-;11506:1;11502:12;;;;11549;;;11570:61;;11624:4;11616:6;11612:17;11602:27;;11570:61;11677:2;11669:6;11666:14;11646:18;11643:38;11640:218;;11714:77;11711:1;11704:88;11815:4;11812:1;11805:15;11843:4;11840:1;11833:15;11640:218;;11427:437;;;:::o;11995:545::-;12097:2;12092:3;12089:11;12086:448;;;12133:1;12158:5;12154:2;12147:17;12203:4;12199:2;12189:19;12273:2;12261:10;12257:19;12254:1;12250:27;12244:4;12240:38;12309:4;12297:10;12294:20;12291:47;;;-1:-1:-1;12332:4:1;12291:47;12387:2;12382:3;12378:12;12375:1;12371:20;12365:4;12361:31;12351:41;;12442:82;12460:2;12453:5;12450:13;12442:82;;;12505:17;;;12486:1;12475:13;12442:82;;;12446:3;;;11995:545;;;:::o;12776:1325::-;12900:18;12895:3;12892:27;12889:53;;;12922:18;;:::i;:::-;12951:94;13041:3;13001:38;13033:4;13027:11;13001:38;:::i;:::-;12995:4;12951:94;:::i;:::-;13071:1;13096:2;13091:3;13088:11;13113:1;13108:735;;;;13887:1;13904:3;13901:93;;;-1:-1:-1;13960:19:1;;;13947:33;13901:93;-1:-1:-1;;12673:1:1;12669:11;;;12665:84;12661:89;12651:100;12757:1;12753:11;;;12648:117;14007:78;;13081:1014;;13108:735;11942:1;11935:14;;;11979:4;11966:18;;13153:66;13144:76;;;13304:9;13326:229;13340:7;13337:1;13334:14;13326:229;;;13429:19;;;13416:33;13401:49;;13536:4;13521:20;;;;13489:1;13477:14;;;;13356:12;13326:229;;;13330:3;13583;13574:7;13571:16;13568:219;;;-1:-1:-1;;13697:3:1;13691;13688:1;13684:11;13680:21;13676:94;13672:99;13659:9;13654:3;13650:19;13637:33;13633:139;13625:6;13618:155;13568:219;;;13830:1;13824:3;13821:1;13817:11;13813:19;13807:4;13800:33;13081:1014;;12776:1325;;;:::o;14445:184::-;14497:77;14494:1;14487:88;14594:4;14591:1;14584:15;14618:4;14615:1;14608:15;14634:125;14699:9;;;14720:10;;;14717:36;;;14733:18;;:::i;15112:128::-;15179:9;;;15200:11;;;15197:37;;;15214:18;;:::i;15245:168::-;15318:9;;;15349;;15366:15;;;15360:22;;15346:37;15336:71;;15387:18;;:::i;15988:274::-;16028:1;16054;16044:189;;16089:77;16086:1;16079:88;16190:4;16187:1;16180:15;16218:4;16215:1;16208:15;16044:189;-1:-1:-1;16247:9:1;;15988:274::o;17010:184::-;17062:77;17059:1;17052:88;17159:4;17156:1;17149:15;17183:4;17180:1;17173:15;17451:195;17490:3;-1:-1:-1;;17514:5:1;17511:77;17508:103;;17591:18;;:::i;:::-;-1:-1:-1;17638:1:1;17627:13;;17451:195::o;17651:1245::-;17928:3;17957:1;17990:6;17984:13;18020:36;18046:9;18020:36;:::i;:::-;18075:1;18092:18;;;18119:191;;;;18324:1;18319:356;;;;18085:590;;18119:191;18167:66;18156:9;18152:82;18147:3;18140:95;18290:6;18283:14;18276:22;18268:6;18264:35;18259:3;18255:45;18248:52;;18119:191;;18319:356;18350:6;18347:1;18340:17;18380:4;18425:2;18422:1;18412:16;18450:1;18464:165;18478:6;18475:1;18472:13;18464:165;;;18556:14;;18543:11;;;18536:35;18599:16;;;;18493:10;;18464:165;;;18468:3;;;18658:6;18653:3;18649:16;18642:23;;18085:590;;;;;18706:6;18700:13;18722:68;18781:8;18776:3;18769:4;18761:6;18757:17;18722:68;:::i;:::-;18853:7;18812:18;;18839:22;;;18888:1;18877:13;;17651:1245;-1:-1:-1;;;;17651:1245:1:o;19666:196::-;19705:3;19733:5;19723:39;;19742:18;;:::i;:::-;-1:-1:-1;;;19778:78:1;;19666:196::o;20199:245::-;20266:6;20319:2;20307:9;20298:7;20294:23;20290:32;20287:52;;;20335:1;20332;20325:12;20287:52;20367:9;20361:16;20386:28;20408:5;20386:28;:::i;20924:512::-;21118:4;-1:-1:-1;;;;;21228:2:1;21220:6;21216:15;21205:9;21198:34;21280:2;21272:6;21268:15;21263:2;21252:9;21248:18;21241:43;;21320:6;21315:2;21304:9;21300:18;21293:34;21363:3;21358:2;21347:9;21343:18;21336:31;21384:46;21425:3;21414:9;21410:19;21402:6;21384:46;:::i;:::-;21376:54;20924:512;-1:-1:-1;;;;;;20924:512:1:o;21441:249::-;21510:6;21563:2;21551:9;21542:7;21538:23;21534:32;21531:52;;;21579:1;21576;21569:12;21531:52;21611:9;21605:16;21630:30;21654:5;21630:30;:::i

Swarm Source

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