ETH Price: $2,837.30 (+2.78%)
 

Overview

Max Total Supply

222 AL

Holders

109

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 AL
0xa0a74547c684207094662d537cbc5ce44baef7a7
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:
AstronautLab

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-09
*/

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


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    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.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

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

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

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    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) {
            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.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// 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: contracts/nnn.sol


pragma solidity ^0.8.9;





contract AstronautLab is DefaultOperatorFilterer, ERC721A, Ownable {
    using Strings for uint256;

    uint256 public MAX_SUPPLY = 222;
    uint256 public SALE_PRICE = .0033 ether;
    uint256 public MAX_MINT = 2;
    bool public mintStarted = false;
    string public baseURI = "ipfs://QmdfZNNJWULwS3VD8fUGNLADWie18TCdh8HkQYtPRRAW2j/";
    mapping(address => uint256) public walletMintCount;

    constructor() ERC721A("Astronaut Lab", "AL") {}

    function mint(uint256 _quantity) external payable {
        require(mintStarted, "Mint hasn't started yet.");
        require(
            (totalSupply() + _quantity) <= MAX_SUPPLY,
            "Max supply exceeded."
        );
        require(
            (walletMintCount[msg.sender] + _quantity) <= MAX_MINT,
            "Max mint exceeded"
        );
        require(
            msg.value >= (SALE_PRICE * _quantity),
            "Wrong mint price."
        );

        walletMintCount[msg.sender] += _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function reserveMint(uint256 mintAmount) external onlyOwner {
        _safeMint(msg.sender, mintAmount);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return string(abi.encodePacked(baseURI, tokenId.toString(), ".json"));
    }

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

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

    function setBaseURI(string memory uri) public onlyOwner {
        baseURI = uri;
    }

    function startSale() external onlyOwner {
        mintStarted = !mintStarted;
    }

    function setPrice(uint256 _newPrice) external onlyOwner {
        SALE_PRICE = _newPrice;
    }

    function withdraw() external onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success, "Transfer failed.");
    }

    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":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"reserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","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":[{"internalType":"address","name":"","type":"address"}],"name":"walletMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260de600955660bb9551fc24000600a556002600b556000600c60006101000a81548160ff02191690831515021790555060405180606001604052806036815260200162003af860369139600d90816200005e91906200069a565b503480156200006c57600080fd5b506040518060400160405280600d81526020017f417374726f6e617574204c6162000000000000000000000000000000000000008152506040518060400160405280600281526020017f414c000000000000000000000000000000000000000000000000000000000000815250733cc6cdda760b79bafa08df41ecfa224f810dceb6600160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620002e5578015620001ab576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b815260040162000171929190620007c6565b600060405180830381600087803b1580156200018c57600080fd5b505af1158015620001a1573d6000803e3d6000fd5b50505050620002e4565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000265576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200022b929190620007c6565b600060405180830381600087803b1580156200024657600080fd5b505af11580156200025b573d6000803e3d6000fd5b50505050620002e3565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002ae9190620007f3565b600060405180830381600087803b158015620002c957600080fd5b505af1158015620002de573d6000803e3d6000fd5b505050505b5b5b50508160029081620002f891906200069a565b5080600390816200030a91906200069a565b506200031b6200034960201b60201c565b600081905550505062000343620003376200035260201b60201c565b6200035a60201b60201c565b62000810565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004a257607f821691505b602082108103620004b857620004b76200045a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005227fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004e3565b6200052e8683620004e3565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200057b620005756200056f8462000546565b62000550565b62000546565b9050919050565b6000819050919050565b62000597836200055a565b620005af620005a68262000582565b848454620004f0565b825550505050565b600090565b620005c6620005b7565b620005d38184846200058c565b505050565b5b81811015620005fb57620005ef600082620005bc565b600181019050620005d9565b5050565b601f8211156200064a576200061481620004be565b6200061f84620004d3565b810160208510156200062f578190505b620006476200063e85620004d3565b830182620005d8565b50505b505050565b600082821c905092915050565b60006200066f600019846008026200064f565b1980831691505092915050565b60006200068a83836200065c565b9150826002028217905092915050565b620006a58262000420565b67ffffffffffffffff811115620006c157620006c06200042b565b5b620006cd825462000489565b620006da828285620005ff565b600060209050601f831160018114620007125760008415620006fd578287015190505b6200070985826200067c565b86555062000779565b601f1984166200072286620004be565b60005b828110156200074c5784890151825560018201915060208501945060208101905062000725565b868310156200076c578489015162000768601f8916826200065c565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007ae8262000781565b9050919050565b620007c081620007a1565b82525050565b6000604082019050620007dd6000830185620007b5565b620007ec6020830184620007b5565b9392505050565b60006020820190506200080a6000830184620007b5565b92915050565b6132d880620008206000396000f3fe6080604052600436106101cd5760003560e01c8063715018a6116100f7578063a22cb46511610095578063c87b56dd11610064578063c87b56dd146105fb578063e985e9c514610638578063f0292a0314610675578063f2fde38b146106a0576101cd565b8063a22cb46514610574578063a9722cf31461059d578063b66a0e5d146105c8578063b88d4fde146105df576101cd565b806391b7f5ed116100d157806391b7f5ed146104c757806393ecb0c6146104f057806395d89b411461052d578063a0712d6814610558576101cd565b8063715018a61461045a5780637f205a74146104715780638da5cb5b1461049c576101cd565b806332cb6b0c1161016f57806355f804b31161013e57806355f804b31461038c5780636352211e146103b55780636c0360eb146103f257806370a082311461041d576101cd565b806332cb6b0c146103035780633ccfd60b1461032e57806341f434341461034557806342842e0e14610370576101cd565b8063095ea7b3116101ab578063095ea7b3146102775780631342ff4c1461029357806318160ddd146102bc57806323b872dd146102e7576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f491906120c1565b6106c9565b6040516102069190612109565b60405180910390f35b34801561021b57600080fd5b5061022461075b565b60405161023191906121b4565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c919061220c565b6107ed565b60405161026e919061227a565b60405180910390f35b610291600480360381019061028c91906122c1565b61086c565b005b34801561029f57600080fd5b506102ba60048036038101906102b5919061220c565b610885565b005b3480156102c857600080fd5b506102d161089a565b6040516102de9190612310565b60405180910390f35b61030160048036038101906102fc919061232b565b6108b1565b005b34801561030f57600080fd5b50610318610900565b6040516103259190612310565b60405180910390f35b34801561033a57600080fd5b50610343610906565b005b34801561035157600080fd5b5061035a6109bd565b60405161036791906123dd565b60405180910390f35b61038a6004803603810190610385919061232b565b6109cf565b005b34801561039857600080fd5b506103b360048036038101906103ae919061252d565b610a1e565b005b3480156103c157600080fd5b506103dc60048036038101906103d7919061220c565b610a39565b6040516103e9919061227a565b60405180910390f35b3480156103fe57600080fd5b50610407610a4b565b60405161041491906121b4565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f9190612576565b610ad9565b6040516104519190612310565b60405180910390f35b34801561046657600080fd5b5061046f610b91565b005b34801561047d57600080fd5b50610486610ba5565b6040516104939190612310565b60405180910390f35b3480156104a857600080fd5b506104b1610bab565b6040516104be919061227a565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e9919061220c565b610bd5565b005b3480156104fc57600080fd5b5061051760048036038101906105129190612576565b610be7565b6040516105249190612310565b60405180910390f35b34801561053957600080fd5b50610542610bff565b60405161054f91906121b4565b60405180910390f35b610572600480360381019061056d919061220c565b610c91565b005b34801561058057600080fd5b5061059b600480360381019061059691906125cf565b610e79565b005b3480156105a957600080fd5b506105b2610e92565b6040516105bf9190612109565b60405180910390f35b3480156105d457600080fd5b506105dd610ea5565b005b6105f960048036038101906105f491906126b0565b610ed9565b005b34801561060757600080fd5b50610622600480360381019061061d919061220c565b610f2a565b60405161062f91906121b4565b60405180910390f35b34801561064457600080fd5b5061065f600480360381019061065a9190612733565b610fa6565b60405161066c9190612109565b60405180910390f35b34801561068157600080fd5b5061068a61103a565b6040516106979190612310565b60405180910390f35b3480156106ac57600080fd5b506106c760048036038101906106c29190612576565b611040565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107545750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461076a906127a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610796906127a2565b80156107e35780601f106107b8576101008083540402835291602001916107e3565b820191906000526020600020905b8154815290600101906020018083116107c657829003601f168201915b5050505050905090565b60006107f8826110c3565b61082e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8161087681611122565b610880838361121f565b505050565b61088d611363565b61089733826113e1565b50565b60006108a46113ff565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108ef576108ee33611122565b5b6108fa848484611408565b50505050565b60095481565b61090e611363565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161093490612804565b60006040518083038185875af1925050503d8060008114610971576040519150601f19603f3d011682016040523d82523d6000602084013e610976565b606091505b50509050806109ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b190612865565b60405180910390fd5b50565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a0d57610a0c33611122565b5b610a1884848461172a565b50505050565b610a26611363565b80600d9081610a359190612a27565b5050565b6000610a448261174a565b9050919050565b600d8054610a58906127a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610a84906127a2565b8015610ad15780601f10610aa657610100808354040283529160200191610ad1565b820191906000526020600020905b815481529060010190602001808311610ab457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b40576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610b99611363565b610ba36000611816565b565b600a5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610bdd611363565b80600a8190555050565b600e6020528060005260406000206000915090505481565b606060038054610c0e906127a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3a906127a2565b8015610c875780601f10610c5c57610100808354040283529160200191610c87565b820191906000526020600020905b815481529060010190602001808311610c6a57829003601f168201915b5050505050905090565b600c60009054906101000a900460ff16610ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd790612b45565b60405180910390fd5b60095481610cec61089a565b610cf69190612b94565b1115610d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2e90612c14565b60405180910390fd5b600b5481600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d859190612b94565b1115610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd90612c80565b60405180910390fd5b80600a54610dd49190612ca0565b341015610e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0d90612d2e565b60405180910390fd5b80600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e659190612b94565b92505081905550610e7633826113e1565b50565b81610e8381611122565b610e8d83836118dc565b505050565b600c60009054906101000a900460ff1681565b610ead611363565b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f1757610f1633611122565b5b610f23858585856119e7565b5050505050565b6060610f35826110c3565b610f74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6b90612dc0565b60405180910390fd5b600d610f7f83611a5a565b604051602001610f90929190612eeb565b6040516020818303038152906040529050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b5481565b611048611363565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae90612f8c565b60405180910390fd5b6110c081611816565b50565b6000816110ce6113ff565b111580156110dd575060005482105b801561111b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561121c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611199929190612fac565b602060405180830381865afa1580156111b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111da9190612fea565b61121b57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611212919061227a565b60405180910390fd5b5b50565b600061122a82610a39565b90508073ffffffffffffffffffffffffffffffffffffffff1661124b611bba565b73ffffffffffffffffffffffffffffffffffffffff16146112ae5761127781611272611bba565b610fa6565b6112ad576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61136b611bc2565b73ffffffffffffffffffffffffffffffffffffffff16611389610bab565b73ffffffffffffffffffffffffffffffffffffffff16146113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d690613063565b60405180910390fd5b565b6113fb828260405180602001604052806000815250611bca565b5050565b60006001905090565b60006114138261174a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461147a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061148684611c67565b9150915061149c8187611497611bba565b611c8e565b6114e8576114b1866114ac611bba565b610fa6565b6114e7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361154e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61155b8686866001611cd2565b801561156657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061163485611610888887611cd8565b7c020000000000000000000000000000000000000000000000000000000017611d00565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036116ba57600060018501905060006004600083815260200190815260200160002054036116b85760005481146116b7578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117228686866001611d2b565b505050505050565b61174583838360405180602001604052806000815250610ed9565b505050565b600080829050806117596113ff565b116117df576000548110156117de5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036117dc575b600081036117d25760046000836001900393508381526020019081526020016000205490506117a8565b8092505050611811565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600760006118e9611bba565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611996611bba565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119db9190612109565b60405180910390a35050565b6119f28484846108b1565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a5457611a1d84848484611d31565b611a53576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060008203611aa1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611bb5565b600082905060005b60008214611ad3578080611abc90613083565b915050600a82611acc91906130fa565b9150611aa9565b60008167ffffffffffffffff811115611aef57611aee612402565b5b6040519080825280601f01601f191660200182016040528015611b215781602001600182028036833780820191505090505b5090505b60008514611bae57600182611b3a919061312b565b9150600a85611b49919061315f565b6030611b559190612b94565b60f81b818381518110611b6b57611b6a613190565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ba791906130fa565b9450611b25565b8093505050505b919050565b600033905090565b600033905090565b611bd48383611e81565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c6257600080549050600083820390505b611c146000868380600101945086611d31565b611c4a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c01578160005414611c5f57600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611cef86868461203c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d57611bba565b8786866040518563ffffffff1660e01b8152600401611d799493929190613214565b6020604051808303816000875af1925050508015611db557506040513d601f19601f82011682018060405250810190611db29190613275565b60015b611e2e573d8060008114611de5576040519150601f19603f3d011682016040523d82523d6000602084013e611dea565b606091505b506000815103611e26576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60008054905060008203611ec1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ece6000848385611cd2565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f4583611f366000866000611cd8565b611f3f85612045565b17611d00565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611fe657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611fab565b5060008203612021576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506120376000848385611d2b565b505050565b60009392505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61209e81612069565b81146120a957600080fd5b50565b6000813590506120bb81612095565b92915050565b6000602082840312156120d7576120d661205f565b5b60006120e5848285016120ac565b91505092915050565b60008115159050919050565b612103816120ee565b82525050565b600060208201905061211e60008301846120fa565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561215e578082015181840152602081019050612143565b60008484015250505050565b6000601f19601f8301169050919050565b600061218682612124565b612190818561212f565b93506121a0818560208601612140565b6121a98161216a565b840191505092915050565b600060208201905081810360008301526121ce818461217b565b905092915050565b6000819050919050565b6121e9816121d6565b81146121f457600080fd5b50565b600081359050612206816121e0565b92915050565b6000602082840312156122225761222161205f565b5b6000612230848285016121f7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061226482612239565b9050919050565b61227481612259565b82525050565b600060208201905061228f600083018461226b565b92915050565b61229e81612259565b81146122a957600080fd5b50565b6000813590506122bb81612295565b92915050565b600080604083850312156122d8576122d761205f565b5b60006122e6858286016122ac565b92505060206122f7858286016121f7565b9150509250929050565b61230a816121d6565b82525050565b60006020820190506123256000830184612301565b92915050565b6000806000606084860312156123445761234361205f565b5b6000612352868287016122ac565b9350506020612363868287016122ac565b9250506040612374868287016121f7565b9150509250925092565b6000819050919050565b60006123a361239e61239984612239565b61237e565b612239565b9050919050565b60006123b582612388565b9050919050565b60006123c7826123aa565b9050919050565b6123d7816123bc565b82525050565b60006020820190506123f260008301846123ce565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61243a8261216a565b810181811067ffffffffffffffff8211171561245957612458612402565b5b80604052505050565b600061246c612055565b90506124788282612431565b919050565b600067ffffffffffffffff82111561249857612497612402565b5b6124a18261216a565b9050602081019050919050565b82818337600083830152505050565b60006124d06124cb8461247d565b612462565b9050828152602081018484840111156124ec576124eb6123fd565b5b6124f78482856124ae565b509392505050565b600082601f830112612514576125136123f8565b5b81356125248482602086016124bd565b91505092915050565b6000602082840312156125435761254261205f565b5b600082013567ffffffffffffffff81111561256157612560612064565b5b61256d848285016124ff565b91505092915050565b60006020828403121561258c5761258b61205f565b5b600061259a848285016122ac565b91505092915050565b6125ac816120ee565b81146125b757600080fd5b50565b6000813590506125c9816125a3565b92915050565b600080604083850312156125e6576125e561205f565b5b60006125f4858286016122ac565b9250506020612605858286016125ba565b9150509250929050565b600067ffffffffffffffff82111561262a57612629612402565b5b6126338261216a565b9050602081019050919050565b600061265361264e8461260f565b612462565b90508281526020810184848401111561266f5761266e6123fd565b5b61267a8482856124ae565b509392505050565b600082601f830112612697576126966123f8565b5b81356126a7848260208601612640565b91505092915050565b600080600080608085870312156126ca576126c961205f565b5b60006126d8878288016122ac565b94505060206126e9878288016122ac565b93505060406126fa878288016121f7565b925050606085013567ffffffffffffffff81111561271b5761271a612064565b5b61272787828801612682565b91505092959194509250565b6000806040838503121561274a5761274961205f565b5b6000612758858286016122ac565b9250506020612769858286016122ac565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806127ba57607f821691505b6020821081036127cd576127cc612773565b5b50919050565b600081905092915050565b50565b60006127ee6000836127d3565b91506127f9826127de565b600082019050919050565b600061280f826127e1565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061284f60108361212f565b915061285a82612819565b602082019050919050565b6000602082019050818103600083015261287e81612842565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026128e77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826128aa565b6128f186836128aa565b95508019841693508086168417925050509392505050565b600061292461291f61291a846121d6565b61237e565b6121d6565b9050919050565b6000819050919050565b61293e83612909565b61295261294a8261292b565b8484546128b7565b825550505050565b600090565b61296761295a565b612972818484612935565b505050565b5b818110156129965761298b60008261295f565b600181019050612978565b5050565b601f8211156129db576129ac81612885565b6129b58461289a565b810160208510156129c4578190505b6129d86129d08561289a565b830182612977565b50505b505050565b600082821c905092915050565b60006129fe600019846008026129e0565b1980831691505092915050565b6000612a1783836129ed565b9150826002028217905092915050565b612a3082612124565b67ffffffffffffffff811115612a4957612a48612402565b5b612a5382546127a2565b612a5e82828561299a565b600060209050601f831160018114612a915760008415612a7f578287015190505b612a898582612a0b565b865550612af1565b601f198416612a9f86612885565b60005b82811015612ac757848901518255600182019150602085019450602081019050612aa2565b86831015612ae45784890151612ae0601f8916826129ed565b8355505b6001600288020188555050505b505050505050565b7f4d696e74206861736e27742073746172746564207965742e0000000000000000600082015250565b6000612b2f60188361212f565b9150612b3a82612af9565b602082019050919050565b60006020820190508181036000830152612b5e81612b22565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b9f826121d6565b9150612baa836121d6565b9250828201905080821115612bc257612bc1612b65565b5b92915050565b7f4d617820737570706c792065786365656465642e000000000000000000000000600082015250565b6000612bfe60148361212f565b9150612c0982612bc8565b602082019050919050565b60006020820190508181036000830152612c2d81612bf1565b9050919050565b7f4d6178206d696e74206578636565646564000000000000000000000000000000600082015250565b6000612c6a60118361212f565b9150612c7582612c34565b602082019050919050565b60006020820190508181036000830152612c9981612c5d565b9050919050565b6000612cab826121d6565b9150612cb6836121d6565b9250828202612cc4816121d6565b91508282048414831517612cdb57612cda612b65565b5b5092915050565b7f57726f6e67206d696e742070726963652e000000000000000000000000000000600082015250565b6000612d1860118361212f565b9150612d2382612ce2565b602082019050919050565b60006020820190508181036000830152612d4781612d0b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612daa602f8361212f565b9150612db582612d4e565b604082019050919050565b60006020820190508181036000830152612dd981612d9d565b9050919050565b600081905092915050565b60008154612df8816127a2565b612e028186612de0565b94506001821660008114612e1d5760018114612e3257612e65565b60ff1983168652811515820286019350612e65565b612e3b85612885565b60005b83811015612e5d57815481890152600182019150602081019050612e3e565b838801955050505b50505092915050565b6000612e7982612124565b612e838185612de0565b9350612e93818560208601612140565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612ed5600583612de0565b9150612ee082612e9f565b600582019050919050565b6000612ef78285612deb565b9150612f038284612e6e565b9150612f0e82612ec8565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f7660268361212f565b9150612f8182612f1a565b604082019050919050565b60006020820190508181036000830152612fa581612f69565b9050919050565b6000604082019050612fc1600083018561226b565b612fce602083018461226b565b9392505050565b600081519050612fe4816125a3565b92915050565b60006020828403121561300057612fff61205f565b5b600061300e84828501612fd5565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061304d60208361212f565b915061305882613017565b602082019050919050565b6000602082019050818103600083015261307c81613040565b9050919050565b600061308e826121d6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036130c0576130bf612b65565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613105826121d6565b9150613110836121d6565b9250826131205761311f6130cb565b5b828204905092915050565b6000613136826121d6565b9150613141836121d6565b925082820390508181111561315957613158612b65565b5b92915050565b600061316a826121d6565b9150613175836121d6565b925082613185576131846130cb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006131e6826131bf565b6131f081856131ca565b9350613200818560208601612140565b6132098161216a565b840191505092915050565b6000608082019050613229600083018761226b565b613236602083018661226b565b6132436040830185612301565b818103606083015261325581846131db565b905095945050505050565b60008151905061326f81612095565b92915050565b60006020828403121561328b5761328a61205f565b5b600061329984828501613260565b9150509291505056fea264697066735822122001ea69e8456c473f269b067181fab71813e45b0880ab0e6590a538d6003fa74e64736f6c63430008110033697066733a2f2f516d64665a4e4e4a57554c7753335644386655474e4c414457696531385443646838486b5159745052524157326a2f

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c8063715018a6116100f7578063a22cb46511610095578063c87b56dd11610064578063c87b56dd146105fb578063e985e9c514610638578063f0292a0314610675578063f2fde38b146106a0576101cd565b8063a22cb46514610574578063a9722cf31461059d578063b66a0e5d146105c8578063b88d4fde146105df576101cd565b806391b7f5ed116100d157806391b7f5ed146104c757806393ecb0c6146104f057806395d89b411461052d578063a0712d6814610558576101cd565b8063715018a61461045a5780637f205a74146104715780638da5cb5b1461049c576101cd565b806332cb6b0c1161016f57806355f804b31161013e57806355f804b31461038c5780636352211e146103b55780636c0360eb146103f257806370a082311461041d576101cd565b806332cb6b0c146103035780633ccfd60b1461032e57806341f434341461034557806342842e0e14610370576101cd565b8063095ea7b3116101ab578063095ea7b3146102775780631342ff4c1461029357806318160ddd146102bc57806323b872dd146102e7576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f491906120c1565b6106c9565b6040516102069190612109565b60405180910390f35b34801561021b57600080fd5b5061022461075b565b60405161023191906121b4565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c919061220c565b6107ed565b60405161026e919061227a565b60405180910390f35b610291600480360381019061028c91906122c1565b61086c565b005b34801561029f57600080fd5b506102ba60048036038101906102b5919061220c565b610885565b005b3480156102c857600080fd5b506102d161089a565b6040516102de9190612310565b60405180910390f35b61030160048036038101906102fc919061232b565b6108b1565b005b34801561030f57600080fd5b50610318610900565b6040516103259190612310565b60405180910390f35b34801561033a57600080fd5b50610343610906565b005b34801561035157600080fd5b5061035a6109bd565b60405161036791906123dd565b60405180910390f35b61038a6004803603810190610385919061232b565b6109cf565b005b34801561039857600080fd5b506103b360048036038101906103ae919061252d565b610a1e565b005b3480156103c157600080fd5b506103dc60048036038101906103d7919061220c565b610a39565b6040516103e9919061227a565b60405180910390f35b3480156103fe57600080fd5b50610407610a4b565b60405161041491906121b4565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f9190612576565b610ad9565b6040516104519190612310565b60405180910390f35b34801561046657600080fd5b5061046f610b91565b005b34801561047d57600080fd5b50610486610ba5565b6040516104939190612310565b60405180910390f35b3480156104a857600080fd5b506104b1610bab565b6040516104be919061227a565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e9919061220c565b610bd5565b005b3480156104fc57600080fd5b5061051760048036038101906105129190612576565b610be7565b6040516105249190612310565b60405180910390f35b34801561053957600080fd5b50610542610bff565b60405161054f91906121b4565b60405180910390f35b610572600480360381019061056d919061220c565b610c91565b005b34801561058057600080fd5b5061059b600480360381019061059691906125cf565b610e79565b005b3480156105a957600080fd5b506105b2610e92565b6040516105bf9190612109565b60405180910390f35b3480156105d457600080fd5b506105dd610ea5565b005b6105f960048036038101906105f491906126b0565b610ed9565b005b34801561060757600080fd5b50610622600480360381019061061d919061220c565b610f2a565b60405161062f91906121b4565b60405180910390f35b34801561064457600080fd5b5061065f600480360381019061065a9190612733565b610fa6565b60405161066c9190612109565b60405180910390f35b34801561068157600080fd5b5061068a61103a565b6040516106979190612310565b60405180910390f35b3480156106ac57600080fd5b506106c760048036038101906106c29190612576565b611040565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107545750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461076a906127a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610796906127a2565b80156107e35780601f106107b8576101008083540402835291602001916107e3565b820191906000526020600020905b8154815290600101906020018083116107c657829003601f168201915b5050505050905090565b60006107f8826110c3565b61082e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8161087681611122565b610880838361121f565b505050565b61088d611363565b61089733826113e1565b50565b60006108a46113ff565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108ef576108ee33611122565b5b6108fa848484611408565b50505050565b60095481565b61090e611363565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161093490612804565b60006040518083038185875af1925050503d8060008114610971576040519150601f19603f3d011682016040523d82523d6000602084013e610976565b606091505b50509050806109ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b190612865565b60405180910390fd5b50565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a0d57610a0c33611122565b5b610a1884848461172a565b50505050565b610a26611363565b80600d9081610a359190612a27565b5050565b6000610a448261174a565b9050919050565b600d8054610a58906127a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610a84906127a2565b8015610ad15780601f10610aa657610100808354040283529160200191610ad1565b820191906000526020600020905b815481529060010190602001808311610ab457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b40576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610b99611363565b610ba36000611816565b565b600a5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610bdd611363565b80600a8190555050565b600e6020528060005260406000206000915090505481565b606060038054610c0e906127a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3a906127a2565b8015610c875780601f10610c5c57610100808354040283529160200191610c87565b820191906000526020600020905b815481529060010190602001808311610c6a57829003601f168201915b5050505050905090565b600c60009054906101000a900460ff16610ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd790612b45565b60405180910390fd5b60095481610cec61089a565b610cf69190612b94565b1115610d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2e90612c14565b60405180910390fd5b600b5481600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d859190612b94565b1115610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd90612c80565b60405180910390fd5b80600a54610dd49190612ca0565b341015610e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0d90612d2e565b60405180910390fd5b80600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e659190612b94565b92505081905550610e7633826113e1565b50565b81610e8381611122565b610e8d83836118dc565b505050565b600c60009054906101000a900460ff1681565b610ead611363565b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f1757610f1633611122565b5b610f23858585856119e7565b5050505050565b6060610f35826110c3565b610f74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6b90612dc0565b60405180910390fd5b600d610f7f83611a5a565b604051602001610f90929190612eeb565b6040516020818303038152906040529050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b5481565b611048611363565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae90612f8c565b60405180910390fd5b6110c081611816565b50565b6000816110ce6113ff565b111580156110dd575060005482105b801561111b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561121c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611199929190612fac565b602060405180830381865afa1580156111b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111da9190612fea565b61121b57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611212919061227a565b60405180910390fd5b5b50565b600061122a82610a39565b90508073ffffffffffffffffffffffffffffffffffffffff1661124b611bba565b73ffffffffffffffffffffffffffffffffffffffff16146112ae5761127781611272611bba565b610fa6565b6112ad576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61136b611bc2565b73ffffffffffffffffffffffffffffffffffffffff16611389610bab565b73ffffffffffffffffffffffffffffffffffffffff16146113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d690613063565b60405180910390fd5b565b6113fb828260405180602001604052806000815250611bca565b5050565b60006001905090565b60006114138261174a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461147a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061148684611c67565b9150915061149c8187611497611bba565b611c8e565b6114e8576114b1866114ac611bba565b610fa6565b6114e7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361154e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61155b8686866001611cd2565b801561156657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061163485611610888887611cd8565b7c020000000000000000000000000000000000000000000000000000000017611d00565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036116ba57600060018501905060006004600083815260200190815260200160002054036116b85760005481146116b7578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117228686866001611d2b565b505050505050565b61174583838360405180602001604052806000815250610ed9565b505050565b600080829050806117596113ff565b116117df576000548110156117de5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036117dc575b600081036117d25760046000836001900393508381526020019081526020016000205490506117a8565b8092505050611811565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600760006118e9611bba565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611996611bba565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119db9190612109565b60405180910390a35050565b6119f28484846108b1565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a5457611a1d84848484611d31565b611a53576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060008203611aa1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611bb5565b600082905060005b60008214611ad3578080611abc90613083565b915050600a82611acc91906130fa565b9150611aa9565b60008167ffffffffffffffff811115611aef57611aee612402565b5b6040519080825280601f01601f191660200182016040528015611b215781602001600182028036833780820191505090505b5090505b60008514611bae57600182611b3a919061312b565b9150600a85611b49919061315f565b6030611b559190612b94565b60f81b818381518110611b6b57611b6a613190565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ba791906130fa565b9450611b25565b8093505050505b919050565b600033905090565b600033905090565b611bd48383611e81565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c6257600080549050600083820390505b611c146000868380600101945086611d31565b611c4a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c01578160005414611c5f57600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611cef86868461203c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d57611bba565b8786866040518563ffffffff1660e01b8152600401611d799493929190613214565b6020604051808303816000875af1925050508015611db557506040513d601f19601f82011682018060405250810190611db29190613275565b60015b611e2e573d8060008114611de5576040519150601f19603f3d011682016040523d82523d6000602084013e611dea565b606091505b506000815103611e26576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60008054905060008203611ec1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ece6000848385611cd2565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f4583611f366000866000611cd8565b611f3f85612045565b17611d00565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611fe657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611fab565b5060008203612021576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506120376000848385611d2b565b505050565b60009392505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61209e81612069565b81146120a957600080fd5b50565b6000813590506120bb81612095565b92915050565b6000602082840312156120d7576120d661205f565b5b60006120e5848285016120ac565b91505092915050565b60008115159050919050565b612103816120ee565b82525050565b600060208201905061211e60008301846120fa565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561215e578082015181840152602081019050612143565b60008484015250505050565b6000601f19601f8301169050919050565b600061218682612124565b612190818561212f565b93506121a0818560208601612140565b6121a98161216a565b840191505092915050565b600060208201905081810360008301526121ce818461217b565b905092915050565b6000819050919050565b6121e9816121d6565b81146121f457600080fd5b50565b600081359050612206816121e0565b92915050565b6000602082840312156122225761222161205f565b5b6000612230848285016121f7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061226482612239565b9050919050565b61227481612259565b82525050565b600060208201905061228f600083018461226b565b92915050565b61229e81612259565b81146122a957600080fd5b50565b6000813590506122bb81612295565b92915050565b600080604083850312156122d8576122d761205f565b5b60006122e6858286016122ac565b92505060206122f7858286016121f7565b9150509250929050565b61230a816121d6565b82525050565b60006020820190506123256000830184612301565b92915050565b6000806000606084860312156123445761234361205f565b5b6000612352868287016122ac565b9350506020612363868287016122ac565b9250506040612374868287016121f7565b9150509250925092565b6000819050919050565b60006123a361239e61239984612239565b61237e565b612239565b9050919050565b60006123b582612388565b9050919050565b60006123c7826123aa565b9050919050565b6123d7816123bc565b82525050565b60006020820190506123f260008301846123ce565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61243a8261216a565b810181811067ffffffffffffffff8211171561245957612458612402565b5b80604052505050565b600061246c612055565b90506124788282612431565b919050565b600067ffffffffffffffff82111561249857612497612402565b5b6124a18261216a565b9050602081019050919050565b82818337600083830152505050565b60006124d06124cb8461247d565b612462565b9050828152602081018484840111156124ec576124eb6123fd565b5b6124f78482856124ae565b509392505050565b600082601f830112612514576125136123f8565b5b81356125248482602086016124bd565b91505092915050565b6000602082840312156125435761254261205f565b5b600082013567ffffffffffffffff81111561256157612560612064565b5b61256d848285016124ff565b91505092915050565b60006020828403121561258c5761258b61205f565b5b600061259a848285016122ac565b91505092915050565b6125ac816120ee565b81146125b757600080fd5b50565b6000813590506125c9816125a3565b92915050565b600080604083850312156125e6576125e561205f565b5b60006125f4858286016122ac565b9250506020612605858286016125ba565b9150509250929050565b600067ffffffffffffffff82111561262a57612629612402565b5b6126338261216a565b9050602081019050919050565b600061265361264e8461260f565b612462565b90508281526020810184848401111561266f5761266e6123fd565b5b61267a8482856124ae565b509392505050565b600082601f830112612697576126966123f8565b5b81356126a7848260208601612640565b91505092915050565b600080600080608085870312156126ca576126c961205f565b5b60006126d8878288016122ac565b94505060206126e9878288016122ac565b93505060406126fa878288016121f7565b925050606085013567ffffffffffffffff81111561271b5761271a612064565b5b61272787828801612682565b91505092959194509250565b6000806040838503121561274a5761274961205f565b5b6000612758858286016122ac565b9250506020612769858286016122ac565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806127ba57607f821691505b6020821081036127cd576127cc612773565b5b50919050565b600081905092915050565b50565b60006127ee6000836127d3565b91506127f9826127de565b600082019050919050565b600061280f826127e1565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061284f60108361212f565b915061285a82612819565b602082019050919050565b6000602082019050818103600083015261287e81612842565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026128e77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826128aa565b6128f186836128aa565b95508019841693508086168417925050509392505050565b600061292461291f61291a846121d6565b61237e565b6121d6565b9050919050565b6000819050919050565b61293e83612909565b61295261294a8261292b565b8484546128b7565b825550505050565b600090565b61296761295a565b612972818484612935565b505050565b5b818110156129965761298b60008261295f565b600181019050612978565b5050565b601f8211156129db576129ac81612885565b6129b58461289a565b810160208510156129c4578190505b6129d86129d08561289a565b830182612977565b50505b505050565b600082821c905092915050565b60006129fe600019846008026129e0565b1980831691505092915050565b6000612a1783836129ed565b9150826002028217905092915050565b612a3082612124565b67ffffffffffffffff811115612a4957612a48612402565b5b612a5382546127a2565b612a5e82828561299a565b600060209050601f831160018114612a915760008415612a7f578287015190505b612a898582612a0b565b865550612af1565b601f198416612a9f86612885565b60005b82811015612ac757848901518255600182019150602085019450602081019050612aa2565b86831015612ae45784890151612ae0601f8916826129ed565b8355505b6001600288020188555050505b505050505050565b7f4d696e74206861736e27742073746172746564207965742e0000000000000000600082015250565b6000612b2f60188361212f565b9150612b3a82612af9565b602082019050919050565b60006020820190508181036000830152612b5e81612b22565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b9f826121d6565b9150612baa836121d6565b9250828201905080821115612bc257612bc1612b65565b5b92915050565b7f4d617820737570706c792065786365656465642e000000000000000000000000600082015250565b6000612bfe60148361212f565b9150612c0982612bc8565b602082019050919050565b60006020820190508181036000830152612c2d81612bf1565b9050919050565b7f4d6178206d696e74206578636565646564000000000000000000000000000000600082015250565b6000612c6a60118361212f565b9150612c7582612c34565b602082019050919050565b60006020820190508181036000830152612c9981612c5d565b9050919050565b6000612cab826121d6565b9150612cb6836121d6565b9250828202612cc4816121d6565b91508282048414831517612cdb57612cda612b65565b5b5092915050565b7f57726f6e67206d696e742070726963652e000000000000000000000000000000600082015250565b6000612d1860118361212f565b9150612d2382612ce2565b602082019050919050565b60006020820190508181036000830152612d4781612d0b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612daa602f8361212f565b9150612db582612d4e565b604082019050919050565b60006020820190508181036000830152612dd981612d9d565b9050919050565b600081905092915050565b60008154612df8816127a2565b612e028186612de0565b94506001821660008114612e1d5760018114612e3257612e65565b60ff1983168652811515820286019350612e65565b612e3b85612885565b60005b83811015612e5d57815481890152600182019150602081019050612e3e565b838801955050505b50505092915050565b6000612e7982612124565b612e838185612de0565b9350612e93818560208601612140565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612ed5600583612de0565b9150612ee082612e9f565b600582019050919050565b6000612ef78285612deb565b9150612f038284612e6e565b9150612f0e82612ec8565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f7660268361212f565b9150612f8182612f1a565b604082019050919050565b60006020820190508181036000830152612fa581612f69565b9050919050565b6000604082019050612fc1600083018561226b565b612fce602083018461226b565b9392505050565b600081519050612fe4816125a3565b92915050565b60006020828403121561300057612fff61205f565b5b600061300e84828501612fd5565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061304d60208361212f565b915061305882613017565b602082019050919050565b6000602082019050818103600083015261307c81613040565b9050919050565b600061308e826121d6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036130c0576130bf612b65565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613105826121d6565b9150613110836121d6565b9250826131205761311f6130cb565b5b828204905092915050565b6000613136826121d6565b9150613141836121d6565b925082820390508181111561315957613158612b65565b5b92915050565b600061316a826121d6565b9150613175836121d6565b925082613185576131846130cb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006131e6826131bf565b6131f081856131ca565b9350613200818560208601612140565b6132098161216a565b840191505092915050565b6000608082019050613229600083018761226b565b613236602083018661226b565b6132436040830185612301565b818103606083015261325581846131db565b905095945050505050565b60008151905061326f81612095565b92915050565b60006020828403121561328b5761328a61205f565b5b600061329984828501613260565b9150509291505056fea264697066735822122001ea69e8456c473f269b067181fab71813e45b0880ab0e6590a538d6003fa74e64736f6c63430008110033

Deployed Bytecode Sourcemap

63048:3236:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29952:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30854:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37345:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65497:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64102:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26605:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65670:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63156:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65099:206;;;;;;;;;;;;;:::i;:::-;;2960:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65849:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64805:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32247:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63312:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27789:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10731:103;;;;;;;;;;;;;:::i;:::-;;63194:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10083:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64994:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63399:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31030:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63513:581;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65313:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63274:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64901:85;;;;;;;;;;;;;:::i;:::-;;66036:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64222:350;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38294:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63240:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10989:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29952:639;30037:4;30376:10;30361:25;;:11;:25;;;;:102;;;;30453:10;30438:25;;:11;:25;;;;30361:102;:179;;;;30530:10;30515:25;;:11;:25;;;;30361:179;30341:199;;29952:639;;;:::o;30854:100::-;30908:13;30941:5;30934:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30854:100;:::o;37345:218::-;37421:7;37446:16;37454:7;37446;:16::i;:::-;37441:64;;37471:34;;;;;;;;;;;;;;37441:64;37525:15;:24;37541:7;37525:24;;;;;;;;;;;:30;;;;;;;;;;;;37518:37;;37345:218;;;:::o;65497:165::-;65601:8;4481:30;4502:8;4481:20;:30::i;:::-;65622:32:::1;65636:8;65646:7;65622:13;:32::i;:::-;65497:165:::0;;;:::o;64102:112::-;9969:13;:11;:13::i;:::-;64173:33:::1;64183:10;64195;64173:9;:33::i;:::-;64102:112:::0;:::o;26605:323::-;26666:7;26894:15;:13;:15::i;:::-;26879:12;;26863:13;;:28;:46;26856:53;;26605:323;:::o;65670:171::-;65779:4;4309:10;4301:18;;:4;:18;;;4297:83;;4336:32;4357:10;4336:20;:32::i;:::-;4297:83;65796:37:::1;65815:4;65821:2;65825:7;65796:18;:37::i;:::-;65670:171:::0;;;;:::o;63156:31::-;;;;:::o;65099:206::-;9969:13;:11;:13::i;:::-;65150:12:::1;65176:10;65168:24;;65214:21;65168:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65149:101;;;65269:7;65261:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;65138:167;65099:206::o:0;2960:143::-;3060:42;2960:143;:::o;65849:179::-;65962:4;4309:10;4301:18;;:4;:18;;;4297:83;;4336:32;4357:10;4336:20;:32::i;:::-;4297:83;65979:41:::1;66002:4;66008:2;66012:7;65979:22;:41::i;:::-;65849:179:::0;;;;:::o;64805:88::-;9969:13;:11;:13::i;:::-;64882:3:::1;64872:7;:13;;;;;;:::i;:::-;;64805:88:::0;:::o;32247:152::-;32319:7;32362:27;32381:7;32362:18;:27::i;:::-;32339:52;;32247:152;;;:::o;63312:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27789:233::-;27861:7;27902:1;27885:19;;:5;:19;;;27881:60;;27913:28;;;;;;;;;;;;;;27881:60;21948:13;27959:18;:25;27978:5;27959:25;;;;;;;;;;;;;;;;:55;27952:62;;27789:233;;;:::o;10731:103::-;9969:13;:11;:13::i;:::-;10796:30:::1;10823:1;10796:18;:30::i;:::-;10731:103::o:0;63194:39::-;;;;:::o;10083:87::-;10129:7;10156:6;;;;;;;;;;;10149:13;;10083:87;:::o;64994:97::-;9969:13;:11;:13::i;:::-;65074:9:::1;65061:10;:22;;;;64994:97:::0;:::o;63399:50::-;;;;;;;;;;;;;;;;;:::o;31030:104::-;31086:13;31119:7;31112:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31030:104;:::o;63513:581::-;63582:11;;;;;;;;;;;63574:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;63686:10;;63672:9;63656:13;:11;:13::i;:::-;:25;;;;:::i;:::-;63655:41;;63633:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;63822:8;;63808:9;63778:15;:27;63794:10;63778:27;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;63777:53;;63755:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;63935:9;63922:10;;:22;;;;:::i;:::-;63908:9;:37;;63886:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;64034:9;64003:15;:27;64019:10;64003:27;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;64054:32;64064:10;64076:9;64054;:32::i;:::-;63513:581;:::o;65313:176::-;65417:8;4481:30;4502:8;4481:20;:30::i;:::-;65438:43:::1;65462:8;65472;65438:23;:43::i;:::-;65313:176:::0;;;:::o;63274:31::-;;;;;;;;;;;;;:::o;64901:85::-;9969:13;:11;:13::i;:::-;64967:11:::1;;;;;;;;;;;64966:12;64952:11;;:26;;;;;;;;;;;;;;;;;;64901:85::o:0;66036:245::-;66204:4;4309:10;4301:18;;:4;:18;;;4297:83;;4336:32;4357:10;4336:20;:32::i;:::-;4297:83;66226:47:::1;66249:4;66255:2;66259:7;66268:4;66226:22;:47::i;:::-;66036:245:::0;;;;;:::o;64222:350::-;64340:13;64393:16;64401:7;64393;:16::i;:::-;64371:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;64526:7;64535:18;:7;:16;:18::i;:::-;64509:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64495:69;;64222:350;;;:::o;38294:164::-;38391:4;38415:18;:25;38434:5;38415:25;;;;;;;;;;;;;;;:35;38441:8;38415:35;;;;;;;;;;;;;;;;;;;;;;;;;38408:42;;38294:164;;;;:::o;63240:27::-;;;;:::o;10989:201::-;9969:13;:11;:13::i;:::-;11098:1:::1;11078:22;;:8;:22;;::::0;11070:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;11154:28;11173:8;11154:18;:28::i;:::-;10989:201:::0;:::o;38716:282::-;38781:4;38837:7;38818:15;:13;:15::i;:::-;:26;;:66;;;;;38871:13;;38861:7;:23;38818:66;:153;;;;;38970:1;22724:8;38922:17;:26;38940:7;38922:26;;;;;;;;;;;;:44;:49;38818:153;38798:173;;38716:282;;;:::o;4539:419::-;4778:1;3060:42;4730:45;;;:49;4726:225;;;3060:42;4801;;;4852:4;4859:8;4801:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4796:144;;4915:8;4896:28;;;;;;;;;;;:::i;:::-;;;;;;;;4796:144;4726:225;4539:419;:::o;36778:408::-;36867:13;36883:16;36891:7;36883;:16::i;:::-;36867:32;;36939:5;36916:28;;:19;:17;:19::i;:::-;:28;;;36912:175;;36964:44;36981:5;36988:19;:17;:19::i;:::-;36964:16;:44::i;:::-;36959:128;;37036:35;;;;;;;;;;;;;;36959:128;36912:175;37132:2;37099:15;:24;37115:7;37099:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37170:7;37166:2;37150:28;;37159:5;37150:28;;;;;;;;;;;;36856:330;36778:408;;:::o;10248:132::-;10323:12;:10;:12::i;:::-;10312:23;;:7;:5;:7::i;:::-;:23;;;10304:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10248:132::o;54856:112::-;54933:27;54943:2;54947:8;54933:27;;;;;;;;;;;;:9;:27::i;:::-;54856:112;;:::o;64696:101::-;64761:7;64788:1;64781:8;;64696:101;:::o;40984:2825::-;41126:27;41156;41175:7;41156:18;:27::i;:::-;41126:57;;41241:4;41200:45;;41216:19;41200:45;;;41196:86;;41254:28;;;;;;;;;;;;;;41196:86;41296:27;41325:23;41352:35;41379:7;41352:26;:35::i;:::-;41295:92;;;;41487:68;41512:15;41529:4;41535:19;:17;:19::i;:::-;41487:24;:68::i;:::-;41482:180;;41575:43;41592:4;41598:19;:17;:19::i;:::-;41575:16;:43::i;:::-;41570:92;;41627:35;;;;;;;;;;;;;;41570:92;41482:180;41693:1;41679:16;;:2;:16;;;41675:52;;41704:23;;;;;;;;;;;;;;41675:52;41740:43;41762:4;41768:2;41772:7;41781:1;41740:21;:43::i;:::-;41876:15;41873:160;;;42016:1;41995:19;41988:30;41873:160;42413:18;:24;42432:4;42413:24;;;;;;;;;;;;;;;;42411:26;;;;;;;;;;;;42482:18;:22;42501:2;42482:22;;;;;;;;;;;;;;;;42480:24;;;;;;;;;;;42804:146;42841:2;42890:45;42905:4;42911:2;42915:19;42890:14;:45::i;:::-;23004:8;42862:73;42804:18;:146::i;:::-;42775:17;:26;42793:7;42775:26;;;;;;;;;;;:175;;;;43121:1;23004:8;43070:19;:47;:52;43066:627;;43143:19;43175:1;43165:7;:11;43143:33;;43332:1;43298:17;:30;43316:11;43298:30;;;;;;;;;;;;:35;43294:384;;43436:13;;43421:11;:28;43417:242;;43616:19;43583:17;:30;43601:11;43583:30;;;;;;;;;;;:52;;;;43417:242;43294:384;43124:569;43066:627;43740:7;43736:2;43721:27;;43730:4;43721:27;;;;;;;;;;;;43759:42;43780:4;43786:2;43790:7;43799:1;43759:20;:42::i;:::-;41115:2694;;;40984:2825;;;:::o;43905:193::-;44051:39;44068:4;44074:2;44078:7;44051:39;;;;;;;;;;;;:16;:39::i;:::-;43905:193;;;:::o;33402:1275::-;33469:7;33489:12;33504:7;33489:22;;33572:4;33553:15;:13;:15::i;:::-;:23;33549:1061;;33606:13;;33599:4;:20;33595:1015;;;33644:14;33661:17;:23;33679:4;33661:23;;;;;;;;;;;;33644:40;;33778:1;22724:8;33750:6;:24;:29;33746:845;;34415:113;34432:1;34422:6;:11;34415:113;;34475:17;:25;34493:6;;;;;;;34475:25;;;;;;;;;;;;34466:34;;34415:113;;;34561:6;34554:13;;;;;;33746:845;33621:989;33595:1015;33549:1061;34638:31;;;;;;;;;;;;;;33402:1275;;;;:::o;11350:191::-;11424:16;11443:6;;;;;;;;;;;11424:25;;11469:8;11460:6;;:17;;;;;;;;;;;;;;;;;;11524:8;11493:40;;11514:8;11493:40;;;;;;;;;;;;11413:128;11350:191;:::o;37903:234::-;38050:8;37998:18;:39;38017:19;:17;:19::i;:::-;37998:39;;;;;;;;;;;;;;;:49;38038:8;37998:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;38110:8;38074:55;;38089:19;:17;:19::i;:::-;38074:55;;;38120:8;38074:55;;;;;;:::i;:::-;;;;;;;;37903:234;;:::o;44696:407::-;44871:31;44884:4;44890:2;44894:7;44871:12;:31::i;:::-;44935:1;44917:2;:14;;;:19;44913:183;;44956:56;44987:4;44993:2;44997:7;45006:5;44956:30;:56::i;:::-;44951:145;;45040:40;;;;;;;;;;;;;;44951:145;44913:183;44696:407;;;;:::o;5888:723::-;5944:13;6174:1;6165:5;:10;6161:53;;6192:10;;;;;;;;;;;;;;;;;;;;;6161:53;6224:12;6239:5;6224:20;;6255:14;6280:78;6295:1;6287:4;:9;6280:78;;6313:8;;;;;:::i;:::-;;;;6344:2;6336:10;;;;;:::i;:::-;;;6280:78;;;6368:19;6400:6;6390:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6368:39;;6418:154;6434:1;6425:5;:10;6418:154;;6462:1;6452:11;;;;;:::i;:::-;;;6529:2;6521:5;:10;;;;:::i;:::-;6508:2;:24;;;;:::i;:::-;6495:39;;6478:6;6485;6478:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6558:2;6549:11;;;;;:::i;:::-;;;6418:154;;;6596:6;6582:21;;;;;5888:723;;;;:::o;61024:105::-;61084:7;61111:10;61104:17;;61024:105;:::o;8634:98::-;8687:7;8714:10;8707:17;;8634:98;:::o;54083:689::-;54214:19;54220:2;54224:8;54214:5;:19::i;:::-;54293:1;54275:2;:14;;;:19;54271:483;;54315:11;54329:13;;54315:27;;54361:13;54383:8;54377:3;:14;54361:30;;54410:233;54441:62;54480:1;54484:2;54488:7;;;;;;54497:5;54441:30;:62::i;:::-;54436:167;;54539:40;;;;;;;;;;;;;;54436:167;54638:3;54630:5;:11;54410:233;;54725:3;54708:13;;:20;54704:34;;54730:8;;;54704:34;54296:458;;54271:483;54083:689;;;:::o;39879:485::-;39981:27;40010:23;40051:38;40092:15;:24;40108:7;40092:24;;;;;;;;;;;40051:65;;40269:18;40246:41;;40326:19;40320:26;40301:45;;40231:126;39879:485;;;:::o;39107:659::-;39256:11;39421:16;39414:5;39410:28;39401:37;;39581:16;39570:9;39566:32;39553:45;;39731:15;39720:9;39717:30;39709:5;39698:9;39695:20;39692:56;39682:66;;39107:659;;;;;:::o;45765:159::-;;;;;:::o;60333:311::-;60468:7;60488:16;23128:3;60514:19;:41;;60488:68;;23128:3;60582:31;60593:4;60599:2;60603:9;60582:10;:31::i;:::-;60574:40;;:62;;60567:69;;;60333:311;;;;;:::o;35225:450::-;35305:14;35473:16;35466:5;35462:28;35453:37;;35650:5;35636:11;35611:23;35607:41;35604:52;35597:5;35594:63;35584:73;;35225:450;;;;:::o;46589:158::-;;;;;:::o;47187:716::-;47350:4;47396:2;47371:45;;;47417:19;:17;:19::i;:::-;47438:4;47444:7;47453:5;47371:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;47367:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47671:1;47654:6;:13;:18;47650:235;;47700:40;;;;;;;;;;;;;;47650:235;47843:6;47837:13;47828:6;47824:2;47820:15;47813:38;47367:529;47540:54;;;47530:64;;;:6;:64;;;;47523:71;;;47187:716;;;;;;:::o;48365:2966::-;48438:20;48461:13;;48438:36;;48501:1;48489:8;:13;48485:44;;48511:18;;;;;;;;;;;;;;48485:44;48542:61;48572:1;48576:2;48580:12;48594:8;48542:21;:61::i;:::-;49086:1;22086:2;49056:1;:26;;49055:32;49043:8;:45;49017:18;:22;49036:2;49017:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;49365:139;49402:2;49456:33;49479:1;49483:2;49487:1;49456:14;:33::i;:::-;49423:30;49444:8;49423:20;:30::i;:::-;:66;49365:18;:139::i;:::-;49331:17;:31;49349:12;49331:31;;;;;;;;;;;:173;;;;49521:16;49552:11;49581:8;49566:12;:23;49552:37;;50102:16;50098:2;50094:25;50082:37;;50474:12;50434:8;50393:1;50331:25;50272:1;50211;50184:335;50845:1;50831:12;50827:20;50785:346;50886:3;50877:7;50874:16;50785:346;;51104:7;51094:8;51091:1;51064:25;51061:1;51058;51053:59;50939:1;50930:7;50926:15;50915:26;;50785:346;;;50789:77;51176:1;51164:8;:13;51160:45;;51186:19;;;;;;;;;;;;;;51160:45;51238:3;51222:13;:19;;;;48791:2462;;51263:60;51292:1;51296:2;51300:12;51314:8;51263:20;:60::i;:::-;48427:2904;48365:2966;;:::o;60034:147::-;60171:6;60034:147;;;;;:::o;35777:324::-;35847:14;36080:1;36070:8;36067:15;36041:24;36037:46;36027:56;;35777:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:60::-;5895:3;5916:5;5909:12;;5867:60;;;:::o;5933:142::-;5983:9;6016:53;6034:34;6043:24;6061:5;6043:24;:::i;:::-;6034:34;:::i;:::-;6016:53;:::i;:::-;6003:66;;5933:142;;;:::o;6081:126::-;6131:9;6164:37;6195:5;6164:37;:::i;:::-;6151:50;;6081:126;;;:::o;6213:157::-;6294:9;6327:37;6358:5;6327:37;:::i;:::-;6314:50;;6213:157;;;:::o;6376:193::-;6494:68;6556:5;6494:68;:::i;:::-;6489:3;6482:81;6376:193;;:::o;6575:284::-;6699:4;6737:2;6726:9;6722:18;6714:26;;6750:102;6849:1;6838:9;6834:17;6825:6;6750:102;:::i;:::-;6575:284;;;;:::o;6865:117::-;6974:1;6971;6964:12;6988:117;7097:1;7094;7087:12;7111:180;7159:77;7156:1;7149:88;7256:4;7253:1;7246:15;7280:4;7277:1;7270:15;7297:281;7380:27;7402:4;7380:27;:::i;:::-;7372:6;7368:40;7510:6;7498:10;7495:22;7474:18;7462:10;7459:34;7456:62;7453:88;;;7521:18;;:::i;:::-;7453:88;7561:10;7557:2;7550:22;7340:238;7297:281;;:::o;7584:129::-;7618:6;7645:20;;:::i;:::-;7635:30;;7674:33;7702:4;7694:6;7674:33;:::i;:::-;7584:129;;;:::o;7719:308::-;7781:4;7871:18;7863:6;7860:30;7857:56;;;7893:18;;:::i;:::-;7857:56;7931:29;7953:6;7931:29;:::i;:::-;7923:37;;8015:4;8009;8005:15;7997:23;;7719:308;;;:::o;8033:146::-;8130:6;8125:3;8120;8107:30;8171:1;8162:6;8157:3;8153:16;8146:27;8033:146;;;:::o;8185:425::-;8263:5;8288:66;8304:49;8346:6;8304:49;:::i;:::-;8288:66;:::i;:::-;8279:75;;8377:6;8370:5;8363:21;8415:4;8408:5;8404:16;8453:3;8444:6;8439:3;8435:16;8432:25;8429:112;;;8460:79;;:::i;:::-;8429:112;8550:54;8597:6;8592:3;8587;8550:54;:::i;:::-;8269:341;8185:425;;;;;:::o;8630:340::-;8686:5;8735:3;8728:4;8720:6;8716:17;8712:27;8702:122;;8743:79;;:::i;:::-;8702:122;8860:6;8847:20;8885:79;8960:3;8952:6;8945:4;8937:6;8933:17;8885:79;:::i;:::-;8876:88;;8692:278;8630:340;;;;:::o;8976:509::-;9045:6;9094:2;9082:9;9073:7;9069:23;9065:32;9062:119;;;9100:79;;:::i;:::-;9062:119;9248:1;9237:9;9233:17;9220:31;9278:18;9270:6;9267:30;9264:117;;;9300:79;;:::i;:::-;9264:117;9405:63;9460:7;9451:6;9440:9;9436:22;9405:63;:::i;:::-;9395:73;;9191:287;8976:509;;;;:::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:180::-;13137:77;13134:1;13127:88;13234:4;13231:1;13224:15;13258:4;13255:1;13248:15;13275:320;13319:6;13356:1;13350:4;13346:12;13336:22;;13403:1;13397:4;13393:12;13424:18;13414:81;;13480:4;13472:6;13468:17;13458:27;;13414:81;13542:2;13534:6;13531:14;13511:18;13508:38;13505:84;;13561:18;;:::i;:::-;13505:84;13326:269;13275:320;;;:::o;13601:147::-;13702:11;13739:3;13724:18;;13601:147;;;;:::o;13754:114::-;;:::o;13874:398::-;14033:3;14054:83;14135:1;14130:3;14054:83;:::i;:::-;14047:90;;14146:93;14235:3;14146:93;:::i;:::-;14264:1;14259:3;14255:11;14248:18;;13874:398;;;:::o;14278:379::-;14462:3;14484:147;14627:3;14484:147;:::i;:::-;14477:154;;14648:3;14641:10;;14278:379;;;:::o;14663:166::-;14803:18;14799:1;14791:6;14787:14;14780:42;14663:166;:::o;14835:366::-;14977:3;14998:67;15062:2;15057:3;14998:67;:::i;:::-;14991:74;;15074:93;15163:3;15074:93;:::i;:::-;15192:2;15187:3;15183:12;15176:19;;14835:366;;;:::o;15207:419::-;15373:4;15411:2;15400:9;15396:18;15388:26;;15460:9;15454:4;15450:20;15446:1;15435:9;15431:17;15424:47;15488:131;15614:4;15488:131;:::i;:::-;15480:139;;15207:419;;;:::o;15632:141::-;15681:4;15704:3;15696:11;;15727:3;15724:1;15717:14;15761:4;15758:1;15748:18;15740:26;;15632:141;;;:::o;15779:93::-;15816:6;15863:2;15858;15851:5;15847:14;15843:23;15833:33;;15779:93;;;:::o;15878:107::-;15922:8;15972:5;15966:4;15962:16;15941:37;;15878:107;;;;:::o;15991:393::-;16060:6;16110:1;16098:10;16094:18;16133:97;16163:66;16152:9;16133:97;:::i;:::-;16251:39;16281:8;16270:9;16251:39;:::i;:::-;16239:51;;16323:4;16319:9;16312:5;16308:21;16299:30;;16372:4;16362:8;16358:19;16351:5;16348:30;16338:40;;16067:317;;15991:393;;;;;:::o;16390:142::-;16440:9;16473:53;16491:34;16500:24;16518:5;16500:24;:::i;:::-;16491:34;:::i;:::-;16473:53;:::i;:::-;16460:66;;16390:142;;;:::o;16538:75::-;16581:3;16602:5;16595:12;;16538:75;;;:::o;16619:269::-;16729:39;16760:7;16729:39;:::i;:::-;16790:91;16839:41;16863:16;16839:41;:::i;:::-;16831:6;16824:4;16818:11;16790:91;:::i;:::-;16784:4;16777:105;16695:193;16619:269;;;:::o;16894:73::-;16939:3;16894:73;:::o;16973:189::-;17050:32;;:::i;:::-;17091:65;17149:6;17141;17135:4;17091:65;:::i;:::-;17026:136;16973:189;;:::o;17168:186::-;17228:120;17245:3;17238:5;17235:14;17228:120;;;17299:39;17336:1;17329:5;17299:39;:::i;:::-;17272:1;17265:5;17261:13;17252:22;;17228:120;;;17168:186;;:::o;17360:543::-;17461:2;17456:3;17453:11;17450:446;;;17495:38;17527:5;17495:38;:::i;:::-;17579:29;17597:10;17579:29;:::i;:::-;17569:8;17565:44;17762:2;17750:10;17747:18;17744:49;;;17783:8;17768:23;;17744:49;17806:80;17862:22;17880:3;17862:22;:::i;:::-;17852:8;17848:37;17835:11;17806:80;:::i;:::-;17465:431;;17450:446;17360:543;;;:::o;17909:117::-;17963:8;18013:5;18007:4;18003:16;17982:37;;17909:117;;;;:::o;18032:169::-;18076:6;18109:51;18157:1;18153:6;18145:5;18142:1;18138:13;18109:51;:::i;:::-;18105:56;18190:4;18184;18180:15;18170:25;;18083:118;18032:169;;;;:::o;18206:295::-;18282:4;18428:29;18453:3;18447:4;18428:29;:::i;:::-;18420:37;;18490:3;18487:1;18483:11;18477:4;18474:21;18466:29;;18206:295;;;;:::o;18506:1395::-;18623:37;18656:3;18623:37;:::i;:::-;18725:18;18717:6;18714:30;18711:56;;;18747:18;;:::i;:::-;18711:56;18791:38;18823:4;18817:11;18791:38;:::i;:::-;18876:67;18936:6;18928;18922:4;18876:67;:::i;:::-;18970:1;18994:4;18981:17;;19026:2;19018:6;19015:14;19043:1;19038:618;;;;19700:1;19717:6;19714:77;;;19766:9;19761:3;19757:19;19751:26;19742:35;;19714:77;19817:67;19877:6;19870:5;19817:67;:::i;:::-;19811:4;19804:81;19673:222;19008:887;;19038:618;19090:4;19086:9;19078:6;19074:22;19124:37;19156:4;19124:37;:::i;:::-;19183:1;19197:208;19211:7;19208:1;19205:14;19197:208;;;19290:9;19285:3;19281:19;19275:26;19267:6;19260:42;19341:1;19333:6;19329:14;19319:24;;19388:2;19377:9;19373:18;19360:31;;19234:4;19231:1;19227:12;19222:17;;19197:208;;;19433:6;19424:7;19421:19;19418:179;;;19491:9;19486:3;19482:19;19476:26;19534:48;19576:4;19568:6;19564:17;19553:9;19534:48;:::i;:::-;19526:6;19519:64;19441:156;19418:179;19643:1;19639;19631:6;19627:14;19623:22;19617:4;19610:36;19045:611;;;19008:887;;18598:1303;;;18506:1395;;:::o;19907:174::-;20047:26;20043:1;20035:6;20031:14;20024:50;19907:174;:::o;20087:366::-;20229:3;20250:67;20314:2;20309:3;20250:67;:::i;:::-;20243:74;;20326:93;20415:3;20326:93;:::i;:::-;20444:2;20439:3;20435:12;20428:19;;20087:366;;;:::o;20459:419::-;20625:4;20663:2;20652:9;20648:18;20640:26;;20712:9;20706:4;20702:20;20698:1;20687:9;20683:17;20676:47;20740:131;20866:4;20740:131;:::i;:::-;20732:139;;20459:419;;;:::o;20884:180::-;20932:77;20929:1;20922:88;21029:4;21026:1;21019:15;21053:4;21050:1;21043:15;21070:191;21110:3;21129:20;21147:1;21129:20;:::i;:::-;21124:25;;21163:20;21181:1;21163:20;:::i;:::-;21158:25;;21206:1;21203;21199:9;21192:16;;21227:3;21224:1;21221:10;21218:36;;;21234:18;;:::i;:::-;21218:36;21070:191;;;;:::o;21267:170::-;21407:22;21403:1;21395:6;21391:14;21384:46;21267:170;:::o;21443:366::-;21585:3;21606:67;21670:2;21665:3;21606:67;:::i;:::-;21599:74;;21682:93;21771:3;21682:93;:::i;:::-;21800:2;21795:3;21791:12;21784:19;;21443:366;;;:::o;21815:419::-;21981:4;22019:2;22008:9;22004:18;21996:26;;22068:9;22062:4;22058:20;22054:1;22043:9;22039:17;22032:47;22096:131;22222:4;22096:131;:::i;:::-;22088:139;;21815:419;;;:::o;22240:167::-;22380:19;22376:1;22368:6;22364:14;22357:43;22240:167;:::o;22413:366::-;22555:3;22576:67;22640:2;22635:3;22576:67;:::i;:::-;22569:74;;22652:93;22741:3;22652:93;:::i;:::-;22770:2;22765:3;22761:12;22754:19;;22413:366;;;:::o;22785:419::-;22951:4;22989:2;22978:9;22974:18;22966:26;;23038:9;23032:4;23028:20;23024:1;23013:9;23009:17;23002:47;23066:131;23192:4;23066:131;:::i;:::-;23058:139;;22785:419;;;:::o;23210:410::-;23250:7;23273:20;23291:1;23273:20;:::i;:::-;23268:25;;23307:20;23325:1;23307:20;:::i;:::-;23302:25;;23362:1;23359;23355:9;23384:30;23402:11;23384:30;:::i;:::-;23373:41;;23563:1;23554:7;23550:15;23547:1;23544:22;23524:1;23517:9;23497:83;23474:139;;23593:18;;:::i;:::-;23474:139;23258:362;23210:410;;;;:::o;23626:167::-;23766:19;23762:1;23754:6;23750:14;23743:43;23626:167;:::o;23799:366::-;23941:3;23962:67;24026:2;24021:3;23962:67;:::i;:::-;23955:74;;24038:93;24127:3;24038:93;:::i;:::-;24156:2;24151:3;24147:12;24140:19;;23799:366;;;:::o;24171:419::-;24337:4;24375:2;24364:9;24360:18;24352:26;;24424:9;24418:4;24414:20;24410:1;24399:9;24395:17;24388:47;24452:131;24578:4;24452:131;:::i;:::-;24444:139;;24171:419;;;:::o;24596:234::-;24736:34;24732:1;24724:6;24720:14;24713:58;24805:17;24800:2;24792:6;24788:15;24781:42;24596:234;:::o;24836:366::-;24978:3;24999:67;25063:2;25058:3;24999:67;:::i;:::-;24992:74;;25075:93;25164:3;25075:93;:::i;:::-;25193:2;25188:3;25184:12;25177:19;;24836:366;;;:::o;25208:419::-;25374:4;25412:2;25401:9;25397:18;25389:26;;25461:9;25455:4;25451:20;25447:1;25436:9;25432:17;25425:47;25489:131;25615:4;25489:131;:::i;:::-;25481:139;;25208:419;;;:::o;25633:148::-;25735:11;25772:3;25757:18;;25633:148;;;;:::o;25811:874::-;25914:3;25951:5;25945:12;25980:36;26006:9;25980:36;:::i;:::-;26032:89;26114:6;26109:3;26032:89;:::i;:::-;26025:96;;26152:1;26141:9;26137:17;26168:1;26163:166;;;;26343:1;26338:341;;;;26130:549;;26163:166;26247:4;26243:9;26232;26228:25;26223:3;26216:38;26309:6;26302:14;26295:22;26287:6;26283:35;26278:3;26274:45;26267:52;;26163:166;;26338:341;26405:38;26437:5;26405:38;:::i;:::-;26465:1;26479:154;26493:6;26490:1;26487:13;26479:154;;;26567:7;26561:14;26557:1;26552:3;26548:11;26541:35;26617:1;26608:7;26604:15;26593:26;;26515:4;26512:1;26508:12;26503:17;;26479:154;;;26662:6;26657:3;26653:16;26646:23;;26345:334;;26130:549;;25918:767;;25811:874;;;;:::o;26691:390::-;26797:3;26825:39;26858:5;26825:39;:::i;:::-;26880:89;26962:6;26957:3;26880:89;:::i;:::-;26873:96;;26978:65;27036:6;27031:3;27024:4;27017:5;27013:16;26978:65;:::i;:::-;27068:6;27063:3;27059:16;27052:23;;26801:280;26691:390;;;;:::o;27087:155::-;27227:7;27223:1;27215:6;27211:14;27204:31;27087:155;:::o;27248:400::-;27408:3;27429:84;27511:1;27506:3;27429:84;:::i;:::-;27422:91;;27522:93;27611:3;27522:93;:::i;:::-;27640:1;27635:3;27631:11;27624:18;;27248:400;;;:::o;27654:695::-;27932:3;27954:92;28042:3;28033:6;27954:92;:::i;:::-;27947:99;;28063:95;28154:3;28145:6;28063:95;:::i;:::-;28056:102;;28175:148;28319:3;28175:148;:::i;:::-;28168:155;;28340:3;28333:10;;27654:695;;;;;:::o;28355:225::-;28495:34;28491:1;28483:6;28479:14;28472:58;28564:8;28559:2;28551:6;28547:15;28540:33;28355:225;:::o;28586:366::-;28728:3;28749:67;28813:2;28808:3;28749:67;:::i;:::-;28742:74;;28825:93;28914:3;28825:93;:::i;:::-;28943:2;28938:3;28934:12;28927:19;;28586:366;;;:::o;28958:419::-;29124:4;29162:2;29151:9;29147:18;29139:26;;29211:9;29205:4;29201:20;29197:1;29186:9;29182:17;29175:47;29239:131;29365:4;29239:131;:::i;:::-;29231:139;;28958:419;;;:::o;29383:332::-;29504:4;29542:2;29531:9;29527:18;29519:26;;29555:71;29623:1;29612:9;29608:17;29599:6;29555:71;:::i;:::-;29636:72;29704:2;29693:9;29689:18;29680:6;29636:72;:::i;:::-;29383:332;;;;;:::o;29721:137::-;29775:5;29806:6;29800:13;29791:22;;29822:30;29846:5;29822:30;:::i;:::-;29721:137;;;;:::o;29864:345::-;29931:6;29980:2;29968:9;29959:7;29955:23;29951:32;29948:119;;;29986:79;;:::i;:::-;29948:119;30106:1;30131:61;30184:7;30175:6;30164:9;30160:22;30131:61;:::i;:::-;30121:71;;30077:125;29864:345;;;;:::o;30215:182::-;30355:34;30351:1;30343:6;30339:14;30332:58;30215:182;:::o;30403:366::-;30545:3;30566:67;30630:2;30625:3;30566:67;:::i;:::-;30559:74;;30642:93;30731:3;30642:93;:::i;:::-;30760:2;30755:3;30751:12;30744:19;;30403:366;;;:::o;30775:419::-;30941:4;30979:2;30968:9;30964:18;30956:26;;31028:9;31022:4;31018:20;31014:1;31003:9;30999:17;30992:47;31056:131;31182:4;31056:131;:::i;:::-;31048:139;;30775:419;;;:::o;31200:233::-;31239:3;31262:24;31280:5;31262:24;:::i;:::-;31253:33;;31308:66;31301:5;31298:77;31295:103;;31378:18;;:::i;:::-;31295:103;31425:1;31418:5;31414:13;31407:20;;31200:233;;;:::o;31439:180::-;31487:77;31484:1;31477:88;31584:4;31581:1;31574:15;31608:4;31605:1;31598:15;31625:185;31665:1;31682:20;31700:1;31682:20;:::i;:::-;31677:25;;31716:20;31734:1;31716:20;:::i;:::-;31711:25;;31755:1;31745:35;;31760:18;;:::i;:::-;31745:35;31802:1;31799;31795:9;31790:14;;31625:185;;;;:::o;31816:194::-;31856:4;31876:20;31894:1;31876:20;:::i;:::-;31871:25;;31910:20;31928:1;31910:20;:::i;:::-;31905:25;;31954:1;31951;31947:9;31939:17;;31978:1;31972:4;31969:11;31966:37;;;31983:18;;:::i;:::-;31966:37;31816:194;;;;:::o;32016:176::-;32048:1;32065:20;32083:1;32065:20;:::i;:::-;32060:25;;32099:20;32117:1;32099:20;:::i;:::-;32094:25;;32138:1;32128:35;;32143:18;;:::i;:::-;32128:35;32184:1;32181;32177:9;32172:14;;32016:176;;;;:::o;32198:180::-;32246:77;32243:1;32236:88;32343:4;32340:1;32333:15;32367:4;32364:1;32357:15;32384:98;32435:6;32469:5;32463:12;32453:22;;32384:98;;;:::o;32488:168::-;32571:11;32605:6;32600:3;32593:19;32645:4;32640:3;32636:14;32621:29;;32488:168;;;;:::o;32662:373::-;32748:3;32776:38;32808:5;32776:38;:::i;:::-;32830:70;32893:6;32888:3;32830:70;:::i;:::-;32823:77;;32909:65;32967:6;32962:3;32955:4;32948:5;32944:16;32909:65;:::i;:::-;32999:29;33021:6;32999:29;:::i;:::-;32994:3;32990:39;32983:46;;32752:283;32662:373;;;;:::o;33041:640::-;33236:4;33274:3;33263:9;33259:19;33251:27;;33288:71;33356:1;33345:9;33341:17;33332:6;33288:71;:::i;:::-;33369:72;33437:2;33426:9;33422:18;33413:6;33369:72;:::i;:::-;33451;33519:2;33508:9;33504:18;33495:6;33451:72;:::i;:::-;33570:9;33564:4;33560:20;33555:2;33544:9;33540:18;33533:48;33598:76;33669:4;33660:6;33598:76;:::i;:::-;33590:84;;33041:640;;;;;;;:::o;33687:141::-;33743:5;33774:6;33768:13;33759:22;;33790:32;33816:5;33790:32;:::i;:::-;33687:141;;;;:::o;33834:349::-;33903:6;33952:2;33940:9;33931:7;33927:23;33923:32;33920:119;;;33958:79;;:::i;:::-;33920:119;34078:1;34103:63;34158:7;34149:6;34138:9;34134:22;34103:63;:::i;:::-;34093:73;;34049:127;33834:349;;;;:::o

Swarm Source

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