ETH Price: $3,358.60 (-2.77%)
Gas: 3 Gwei

EmoGrunks (EG)
 

Overview

TokenID

1865

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

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:
EmoGrunks

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-08
*/

// File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/main/src/lib/Constants.sol


pragma solidity ^0.8.13;

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

// File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/main/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: https://github.com/ProjectOpenSea/operator-filter-registry/blob/main/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: https://github.com/ProjectOpenSea/operator-filter-registry/blob/main/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/utils/math/SafeMath.sol



pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/utils/Context.sol



pragma solidity ^0.8.0;

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: https://github.com/chiru-labs/ERC721A/blob/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://github.com/chiru-labs/ERC721A/blob/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, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

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

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

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account. 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`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

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

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

    // =============================================================
    //                        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`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _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`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

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

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

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

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        _revert(TransferToNonERC721ReceiverImplementer.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`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

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

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

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

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

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) _revert(OwnershipNotInitializedForExtraData.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/EmoGrunks.sol







pragma solidity ^0.8.18;

contract EmoGrunks is ERC721A, Ownable, DefaultOperatorFilterer {
    using SafeMath for uint256;
    uint256 public maxPerTransaction = 20;
    uint256 public supplyLimit = 10131;
    bool public publicSaleActive = false;
    string public baseURI;

    constructor(
        string memory name,
        string memory symbol,
        string memory baseURIinput
    ) ERC721A(name, symbol) {
        baseURI = baseURIinput;
    }

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

    function setBaseURI(string calldata newBaseUri) external onlyOwner {
        baseURI = newBaseUri;
    }

    function togglePublicSaleActive() external onlyOwner {
        publicSaleActive = !publicSaleActive;
    }

    function mint(uint256 _quantity) external {
        require(
            _quantity <= maxPerTransaction,
            "Over max per transaction! Limit is 20 per transaction."
        );
        require(publicSaleActive == true, "Not Yet Active.");
        require((totalSupply() + _quantity) <= supplyLimit, "Supply reached");
        _safeMint(msg.sender, _quantity);
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseURIinput","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"togglePublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526014600955612793600a556000600b60006101000a81548160ff0219169083151502179055503480156200003757600080fd5b50604051620036383803806200363883398181016040528101906200005d91906200054a565b733cc6cdda760b79bafa08df41ecfa224f810dceb66001848481600290816200008791906200084e565b5080600390816200009991906200084e565b50620000aa620002e460201b60201c565b6000819055505050620000d2620000c6620002e960201b60201c565b620002f160201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620002c75780156200018d576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001539291906200097a565b600060405180830381600087803b1580156200016e57600080fd5b505af115801562000183573d6000803e3d6000fd5b50505050620002c6565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000247576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200020d9291906200097a565b600060405180830381600087803b1580156200022857600080fd5b505af11580156200023d573d6000803e3d6000fd5b50505050620002c5565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002909190620009a7565b600060405180830381600087803b158015620002ab57600080fd5b505af1158015620002c0573d6000803e3d6000fd5b505050505b5b5b505080600c9081620002da91906200084e565b50505050620009c4565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200042082620003d5565b810181811067ffffffffffffffff82111715620004425762000441620003e6565b5b80604052505050565b600062000457620003b7565b905062000465828262000415565b919050565b600067ffffffffffffffff821115620004885762000487620003e6565b5b6200049382620003d5565b9050602081019050919050565b60005b83811015620004c0578082015181840152602081019050620004a3565b60008484015250505050565b6000620004e3620004dd846200046a565b6200044b565b905082815260208101848484011115620005025762000501620003d0565b5b6200050f848285620004a0565b509392505050565b600082601f8301126200052f576200052e620003cb565b5b815162000541848260208601620004cc565b91505092915050565b600080600060608486031215620005665762000565620003c1565b5b600084015167ffffffffffffffff811115620005875762000586620003c6565b5b620005958682870162000517565b935050602084015167ffffffffffffffff811115620005b957620005b8620003c6565b5b620005c78682870162000517565b925050604084015167ffffffffffffffff811115620005eb57620005ea620003c6565b5b620005f98682870162000517565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200065657607f821691505b6020821081036200066c576200066b6200060e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006d67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000697565b620006e2868362000697565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200072f620007296200072384620006fa565b62000704565b620006fa565b9050919050565b6000819050919050565b6200074b836200070e565b620007636200075a8262000736565b848454620006a4565b825550505050565b600090565b6200077a6200076b565b6200078781848462000740565b505050565b5b81811015620007af57620007a360008262000770565b6001810190506200078d565b5050565b601f821115620007fe57620007c88162000672565b620007d38462000687565b81016020851015620007e3578190505b620007fb620007f28562000687565b8301826200078c565b50505b505050565b600082821c905092915050565b6000620008236000198460080262000803565b1980831691505092915050565b60006200083e838362000810565b9150826002028217905092915050565b620008598262000603565b67ffffffffffffffff811115620008755762000874620003e6565b5b6200088182546200063d565b6200088e828285620007b3565b600060209050601f831160018114620008c65760008415620008b1578287015190505b620008bd858262000830565b8655506200092d565b601f198416620008d68662000672565b60005b828110156200090057848901518255600182019150602085019450602081019050620008d9565b868310156200092057848901516200091c601f89168262000810565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620009628262000935565b9050919050565b620009748162000955565b82525050565b600060408201905062000991600083018562000969565b620009a0602083018462000969565b9392505050565b6000602082019050620009be600083018462000969565b92915050565b612c6480620009d46000396000f3fe6080604052600436106101815760003560e01c80636352211e116100d1578063a0712d681161008a578063bc8893b411610064578063bc8893b414610502578063c87b56dd1461052d578063e985e9c51461056a578063f2fde38b146105a757610181565b8063a0712d6814610494578063a22cb465146104bd578063b88d4fde146104e657610181565b80636352211e146103825780636c0360eb146103bf57806370a08231146103ea578063715018a6146104275780638da5cb5b1461043e57806395d89b411461046957610181565b806319d1997a1161013e57806341f434341161011857806341f43434146102e757806342842e0e146103125780634b980d671461032e57806355f804b31461035957610181565b806319d1997a1461028957806323b872dd146102b45780633ccfd60b146102d057610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b5780630c894cfe1461024757806318160ddd1461025e575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190611e3a565b6105d0565b6040516101ba9190611e82565b60405180910390f35b3480156101cf57600080fd5b506101d8610662565b6040516101e59190611f2d565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190611f85565b6106f4565b6040516102229190611ff3565b60405180910390f35b6102456004803603810190610240919061203a565b610752565b005b34801561025357600080fd5b5061025c610762565b005b34801561026a57600080fd5b5061027361080a565b6040516102809190612089565b60405180910390f35b34801561029557600080fd5b5061029e610821565b6040516102ab9190612089565b60405180910390f35b6102ce60048036038101906102c991906120a4565b610827565b005b3480156102dc57600080fd5b506102e5610876565b005b3480156102f357600080fd5b506102fc610941565b6040516103099190612156565b60405180910390f35b61032c600480360381019061032791906120a4565b610953565b005b34801561033a57600080fd5b506103436109a2565b6040516103509190612089565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b91906121d6565b6109a8565b005b34801561038e57600080fd5b506103a960048036038101906103a49190611f85565b610a3a565b6040516103b69190611ff3565b60405180910390f35b3480156103cb57600080fd5b506103d4610a4c565b6040516103e19190611f2d565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c9190612223565b610ada565b60405161041e9190612089565b60405180910390f35b34801561043357600080fd5b5061043c610b71565b005b34801561044a57600080fd5b50610453610bf9565b6040516104609190611ff3565b60405180910390f35b34801561047557600080fd5b5061047e610c23565b60405161048b9190611f2d565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b69190611f85565b610cb5565b005b3480156104c957600080fd5b506104e460048036038101906104df919061227c565b610db4565b005b61050060048036038101906104fb91906123ec565b610ebf565b005b34801561050e57600080fd5b50610517610f10565b6040516105249190611e82565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f9190611f85565b610f23565b6040516105619190611f2d565b60405180910390f35b34801561057657600080fd5b50610591600480360381019061058c919061246f565b610fa0565b60405161059e9190611e82565b60405180910390f35b3480156105b357600080fd5b506105ce60048036038101906105c99190612223565b611034565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061062b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061065b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610671906124de565b80601f016020809104026020016040519081016040528092919081815260200182805461069d906124de565b80156106ea5780601f106106bf576101008083540402835291602001916106ea565b820191906000526020600020905b8154815290600101906020018083116106cd57829003601f168201915b5050505050905090565b60006106ff8261112b565b6107145761071363cf4700e460e01b6111a4565b5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61075e828260016111ae565b5050565b61076a6112dd565b73ffffffffffffffffffffffffffffffffffffffff16610788610bf9565b73ffffffffffffffffffffffffffffffffffffffff16146107de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d59061255b565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b60006108146112e5565b6001546000540303905090565b600a5481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461086557610864336112ea565b5b6108708484846113e7565b50505050565b61087e6112dd565b73ffffffffffffffffffffffffffffffffffffffff1661089c610bf9565b73ffffffffffffffffffffffffffffffffffffffff16146108f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e99061255b565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561093d573d6000803e3d6000fd5b5050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461099157610990336112ea565b5b61099c8484846116a8565b50505050565b60095481565b6109b06112dd565b73ffffffffffffffffffffffffffffffffffffffff166109ce610bf9565b73ffffffffffffffffffffffffffffffffffffffff1614610a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1b9061255b565b60405180910390fd5b8181600c9182610a35929190612728565b505050565b6000610a45826116c8565b9050919050565b600c8054610a59906124de565b80601f0160208091040260200160405190810160405280929190818152602001828054610a85906124de565b8015610ad25780601f10610aa757610100808354040283529160200191610ad2565b820191906000526020600020905b815481529060010190602001808311610ab557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b2057610b1f638f4eb60460e01b6111a4565b5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610b796112dd565b73ffffffffffffffffffffffffffffffffffffffff16610b97610bf9565b73ffffffffffffffffffffffffffffffffffffffff1614610bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be49061255b565b60405180910390fd5b610bf760006117b4565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610c32906124de565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5e906124de565b8015610cab5780601f10610c8057610100808354040283529160200191610cab565b820191906000526020600020905b815481529060010190602001808311610c8e57829003601f168201915b5050505050905090565b600954811115610cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf19061286a565b60405180910390fd5b60011515600b60009054906101000a900460ff16151514610d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d47906128d6565b60405180910390fd5b600a5481610d5c61080a565b610d669190612925565b1115610da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9e906129a5565b60405180910390fd5b610db1338261187a565b50565b8060076000610dc1611898565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e6e611898565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610eb39190611e82565b60405180910390a35050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610efd57610efc336112ea565b5b610f09858585856118a0565b5050505050565b600b60009054906101000a900460ff1681565b6060610f2e8261112b565b610f4357610f4263a14c4b5060e01b6111a4565b5b6000610f4d6118f2565b90506000815103610f6d5760405180602001604052806000815250610f98565b80610f7784611984565b604051602001610f88929190612a01565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61103c6112dd565b73ffffffffffffffffffffffffffffffffffffffff1661105a610bf9565b73ffffffffffffffffffffffffffffffffffffffff16146110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a79061255b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361111f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111690612a97565b60405180910390fd5b611128816117b4565b50565b6000816111366112e5565b1161119f5760005482101561119e5760005b6000600460008581526020019081526020016000205491508103611177578261117090612ab7565b9250611148565b60007c01000000000000000000000000000000000000000000000000000000008216149150505b5b919050565b8060005260046000fd5b60006111b983610a3a565b90508180156111fb57508073ffffffffffffffffffffffffffffffffffffffff166111e2611898565b73ffffffffffffffffffffffffffffffffffffffff1614155b15611227576112118161120c611898565b610fa0565b6112265761122563cfb3b94260e01b6111a4565b5b5b836006600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b600033905090565b600090565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156113e4576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611361929190612ae0565b602060405180830381865afa15801561137e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113a29190612b1e565b6113e357806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016113da9190611ff3565b60405180910390fd5b5b50565b60006113f2826116c8565b905073ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff161693508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146114675761146663a114810060e01b6111a4565b5b600080611473846119d4565b915091506114898187611484611898565b6119fb565b6114b45761149e86611499611898565b610fa0565b6114b3576114b26359c896be60e01b6111a4565b5b5b6114c18686866001611a3f565b80156114cc57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061159a85611576888887611a45565b7c020000000000000000000000000000000000000000000000000000000017611a6d565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611620576000600185019050600060046000838152602001908152602001600020540361161e57600054811461161d578360046000838152602001908152602001600020819055505b5b505b600073ffffffffffffffffffffffffffffffffffffffff8673ffffffffffffffffffffffffffffffffffffffff161690508481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600081036116925761169163ea553b3460e01b6111a4565b5b61169f8787876001611a98565b50505050505050565b6116c383838360405180602001604052806000815250610ebf565b505050565b6000816116d36112e5565b1161179e5760046000838152602001908152602001600020549050600081036117755760005482106117105761170f63df2d9b4260e01b6111a4565b5b5b600460008360019003935083815260200190815260200160002054905060008103156117705760007c0100000000000000000000000000000000000000000000000000000000821603156117af5761176f63df2d9b4260e01b6111a4565b5b611711565b60007c0100000000000000000000000000000000000000000000000000000000821603156117af575b6117ae63df2d9b4260e01b6111a4565b5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611894828260405180602001604052806000815250611a9e565b5050565b600033905090565b6118ab848484610827565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118ec576118d684848484611b23565b6118eb576118ea63d1a57ed660e01b6111a4565b5b5b50505050565b6060600c8054611901906124de565b80601f016020809104026020016040519081016040528092919081815260200182805461192d906124de565b801561197a5780601f1061194f5761010080835404028352916020019161197a565b820191906000526020600020905b81548152906001019060200180831161195d57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b6001156119bf57600184039350600a81066030018453600a810490508061199d575b50828103602084039350808452505050919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611a5c868684611c52565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611aa88383611c5b565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b1e57600080549050600083820390505b611ae86000868380600101945086611b23565b611afd57611afc63d1a57ed660e01b6111a4565b5b818110611ad5578160005414611b1b57611b1a600060e01b6111a4565b5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b49611898565b8786866040518563ffffffff1660e01b8152600401611b6b9493929190612ba0565b6020604051808303816000875af1925050508015611ba757506040513d601f19601f82011682018060405250810190611ba49190612c01565b60015b611bff573d8060008114611bd7576040519150601f19603f3d011682016040523d82523d6000602084013e611bdc565b606091505b506000815103611bf757611bf663d1a57ed660e01b6111a4565b5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203611c7a57611c7963b562e8dd60e01b6111a4565b5b611c876000848385611a3f565b611ca783611c986000866000611a45565b611ca185611dbe565b17611a6d565b6004600083815260200190815260200160002081905550600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600073ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff1616905060008103611d5f57611d5e632e07630060e01b6111a4565b5b6000838301905060008390505b808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4818160010191508103611d6c5781600081905550505050611db96000848385611a98565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611e1781611de2565b8114611e2257600080fd5b50565b600081359050611e3481611e0e565b92915050565b600060208284031215611e5057611e4f611dd8565b5b6000611e5e84828501611e25565b91505092915050565b60008115159050919050565b611e7c81611e67565b82525050565b6000602082019050611e976000830184611e73565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611ed7578082015181840152602081019050611ebc565b60008484015250505050565b6000601f19601f8301169050919050565b6000611eff82611e9d565b611f098185611ea8565b9350611f19818560208601611eb9565b611f2281611ee3565b840191505092915050565b60006020820190508181036000830152611f478184611ef4565b905092915050565b6000819050919050565b611f6281611f4f565b8114611f6d57600080fd5b50565b600081359050611f7f81611f59565b92915050565b600060208284031215611f9b57611f9a611dd8565b5b6000611fa984828501611f70565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611fdd82611fb2565b9050919050565b611fed81611fd2565b82525050565b60006020820190506120086000830184611fe4565b92915050565b61201781611fd2565b811461202257600080fd5b50565b6000813590506120348161200e565b92915050565b6000806040838503121561205157612050611dd8565b5b600061205f85828601612025565b925050602061207085828601611f70565b9150509250929050565b61208381611f4f565b82525050565b600060208201905061209e600083018461207a565b92915050565b6000806000606084860312156120bd576120bc611dd8565b5b60006120cb86828701612025565b93505060206120dc86828701612025565b92505060406120ed86828701611f70565b9150509250925092565b6000819050919050565b600061211c61211761211284611fb2565b6120f7565b611fb2565b9050919050565b600061212e82612101565b9050919050565b600061214082612123565b9050919050565b61215081612135565b82525050565b600060208201905061216b6000830184612147565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261219657612195612171565b5b8235905067ffffffffffffffff8111156121b3576121b2612176565b5b6020830191508360018202830111156121cf576121ce61217b565b5b9250929050565b600080602083850312156121ed576121ec611dd8565b5b600083013567ffffffffffffffff81111561220b5761220a611ddd565b5b61221785828601612180565b92509250509250929050565b60006020828403121561223957612238611dd8565b5b600061224784828501612025565b91505092915050565b61225981611e67565b811461226457600080fd5b50565b60008135905061227681612250565b92915050565b6000806040838503121561229357612292611dd8565b5b60006122a185828601612025565b92505060206122b285828601612267565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6122f982611ee3565b810181811067ffffffffffffffff82111715612318576123176122c1565b5b80604052505050565b600061232b611dce565b905061233782826122f0565b919050565b600067ffffffffffffffff821115612357576123566122c1565b5b61236082611ee3565b9050602081019050919050565b82818337600083830152505050565b600061238f61238a8461233c565b612321565b9050828152602081018484840111156123ab576123aa6122bc565b5b6123b684828561236d565b509392505050565b600082601f8301126123d3576123d2612171565b5b81356123e384826020860161237c565b91505092915050565b6000806000806080858703121561240657612405611dd8565b5b600061241487828801612025565b945050602061242587828801612025565b935050604061243687828801611f70565b925050606085013567ffffffffffffffff81111561245757612456611ddd565b5b612463878288016123be565b91505092959194509250565b6000806040838503121561248657612485611dd8565b5b600061249485828601612025565b92505060206124a585828601612025565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806124f657607f821691505b602082108103612509576125086124af565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612545602083611ea8565b91506125508261250f565b602082019050919050565b6000602082019050818103600083015261257481612538565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026125e87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826125ab565b6125f286836125ab565b95508019841693508086168417925050509392505050565b600061262561262061261b84611f4f565b6120f7565b611f4f565b9050919050565b6000819050919050565b61263f8361260a565b61265361264b8261262c565b8484546125b8565b825550505050565b600090565b61266861265b565b612673818484612636565b505050565b5b818110156126975761268c600082612660565b600181019050612679565b5050565b601f8211156126dc576126ad81612586565b6126b68461259b565b810160208510156126c5578190505b6126d96126d18561259b565b830182612678565b50505b505050565b600082821c905092915050565b60006126ff600019846008026126e1565b1980831691505092915050565b600061271883836126ee565b9150826002028217905092915050565b612732838361257b565b67ffffffffffffffff81111561274b5761274a6122c1565b5b61275582546124de565b61276082828561269b565b6000601f83116001811461278f576000841561277d578287013590505b612787858261270c565b8655506127ef565b601f19841661279d86612586565b60005b828110156127c5578489013582556001820191506020850194506020810190506127a0565b868310156127e257848901356127de601f8916826126ee565b8355505b6001600288020188555050505b50505050505050565b7f4f766572206d617820706572207472616e73616374696f6e21204c696d69742060008201527f697320323020706572207472616e73616374696f6e2e00000000000000000000602082015250565b6000612854603683611ea8565b915061285f826127f8565b604082019050919050565b6000602082019050818103600083015261288381612847565b9050919050565b7f4e6f7420596574204163746976652e0000000000000000000000000000000000600082015250565b60006128c0600f83611ea8565b91506128cb8261288a565b602082019050919050565b600060208201905081810360008301526128ef816128b3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061293082611f4f565b915061293b83611f4f565b9250828201905080821115612953576129526128f6565b5b92915050565b7f537570706c792072656163686564000000000000000000000000000000000000600082015250565b600061298f600e83611ea8565b915061299a82612959565b602082019050919050565b600060208201905081810360008301526129be81612982565b9050919050565b600081905092915050565b60006129db82611e9d565b6129e581856129c5565b93506129f5818560208601611eb9565b80840191505092915050565b6000612a0d82856129d0565b9150612a1982846129d0565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612a81602683611ea8565b9150612a8c82612a25565b604082019050919050565b60006020820190508181036000830152612ab081612a74565b9050919050565b6000612ac282611f4f565b915060008203612ad557612ad46128f6565b5b600182039050919050565b6000604082019050612af56000830185611fe4565b612b026020830184611fe4565b9392505050565b600081519050612b1881612250565b92915050565b600060208284031215612b3457612b33611dd8565b5b6000612b4284828501612b09565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000612b7282612b4b565b612b7c8185612b56565b9350612b8c818560208601611eb9565b612b9581611ee3565b840191505092915050565b6000608082019050612bb56000830187611fe4565b612bc26020830186611fe4565b612bcf604083018561207a565b8181036060830152612be18184612b67565b905095945050505050565b600081519050612bfb81611e0e565b92915050565b600060208284031215612c1757612c16611dd8565b5b6000612c2584828501612bec565b9150509291505056fea264697066735822122044c672f105e7250e2be7abbedaa7bd16f41fd218752ec05377bf70cb842ea62764736f6c63430008120033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000009456d6f4772756e6b73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024547000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d5457466433366777654d6f52755061563263376672534277474652533645357a426f4b7269345862315862532f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101815760003560e01c80636352211e116100d1578063a0712d681161008a578063bc8893b411610064578063bc8893b414610502578063c87b56dd1461052d578063e985e9c51461056a578063f2fde38b146105a757610181565b8063a0712d6814610494578063a22cb465146104bd578063b88d4fde146104e657610181565b80636352211e146103825780636c0360eb146103bf57806370a08231146103ea578063715018a6146104275780638da5cb5b1461043e57806395d89b411461046957610181565b806319d1997a1161013e57806341f434341161011857806341f43434146102e757806342842e0e146103125780634b980d671461032e57806355f804b31461035957610181565b806319d1997a1461028957806323b872dd146102b45780633ccfd60b146102d057610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b5780630c894cfe1461024757806318160ddd1461025e575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190611e3a565b6105d0565b6040516101ba9190611e82565b60405180910390f35b3480156101cf57600080fd5b506101d8610662565b6040516101e59190611f2d565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190611f85565b6106f4565b6040516102229190611ff3565b60405180910390f35b6102456004803603810190610240919061203a565b610752565b005b34801561025357600080fd5b5061025c610762565b005b34801561026a57600080fd5b5061027361080a565b6040516102809190612089565b60405180910390f35b34801561029557600080fd5b5061029e610821565b6040516102ab9190612089565b60405180910390f35b6102ce60048036038101906102c991906120a4565b610827565b005b3480156102dc57600080fd5b506102e5610876565b005b3480156102f357600080fd5b506102fc610941565b6040516103099190612156565b60405180910390f35b61032c600480360381019061032791906120a4565b610953565b005b34801561033a57600080fd5b506103436109a2565b6040516103509190612089565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b91906121d6565b6109a8565b005b34801561038e57600080fd5b506103a960048036038101906103a49190611f85565b610a3a565b6040516103b69190611ff3565b60405180910390f35b3480156103cb57600080fd5b506103d4610a4c565b6040516103e19190611f2d565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c9190612223565b610ada565b60405161041e9190612089565b60405180910390f35b34801561043357600080fd5b5061043c610b71565b005b34801561044a57600080fd5b50610453610bf9565b6040516104609190611ff3565b60405180910390f35b34801561047557600080fd5b5061047e610c23565b60405161048b9190611f2d565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b69190611f85565b610cb5565b005b3480156104c957600080fd5b506104e460048036038101906104df919061227c565b610db4565b005b61050060048036038101906104fb91906123ec565b610ebf565b005b34801561050e57600080fd5b50610517610f10565b6040516105249190611e82565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f9190611f85565b610f23565b6040516105619190611f2d565b60405180910390f35b34801561057657600080fd5b50610591600480360381019061058c919061246f565b610fa0565b60405161059e9190611e82565b60405180910390f35b3480156105b357600080fd5b506105ce60048036038101906105c99190612223565b611034565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061062b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061065b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610671906124de565b80601f016020809104026020016040519081016040528092919081815260200182805461069d906124de565b80156106ea5780601f106106bf576101008083540402835291602001916106ea565b820191906000526020600020905b8154815290600101906020018083116106cd57829003601f168201915b5050505050905090565b60006106ff8261112b565b6107145761071363cf4700e460e01b6111a4565b5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61075e828260016111ae565b5050565b61076a6112dd565b73ffffffffffffffffffffffffffffffffffffffff16610788610bf9565b73ffffffffffffffffffffffffffffffffffffffff16146107de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d59061255b565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b60006108146112e5565b6001546000540303905090565b600a5481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461086557610864336112ea565b5b6108708484846113e7565b50505050565b61087e6112dd565b73ffffffffffffffffffffffffffffffffffffffff1661089c610bf9565b73ffffffffffffffffffffffffffffffffffffffff16146108f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e99061255b565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561093d573d6000803e3d6000fd5b5050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461099157610990336112ea565b5b61099c8484846116a8565b50505050565b60095481565b6109b06112dd565b73ffffffffffffffffffffffffffffffffffffffff166109ce610bf9565b73ffffffffffffffffffffffffffffffffffffffff1614610a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1b9061255b565b60405180910390fd5b8181600c9182610a35929190612728565b505050565b6000610a45826116c8565b9050919050565b600c8054610a59906124de565b80601f0160208091040260200160405190810160405280929190818152602001828054610a85906124de565b8015610ad25780601f10610aa757610100808354040283529160200191610ad2565b820191906000526020600020905b815481529060010190602001808311610ab557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b2057610b1f638f4eb60460e01b6111a4565b5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610b796112dd565b73ffffffffffffffffffffffffffffffffffffffff16610b97610bf9565b73ffffffffffffffffffffffffffffffffffffffff1614610bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be49061255b565b60405180910390fd5b610bf760006117b4565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610c32906124de565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5e906124de565b8015610cab5780601f10610c8057610100808354040283529160200191610cab565b820191906000526020600020905b815481529060010190602001808311610c8e57829003601f168201915b5050505050905090565b600954811115610cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf19061286a565b60405180910390fd5b60011515600b60009054906101000a900460ff16151514610d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d47906128d6565b60405180910390fd5b600a5481610d5c61080a565b610d669190612925565b1115610da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9e906129a5565b60405180910390fd5b610db1338261187a565b50565b8060076000610dc1611898565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e6e611898565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610eb39190611e82565b60405180910390a35050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610efd57610efc336112ea565b5b610f09858585856118a0565b5050505050565b600b60009054906101000a900460ff1681565b6060610f2e8261112b565b610f4357610f4263a14c4b5060e01b6111a4565b5b6000610f4d6118f2565b90506000815103610f6d5760405180602001604052806000815250610f98565b80610f7784611984565b604051602001610f88929190612a01565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61103c6112dd565b73ffffffffffffffffffffffffffffffffffffffff1661105a610bf9565b73ffffffffffffffffffffffffffffffffffffffff16146110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a79061255b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361111f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111690612a97565b60405180910390fd5b611128816117b4565b50565b6000816111366112e5565b1161119f5760005482101561119e5760005b6000600460008581526020019081526020016000205491508103611177578261117090612ab7565b9250611148565b60007c01000000000000000000000000000000000000000000000000000000008216149150505b5b919050565b8060005260046000fd5b60006111b983610a3a565b90508180156111fb57508073ffffffffffffffffffffffffffffffffffffffff166111e2611898565b73ffffffffffffffffffffffffffffffffffffffff1614155b15611227576112118161120c611898565b610fa0565b6112265761122563cfb3b94260e01b6111a4565b5b5b836006600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b600033905090565b600090565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156113e4576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611361929190612ae0565b602060405180830381865afa15801561137e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113a29190612b1e565b6113e357806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016113da9190611ff3565b60405180910390fd5b5b50565b60006113f2826116c8565b905073ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff161693508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146114675761146663a114810060e01b6111a4565b5b600080611473846119d4565b915091506114898187611484611898565b6119fb565b6114b45761149e86611499611898565b610fa0565b6114b3576114b26359c896be60e01b6111a4565b5b5b6114c18686866001611a3f565b80156114cc57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061159a85611576888887611a45565b7c020000000000000000000000000000000000000000000000000000000017611a6d565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611620576000600185019050600060046000838152602001908152602001600020540361161e57600054811461161d578360046000838152602001908152602001600020819055505b5b505b600073ffffffffffffffffffffffffffffffffffffffff8673ffffffffffffffffffffffffffffffffffffffff161690508481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600081036116925761169163ea553b3460e01b6111a4565b5b61169f8787876001611a98565b50505050505050565b6116c383838360405180602001604052806000815250610ebf565b505050565b6000816116d36112e5565b1161179e5760046000838152602001908152602001600020549050600081036117755760005482106117105761170f63df2d9b4260e01b6111a4565b5b5b600460008360019003935083815260200190815260200160002054905060008103156117705760007c0100000000000000000000000000000000000000000000000000000000821603156117af5761176f63df2d9b4260e01b6111a4565b5b611711565b60007c0100000000000000000000000000000000000000000000000000000000821603156117af575b6117ae63df2d9b4260e01b6111a4565b5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611894828260405180602001604052806000815250611a9e565b5050565b600033905090565b6118ab848484610827565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118ec576118d684848484611b23565b6118eb576118ea63d1a57ed660e01b6111a4565b5b5b50505050565b6060600c8054611901906124de565b80601f016020809104026020016040519081016040528092919081815260200182805461192d906124de565b801561197a5780601f1061194f5761010080835404028352916020019161197a565b820191906000526020600020905b81548152906001019060200180831161195d57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b6001156119bf57600184039350600a81066030018453600a810490508061199d575b50828103602084039350808452505050919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611a5c868684611c52565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611aa88383611c5b565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b1e57600080549050600083820390505b611ae86000868380600101945086611b23565b611afd57611afc63d1a57ed660e01b6111a4565b5b818110611ad5578160005414611b1b57611b1a600060e01b6111a4565b5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b49611898565b8786866040518563ffffffff1660e01b8152600401611b6b9493929190612ba0565b6020604051808303816000875af1925050508015611ba757506040513d601f19601f82011682018060405250810190611ba49190612c01565b60015b611bff573d8060008114611bd7576040519150601f19603f3d011682016040523d82523d6000602084013e611bdc565b606091505b506000815103611bf757611bf663d1a57ed660e01b6111a4565b5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203611c7a57611c7963b562e8dd60e01b6111a4565b5b611c876000848385611a3f565b611ca783611c986000866000611a45565b611ca185611dbe565b17611a6d565b6004600083815260200190815260200160002081905550600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600073ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff1616905060008103611d5f57611d5e632e07630060e01b6111a4565b5b6000838301905060008390505b808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4818160010191508103611d6c5781600081905550505050611db96000848385611a98565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611e1781611de2565b8114611e2257600080fd5b50565b600081359050611e3481611e0e565b92915050565b600060208284031215611e5057611e4f611dd8565b5b6000611e5e84828501611e25565b91505092915050565b60008115159050919050565b611e7c81611e67565b82525050565b6000602082019050611e976000830184611e73565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611ed7578082015181840152602081019050611ebc565b60008484015250505050565b6000601f19601f8301169050919050565b6000611eff82611e9d565b611f098185611ea8565b9350611f19818560208601611eb9565b611f2281611ee3565b840191505092915050565b60006020820190508181036000830152611f478184611ef4565b905092915050565b6000819050919050565b611f6281611f4f565b8114611f6d57600080fd5b50565b600081359050611f7f81611f59565b92915050565b600060208284031215611f9b57611f9a611dd8565b5b6000611fa984828501611f70565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611fdd82611fb2565b9050919050565b611fed81611fd2565b82525050565b60006020820190506120086000830184611fe4565b92915050565b61201781611fd2565b811461202257600080fd5b50565b6000813590506120348161200e565b92915050565b6000806040838503121561205157612050611dd8565b5b600061205f85828601612025565b925050602061207085828601611f70565b9150509250929050565b61208381611f4f565b82525050565b600060208201905061209e600083018461207a565b92915050565b6000806000606084860312156120bd576120bc611dd8565b5b60006120cb86828701612025565b93505060206120dc86828701612025565b92505060406120ed86828701611f70565b9150509250925092565b6000819050919050565b600061211c61211761211284611fb2565b6120f7565b611fb2565b9050919050565b600061212e82612101565b9050919050565b600061214082612123565b9050919050565b61215081612135565b82525050565b600060208201905061216b6000830184612147565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261219657612195612171565b5b8235905067ffffffffffffffff8111156121b3576121b2612176565b5b6020830191508360018202830111156121cf576121ce61217b565b5b9250929050565b600080602083850312156121ed576121ec611dd8565b5b600083013567ffffffffffffffff81111561220b5761220a611ddd565b5b61221785828601612180565b92509250509250929050565b60006020828403121561223957612238611dd8565b5b600061224784828501612025565b91505092915050565b61225981611e67565b811461226457600080fd5b50565b60008135905061227681612250565b92915050565b6000806040838503121561229357612292611dd8565b5b60006122a185828601612025565b92505060206122b285828601612267565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6122f982611ee3565b810181811067ffffffffffffffff82111715612318576123176122c1565b5b80604052505050565b600061232b611dce565b905061233782826122f0565b919050565b600067ffffffffffffffff821115612357576123566122c1565b5b61236082611ee3565b9050602081019050919050565b82818337600083830152505050565b600061238f61238a8461233c565b612321565b9050828152602081018484840111156123ab576123aa6122bc565b5b6123b684828561236d565b509392505050565b600082601f8301126123d3576123d2612171565b5b81356123e384826020860161237c565b91505092915050565b6000806000806080858703121561240657612405611dd8565b5b600061241487828801612025565b945050602061242587828801612025565b935050604061243687828801611f70565b925050606085013567ffffffffffffffff81111561245757612456611ddd565b5b612463878288016123be565b91505092959194509250565b6000806040838503121561248657612485611dd8565b5b600061249485828601612025565b92505060206124a585828601612025565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806124f657607f821691505b602082108103612509576125086124af565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612545602083611ea8565b91506125508261250f565b602082019050919050565b6000602082019050818103600083015261257481612538565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026125e87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826125ab565b6125f286836125ab565b95508019841693508086168417925050509392505050565b600061262561262061261b84611f4f565b6120f7565b611f4f565b9050919050565b6000819050919050565b61263f8361260a565b61265361264b8261262c565b8484546125b8565b825550505050565b600090565b61266861265b565b612673818484612636565b505050565b5b818110156126975761268c600082612660565b600181019050612679565b5050565b601f8211156126dc576126ad81612586565b6126b68461259b565b810160208510156126c5578190505b6126d96126d18561259b565b830182612678565b50505b505050565b600082821c905092915050565b60006126ff600019846008026126e1565b1980831691505092915050565b600061271883836126ee565b9150826002028217905092915050565b612732838361257b565b67ffffffffffffffff81111561274b5761274a6122c1565b5b61275582546124de565b61276082828561269b565b6000601f83116001811461278f576000841561277d578287013590505b612787858261270c565b8655506127ef565b601f19841661279d86612586565b60005b828110156127c5578489013582556001820191506020850194506020810190506127a0565b868310156127e257848901356127de601f8916826126ee565b8355505b6001600288020188555050505b50505050505050565b7f4f766572206d617820706572207472616e73616374696f6e21204c696d69742060008201527f697320323020706572207472616e73616374696f6e2e00000000000000000000602082015250565b6000612854603683611ea8565b915061285f826127f8565b604082019050919050565b6000602082019050818103600083015261288381612847565b9050919050565b7f4e6f7420596574204163746976652e0000000000000000000000000000000000600082015250565b60006128c0600f83611ea8565b91506128cb8261288a565b602082019050919050565b600060208201905081810360008301526128ef816128b3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061293082611f4f565b915061293b83611f4f565b9250828201905080821115612953576129526128f6565b5b92915050565b7f537570706c792072656163686564000000000000000000000000000000000000600082015250565b600061298f600e83611ea8565b915061299a82612959565b602082019050919050565b600060208201905081810360008301526129be81612982565b9050919050565b600081905092915050565b60006129db82611e9d565b6129e581856129c5565b93506129f5818560208601611eb9565b80840191505092915050565b6000612a0d82856129d0565b9150612a1982846129d0565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612a81602683611ea8565b9150612a8c82612a25565b604082019050919050565b60006020820190508181036000830152612ab081612a74565b9050919050565b6000612ac282611f4f565b915060008203612ad557612ad46128f6565b5b600182039050919050565b6000604082019050612af56000830185611fe4565b612b026020830184611fe4565b9392505050565b600081519050612b1881612250565b92915050565b600060208284031215612b3457612b33611dd8565b5b6000612b4284828501612b09565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000612b7282612b4b565b612b7c8185612b56565b9350612b8c818560208601611eb9565b612b9581611ee3565b840191505092915050565b6000608082019050612bb56000830187611fe4565b612bc26020830186611fe4565b612bcf604083018561207a565b8181036060830152612be18184612b67565b905095945050505050565b600081519050612bfb81611e0e565b92915050565b600060208284031215612c1757612c16611dd8565b5b6000612c2584828501612bec565b9150509291505056fea264697066735822122044c672f105e7250e2be7abbedaa7bd16f41fd218752ec05377bf70cb842ea62764736f6c63430008120033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000009456d6f4772756e6b73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024547000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d5457466433366777654d6f52755061563263376672534277474652533645357a426f4b7269345862315862532f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): EmoGrunks
Arg [1] : symbol (string): EG
Arg [2] : baseURIinput (string): https://ipfs.io/ipfs/QmTWFd36gweMoRuPaV2c7frSBwGFRS6E5zBoKri4Xb1XbS/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 456d6f4772756e6b730000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 4547000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [8] : 68747470733a2f2f697066732e696f2f697066732f516d545746643336677765
Arg [9] : 4d6f52755061563263376672534277474652533645357a426f4b726934586231
Arg [10] : 5862532f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

75332:2038:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39990:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40892:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47926:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47643:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76003:108;;;;;;;;;;;;;:::i;:::-;;36634:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75480:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76659:214;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76508:143;;;;;;;;;;;;;:::i;:::-;;7867;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76881:222;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75436:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75889:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42294:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75564:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37818:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20868:94;;;;;;;;;;;;;:::i;:::-;;20217:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41068:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76119:381;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48493:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77111:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75521:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41278:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48884:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21117:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39990:639;40075:4;40414:10;40399:25;;:11;:25;;;;:102;;;;40491:10;40476:25;;:11;:25;;;;40399:102;:179;;;;40568:10;40553:25;;:11;:25;;;;40399:179;40379:199;;39990:639;;;:::o;40892:100::-;40946:13;40979:5;40972:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40892:100;:::o;47926:227::-;48002:7;48027:16;48035:7;48027;:16::i;:::-;48022:73;;48045:50;48053:41;;;48045:7;:50::i;:::-;48022:73;48115:15;:24;48131:7;48115:24;;;;;;;;;;;:30;;;;;;;;;;;;48108:37;;47926:227;;;:::o;47643:124::-;47732:27;47741:2;47745:7;47754:4;47732:8;:27::i;:::-;47643:124;;:::o;76003:108::-;20448:12;:10;:12::i;:::-;20437:23;;:7;:5;:7::i;:::-;:23;;;20429:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;76087:16:::1;;;;;;;;;;;76086:17;76067:16;;:36;;;;;;;;;;;;;;;;;;76003:108::o:0;36634:323::-;36695:7;36923:15;:13;:15::i;:::-;36908:12;;36892:13;;:28;:46;36885:53;;36634:323;:::o;75480:34::-;;;;:::o;76659:214::-;76811:4;9383:10;9375:18;;:4;:18;;;9371:83;;9410:32;9431:10;9410:20;:32::i;:::-;9371:83;76828:37:::1;76847:4;76853:2;76857:7;76828:18;:37::i;:::-;76659:214:::0;;;;:::o;76508:143::-;20448:12;:10;:12::i;:::-;20437:23;;:7;:5;:7::i;:::-;:23;;;20429:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;76556:15:::1;76574:21;76556:39;;76614:10;76606:28;;:37;76635:7;76606:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;76545:106;76508:143::o:0;7867:::-;195:42;7867:143;:::o;76881:222::-;77037:4;9383:10;9375:18;;:4;:18;;;9371:83;;9410:32;9431:10;9410:20;:32::i;:::-;9371:83;77054:41:::1;77077:4;77083:2;77087:7;77054:22;:41::i;:::-;76881:222:::0;;;;:::o;75436:37::-;;;;:::o;75889:106::-;20448:12;:10;:12::i;:::-;20437:23;;:7;:5;:7::i;:::-;:23;;;20429:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;75977:10:::1;;75967:7;:20;;;;;;;:::i;:::-;;75889:106:::0;;:::o;42294:152::-;42366:7;42409:27;42428:7;42409:18;:27::i;:::-;42386:52;;42294:152;;;:::o;75564:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37818:242::-;37890:7;37931:1;37914:19;;:5;:19;;;37910:69;;37935:44;37943:35;;;37935:7;:44::i;:::-;37910:69;31977:13;37997:18;:25;38016:5;37997:25;;;;;;;;;;;;;;;;:55;37990:62;;37818:242;;;:::o;20868:94::-;20448:12;:10;:12::i;:::-;20437:23;;:7;:5;:7::i;:::-;:23;;;20429:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20933:21:::1;20951:1;20933:9;:21::i;:::-;20868:94::o:0;20217:87::-;20263:7;20290:6;;;;;;;;;;;20283:13;;20217:87;:::o;41068:104::-;41124:13;41157:7;41150:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41068:104;:::o;76119:381::-;76207:17;;76194:9;:30;;76172:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;76345:4;76325:24;;:16;;;;;;;;;;;:24;;;76317:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;76419:11;;76405:9;76389:13;:11;:13::i;:::-;:25;;;;:::i;:::-;76388:42;;76380:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;76460:32;76470:10;76482:9;76460;:32::i;:::-;76119:381;:::o;48493:234::-;48640:8;48588:18;:39;48607:19;:17;:19::i;:::-;48588:39;;;;;;;;;;;;;;;:49;48628:8;48588:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;48700:8;48664:55;;48679:19;:17;:19::i;:::-;48664:55;;;48710:8;48664:55;;;;;;:::i;:::-;;;;;;;;48493:234;;:::o;77111:256::-;77295:4;9383:10;9375:18;;:4;:18;;;9371:83;;9410:32;9431:10;9410:20;:32::i;:::-;9371:83;77312:47:::1;77335:4;77341:2;77345:7;77354:4;77312:22;:47::i;:::-;77111:256:::0;;;;;:::o;75521:36::-;;;;;;;;;;;;;:::o;41278:327::-;41351:13;41382:16;41390:7;41382;:16::i;:::-;41377:68;;41400:45;41408:36;;;41400:7;:45::i;:::-;41377:68;41458:21;41482:10;:8;:10::i;:::-;41458:34;;41535:1;41516:7;41510:21;:26;:87;;;;;;;;;;;;;;;;;41563:7;41572:18;41582:7;41572:9;:18::i;:::-;41546:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41510:87;41503:94;;;41278:327;;;:::o;48884:164::-;48981:4;49005:18;:25;49024:5;49005:25;;;;;;;;;;;;;;;:35;49031:8;49005:35;;;;;;;;;;;;;;;;;;;;;;;;;48998:42;;48884:164;;;;:::o;21117:192::-;20448:12;:10;:12::i;:::-;20437:23;;:7;:5;:7::i;:::-;:23;;;20429:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21226:1:::1;21206:22;;:8;:22;;::::0;21198:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;21282:19;21292:8;21282:9;:19::i;:::-;21117:192:::0;:::o;49306:368::-;49371:11;49418:7;49399:15;:13;:15::i;:::-;:26;49395:272;;49456:13;;49446:7;:23;49442:214;;;49490:14;49523:60;49571:1;49540:17;:26;49558:7;49540:26;;;;;;;;;;;;49531:35;;;49530:42;49523:60;;49574:9;;;;:::i;:::-;;;49523:60;;;49639:1;32753:8;49611:6;:24;:29;49602:38;;49471:185;49442:214;49395:272;49306:368;;;:::o;75084:165::-;75185:13;75179:4;75172:27;75226:4;75220;75213:18;66517:474;66646:13;66662:16;66670:7;66662;:16::i;:::-;66646:32;;66695:13;:45;;;;;66735:5;66712:28;;:19;:17;:19::i;:::-;:28;;;;66695:45;66691:201;;;66760:44;66777:5;66784:19;:17;:19::i;:::-;66760:16;:44::i;:::-;66755:137;;66825:51;66833:42;;;66825:7;:51::i;:::-;66755:137;66691:201;66937:2;66904:15;:24;66920:7;66904:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;66975:7;66971:2;66955:28;;66964:5;66955:28;;;;;;;;;;;;66635:356;66517:474;;;:::o;18952:98::-;19005:7;19032:10;19025:17;;18952:98;:::o;36150:92::-;36206:7;36150:92;:::o;9792:647::-;10031:1;195:42;9983:45;;;:49;9979:453;;;195:42;10282;;;10333:4;10340:8;10282:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10277:144;;10396:8;10377:28;;;;;;;;;;;:::i;:::-;;;;;;;;10277:144;9979:453;9792:647;:::o;51660:3523::-;51802:27;51832;51851:7;51832:18;:27::i;:::-;51802:57;;33435:14;52003:4;51987:22;;:41;51964:66;;52088:4;52047:45;;52063:19;52047:45;;;52043:95;;52094:44;52102:35;;;52094:7;:44::i;:::-;52043:95;52152:27;52181:23;52208:35;52235:7;52208:26;:35::i;:::-;52151:92;;;;52343:68;52368:15;52385:4;52391:19;:17;:19::i;:::-;52343:24;:68::i;:::-;52338:189;;52431:43;52448:4;52454:19;:17;:19::i;:::-;52431:16;:43::i;:::-;52426:101;;52476:51;52484:42;;;52476:7;:51::i;:::-;52426:101;52338:189;52540:43;52562:4;52568:2;52572:7;52581:1;52540:21;:43::i;:::-;52676:15;52673:160;;;52816:1;52795:19;52788:30;52673:160;53213:18;:24;53232:4;53213:24;;;;;;;;;;;;;;;;53211:26;;;;;;;;;;;;53282:18;:22;53301:2;53282:22;;;;;;;;;;;;;;;;53280:24;;;;;;;;;;;53604:146;53641:2;53690:45;53705:4;53711:2;53715:19;53690:14;:45::i;:::-;33033:8;53662:73;53604:18;:146::i;:::-;53575:17;:26;53593:7;53575:26;;;;;;;;;;;:175;;;;53921:1;33033:8;53870:19;:47;:52;53866:627;;53943:19;53975:1;53965:7;:11;53943:33;;54132:1;54098:17;:30;54116:11;54098:30;;;;;;;;;;;;:35;54094:384;;54236:13;;54221:11;:28;54217:242;;54416:19;54383:17;:30;54401:11;54383:30;;;;;;;;;;;:52;;;;54217:242;54094:384;53924:569;53866:627;54606:16;33435:14;54641:2;54625:20;;:39;54606:58;;55005:7;54969:8;54935:4;54877:25;54822:1;54765;54742:299;55078:1;55066:8;:13;55062:58;;55081:39;55089:30;;;55081:7;:39::i;:::-;55062:58;55133:42;55154:4;55160:2;55164:7;55173:1;55133:20;:42::i;:::-;51791:3392;;;;51660:3523;;;:::o;55279:193::-;55425:39;55442:4;55448:2;55452:7;55425:39;;;;;;;;;;;;:16;:39::i;:::-;55279:193;;;:::o;43774:2012::-;43841:14;43891:7;43872:15;:13;:15::i;:::-;:26;43868:1853;;43924:17;:26;43942:7;43924:26;;;;;;;;;;;;43915:35;;44060:1;44050:6;:11;44046:1292;;44097:13;;44086:7;:24;44082:77;;44112:47;44120:38;;;44112:7;:47::i;:::-;44082:77;44716:607;44794:17;:28;44812:9;;;;;;;44794:28;;;;;;;;;;;;44785:37;;44882:1;44872:6;:11;44868:25;44885:8;44868:25;44948:1;32753:8;44920:6;:24;:29;44916:48;44951:13;44916:48;45256:47;45264:38;;;45256:7;:47::i;:::-;44716:607;;;44046:1292;45693:1;32753:8;45665:6;:24;:29;45661:48;45696:13;45661:48;43868:1853;45731:47;45739:38;;;45731:7;:47::i;:::-;43774:2012;;;;:::o;21317:173::-;21373:16;21392:6;;;;;;;;;;;21373:25;;21418:8;21409:6;;:17;;;;;;;;;;;;;;;;;;21473:8;21442:40;;21463:8;21442:40;;;;;;;;;;;;21362:128;21317:173;:::o;65599:112::-;65676:27;65686:2;65690:8;65676:27;;;;;;;;;;;;:9;:27::i;:::-;65599:112;;:::o;73065:105::-;73125:7;73152:10;73145:17;;73065:105;:::o;56070:416::-;56245:31;56258:4;56264:2;56268:7;56245:12;:31::i;:::-;56309:1;56291:2;:14;;;:19;56287:192;;56330:56;56361:4;56367:2;56371:7;56380:5;56330:30;:56::i;:::-;56325:154;;56407:56;56415:47;;;56407:7;:56::i;:::-;56325:154;56287:192;56070:416;;;;:::o;75781:100::-;75833:13;75866:7;75859:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75781:100;:::o;73272:1745::-;73337:17;73771:4;73764;73758:11;73754:22;73863:1;73857:4;73850:15;73938:4;73935:1;73931:12;73924:19;;74020:1;74015:3;74008:14;74124:3;74363:5;74345:428;74371:1;74345:428;;;74411:1;74406:3;74402:11;74395:18;;74582:2;74576:4;74572:13;74568:2;74564:22;74559:3;74551:36;74676:2;74670:4;74666:13;74658:21;;74743:4;74345:428;74733:25;74345:428;74349:21;74812:3;74807;74803:13;74927:4;74922:3;74918:14;74911:21;;74992:6;74987:3;74980:19;73376:1634;;;73272:1745;;;:::o;50555:485::-;50657:27;50686:23;50727:38;50768:15;:24;50784:7;50768:24;;;;;;;;;;;50727:65;;50945:18;50922:41;;51002:19;50996:26;50977:45;;50907:126;50555:485;;;:::o;49783:659::-;49932:11;50097:16;50090:5;50086:28;50077:37;;50257:16;50246:9;50242:32;50229:45;;50407:15;50396:9;50393:30;50385:5;50374:9;50371:20;50368:56;50358:66;;49783:659;;;;;:::o;57148:159::-;;;;;:::o;72374:311::-;72509:7;72529:16;33157:3;72555:19;:41;;72529:68;;33157:3;72623:31;72634:4;72640:2;72644:9;72623:10;:31::i;:::-;72615:40;;:62;;72608:69;;;72374:311;;;;;:::o;46334:450::-;46414:14;46582:16;46575:5;46571:28;46562:37;;46759:5;46745:11;46720:23;46716:41;46713:52;46706:5;46703:63;46693:73;;46334:450;;;;:::o;57972:158::-;;;;;:::o;64807:708::-;64938:19;64944:2;64948:8;64938:5;:19::i;:::-;65017:1;64999:2;:14;;;:19;64995:502;;65039:11;65053:13;;65039:27;;65085:13;65107:8;65101:3;:14;65085:30;;65134:242;65165:62;65204:1;65208:2;65212:7;;;;;;65221:5;65165:30;:62::i;:::-;65160:176;;65256:56;65264:47;;;65256:7;:56::i;:::-;65160:176;65371:3;65363:5;:11;65134:242;;65458:3;65441:13;;:20;65437:44;;65463:18;65478:1;65471:9;;65463:7;:18::i;:::-;65437:44;65020:477;;64995:502;64807:708;;;:::o;58570:691::-;58733:4;58779:2;58754:45;;;58800:19;:17;:19::i;:::-;58821:4;58827:7;58836:5;58754:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;58750:504;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59054:1;59037:6;:13;:18;59033:115;;59076:56;59084:47;;;59076:7;:56::i;:::-;59033:115;59220:6;59214:13;59205:6;59201:2;59197:15;59190:38;58750:504;58923:54;;;58913:64;;;:6;:64;;;;58906:71;;;58570:691;;;;;;:::o;72075:147::-;72212:6;72075:147;;;;;:::o;59723:2305::-;59796:20;59819:13;;59796:36;;59859:1;59847:8;:13;59843:53;;59862:34;59870:25;;;59862:7;:34::i;:::-;59843:53;59909:61;59939:1;59943:2;59947:12;59961:8;59909:21;:61::i;:::-;60443:139;60480:2;60534:33;60557:1;60561:2;60565:1;60534:14;:33::i;:::-;60501:30;60522:8;60501:20;:30::i;:::-;:66;60443:18;:139::i;:::-;60409:17;:31;60427:12;60409:31;;;;;;;;;;;:173;;;;60869:1;32115:2;60839:1;:26;;60838:32;60826:8;:45;60800:18;:22;60819:2;60800:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;60982:16;33435:14;61017:2;61001:20;;:39;60982:58;;61073:1;61061:8;:13;61057:54;;61076:35;61084:26;;;61076:7;:35::i;:::-;61057:54;61128:11;61157:8;61142:12;:23;61128:37;;61180:15;61198:12;61180:30;;61227:676;61646:7;61602:8;61557:1;61491:25;61428:1;61363;61332:358;61898:3;61885:9;;;;;;:16;61227:676;;61935:3;61919:13;:19;;;;60158:1792;;;61960:60;61989:1;61993:2;61997:12;62011:8;61960:20;:60::i;:::-;59785:2243;59723:2305;;:::o;46886:324::-;46956:14;47189:1;47179:8;47176:15;47150:24;47146:46;47136:56;;46886:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:60::-;5895:3;5916:5;5909:12;;5867:60;;;:::o;5933:142::-;5983:9;6016:53;6034:34;6043:24;6061:5;6043:24;:::i;:::-;6034:34;:::i;:::-;6016:53;:::i;:::-;6003:66;;5933:142;;;:::o;6081:126::-;6131:9;6164:37;6195:5;6164:37;:::i;:::-;6151:50;;6081:126;;;:::o;6213:157::-;6294:9;6327:37;6358:5;6327:37;:::i;:::-;6314:50;;6213:157;;;:::o;6376:193::-;6494:68;6556:5;6494:68;:::i;:::-;6489:3;6482:81;6376:193;;:::o;6575:284::-;6699:4;6737:2;6726:9;6722:18;6714:26;;6750:102;6849:1;6838:9;6834:17;6825:6;6750:102;:::i;:::-;6575:284;;;;:::o;6865:117::-;6974:1;6971;6964:12;6988:117;7097:1;7094;7087:12;7111:117;7220:1;7217;7210:12;7248:553;7306:8;7316:6;7366:3;7359:4;7351:6;7347:17;7343:27;7333:122;;7374:79;;:::i;:::-;7333:122;7487:6;7474:20;7464:30;;7517:18;7509:6;7506:30;7503:117;;;7539:79;;:::i;:::-;7503:117;7653:4;7645:6;7641:17;7629:29;;7707:3;7699:4;7691:6;7687:17;7677:8;7673:32;7670:41;7667:128;;;7714:79;;:::i;:::-;7667:128;7248:553;;;;;:::o;7807:529::-;7878:6;7886;7935:2;7923:9;7914:7;7910:23;7906:32;7903:119;;;7941:79;;:::i;:::-;7903:119;8089:1;8078:9;8074:17;8061:31;8119:18;8111:6;8108:30;8105:117;;;8141:79;;:::i;:::-;8105:117;8254:65;8311:7;8302:6;8291:9;8287:22;8254:65;:::i;:::-;8236:83;;;;8032:297;7807:529;;;;;:::o;8342:329::-;8401:6;8450:2;8438:9;8429:7;8425:23;8421:32;8418:119;;;8456:79;;:::i;:::-;8418:119;8576:1;8601:53;8646:7;8637:6;8626:9;8622:22;8601:53;:::i;:::-;8591:63;;8547:117;8342:329;;;;:::o;8677:116::-;8747:21;8762:5;8747:21;:::i;:::-;8740:5;8737:32;8727:60;;8783:1;8780;8773:12;8727:60;8677:116;:::o;8799:133::-;8842:5;8880:6;8867:20;8858:29;;8896:30;8920:5;8896:30;:::i;:::-;8799:133;;;;:::o;8938:468::-;9003:6;9011;9060:2;9048:9;9039:7;9035:23;9031:32;9028:119;;;9066:79;;:::i;:::-;9028:119;9186:1;9211:53;9256:7;9247:6;9236:9;9232:22;9211:53;:::i;:::-;9201:63;;9157:117;9313:2;9339:50;9381:7;9372:6;9361:9;9357:22;9339:50;:::i;:::-;9329:60;;9284:115;8938:468;;;;;:::o;9412:117::-;9521:1;9518;9511:12;9535:180;9583:77;9580:1;9573:88;9680:4;9677:1;9670:15;9704:4;9701:1;9694:15;9721:281;9804:27;9826:4;9804:27;:::i;:::-;9796:6;9792:40;9934:6;9922:10;9919:22;9898:18;9886:10;9883:34;9880:62;9877:88;;;9945:18;;:::i;:::-;9877:88;9985:10;9981:2;9974:22;9764:238;9721:281;;:::o;10008:129::-;10042:6;10069:20;;:::i;:::-;10059:30;;10098:33;10126:4;10118:6;10098:33;:::i;:::-;10008:129;;;:::o;10143:307::-;10204:4;10294:18;10286:6;10283:30;10280:56;;;10316:18;;:::i;:::-;10280:56;10354:29;10376:6;10354:29;:::i;:::-;10346:37;;10438:4;10432;10428:15;10420:23;;10143:307;;;:::o;10456:146::-;10553:6;10548:3;10543;10530:30;10594:1;10585:6;10580:3;10576:16;10569:27;10456:146;;;:::o;10608:423::-;10685:5;10710:65;10726:48;10767:6;10726:48;:::i;:::-;10710:65;:::i;:::-;10701:74;;10798:6;10791:5;10784:21;10836:4;10829:5;10825:16;10874:3;10865:6;10860:3;10856:16;10853:25;10850:112;;;10881:79;;:::i;:::-;10850:112;10971:54;11018:6;11013:3;11008;10971:54;:::i;:::-;10691:340;10608:423;;;;;:::o;11050:338::-;11105:5;11154:3;11147:4;11139:6;11135:17;11131:27;11121:122;;11162:79;;:::i;:::-;11121:122;11279:6;11266:20;11304:78;11378:3;11370:6;11363:4;11355:6;11351:17;11304:78;:::i;:::-;11295:87;;11111:277;11050:338;;;;:::o;11394:943::-;11489:6;11497;11505;11513;11562:3;11550:9;11541:7;11537:23;11533:33;11530:120;;;11569:79;;:::i;:::-;11530:120;11689:1;11714:53;11759:7;11750:6;11739:9;11735:22;11714:53;:::i;:::-;11704:63;;11660:117;11816:2;11842:53;11887:7;11878:6;11867:9;11863:22;11842:53;:::i;:::-;11832:63;;11787:118;11944:2;11970:53;12015:7;12006:6;11995:9;11991:22;11970:53;:::i;:::-;11960:63;;11915:118;12100:2;12089:9;12085:18;12072:32;12131:18;12123:6;12120:30;12117:117;;;12153:79;;:::i;:::-;12117:117;12258:62;12312:7;12303:6;12292:9;12288:22;12258:62;:::i;:::-;12248:72;;12043:287;11394:943;;;;;;;:::o;12343:474::-;12411:6;12419;12468:2;12456:9;12447:7;12443:23;12439:32;12436:119;;;12474:79;;:::i;:::-;12436:119;12594:1;12619:53;12664:7;12655:6;12644:9;12640:22;12619:53;:::i;:::-;12609:63;;12565:117;12721:2;12747:53;12792:7;12783:6;12772:9;12768:22;12747:53;:::i;:::-;12737:63;;12692:118;12343:474;;;;;:::o;12823:180::-;12871:77;12868:1;12861:88;12968:4;12965:1;12958:15;12992:4;12989:1;12982:15;13009:320;13053:6;13090:1;13084:4;13080:12;13070:22;;13137:1;13131:4;13127:12;13158:18;13148:81;;13214:4;13206:6;13202:17;13192:27;;13148:81;13276:2;13268:6;13265:14;13245:18;13242:38;13239:84;;13295:18;;:::i;:::-;13239:84;13060:269;13009:320;;;:::o;13335:182::-;13475:34;13471:1;13463:6;13459:14;13452:58;13335:182;:::o;13523:366::-;13665:3;13686:67;13750:2;13745:3;13686:67;:::i;:::-;13679:74;;13762:93;13851:3;13762:93;:::i;:::-;13880:2;13875:3;13871:12;13864:19;;13523:366;;;:::o;13895:419::-;14061:4;14099:2;14088:9;14084:18;14076:26;;14148:9;14142:4;14138:20;14134:1;14123:9;14119:17;14112:47;14176:131;14302:4;14176:131;:::i;:::-;14168:139;;13895:419;;;:::o;14320:97::-;14379:6;14407:3;14397:13;;14320:97;;;;:::o;14423:141::-;14472:4;14495:3;14487:11;;14518:3;14515:1;14508:14;14552:4;14549:1;14539:18;14531:26;;14423:141;;;:::o;14570:93::-;14607:6;14654:2;14649;14642:5;14638:14;14634:23;14624:33;;14570:93;;;:::o;14669:107::-;14713:8;14763:5;14757:4;14753:16;14732:37;;14669:107;;;;:::o;14782:393::-;14851:6;14901:1;14889:10;14885:18;14924:97;14954:66;14943:9;14924:97;:::i;:::-;15042:39;15072:8;15061:9;15042:39;:::i;:::-;15030:51;;15114:4;15110:9;15103:5;15099:21;15090:30;;15163:4;15153:8;15149:19;15142:5;15139:30;15129:40;;14858:317;;14782:393;;;;;:::o;15181:142::-;15231:9;15264:53;15282:34;15291:24;15309:5;15291:24;:::i;:::-;15282:34;:::i;:::-;15264:53;:::i;:::-;15251:66;;15181:142;;;:::o;15329:75::-;15372:3;15393:5;15386:12;;15329:75;;;:::o;15410:269::-;15520:39;15551:7;15520:39;:::i;:::-;15581:91;15630:41;15654:16;15630:41;:::i;:::-;15622:6;15615:4;15609:11;15581:91;:::i;:::-;15575:4;15568:105;15486:193;15410:269;;;:::o;15685:73::-;15730:3;15685:73;:::o;15764:189::-;15841:32;;:::i;:::-;15882:65;15940:6;15932;15926:4;15882:65;:::i;:::-;15817:136;15764:189;;:::o;15959:186::-;16019:120;16036:3;16029:5;16026:14;16019:120;;;16090:39;16127:1;16120:5;16090:39;:::i;:::-;16063:1;16056:5;16052:13;16043:22;;16019:120;;;15959:186;;:::o;16151:543::-;16252:2;16247:3;16244:11;16241:446;;;16286:38;16318:5;16286:38;:::i;:::-;16370:29;16388:10;16370:29;:::i;:::-;16360:8;16356:44;16553:2;16541:10;16538:18;16535:49;;;16574:8;16559:23;;16535:49;16597:80;16653:22;16671:3;16653:22;:::i;:::-;16643:8;16639:37;16626:11;16597:80;:::i;:::-;16256:431;;16241:446;16151:543;;;:::o;16700:117::-;16754:8;16804:5;16798:4;16794:16;16773:37;;16700:117;;;;:::o;16823:169::-;16867:6;16900:51;16948:1;16944:6;16936:5;16933:1;16929:13;16900:51;:::i;:::-;16896:56;16981:4;16975;16971:15;16961:25;;16874:118;16823:169;;;;:::o;16997:295::-;17073:4;17219:29;17244:3;17238:4;17219:29;:::i;:::-;17211:37;;17281:3;17278:1;17274:11;17268:4;17265:21;17257:29;;16997:295;;;;:::o;17297:1403::-;17421:44;17461:3;17456;17421:44;:::i;:::-;17530:18;17522:6;17519:30;17516:56;;;17552:18;;:::i;:::-;17516:56;17596:38;17628:4;17622:11;17596:38;:::i;:::-;17681:67;17741:6;17733;17727:4;17681:67;:::i;:::-;17775:1;17804:2;17796:6;17793:14;17821:1;17816:632;;;;18492:1;18509:6;18506:84;;;18565:9;18560:3;18556:19;18543:33;18534:42;;18506:84;18616:67;18676:6;18669:5;18616:67;:::i;:::-;18610:4;18603:81;18465:229;17786:908;;17816:632;17868:4;17864:9;17856:6;17852:22;17902:37;17934:4;17902:37;:::i;:::-;17961:1;17975:215;17989:7;17986:1;17983:14;17975:215;;;18075:9;18070:3;18066:19;18053:33;18045:6;18038:49;18126:1;18118:6;18114:14;18104:24;;18173:2;18162:9;18158:18;18145:31;;18012:4;18009:1;18005:12;18000:17;;17975:215;;;18218:6;18209:7;18206:19;18203:186;;;18283:9;18278:3;18274:19;18261:33;18326:48;18368:4;18360:6;18356:17;18345:9;18326:48;:::i;:::-;18318:6;18311:64;18226:163;18203:186;18435:1;18431;18423:6;18419:14;18415:22;18409:4;18402:36;17823:625;;;17786:908;;17396:1304;;;17297:1403;;;:::o;18706:241::-;18846:34;18842:1;18834:6;18830:14;18823:58;18915:24;18910:2;18902:6;18898:15;18891:49;18706:241;:::o;18953:366::-;19095:3;19116:67;19180:2;19175:3;19116:67;:::i;:::-;19109:74;;19192:93;19281:3;19192:93;:::i;:::-;19310:2;19305:3;19301:12;19294:19;;18953:366;;;:::o;19325:419::-;19491:4;19529:2;19518:9;19514:18;19506:26;;19578:9;19572:4;19568:20;19564:1;19553:9;19549:17;19542:47;19606:131;19732:4;19606:131;:::i;:::-;19598:139;;19325:419;;;:::o;19750:165::-;19890:17;19886:1;19878:6;19874:14;19867:41;19750:165;:::o;19921:366::-;20063:3;20084:67;20148:2;20143:3;20084:67;:::i;:::-;20077:74;;20160:93;20249:3;20160:93;:::i;:::-;20278:2;20273:3;20269:12;20262:19;;19921:366;;;:::o;20293:419::-;20459:4;20497:2;20486:9;20482:18;20474:26;;20546:9;20540:4;20536:20;20532:1;20521:9;20517:17;20510:47;20574:131;20700:4;20574:131;:::i;:::-;20566:139;;20293:419;;;:::o;20718:180::-;20766:77;20763:1;20756:88;20863:4;20860:1;20853:15;20887:4;20884:1;20877:15;20904:191;20944:3;20963:20;20981:1;20963:20;:::i;:::-;20958:25;;20997:20;21015:1;20997:20;:::i;:::-;20992:25;;21040:1;21037;21033:9;21026:16;;21061:3;21058:1;21055:10;21052:36;;;21068:18;;:::i;:::-;21052:36;20904:191;;;;:::o;21101:164::-;21241:16;21237:1;21229:6;21225:14;21218:40;21101:164;:::o;21271:366::-;21413:3;21434:67;21498:2;21493:3;21434:67;:::i;:::-;21427:74;;21510:93;21599:3;21510:93;:::i;:::-;21628:2;21623:3;21619:12;21612:19;;21271:366;;;:::o;21643:419::-;21809:4;21847:2;21836:9;21832:18;21824:26;;21896:9;21890:4;21886:20;21882:1;21871:9;21867:17;21860:47;21924:131;22050:4;21924:131;:::i;:::-;21916:139;;21643:419;;;:::o;22068:148::-;22170:11;22207:3;22192:18;;22068:148;;;;:::o;22222:390::-;22328:3;22356:39;22389:5;22356:39;:::i;:::-;22411:89;22493:6;22488:3;22411:89;:::i;:::-;22404:96;;22509:65;22567:6;22562:3;22555:4;22548:5;22544:16;22509:65;:::i;:::-;22599:6;22594:3;22590:16;22583:23;;22332:280;22222:390;;;;:::o;22618:435::-;22798:3;22820:95;22911:3;22902:6;22820:95;:::i;:::-;22813:102;;22932:95;23023:3;23014:6;22932:95;:::i;:::-;22925:102;;23044:3;23037:10;;22618:435;;;;;:::o;23059:225::-;23199:34;23195:1;23187:6;23183:14;23176:58;23268:8;23263:2;23255:6;23251:15;23244:33;23059:225;:::o;23290:366::-;23432:3;23453:67;23517:2;23512:3;23453:67;:::i;:::-;23446:74;;23529:93;23618:3;23529:93;:::i;:::-;23647:2;23642:3;23638:12;23631:19;;23290:366;;;:::o;23662:419::-;23828:4;23866:2;23855:9;23851:18;23843:26;;23915:9;23909:4;23905:20;23901:1;23890:9;23886:17;23879:47;23943:131;24069:4;23943:131;:::i;:::-;23935:139;;23662:419;;;:::o;24087:171::-;24126:3;24149:24;24167:5;24149:24;:::i;:::-;24140:33;;24195:4;24188:5;24185:15;24182:41;;24203:18;;:::i;:::-;24182:41;24250:1;24243:5;24239:13;24232:20;;24087:171;;;:::o;24264:332::-;24385:4;24423:2;24412:9;24408:18;24400:26;;24436:71;24504:1;24493:9;24489:17;24480:6;24436:71;:::i;:::-;24517:72;24585:2;24574:9;24570:18;24561:6;24517:72;:::i;:::-;24264:332;;;;;:::o;24602:137::-;24656:5;24687:6;24681:13;24672:22;;24703:30;24727:5;24703:30;:::i;:::-;24602:137;;;;:::o;24745:345::-;24812:6;24861:2;24849:9;24840:7;24836:23;24832:32;24829:119;;;24867:79;;:::i;:::-;24829:119;24987:1;25012:61;25065:7;25056:6;25045:9;25041:22;25012:61;:::i;:::-;25002:71;;24958:125;24745:345;;;;:::o;25096:98::-;25147:6;25181:5;25175:12;25165:22;;25096:98;;;:::o;25200:168::-;25283:11;25317:6;25312:3;25305:19;25357:4;25352:3;25348:14;25333:29;;25200:168;;;;:::o;25374:373::-;25460:3;25488:38;25520:5;25488:38;:::i;:::-;25542:70;25605:6;25600:3;25542:70;:::i;:::-;25535:77;;25621:65;25679:6;25674:3;25667:4;25660:5;25656:16;25621:65;:::i;:::-;25711:29;25733:6;25711:29;:::i;:::-;25706:3;25702:39;25695:46;;25464:283;25374:373;;;;:::o;25753:640::-;25948:4;25986:3;25975:9;25971:19;25963:27;;26000:71;26068:1;26057:9;26053:17;26044:6;26000:71;:::i;:::-;26081:72;26149:2;26138:9;26134:18;26125:6;26081:72;:::i;:::-;26163;26231:2;26220:9;26216:18;26207:6;26163:72;:::i;:::-;26282:9;26276:4;26272:20;26267:2;26256:9;26252:18;26245:48;26310:76;26381:4;26372:6;26310:76;:::i;:::-;26302:84;;25753:640;;;;;;;:::o;26399:141::-;26455:5;26486:6;26480:13;26471:22;;26502:32;26528:5;26502:32;:::i;:::-;26399:141;;;;:::o;26546:349::-;26615:6;26664:2;26652:9;26643:7;26639:23;26635:32;26632:119;;;26670:79;;:::i;:::-;26632:119;26790:1;26815:63;26870:7;26861:6;26850:9;26846:22;26815:63;:::i;:::-;26805:73;;26761:127;26546:349;;;;:::o

Swarm Source

ipfs://44c672f105e7250e2be7abbedaa7bd16f41fd218752ec05377bf70cb842ea627
Loading...
Loading
Loading...
Loading
[ 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.