ETH Price: $3,464.03 (+3.99%)
Gas: 4 Gwei

Token

Degen Ninjas (DN)
 

Overview

Max Total Supply

1,378 DN

Holders

338

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
0 DN
0xf9121a23647bc6a24374f0beca498b8545b4a285
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:
DegenNinjas

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-04-11
*/

// SPDX-License-Identifier: MIT
// File: operator-filter-registry/src/lib/Constants.sol


pragma solidity ^0.8.13;

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

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


pragma solidity ^0.8.13;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.13;


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

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

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS);

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

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

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

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

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


pragma solidity ^0.8.13;


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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

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

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

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

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

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

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

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

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

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

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

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

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

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

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

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

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

// File: contract.sol


pragma solidity ^0.8.17;


contract DegenNinjas is ERC721A, Ownable, DefaultOperatorFilterer {
    bool public isSale = false;
    uint256 public constant max_supply = 5555;
    uint256 public price = 0.004 ether;
    uint256 public max_per_wallet = 5;
    string private baseURI = "";

    constructor(string memory _baseUri) ERC721A("Degen Ninjas", "DN") {
        baseURI = _baseUri;
    }

    function mint(uint256 quantity) external payable {
        require(isSale, "Sale is not active");
        require(msg.sender == tx.origin, "No contracts allowed");
        require(balanceOf(msg.sender) + quantity <= max_per_wallet, "Exceeds max per wallet");
        require(totalSupply() + quantity <= max_supply, "Max supply exceeded");
        require(price * quantity <= msg.value, "Not enough ether supplied");
        _mint(msg.sender, quantity);
    }

    function ownerMint(uint256 quantity, address to) external payable onlyOwner {
        require(totalSupply() + quantity < max_supply,"Exceeds max supply");
        require(price * quantity <= msg.value, "Not enough ether supplied");
        _mint(to, quantity);
    }

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

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

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

    function changePrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function changeMaxPerWallet(uint256 _max) external onlyOwner {
        max_per_wallet = _max;
    }

    function changeBaseURI(string memory _baseUri) external onlyOwner {
        baseURI = _baseUri;
    }

    function flipSaleState() external onlyOwner {
        isSale = !isSale;
    }

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"changeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"changeMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"isSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_per_wallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"ownerMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600860146101000a81548160ff021916908315150217905550660e35fa931a00006009556005600a5560405180602001604052806000815250600b90816200004f9190620006c3565b503480156200005d57600080fd5b50604051620038ba380380620038ba83398181016040528101906200008391906200090e565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600c81526020017f446567656e204e696e6a617300000000000000000000000000000000000000008152506040518060400160405280600281526020017f444e0000000000000000000000000000000000000000000000000000000000008152508160029081620001179190620006c3565b508060039081620001299190620006c3565b506200013a6200037260201b60201c565b600081905550505062000162620001566200037b60201b60201c565b6200038360201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003575780156200021d576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001e3929190620009a4565b600060405180830381600087803b158015620001fe57600080fd5b505af115801562000213573d6000803e3d6000fd5b5050505062000356565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002d7576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200029d929190620009a4565b600060405180830381600087803b158015620002b857600080fd5b505af1158015620002cd573d6000803e3d6000fd5b5050505062000355565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620003209190620009d1565b600060405180830381600087803b1580156200033b57600080fd5b505af115801562000350573d6000803e3d6000fd5b505050505b5b5b505080600b90816200036a9190620006c3565b5050620009ee565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004cb57607f821691505b602082108103620004e157620004e062000483565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200054b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200050c565b6200055786836200050c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005a46200059e62000598846200056f565b62000579565b6200056f565b9050919050565b6000819050919050565b620005c08362000583565b620005d8620005cf82620005ab565b84845462000519565b825550505050565b600090565b620005ef620005e0565b620005fc818484620005b5565b505050565b5b81811015620006245762000618600082620005e5565b60018101905062000602565b5050565b601f82111562000673576200063d81620004e7565b6200064884620004fc565b8101602085101562000658578190505b620006706200066785620004fc565b83018262000601565b50505b505050565b600082821c905092915050565b6000620006986000198460080262000678565b1980831691505092915050565b6000620006b3838362000685565b9150826002028217905092915050565b620006ce8262000449565b67ffffffffffffffff811115620006ea57620006e962000454565b5b620006f68254620004b2565b6200070382828562000628565b600060209050601f8311600181146200073b576000841562000726578287015190505b620007328582620006a5565b865550620007a2565b601f1984166200074b86620004e7565b60005b8281101562000775578489015182556001820191506020850194506020810190506200074e565b8683101562000795578489015162000791601f89168262000685565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620007e482620007c8565b810181811067ffffffffffffffff8211171562000806576200080562000454565b5b80604052505050565b60006200081b620007aa565b9050620008298282620007d9565b919050565b600067ffffffffffffffff8211156200084c576200084b62000454565b5b6200085782620007c8565b9050602081019050919050565b60005b838110156200088457808201518184015260208101905062000867565b60008484015250505050565b6000620008a7620008a1846200082e565b6200080f565b905082815260208101848484011115620008c657620008c5620007c3565b5b620008d384828562000864565b509392505050565b600082601f830112620008f357620008f2620007be565b5b81516200090584826020860162000890565b91505092915050565b600060208284031215620009275762000926620007b4565b5b600082015167ffffffffffffffff811115620009485762000947620007b9565b5b6200095684828501620008db565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200098c826200095f565b9050919050565b6200099e816200097f565b82525050565b6000604082019050620009bb600083018562000993565b620009ca602083018462000993565b9392505050565b6000602082019050620009e8600083018462000993565b92915050565b612ebc80620009fe6000396000f3fe6080604052600436106101c25760003560e01c80638a333b50116100f7578063a54aed2b11610095578063d52c57e011610064578063d52c57e0146105c5578063e985e9c5146105e1578063f2fde38b1461061e578063f8c1c18614610647576101c2565b8063a54aed2b14610518578063ab53fcaa14610541578063b88d4fde1461056c578063c87b56dd14610588576101c2565b8063a035b1fe116100d1578063a035b1fe1461047f578063a0712d68146104aa578063a22cb465146104c6578063a2b40d19146104ef576101c2565b80638a333b50146103fe5780638da5cb5b1461042957806395d89b4114610454576101c2565b806339a0c6f91161016457806342842e0e1161013e57806342842e0e146103515780636352211e1461036d57806370a08231146103aa578063715018a6146103e7576101c2565b806339a0c6f9146102e65780633ccfd60b1461030f57806341f4343414610326576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461028857806323b872dd146102b357806334918dfd146102cf576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190611ee7565b610672565b6040516101fb9190611f2f565b60405180910390f35b34801561021057600080fd5b50610219610704565b6040516102269190611fda565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612032565b610796565b60405161026391906120a0565b60405180910390f35b610286600480360381019061028191906120e7565b610815565b005b34801561029457600080fd5b5061029d61082e565b6040516102aa9190612136565b60405180910390f35b6102cd60048036038101906102c89190612151565b610845565b005b3480156102db57600080fd5b506102e4610894565b005b3480156102f257600080fd5b5061030d600480360381019061030891906122d9565b6108c8565b005b34801561031b57600080fd5b506103246108e3565b005b34801561033257600080fd5b5061033b61093a565b6040516103489190612381565b60405180910390f35b61036b60048036038101906103669190612151565b61094c565b005b34801561037957600080fd5b50610394600480360381019061038f9190612032565b61099b565b6040516103a191906120a0565b60405180910390f35b3480156103b657600080fd5b506103d160048036038101906103cc919061239c565b6109ad565b6040516103de9190612136565b60405180910390f35b3480156103f357600080fd5b506103fc610a65565b005b34801561040a57600080fd5b50610413610a79565b6040516104209190612136565b60405180910390f35b34801561043557600080fd5b5061043e610a7f565b60405161044b91906120a0565b60405180910390f35b34801561046057600080fd5b50610469610aa9565b6040516104769190611fda565b60405180910390f35b34801561048b57600080fd5b50610494610b3b565b6040516104a19190612136565b60405180910390f35b6104c460048036038101906104bf9190612032565b610b41565b005b3480156104d257600080fd5b506104ed60048036038101906104e891906123f5565b610d0a565b005b3480156104fb57600080fd5b5061051660048036038101906105119190612032565b610d23565b005b34801561052457600080fd5b5061053f600480360381019061053a9190612032565b610d35565b005b34801561054d57600080fd5b50610556610d47565b6040516105639190612136565b60405180910390f35b610586600480360381019061058191906124d6565b610d4d565b005b34801561059457600080fd5b506105af60048036038101906105aa9190612032565b610d9e565b6040516105bc9190611fda565b60405180910390f35b6105df60048036038101906105da9190612559565b610e3c565b005b3480156105ed57600080fd5b5061060860048036038101906106039190612599565b610ef8565b6040516106159190611f2f565b60405180910390f35b34801561062a57600080fd5b506106456004803603810190610640919061239c565b610f8c565b005b34801561065357600080fd5b5061065c61100f565b6040516106699190611f2f565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106cd57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106fd5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461071390612608565b80601f016020809104026020016040519081016040528092919081815260200182805461073f90612608565b801561078c5780601f106107615761010080835404028352916020019161078c565b820191906000526020600020905b81548152906001019060200180831161076f57829003601f168201915b5050505050905090565b60006107a182611022565b6107d7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8161081f81611081565b610829838361117e565b505050565b60006108386112c2565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108835761088233611081565b5b61088e8484846112cb565b50505050565b61089c6115ed565b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b6108d06115ed565b80600b90816108df91906127db565b5050565b6108eb6115ed565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610936573d6000803e3d6000fd5b5050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461098a5761098933611081565b5b61099584848461166b565b50505050565b60006109a68261168b565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a14576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610a6d6115ed565b610a776000611757565b565b6115b381565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610ab890612608565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae490612608565b8015610b315780601f10610b0657610100808354040283529160200191610b31565b820191906000526020600020905b815481529060010190602001808311610b1457829003601f168201915b5050505050905090565b60095481565b600860149054906101000a900460ff16610b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b87906128f9565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf590612965565b60405180910390fd5b600a5481610c0b336109ad565b610c1591906129b4565b1115610c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4d90612a34565b60405180910390fd5b6115b381610c6261082e565b610c6c91906129b4565b1115610cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca490612aa0565b60405180910390fd5b3481600954610cbc9190612ac0565b1115610cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf490612b4e565b60405180910390fd5b610d07338261181d565b50565b81610d1481611081565b610d1e83836119d8565b505050565b610d2b6115ed565b8060098190555050565b610d3d6115ed565b80600a8190555050565b600a5481565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d8b57610d8a33611081565b5b610d9785858585611ae3565b5050505050565b6060610da982611022565b610ddf576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610de9611b56565b90506000815103610e095760405180602001604052806000815250610e34565b80610e1384611be8565b604051602001610e24929190612baa565b6040516020818303038152906040525b915050919050565b610e446115ed565b6115b382610e5061082e565b610e5a91906129b4565b10610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9190612c1a565b60405180910390fd5b3482600954610ea99190612ac0565b1115610eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee190612b4e565b60405180910390fd5b610ef4818361181d565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f946115ed565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90612cac565b60405180910390fd5b61100c81611757565b50565b600860149054906101000a900460ff1681565b60008161102d6112c2565b1115801561103c575060005482105b801561107a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561117b576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016110f8929190612ccc565b602060405180830381865afa158015611115573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111399190612d0a565b61117a57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161117191906120a0565b60405180910390fd5b5b50565b60006111898261099b565b90508073ffffffffffffffffffffffffffffffffffffffff166111aa611c38565b73ffffffffffffffffffffffffffffffffffffffff161461120d576111d6816111d1611c38565b610ef8565b61120c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006112d68261168b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461133d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061134984611c40565b9150915061135f818761135a611c38565b611c67565b6113ab576113748661136f611c38565b610ef8565b6113aa576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611411576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61141e8686866001611cab565b801561142957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506114f7856114d3888887611cb1565b7c020000000000000000000000000000000000000000000000000000000017611cd9565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361157d576000600185019050600060046000838152602001908152602001600020540361157b57600054811461157a578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46115e58686866001611d04565b505050505050565b6115f5611d0a565b73ffffffffffffffffffffffffffffffffffffffff16611613610a7f565b73ffffffffffffffffffffffffffffffffffffffff1614611669576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166090612d83565b60405180910390fd5b565b61168683838360405180602001604052806000815250610d4d565b505050565b6000808290508061169a6112c2565b116117205760005481101561171f5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361171d575b600081036117135760046000836001900393508381526020019081526020016000205490506116e9565b8092505050611752565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000805490506000820361185d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61186a6000848385611cab565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506118e1836118d26000866000611cb1565b6118db85611d12565b17611cd9565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461198257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611947565b50600082036119bd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506119d36000848385611d04565b505050565b80600760006119e5611c38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a92611c38565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ad79190611f2f565b60405180910390a35050565b611aee848484610845565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b5057611b1984848484611d22565b611b4f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600b8054611b6590612608565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9190612608565b8015611bde5780601f10611bb357610100808354040283529160200191611bde565b820191906000526020600020905b815481529060010190602001808311611bc157829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611c2357600184039350600a81066030018453600a8104905080611c01575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611cc8868684611e72565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60006001821460e11b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d48611c38565b8786866040518563ffffffff1660e01b8152600401611d6a9493929190612df8565b6020604051808303816000875af1925050508015611da657506040513d601f19601f82011682018060405250810190611da39190612e59565b60015b611e1f573d8060008114611dd6576040519150601f19603f3d011682016040523d82523d6000602084013e611ddb565b606091505b506000815103611e17576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611ec481611e8f565b8114611ecf57600080fd5b50565b600081359050611ee181611ebb565b92915050565b600060208284031215611efd57611efc611e85565b5b6000611f0b84828501611ed2565b91505092915050565b60008115159050919050565b611f2981611f14565b82525050565b6000602082019050611f446000830184611f20565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611f84578082015181840152602081019050611f69565b60008484015250505050565b6000601f19601f8301169050919050565b6000611fac82611f4a565b611fb68185611f55565b9350611fc6818560208601611f66565b611fcf81611f90565b840191505092915050565b60006020820190508181036000830152611ff48184611fa1565b905092915050565b6000819050919050565b61200f81611ffc565b811461201a57600080fd5b50565b60008135905061202c81612006565b92915050565b60006020828403121561204857612047611e85565b5b60006120568482850161201d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061208a8261205f565b9050919050565b61209a8161207f565b82525050565b60006020820190506120b56000830184612091565b92915050565b6120c48161207f565b81146120cf57600080fd5b50565b6000813590506120e1816120bb565b92915050565b600080604083850312156120fe576120fd611e85565b5b600061210c858286016120d2565b925050602061211d8582860161201d565b9150509250929050565b61213081611ffc565b82525050565b600060208201905061214b6000830184612127565b92915050565b60008060006060848603121561216a57612169611e85565b5b6000612178868287016120d2565b9350506020612189868287016120d2565b925050604061219a8682870161201d565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6121e682611f90565b810181811067ffffffffffffffff82111715612205576122046121ae565b5b80604052505050565b6000612218611e7b565b905061222482826121dd565b919050565b600067ffffffffffffffff821115612244576122436121ae565b5b61224d82611f90565b9050602081019050919050565b82818337600083830152505050565b600061227c61227784612229565b61220e565b905082815260208101848484011115612298576122976121a9565b5b6122a384828561225a565b509392505050565b600082601f8301126122c0576122bf6121a4565b5b81356122d0848260208601612269565b91505092915050565b6000602082840312156122ef576122ee611e85565b5b600082013567ffffffffffffffff81111561230d5761230c611e8a565b5b612319848285016122ab565b91505092915050565b6000819050919050565b600061234761234261233d8461205f565b612322565b61205f565b9050919050565b60006123598261232c565b9050919050565b600061236b8261234e565b9050919050565b61237b81612360565b82525050565b60006020820190506123966000830184612372565b92915050565b6000602082840312156123b2576123b1611e85565b5b60006123c0848285016120d2565b91505092915050565b6123d281611f14565b81146123dd57600080fd5b50565b6000813590506123ef816123c9565b92915050565b6000806040838503121561240c5761240b611e85565b5b600061241a858286016120d2565b925050602061242b858286016123e0565b9150509250929050565b600067ffffffffffffffff8211156124505761244f6121ae565b5b61245982611f90565b9050602081019050919050565b600061247961247484612435565b61220e565b905082815260208101848484011115612495576124946121a9565b5b6124a084828561225a565b509392505050565b600082601f8301126124bd576124bc6121a4565b5b81356124cd848260208601612466565b91505092915050565b600080600080608085870312156124f0576124ef611e85565b5b60006124fe878288016120d2565b945050602061250f878288016120d2565b93505060406125208782880161201d565b925050606085013567ffffffffffffffff81111561254157612540611e8a565b5b61254d878288016124a8565b91505092959194509250565b600080604083850312156125705761256f611e85565b5b600061257e8582860161201d565b925050602061258f858286016120d2565b9150509250929050565b600080604083850312156125b0576125af611e85565b5b60006125be858286016120d2565b92505060206125cf858286016120d2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061262057607f821691505b602082108103612633576126326125d9565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261269b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261265e565b6126a5868361265e565b95508019841693508086168417925050509392505050565b60006126d86126d36126ce84611ffc565b612322565b611ffc565b9050919050565b6000819050919050565b6126f2836126bd565b6127066126fe826126df565b84845461266b565b825550505050565b600090565b61271b61270e565b6127268184846126e9565b505050565b5b8181101561274a5761273f600082612713565b60018101905061272c565b5050565b601f82111561278f5761276081612639565b6127698461264e565b81016020851015612778578190505b61278c6127848561264e565b83018261272b565b50505b505050565b600082821c905092915050565b60006127b260001984600802612794565b1980831691505092915050565b60006127cb83836127a1565b9150826002028217905092915050565b6127e482611f4a565b67ffffffffffffffff8111156127fd576127fc6121ae565b5b6128078254612608565b61281282828561274e565b600060209050601f8311600181146128455760008415612833578287015190505b61283d85826127bf565b8655506128a5565b601f19841661285386612639565b60005b8281101561287b57848901518255600182019150602085019450602081019050612856565b868310156128985784890151612894601f8916826127a1565b8355505b6001600288020188555050505b505050505050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b60006128e3601283611f55565b91506128ee826128ad565b602082019050919050565b60006020820190508181036000830152612912816128d6565b9050919050565b7f4e6f20636f6e74726163747320616c6c6f776564000000000000000000000000600082015250565b600061294f601483611f55565b915061295a82612919565b602082019050919050565b6000602082019050818103600083015261297e81612942565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006129bf82611ffc565b91506129ca83611ffc565b92508282019050808211156129e2576129e1612985565b5b92915050565b7f45786365656473206d6178207065722077616c6c657400000000000000000000600082015250565b6000612a1e601683611f55565b9150612a29826129e8565b602082019050919050565b60006020820190508181036000830152612a4d81612a11565b9050919050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b6000612a8a601383611f55565b9150612a9582612a54565b602082019050919050565b60006020820190508181036000830152612ab981612a7d565b9050919050565b6000612acb82611ffc565b9150612ad683611ffc565b9250828202612ae481611ffc565b91508282048414831517612afb57612afa612985565b5b5092915050565b7f4e6f7420656e6f75676820657468657220737570706c69656400000000000000600082015250565b6000612b38601983611f55565b9150612b4382612b02565b602082019050919050565b60006020820190508181036000830152612b6781612b2b565b9050919050565b600081905092915050565b6000612b8482611f4a565b612b8e8185612b6e565b9350612b9e818560208601611f66565b80840191505092915050565b6000612bb68285612b79565b9150612bc28284612b79565b91508190509392505050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000612c04601283611f55565b9150612c0f82612bce565b602082019050919050565b60006020820190508181036000830152612c3381612bf7565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612c96602683611f55565b9150612ca182612c3a565b604082019050919050565b60006020820190508181036000830152612cc581612c89565b9050919050565b6000604082019050612ce16000830185612091565b612cee6020830184612091565b9392505050565b600081519050612d04816123c9565b92915050565b600060208284031215612d2057612d1f611e85565b5b6000612d2e84828501612cf5565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612d6d602083611f55565b9150612d7882612d37565b602082019050919050565b60006020820190508181036000830152612d9c81612d60565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612dca82612da3565b612dd48185612dae565b9350612de4818560208601611f66565b612ded81611f90565b840191505092915050565b6000608082019050612e0d6000830187612091565b612e1a6020830186612091565b612e276040830185612127565b8181036060830152612e398184612dbf565b905095945050505050565b600081519050612e5381611ebb565b92915050565b600060208284031215612e6f57612e6e611e85565b5b6000612e7d84828501612e44565b9150509291505056fea264697066735822122017a4917efaee030cd763dbbecdef553acdc1da4d5ef19804493789265fc239aa64736f6c6343000812003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d50393458446b4c795262533870656a4a31356262745876567243584b765a767056656159465247534e464e6b2f00000000000000000000

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80638a333b50116100f7578063a54aed2b11610095578063d52c57e011610064578063d52c57e0146105c5578063e985e9c5146105e1578063f2fde38b1461061e578063f8c1c18614610647576101c2565b8063a54aed2b14610518578063ab53fcaa14610541578063b88d4fde1461056c578063c87b56dd14610588576101c2565b8063a035b1fe116100d1578063a035b1fe1461047f578063a0712d68146104aa578063a22cb465146104c6578063a2b40d19146104ef576101c2565b80638a333b50146103fe5780638da5cb5b1461042957806395d89b4114610454576101c2565b806339a0c6f91161016457806342842e0e1161013e57806342842e0e146103515780636352211e1461036d57806370a08231146103aa578063715018a6146103e7576101c2565b806339a0c6f9146102e65780633ccfd60b1461030f57806341f4343414610326576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461028857806323b872dd146102b357806334918dfd146102cf576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190611ee7565b610672565b6040516101fb9190611f2f565b60405180910390f35b34801561021057600080fd5b50610219610704565b6040516102269190611fda565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612032565b610796565b60405161026391906120a0565b60405180910390f35b610286600480360381019061028191906120e7565b610815565b005b34801561029457600080fd5b5061029d61082e565b6040516102aa9190612136565b60405180910390f35b6102cd60048036038101906102c89190612151565b610845565b005b3480156102db57600080fd5b506102e4610894565b005b3480156102f257600080fd5b5061030d600480360381019061030891906122d9565b6108c8565b005b34801561031b57600080fd5b506103246108e3565b005b34801561033257600080fd5b5061033b61093a565b6040516103489190612381565b60405180910390f35b61036b60048036038101906103669190612151565b61094c565b005b34801561037957600080fd5b50610394600480360381019061038f9190612032565b61099b565b6040516103a191906120a0565b60405180910390f35b3480156103b657600080fd5b506103d160048036038101906103cc919061239c565b6109ad565b6040516103de9190612136565b60405180910390f35b3480156103f357600080fd5b506103fc610a65565b005b34801561040a57600080fd5b50610413610a79565b6040516104209190612136565b60405180910390f35b34801561043557600080fd5b5061043e610a7f565b60405161044b91906120a0565b60405180910390f35b34801561046057600080fd5b50610469610aa9565b6040516104769190611fda565b60405180910390f35b34801561048b57600080fd5b50610494610b3b565b6040516104a19190612136565b60405180910390f35b6104c460048036038101906104bf9190612032565b610b41565b005b3480156104d257600080fd5b506104ed60048036038101906104e891906123f5565b610d0a565b005b3480156104fb57600080fd5b5061051660048036038101906105119190612032565b610d23565b005b34801561052457600080fd5b5061053f600480360381019061053a9190612032565b610d35565b005b34801561054d57600080fd5b50610556610d47565b6040516105639190612136565b60405180910390f35b610586600480360381019061058191906124d6565b610d4d565b005b34801561059457600080fd5b506105af60048036038101906105aa9190612032565b610d9e565b6040516105bc9190611fda565b60405180910390f35b6105df60048036038101906105da9190612559565b610e3c565b005b3480156105ed57600080fd5b5061060860048036038101906106039190612599565b610ef8565b6040516106159190611f2f565b60405180910390f35b34801561062a57600080fd5b506106456004803603810190610640919061239c565b610f8c565b005b34801561065357600080fd5b5061065c61100f565b6040516106699190611f2f565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106cd57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106fd5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461071390612608565b80601f016020809104026020016040519081016040528092919081815260200182805461073f90612608565b801561078c5780601f106107615761010080835404028352916020019161078c565b820191906000526020600020905b81548152906001019060200180831161076f57829003601f168201915b5050505050905090565b60006107a182611022565b6107d7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8161081f81611081565b610829838361117e565b505050565b60006108386112c2565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108835761088233611081565b5b61088e8484846112cb565b50505050565b61089c6115ed565b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b6108d06115ed565b80600b90816108df91906127db565b5050565b6108eb6115ed565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610936573d6000803e3d6000fd5b5050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461098a5761098933611081565b5b61099584848461166b565b50505050565b60006109a68261168b565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a14576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610a6d6115ed565b610a776000611757565b565b6115b381565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610ab890612608565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae490612608565b8015610b315780601f10610b0657610100808354040283529160200191610b31565b820191906000526020600020905b815481529060010190602001808311610b1457829003601f168201915b5050505050905090565b60095481565b600860149054906101000a900460ff16610b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b87906128f9565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf590612965565b60405180910390fd5b600a5481610c0b336109ad565b610c1591906129b4565b1115610c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4d90612a34565b60405180910390fd5b6115b381610c6261082e565b610c6c91906129b4565b1115610cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca490612aa0565b60405180910390fd5b3481600954610cbc9190612ac0565b1115610cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf490612b4e565b60405180910390fd5b610d07338261181d565b50565b81610d1481611081565b610d1e83836119d8565b505050565b610d2b6115ed565b8060098190555050565b610d3d6115ed565b80600a8190555050565b600a5481565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d8b57610d8a33611081565b5b610d9785858585611ae3565b5050505050565b6060610da982611022565b610ddf576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610de9611b56565b90506000815103610e095760405180602001604052806000815250610e34565b80610e1384611be8565b604051602001610e24929190612baa565b6040516020818303038152906040525b915050919050565b610e446115ed565b6115b382610e5061082e565b610e5a91906129b4565b10610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9190612c1a565b60405180910390fd5b3482600954610ea99190612ac0565b1115610eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee190612b4e565b60405180910390fd5b610ef4818361181d565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f946115ed565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90612cac565b60405180910390fd5b61100c81611757565b50565b600860149054906101000a900460ff1681565b60008161102d6112c2565b1115801561103c575060005482105b801561107a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561117b576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016110f8929190612ccc565b602060405180830381865afa158015611115573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111399190612d0a565b61117a57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161117191906120a0565b60405180910390fd5b5b50565b60006111898261099b565b90508073ffffffffffffffffffffffffffffffffffffffff166111aa611c38565b73ffffffffffffffffffffffffffffffffffffffff161461120d576111d6816111d1611c38565b610ef8565b61120c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006112d68261168b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461133d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061134984611c40565b9150915061135f818761135a611c38565b611c67565b6113ab576113748661136f611c38565b610ef8565b6113aa576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611411576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61141e8686866001611cab565b801561142957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506114f7856114d3888887611cb1565b7c020000000000000000000000000000000000000000000000000000000017611cd9565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361157d576000600185019050600060046000838152602001908152602001600020540361157b57600054811461157a578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46115e58686866001611d04565b505050505050565b6115f5611d0a565b73ffffffffffffffffffffffffffffffffffffffff16611613610a7f565b73ffffffffffffffffffffffffffffffffffffffff1614611669576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166090612d83565b60405180910390fd5b565b61168683838360405180602001604052806000815250610d4d565b505050565b6000808290508061169a6112c2565b116117205760005481101561171f5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361171d575b600081036117135760046000836001900393508381526020019081526020016000205490506116e9565b8092505050611752565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000805490506000820361185d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61186a6000848385611cab565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506118e1836118d26000866000611cb1565b6118db85611d12565b17611cd9565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461198257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611947565b50600082036119bd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506119d36000848385611d04565b505050565b80600760006119e5611c38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a92611c38565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ad79190611f2f565b60405180910390a35050565b611aee848484610845565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b5057611b1984848484611d22565b611b4f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600b8054611b6590612608565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9190612608565b8015611bde5780601f10611bb357610100808354040283529160200191611bde565b820191906000526020600020905b815481529060010190602001808311611bc157829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611c2357600184039350600a81066030018453600a8104905080611c01575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611cc8868684611e72565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60006001821460e11b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d48611c38565b8786866040518563ffffffff1660e01b8152600401611d6a9493929190612df8565b6020604051808303816000875af1925050508015611da657506040513d601f19601f82011682018060405250810190611da39190612e59565b60015b611e1f573d8060008114611dd6576040519150601f19603f3d011682016040523d82523d6000602084013e611ddb565b606091505b506000815103611e17576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611ec481611e8f565b8114611ecf57600080fd5b50565b600081359050611ee181611ebb565b92915050565b600060208284031215611efd57611efc611e85565b5b6000611f0b84828501611ed2565b91505092915050565b60008115159050919050565b611f2981611f14565b82525050565b6000602082019050611f446000830184611f20565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611f84578082015181840152602081019050611f69565b60008484015250505050565b6000601f19601f8301169050919050565b6000611fac82611f4a565b611fb68185611f55565b9350611fc6818560208601611f66565b611fcf81611f90565b840191505092915050565b60006020820190508181036000830152611ff48184611fa1565b905092915050565b6000819050919050565b61200f81611ffc565b811461201a57600080fd5b50565b60008135905061202c81612006565b92915050565b60006020828403121561204857612047611e85565b5b60006120568482850161201d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061208a8261205f565b9050919050565b61209a8161207f565b82525050565b60006020820190506120b56000830184612091565b92915050565b6120c48161207f565b81146120cf57600080fd5b50565b6000813590506120e1816120bb565b92915050565b600080604083850312156120fe576120fd611e85565b5b600061210c858286016120d2565b925050602061211d8582860161201d565b9150509250929050565b61213081611ffc565b82525050565b600060208201905061214b6000830184612127565b92915050565b60008060006060848603121561216a57612169611e85565b5b6000612178868287016120d2565b9350506020612189868287016120d2565b925050604061219a8682870161201d565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6121e682611f90565b810181811067ffffffffffffffff82111715612205576122046121ae565b5b80604052505050565b6000612218611e7b565b905061222482826121dd565b919050565b600067ffffffffffffffff821115612244576122436121ae565b5b61224d82611f90565b9050602081019050919050565b82818337600083830152505050565b600061227c61227784612229565b61220e565b905082815260208101848484011115612298576122976121a9565b5b6122a384828561225a565b509392505050565b600082601f8301126122c0576122bf6121a4565b5b81356122d0848260208601612269565b91505092915050565b6000602082840312156122ef576122ee611e85565b5b600082013567ffffffffffffffff81111561230d5761230c611e8a565b5b612319848285016122ab565b91505092915050565b6000819050919050565b600061234761234261233d8461205f565b612322565b61205f565b9050919050565b60006123598261232c565b9050919050565b600061236b8261234e565b9050919050565b61237b81612360565b82525050565b60006020820190506123966000830184612372565b92915050565b6000602082840312156123b2576123b1611e85565b5b60006123c0848285016120d2565b91505092915050565b6123d281611f14565b81146123dd57600080fd5b50565b6000813590506123ef816123c9565b92915050565b6000806040838503121561240c5761240b611e85565b5b600061241a858286016120d2565b925050602061242b858286016123e0565b9150509250929050565b600067ffffffffffffffff8211156124505761244f6121ae565b5b61245982611f90565b9050602081019050919050565b600061247961247484612435565b61220e565b905082815260208101848484011115612495576124946121a9565b5b6124a084828561225a565b509392505050565b600082601f8301126124bd576124bc6121a4565b5b81356124cd848260208601612466565b91505092915050565b600080600080608085870312156124f0576124ef611e85565b5b60006124fe878288016120d2565b945050602061250f878288016120d2565b93505060406125208782880161201d565b925050606085013567ffffffffffffffff81111561254157612540611e8a565b5b61254d878288016124a8565b91505092959194509250565b600080604083850312156125705761256f611e85565b5b600061257e8582860161201d565b925050602061258f858286016120d2565b9150509250929050565b600080604083850312156125b0576125af611e85565b5b60006125be858286016120d2565b92505060206125cf858286016120d2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061262057607f821691505b602082108103612633576126326125d9565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261269b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261265e565b6126a5868361265e565b95508019841693508086168417925050509392505050565b60006126d86126d36126ce84611ffc565b612322565b611ffc565b9050919050565b6000819050919050565b6126f2836126bd565b6127066126fe826126df565b84845461266b565b825550505050565b600090565b61271b61270e565b6127268184846126e9565b505050565b5b8181101561274a5761273f600082612713565b60018101905061272c565b5050565b601f82111561278f5761276081612639565b6127698461264e565b81016020851015612778578190505b61278c6127848561264e565b83018261272b565b50505b505050565b600082821c905092915050565b60006127b260001984600802612794565b1980831691505092915050565b60006127cb83836127a1565b9150826002028217905092915050565b6127e482611f4a565b67ffffffffffffffff8111156127fd576127fc6121ae565b5b6128078254612608565b61281282828561274e565b600060209050601f8311600181146128455760008415612833578287015190505b61283d85826127bf565b8655506128a5565b601f19841661285386612639565b60005b8281101561287b57848901518255600182019150602085019450602081019050612856565b868310156128985784890151612894601f8916826127a1565b8355505b6001600288020188555050505b505050505050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b60006128e3601283611f55565b91506128ee826128ad565b602082019050919050565b60006020820190508181036000830152612912816128d6565b9050919050565b7f4e6f20636f6e74726163747320616c6c6f776564000000000000000000000000600082015250565b600061294f601483611f55565b915061295a82612919565b602082019050919050565b6000602082019050818103600083015261297e81612942565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006129bf82611ffc565b91506129ca83611ffc565b92508282019050808211156129e2576129e1612985565b5b92915050565b7f45786365656473206d6178207065722077616c6c657400000000000000000000600082015250565b6000612a1e601683611f55565b9150612a29826129e8565b602082019050919050565b60006020820190508181036000830152612a4d81612a11565b9050919050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b6000612a8a601383611f55565b9150612a9582612a54565b602082019050919050565b60006020820190508181036000830152612ab981612a7d565b9050919050565b6000612acb82611ffc565b9150612ad683611ffc565b9250828202612ae481611ffc565b91508282048414831517612afb57612afa612985565b5b5092915050565b7f4e6f7420656e6f75676820657468657220737570706c69656400000000000000600082015250565b6000612b38601983611f55565b9150612b4382612b02565b602082019050919050565b60006020820190508181036000830152612b6781612b2b565b9050919050565b600081905092915050565b6000612b8482611f4a565b612b8e8185612b6e565b9350612b9e818560208601611f66565b80840191505092915050565b6000612bb68285612b79565b9150612bc28284612b79565b91508190509392505050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000612c04601283611f55565b9150612c0f82612bce565b602082019050919050565b60006020820190508181036000830152612c3381612bf7565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612c96602683611f55565b9150612ca182612c3a565b604082019050919050565b60006020820190508181036000830152612cc581612c89565b9050919050565b6000604082019050612ce16000830185612091565b612cee6020830184612091565b9392505050565b600081519050612d04816123c9565b92915050565b600060208284031215612d2057612d1f611e85565b5b6000612d2e84828501612cf5565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612d6d602083611f55565b9150612d7882612d37565b602082019050919050565b60006020820190508181036000830152612d9c81612d60565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612dca82612da3565b612dd48185612dae565b9350612de4818560208601611f66565b612ded81611f90565b840191505092915050565b6000608082019050612e0d6000830187612091565b612e1a6020830186612091565b612e276040830185612127565b8181036060830152612e398184612dbf565b905095945050505050565b600081519050612e5381611ebb565b92915050565b600060208284031215612e6f57612e6e611e85565b5b6000612e7d84828501612e44565b9150509291505056fea264697066735822122017a4917efaee030cd763dbbecdef553acdc1da4d5ef19804493789265fc239aa64736f6c63430008120033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d50393458446b4c795262533870656a4a31356262745876567243584b765a767056656159465247534e464e6b2f00000000000000000000

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

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d50393458446b4c795262533870656a4a31356262745876
Arg [3] : 567243584b765a767056656159465247534e464e6b2f00000000000000000000


Deployed Bytecode Sourcemap

66206:2998:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33118:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34020:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40511:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68322:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29771:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68520:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68026:79;;;;;;;;;;;;;:::i;:::-;;67915:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67556:145;;;;;;;;;;;;;:::i;:::-;;7768:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68733:213;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35413:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30955:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13897:103;;;;;;;;;;;;;:::i;:::-;;66312:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13249:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34196:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66360:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66588:465;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68113:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67709:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67806:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66401:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68954:247;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34406:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67061:270;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41460:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14155:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66279:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33118:639;33203:4;33542:10;33527:25;;:11;:25;;;;:102;;;;33619:10;33604:25;;:11;:25;;;;33527:102;:179;;;;33696:10;33681:25;;:11;:25;;;;33527:179;33507:199;;33118:639;;;:::o;34020:100::-;34074:13;34107:5;34100:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34020:100;:::o;40511:218::-;40587:7;40612:16;40620:7;40612;:16::i;:::-;40607:64;;40637:34;;;;;;;;;;;;;;40607:64;40691:15;:24;40707:7;40691:24;;;;;;;;;;;:30;;;;;;;;;;;;40684:37;;40511:218;;;:::o;68322:190::-;68451:8;9550:30;9571:8;9550:20;:30::i;:::-;68472:32:::1;68486:8;68496:7;68472:13;:32::i;:::-;68322:190:::0;;;:::o;29771:323::-;29832:7;30060:15;:13;:15::i;:::-;30045:12;;30029:13;;:28;:46;30022:53;;29771:323;:::o;68520:205::-;68663:4;9284:10;9276:18;;:4;:18;;;9272:83;;9311:32;9332:10;9311:20;:32::i;:::-;9272:83;68680:37:::1;68699:4;68705:2;68709:7;68680:18;:37::i;:::-;68520:205:::0;;;;:::o;68026:79::-;13135:13;:11;:13::i;:::-;68091:6:::1;;;;;;;;;;;68090:7;68081:6;;:16;;;;;;;;;;;;;;;;;;68026:79::o:0;67915:103::-;13135:13;:11;:13::i;:::-;68002:8:::1;67992:7;:18;;;;;;:::i;:::-;;67915:103:::0;:::o;67556:145::-;13135:13;:11;:13::i;:::-;67606:15:::1;67624:21;67606:39;;67664:10;67656:28;;:37;67685:7;67656:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;67595:106;67556:145::o:0;7768:143::-;184:42;7768:143;:::o;68733:213::-;68880:4;9284:10;9276:18;;:4;:18;;;9272:83;;9311:32;9332:10;9311:20;:32::i;:::-;9272:83;68897:41:::1;68920:4;68926:2;68930:7;68897:22;:41::i;:::-;68733:213:::0;;;;:::o;35413:152::-;35485:7;35528:27;35547:7;35528:18;:27::i;:::-;35505:52;;35413:152;;;:::o;30955:233::-;31027:7;31068:1;31051:19;;:5;:19;;;31047:60;;31079:28;;;;;;;;;;;;;;31047:60;25114:13;31125:18;:25;31144:5;31125:25;;;;;;;;;;;;;;;;:55;31118:62;;30955:233;;;:::o;13897:103::-;13135:13;:11;:13::i;:::-;13962:30:::1;13989:1;13962:18;:30::i;:::-;13897:103::o:0;66312:41::-;66349:4;66312:41;:::o;13249:87::-;13295:7;13322:6;;;;;;;;;;;13315:13;;13249:87;:::o;34196:104::-;34252:13;34285:7;34278:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34196:104;:::o;66360:34::-;;;;:::o;66588:465::-;66656:6;;;;;;;;;;;66648:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;66718:9;66704:23;;:10;:23;;;66696:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;66807:14;;66795:8;66771:21;66781:10;66771:9;:21::i;:::-;:32;;;;:::i;:::-;:50;;66763:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;66349:4;66883:8;66867:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;66859:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;66968:9;66956:8;66948:5;;:16;;;;:::i;:::-;:29;;66940:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;67018:27;67024:10;67036:8;67018:5;:27::i;:::-;66588:465;:::o;68113:201::-;68242:8;9550:30;9571:8;9550:20;:30::i;:::-;68263:43:::1;68287:8;68297;68263:23;:43::i;:::-;68113:201:::0;;;:::o;67709:89::-;13135:13;:11;:13::i;:::-;67784:6:::1;67776:5;:14;;;;67709:89:::0;:::o;67806:101::-;13135:13;:11;:13::i;:::-;67895:4:::1;67878:14;:21;;;;67806:101:::0;:::o;66401:33::-;;;;:::o;68954:247::-;69129:4;9284:10;9276:18;;:4;:18;;;9272:83;;9311:32;9332:10;9311:20;:32::i;:::-;9272:83;69146:47:::1;69169:4;69175:2;69179:7;69188:4;69146:22;:47::i;:::-;68954:247:::0;;;;;:::o;34406:318::-;34479:13;34510:16;34518:7;34510;:16::i;:::-;34505:59;;34535:29;;;;;;;;;;;;;;34505:59;34577:21;34601:10;:8;:10::i;:::-;34577:34;;34654:1;34635:7;34629:21;:26;:87;;;;;;;;;;;;;;;;;34682:7;34691:18;34701:7;34691:9;:18::i;:::-;34665:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34629:87;34622:94;;;34406:318;;;:::o;67061:270::-;13135:13;:11;:13::i;:::-;66349:4:::1;67172:8;67156:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;67148:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;67254:9;67242:8;67234:5;;:16;;;;:::i;:::-;:29;;67226:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;67304:19;67310:2;67314:8;67304:5;:19::i;:::-;67061:270:::0;;:::o;41460:164::-;41557:4;41581:18;:25;41600:5;41581:25;;;;;;;;;;;;;;;:35;41607:8;41581:35;;;;;;;;;;;;;;;;;;;;;;;;;41574:42;;41460:164;;;;:::o;14155:201::-;13135:13;:11;:13::i;:::-;14264:1:::1;14244:22;;:8;:22;;::::0;14236:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;14320:28;14339:8;14320:18;:28::i;:::-;14155:201:::0;:::o;66279:26::-;;;;;;;;;;;;;:::o;41882:282::-;41947:4;42003:7;41984:15;:13;:15::i;:::-;:26;;:66;;;;;42037:13;;42027:7;:23;41984:66;:153;;;;;42136:1;25890:8;42088:17;:26;42106:7;42088:26;;;;;;;;;;;;:44;:49;41984:153;41964:173;;41882:282;;;:::o;9693:647::-;9932:1;184:42;9884:45;;;:49;9880:453;;;184:42;10183;;;10234:4;10241:8;10183:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10178:144;;10297:8;10278:28;;;;;;;;;;;:::i;:::-;;;;;;;;10178:144;9880:453;9693:647;:::o;39944:408::-;40033:13;40049:16;40057:7;40049;:16::i;:::-;40033:32;;40105:5;40082:28;;:19;:17;:19::i;:::-;:28;;;40078:175;;40130:44;40147:5;40154:19;:17;:19::i;:::-;40130:16;:44::i;:::-;40125:128;;40202:35;;;;;;;;;;;;;;40125:128;40078:175;40298:2;40265:15;:24;40281:7;40265:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;40336:7;40332:2;40316:28;;40325:5;40316:28;;;;;;;;;;;;40022:330;39944:408;;:::o;67447:101::-;67512:7;67539:1;67532:8;;67447:101;:::o;44150:2825::-;44292:27;44322;44341:7;44322:18;:27::i;:::-;44292:57;;44407:4;44366:45;;44382:19;44366:45;;;44362:86;;44420:28;;;;;;;;;;;;;;44362:86;44462:27;44491:23;44518:35;44545:7;44518:26;:35::i;:::-;44461:92;;;;44653:68;44678:15;44695:4;44701:19;:17;:19::i;:::-;44653:24;:68::i;:::-;44648:180;;44741:43;44758:4;44764:19;:17;:19::i;:::-;44741:16;:43::i;:::-;44736:92;;44793:35;;;;;;;;;;;;;;44736:92;44648:180;44859:1;44845:16;;:2;:16;;;44841:52;;44870:23;;;;;;;;;;;;;;44841:52;44906:43;44928:4;44934:2;44938:7;44947:1;44906:21;:43::i;:::-;45042:15;45039:160;;;45182:1;45161:19;45154:30;45039:160;45579:18;:24;45598:4;45579:24;;;;;;;;;;;;;;;;45577:26;;;;;;;;;;;;45648:18;:22;45667:2;45648:22;;;;;;;;;;;;;;;;45646:24;;;;;;;;;;;45970:146;46007:2;46056:45;46071:4;46077:2;46081:19;46056:14;:45::i;:::-;26170:8;46028:73;45970:18;:146::i;:::-;45941:17;:26;45959:7;45941:26;;;;;;;;;;;:175;;;;46287:1;26170:8;46236:19;:47;:52;46232:627;;46309:19;46341:1;46331:7;:11;46309:33;;46498:1;46464:17;:30;46482:11;46464:30;;;;;;;;;;;;:35;46460:384;;46602:13;;46587:11;:28;46583:242;;46782:19;46749:17;:30;46767:11;46749:30;;;;;;;;;;;:52;;;;46583:242;46460:384;46290:569;46232:627;46906:7;46902:2;46887:27;;46896:4;46887:27;;;;;;;;;;;;46925:42;46946:4;46952:2;46956:7;46965:1;46925:20;:42::i;:::-;44281:2694;;;44150:2825;;;:::o;13414:132::-;13489:12;:10;:12::i;:::-;13478:23;;:7;:5;:7::i;:::-;:23;;;13470:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13414:132::o;47071:193::-;47217:39;47234:4;47240:2;47244:7;47217:39;;;;;;;;;;;;:16;:39::i;:::-;47071:193;;;:::o;36568:1275::-;36635:7;36655:12;36670:7;36655:22;;36738:4;36719:15;:13;:15::i;:::-;:23;36715:1061;;36772:13;;36765:4;:20;36761:1015;;;36810:14;36827:17;:23;36845:4;36827:23;;;;;;;;;;;;36810:40;;36944:1;25890:8;36916:6;:24;:29;36912:845;;37581:113;37598:1;37588:6;:11;37581:113;;37641:17;:25;37659:6;;;;;;;37641:25;;;;;;;;;;;;37632:34;;37581:113;;;37727:6;37720:13;;;;;;36912:845;36787:989;36761:1015;36715:1061;37804:31;;;;;;;;;;;;;;36568:1275;;;;:::o;14516:191::-;14590:16;14609:6;;;;;;;;;;;14590:25;;14635:8;14626:6;;:17;;;;;;;;;;;;;;;;;;14690:8;14659:40;;14680:8;14659:40;;;;;;;;;;;;14579:128;14516:191;:::o;51531:2966::-;51604:20;51627:13;;51604:36;;51667:1;51655:8;:13;51651:44;;51677:18;;;;;;;;;;;;;;51651:44;51708:61;51738:1;51742:2;51746:12;51760:8;51708:21;:61::i;:::-;52252:1;25252:2;52222:1;:26;;52221:32;52209:8;:45;52183:18;:22;52202:2;52183:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;52531:139;52568:2;52622:33;52645:1;52649:2;52653:1;52622:14;:33::i;:::-;52589:30;52610:8;52589:20;:30::i;:::-;:66;52531:18;:139::i;:::-;52497:17;:31;52515:12;52497:31;;;;;;;;;;;:173;;;;52687:16;52718:11;52747:8;52732:12;:23;52718:37;;53268:16;53264:2;53260:25;53248:37;;53640:12;53600:8;53559:1;53497:25;53438:1;53377;53350:335;54011:1;53997:12;53993:20;53951:346;54052:3;54043:7;54040:16;53951:346;;54270:7;54260:8;54257:1;54230:25;54227:1;54224;54219:59;54105:1;54096:7;54092:15;54081:26;;53951:346;;;53955:77;54342:1;54330:8;:13;54326:45;;54352:19;;;;;;;;;;;;;;54326:45;54404:3;54388:13;:19;;;;51957:2462;;54429:60;54458:1;54462:2;54466:12;54480:8;54429:20;:60::i;:::-;51593:2904;51531:2966;;:::o;41069:234::-;41216:8;41164:18;:39;41183:19;:17;:19::i;:::-;41164:39;;;;;;;;;;;;;;;:49;41204:8;41164:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;41276:8;41240:55;;41255:19;:17;:19::i;:::-;41240:55;;;41286:8;41240:55;;;;;;:::i;:::-;;;;;;;;41069:234;;:::o;47862:407::-;48037:31;48050:4;48056:2;48060:7;48037:12;:31::i;:::-;48101:1;48083:2;:14;;;:19;48079:183;;48122:56;48153:4;48159:2;48163:7;48172:5;48122:30;:56::i;:::-;48117:145;;48206:40;;;;;;;;;;;;;;48117:145;48079:183;47862:407;;;;:::o;67339:100::-;67391:13;67424:7;67417:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67339:100;:::o;64397:1745::-;64462:17;64896:4;64889;64883:11;64879:22;64988:1;64982:4;64975:15;65063:4;65060:1;65056:12;65049:19;;65145:1;65140:3;65133:14;65249:3;65488:5;65470:428;65496:1;65470:428;;;65536:1;65531:3;65527:11;65520:18;;65707:2;65701:4;65697:13;65693:2;65689:22;65684:3;65676:36;65801:2;65795:4;65791:13;65783:21;;65868:4;65470:428;65858:25;65470:428;65474:21;65937:3;65932;65928:13;66052:4;66047:3;66043:14;66036:21;;66117:6;66112:3;66105:19;64501:1634;;;64397:1745;;;:::o;64190:105::-;64250:7;64277:10;64270:17;;64190:105;:::o;43045:485::-;43147:27;43176:23;43217:38;43258:15;:24;43274:7;43258:24;;;;;;;;;;;43217:65;;43435:18;43412:41;;43492:19;43486:26;43467:45;;43397:126;43045:485;;;:::o;42273:659::-;42422:11;42587:16;42580:5;42576:28;42567:37;;42747:16;42736:9;42732:32;42719:45;;42897:15;42886:9;42883:30;42875:5;42864:9;42861:20;42858:56;42848:66;;42273:659;;;;;:::o;48931:159::-;;;;;:::o;63499:311::-;63634:7;63654:16;26294:3;63680:19;:41;;63654:68;;26294:3;63748:31;63759:4;63765:2;63769:9;63748:10;:31::i;:::-;63740:40;;:62;;63733:69;;;63499:311;;;;;:::o;38391:450::-;38471:14;38639:16;38632:5;38628:28;38619:37;;38816:5;38802:11;38777:23;38773:41;38770:52;38763:5;38760:63;38750:73;;38391:450;;;;:::o;49755:158::-;;;;;:::o;11800:98::-;11853:7;11880:10;11873:17;;11800:98;:::o;38943:324::-;39013:14;39246:1;39236:8;39233:15;39207:24;39203:46;39193:56;;38943:324;;;:::o;50353:716::-;50516:4;50562:2;50537:45;;;50583:19;:17;:19::i;:::-;50604:4;50610:7;50619:5;50537:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;50533:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50837:1;50820:6;:13;:18;50816:235;;50866:40;;;;;;;;;;;;;;50816:235;51009:6;51003:13;50994:6;50990:2;50986:15;50979:38;50533:529;50706:54;;;50696:64;;;:6;:64;;;;50689:71;;;50353:716;;;;;;:::o;63200:147::-;63337:6;63200:147;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518: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:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:180;6161:77;6158:1;6151:88;6258:4;6255:1;6248:15;6282:4;6279:1;6272:15;6299:281;6382:27;6404:4;6382:27;:::i;:::-;6374:6;6370:40;6512:6;6500:10;6497:22;6476:18;6464:10;6461:34;6458:62;6455:88;;;6523:18;;:::i;:::-;6455:88;6563:10;6559:2;6552:22;6342:238;6299:281;;:::o;6586:129::-;6620:6;6647:20;;:::i;:::-;6637:30;;6676:33;6704:4;6696:6;6676:33;:::i;:::-;6586:129;;;:::o;6721:308::-;6783:4;6873:18;6865:6;6862:30;6859:56;;;6895:18;;:::i;:::-;6859:56;6933:29;6955:6;6933:29;:::i;:::-;6925:37;;7017:4;7011;7007:15;6999:23;;6721:308;;;:::o;7035:146::-;7132:6;7127:3;7122;7109:30;7173:1;7164:6;7159:3;7155:16;7148:27;7035:146;;;:::o;7187:425::-;7265:5;7290:66;7306:49;7348:6;7306:49;:::i;:::-;7290:66;:::i;:::-;7281:75;;7379:6;7372:5;7365:21;7417:4;7410:5;7406:16;7455:3;7446:6;7441:3;7437:16;7434:25;7431:112;;;7462:79;;:::i;:::-;7431:112;7552:54;7599:6;7594:3;7589;7552:54;:::i;:::-;7271:341;7187:425;;;;;:::o;7632:340::-;7688:5;7737:3;7730:4;7722:6;7718:17;7714:27;7704:122;;7745:79;;:::i;:::-;7704:122;7862:6;7849:20;7887:79;7962:3;7954:6;7947:4;7939:6;7935:17;7887:79;:::i;:::-;7878:88;;7694:278;7632:340;;;;:::o;7978:509::-;8047:6;8096:2;8084:9;8075:7;8071:23;8067:32;8064:119;;;8102:79;;:::i;:::-;8064:119;8250:1;8239:9;8235:17;8222:31;8280:18;8272:6;8269:30;8266:117;;;8302:79;;:::i;:::-;8266:117;8407:63;8462:7;8453:6;8442:9;8438:22;8407:63;:::i;:::-;8397:73;;8193:287;7978:509;;;;:::o;8493:60::-;8521:3;8542:5;8535:12;;8493:60;;;:::o;8559:142::-;8609:9;8642:53;8660:34;8669:24;8687:5;8669:24;:::i;:::-;8660:34;:::i;:::-;8642:53;:::i;:::-;8629:66;;8559:142;;;:::o;8707:126::-;8757:9;8790:37;8821:5;8790:37;:::i;:::-;8777:50;;8707:126;;;:::o;8839:157::-;8920:9;8953:37;8984:5;8953:37;:::i;:::-;8940:50;;8839:157;;;:::o;9002:193::-;9120:68;9182:5;9120:68;:::i;:::-;9115:3;9108:81;9002:193;;:::o;9201:284::-;9325:4;9363:2;9352:9;9348:18;9340:26;;9376:102;9475:1;9464:9;9460:17;9451:6;9376:102;:::i;:::-;9201:284;;;;:::o;9491:329::-;9550:6;9599:2;9587:9;9578:7;9574:23;9570:32;9567:119;;;9605:79;;:::i;:::-;9567:119;9725:1;9750:53;9795:7;9786:6;9775:9;9771:22;9750:53;:::i;:::-;9740:63;;9696:117;9491:329;;;;:::o;9826:116::-;9896:21;9911:5;9896:21;:::i;:::-;9889:5;9886:32;9876:60;;9932:1;9929;9922:12;9876:60;9826:116;:::o;9948:133::-;9991:5;10029:6;10016:20;10007:29;;10045:30;10069:5;10045:30;:::i;:::-;9948:133;;;;:::o;10087:468::-;10152:6;10160;10209:2;10197:9;10188:7;10184:23;10180:32;10177:119;;;10215:79;;:::i;:::-;10177:119;10335:1;10360:53;10405:7;10396:6;10385:9;10381:22;10360:53;:::i;:::-;10350:63;;10306:117;10462:2;10488:50;10530:7;10521:6;10510:9;10506:22;10488:50;:::i;:::-;10478:60;;10433:115;10087:468;;;;;:::o;10561:307::-;10622:4;10712:18;10704:6;10701:30;10698:56;;;10734:18;;:::i;:::-;10698:56;10772:29;10794:6;10772:29;:::i;:::-;10764:37;;10856:4;10850;10846:15;10838:23;;10561:307;;;:::o;10874:423::-;10951:5;10976:65;10992:48;11033:6;10992:48;:::i;:::-;10976:65;:::i;:::-;10967:74;;11064:6;11057:5;11050:21;11102:4;11095:5;11091:16;11140:3;11131:6;11126:3;11122:16;11119:25;11116:112;;;11147:79;;:::i;:::-;11116:112;11237:54;11284:6;11279:3;11274;11237:54;:::i;:::-;10957:340;10874:423;;;;;:::o;11316:338::-;11371:5;11420:3;11413:4;11405:6;11401:17;11397:27;11387:122;;11428:79;;:::i;:::-;11387:122;11545:6;11532:20;11570:78;11644:3;11636:6;11629:4;11621:6;11617:17;11570:78;:::i;:::-;11561:87;;11377:277;11316:338;;;;:::o;11660:943::-;11755:6;11763;11771;11779;11828:3;11816:9;11807:7;11803:23;11799:33;11796:120;;;11835:79;;:::i;:::-;11796:120;11955:1;11980:53;12025:7;12016:6;12005:9;12001:22;11980:53;:::i;:::-;11970:63;;11926:117;12082:2;12108:53;12153:7;12144:6;12133:9;12129:22;12108:53;:::i;:::-;12098:63;;12053:118;12210:2;12236:53;12281:7;12272:6;12261:9;12257:22;12236:53;:::i;:::-;12226:63;;12181:118;12366:2;12355:9;12351:18;12338:32;12397:18;12389:6;12386:30;12383:117;;;12419:79;;:::i;:::-;12383:117;12524:62;12578:7;12569:6;12558:9;12554:22;12524:62;:::i;:::-;12514:72;;12309:287;11660:943;;;;;;;:::o;12609:474::-;12677:6;12685;12734:2;12722:9;12713:7;12709:23;12705:32;12702:119;;;12740:79;;:::i;:::-;12702:119;12860:1;12885:53;12930:7;12921:6;12910:9;12906:22;12885:53;:::i;:::-;12875:63;;12831:117;12987:2;13013:53;13058:7;13049:6;13038:9;13034:22;13013:53;:::i;:::-;13003:63;;12958:118;12609:474;;;;;:::o;13089:::-;13157:6;13165;13214:2;13202:9;13193:7;13189:23;13185:32;13182:119;;;13220:79;;:::i;:::-;13182:119;13340:1;13365:53;13410:7;13401:6;13390:9;13386:22;13365:53;:::i;:::-;13355:63;;13311:117;13467:2;13493:53;13538:7;13529:6;13518:9;13514:22;13493:53;:::i;:::-;13483:63;;13438:118;13089:474;;;;;:::o;13569:180::-;13617:77;13614:1;13607:88;13714:4;13711:1;13704:15;13738:4;13735:1;13728:15;13755:320;13799:6;13836:1;13830:4;13826:12;13816:22;;13883:1;13877:4;13873:12;13904:18;13894:81;;13960:4;13952:6;13948:17;13938:27;;13894:81;14022:2;14014:6;14011:14;13991:18;13988:38;13985:84;;14041:18;;:::i;:::-;13985:84;13806:269;13755:320;;;:::o;14081:141::-;14130:4;14153:3;14145:11;;14176:3;14173:1;14166:14;14210:4;14207:1;14197:18;14189:26;;14081:141;;;:::o;14228:93::-;14265:6;14312:2;14307;14300:5;14296:14;14292:23;14282:33;;14228:93;;;:::o;14327:107::-;14371:8;14421:5;14415:4;14411:16;14390:37;;14327:107;;;;:::o;14440:393::-;14509:6;14559:1;14547:10;14543:18;14582:97;14612:66;14601:9;14582:97;:::i;:::-;14700:39;14730:8;14719:9;14700:39;:::i;:::-;14688:51;;14772:4;14768:9;14761:5;14757:21;14748:30;;14821:4;14811:8;14807:19;14800:5;14797:30;14787:40;;14516:317;;14440:393;;;;;:::o;14839:142::-;14889:9;14922:53;14940:34;14949:24;14967:5;14949:24;:::i;:::-;14940:34;:::i;:::-;14922:53;:::i;:::-;14909:66;;14839:142;;;:::o;14987:75::-;15030:3;15051:5;15044:12;;14987:75;;;:::o;15068:269::-;15178:39;15209:7;15178:39;:::i;:::-;15239:91;15288:41;15312:16;15288:41;:::i;:::-;15280:6;15273:4;15267:11;15239:91;:::i;:::-;15233:4;15226:105;15144:193;15068:269;;;:::o;15343:73::-;15388:3;15343:73;:::o;15422:189::-;15499:32;;:::i;:::-;15540:65;15598:6;15590;15584:4;15540:65;:::i;:::-;15475:136;15422:189;;:::o;15617:186::-;15677:120;15694:3;15687:5;15684:14;15677:120;;;15748:39;15785:1;15778:5;15748:39;:::i;:::-;15721:1;15714:5;15710:13;15701:22;;15677:120;;;15617:186;;:::o;15809:543::-;15910:2;15905:3;15902:11;15899:446;;;15944:38;15976:5;15944:38;:::i;:::-;16028:29;16046:10;16028:29;:::i;:::-;16018:8;16014:44;16211:2;16199:10;16196:18;16193:49;;;16232:8;16217:23;;16193:49;16255:80;16311:22;16329:3;16311:22;:::i;:::-;16301:8;16297:37;16284:11;16255:80;:::i;:::-;15914:431;;15899:446;15809:543;;;:::o;16358:117::-;16412:8;16462:5;16456:4;16452:16;16431:37;;16358:117;;;;:::o;16481:169::-;16525:6;16558:51;16606:1;16602:6;16594:5;16591:1;16587:13;16558:51;:::i;:::-;16554:56;16639:4;16633;16629:15;16619:25;;16532:118;16481:169;;;;:::o;16655:295::-;16731:4;16877:29;16902:3;16896:4;16877:29;:::i;:::-;16869:37;;16939:3;16936:1;16932:11;16926:4;16923:21;16915:29;;16655:295;;;;:::o;16955:1395::-;17072:37;17105:3;17072:37;:::i;:::-;17174:18;17166:6;17163:30;17160:56;;;17196:18;;:::i;:::-;17160:56;17240:38;17272:4;17266:11;17240:38;:::i;:::-;17325:67;17385:6;17377;17371:4;17325:67;:::i;:::-;17419:1;17443:4;17430:17;;17475:2;17467:6;17464:14;17492:1;17487:618;;;;18149:1;18166:6;18163:77;;;18215:9;18210:3;18206:19;18200:26;18191:35;;18163:77;18266:67;18326:6;18319:5;18266:67;:::i;:::-;18260:4;18253:81;18122:222;17457:887;;17487:618;17539:4;17535:9;17527:6;17523:22;17573:37;17605:4;17573:37;:::i;:::-;17632:1;17646:208;17660:7;17657:1;17654:14;17646:208;;;17739:9;17734:3;17730:19;17724:26;17716:6;17709:42;17790:1;17782:6;17778:14;17768:24;;17837:2;17826:9;17822:18;17809:31;;17683:4;17680:1;17676:12;17671:17;;17646:208;;;17882:6;17873:7;17870:19;17867:179;;;17940:9;17935:3;17931:19;17925:26;17983:48;18025:4;18017:6;18013:17;18002:9;17983:48;:::i;:::-;17975:6;17968:64;17890:156;17867:179;18092:1;18088;18080:6;18076:14;18072:22;18066:4;18059:36;17494:611;;;17457:887;;17047:1303;;;16955:1395;;:::o;18356:168::-;18496:20;18492:1;18484:6;18480:14;18473:44;18356:168;:::o;18530:366::-;18672:3;18693:67;18757:2;18752:3;18693:67;:::i;:::-;18686:74;;18769:93;18858:3;18769:93;:::i;:::-;18887:2;18882:3;18878:12;18871:19;;18530:366;;;:::o;18902:419::-;19068:4;19106:2;19095:9;19091:18;19083:26;;19155:9;19149:4;19145:20;19141:1;19130:9;19126:17;19119:47;19183:131;19309:4;19183:131;:::i;:::-;19175:139;;18902:419;;;:::o;19327:170::-;19467:22;19463:1;19455:6;19451:14;19444:46;19327:170;:::o;19503:366::-;19645:3;19666:67;19730:2;19725:3;19666:67;:::i;:::-;19659:74;;19742:93;19831:3;19742:93;:::i;:::-;19860:2;19855:3;19851:12;19844:19;;19503:366;;;:::o;19875:419::-;20041:4;20079:2;20068:9;20064:18;20056:26;;20128:9;20122:4;20118:20;20114:1;20103:9;20099:17;20092:47;20156:131;20282:4;20156:131;:::i;:::-;20148:139;;19875:419;;;:::o;20300:180::-;20348:77;20345:1;20338:88;20445:4;20442:1;20435:15;20469:4;20466:1;20459:15;20486:191;20526:3;20545:20;20563:1;20545:20;:::i;:::-;20540:25;;20579:20;20597:1;20579:20;:::i;:::-;20574:25;;20622:1;20619;20615:9;20608:16;;20643:3;20640:1;20637:10;20634:36;;;20650:18;;:::i;:::-;20634:36;20486:191;;;;:::o;20683:172::-;20823:24;20819:1;20811:6;20807:14;20800:48;20683:172;:::o;20861:366::-;21003:3;21024:67;21088:2;21083:3;21024:67;:::i;:::-;21017:74;;21100:93;21189:3;21100:93;:::i;:::-;21218:2;21213:3;21209:12;21202:19;;20861:366;;;:::o;21233:419::-;21399:4;21437:2;21426:9;21422:18;21414:26;;21486:9;21480:4;21476:20;21472:1;21461:9;21457:17;21450:47;21514:131;21640:4;21514:131;:::i;:::-;21506:139;;21233:419;;;:::o;21658:169::-;21798:21;21794:1;21786:6;21782:14;21775:45;21658:169;:::o;21833:366::-;21975:3;21996:67;22060:2;22055:3;21996:67;:::i;:::-;21989:74;;22072:93;22161:3;22072:93;:::i;:::-;22190:2;22185:3;22181:12;22174:19;;21833:366;;;:::o;22205:419::-;22371:4;22409:2;22398:9;22394:18;22386:26;;22458:9;22452:4;22448:20;22444:1;22433:9;22429:17;22422:47;22486:131;22612:4;22486:131;:::i;:::-;22478:139;;22205:419;;;:::o;22630:410::-;22670:7;22693:20;22711:1;22693:20;:::i;:::-;22688:25;;22727:20;22745:1;22727:20;:::i;:::-;22722:25;;22782:1;22779;22775:9;22804:30;22822:11;22804:30;:::i;:::-;22793:41;;22983:1;22974:7;22970:15;22967:1;22964:22;22944:1;22937:9;22917:83;22894:139;;23013:18;;:::i;:::-;22894:139;22678:362;22630:410;;;;:::o;23046:175::-;23186:27;23182:1;23174:6;23170:14;23163:51;23046:175;:::o;23227:366::-;23369:3;23390:67;23454:2;23449:3;23390:67;:::i;:::-;23383:74;;23466:93;23555:3;23466:93;:::i;:::-;23584:2;23579:3;23575:12;23568:19;;23227:366;;;:::o;23599:419::-;23765:4;23803:2;23792:9;23788:18;23780:26;;23852:9;23846:4;23842:20;23838:1;23827:9;23823:17;23816:47;23880:131;24006:4;23880:131;:::i;:::-;23872:139;;23599:419;;;:::o;24024:148::-;24126:11;24163:3;24148:18;;24024:148;;;;:::o;24178:390::-;24284:3;24312:39;24345:5;24312:39;:::i;:::-;24367:89;24449:6;24444:3;24367:89;:::i;:::-;24360:96;;24465:65;24523:6;24518:3;24511:4;24504:5;24500:16;24465:65;:::i;:::-;24555:6;24550:3;24546:16;24539:23;;24288:280;24178:390;;;;:::o;24574:435::-;24754:3;24776:95;24867:3;24858:6;24776:95;:::i;:::-;24769:102;;24888:95;24979:3;24970:6;24888:95;:::i;:::-;24881:102;;25000:3;24993:10;;24574:435;;;;;:::o;25015:168::-;25155:20;25151:1;25143:6;25139:14;25132:44;25015:168;:::o;25189:366::-;25331:3;25352:67;25416:2;25411:3;25352:67;:::i;:::-;25345:74;;25428:93;25517:3;25428:93;:::i;:::-;25546:2;25541:3;25537:12;25530:19;;25189:366;;;:::o;25561:419::-;25727:4;25765:2;25754:9;25750:18;25742:26;;25814:9;25808:4;25804:20;25800:1;25789:9;25785:17;25778:47;25842:131;25968:4;25842:131;:::i;:::-;25834:139;;25561:419;;;:::o;25986:225::-;26126:34;26122:1;26114:6;26110:14;26103:58;26195:8;26190:2;26182:6;26178:15;26171:33;25986:225;:::o;26217:366::-;26359:3;26380:67;26444:2;26439:3;26380:67;:::i;:::-;26373:74;;26456:93;26545:3;26456:93;:::i;:::-;26574:2;26569:3;26565:12;26558:19;;26217:366;;;:::o;26589:419::-;26755:4;26793:2;26782:9;26778:18;26770:26;;26842:9;26836:4;26832:20;26828:1;26817:9;26813:17;26806:47;26870:131;26996:4;26870:131;:::i;:::-;26862:139;;26589:419;;;:::o;27014:332::-;27135:4;27173:2;27162:9;27158:18;27150:26;;27186:71;27254:1;27243:9;27239:17;27230:6;27186:71;:::i;:::-;27267:72;27335:2;27324:9;27320:18;27311:6;27267:72;:::i;:::-;27014:332;;;;;:::o;27352:137::-;27406:5;27437:6;27431:13;27422:22;;27453:30;27477:5;27453:30;:::i;:::-;27352:137;;;;:::o;27495:345::-;27562:6;27611:2;27599:9;27590:7;27586:23;27582:32;27579:119;;;27617:79;;:::i;:::-;27579:119;27737:1;27762:61;27815:7;27806:6;27795:9;27791:22;27762:61;:::i;:::-;27752:71;;27708:125;27495:345;;;;:::o;27846:182::-;27986:34;27982:1;27974:6;27970:14;27963:58;27846:182;:::o;28034:366::-;28176:3;28197:67;28261:2;28256:3;28197:67;:::i;:::-;28190:74;;28273:93;28362:3;28273:93;:::i;:::-;28391:2;28386:3;28382:12;28375:19;;28034:366;;;:::o;28406:419::-;28572:4;28610:2;28599:9;28595:18;28587:26;;28659:9;28653:4;28649:20;28645:1;28634:9;28630:17;28623:47;28687:131;28813:4;28687:131;:::i;:::-;28679:139;;28406:419;;;:::o;28831:98::-;28882:6;28916:5;28910:12;28900:22;;28831:98;;;:::o;28935:168::-;29018:11;29052:6;29047:3;29040:19;29092:4;29087:3;29083:14;29068:29;;28935:168;;;;:::o;29109:373::-;29195:3;29223:38;29255:5;29223:38;:::i;:::-;29277:70;29340:6;29335:3;29277:70;:::i;:::-;29270:77;;29356:65;29414:6;29409:3;29402:4;29395:5;29391:16;29356:65;:::i;:::-;29446:29;29468:6;29446:29;:::i;:::-;29441:3;29437:39;29430:46;;29199:283;29109:373;;;;:::o;29488:640::-;29683:4;29721:3;29710:9;29706:19;29698:27;;29735:71;29803:1;29792:9;29788:17;29779:6;29735:71;:::i;:::-;29816:72;29884:2;29873:9;29869:18;29860:6;29816:72;:::i;:::-;29898;29966:2;29955:9;29951:18;29942:6;29898:72;:::i;:::-;30017:9;30011:4;30007:20;30002:2;29991:9;29987:18;29980:48;30045:76;30116:4;30107:6;30045:76;:::i;:::-;30037:84;;29488:640;;;;;;;:::o;30134:141::-;30190:5;30221:6;30215:13;30206:22;;30237:32;30263:5;30237:32;:::i;:::-;30134:141;;;;:::o;30281:349::-;30350:6;30399:2;30387:9;30378:7;30374:23;30370:32;30367:119;;;30405:79;;:::i;:::-;30367:119;30525:1;30550:63;30605:7;30596:6;30585:9;30581:22;30550:63;:::i;:::-;30540:73;;30496:127;30281:349;;;;:::o

Swarm Source

ipfs://17a4917efaee030cd763dbbecdef553acdc1da4d5ef19804493789265fc239aa
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.