ETH Price: $3,400.17 (+6.52%)
Gas: 21 Gwei

Token

NOnes (NON)
 

Overview

Max Total Supply

2,615 NON

Holders

1,193

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 NON
0x9d328de8513891b9af676dce2d5a07f42414861b
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:
NON

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-29
*/

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/interfaces/IERC2981.sol


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

        return (royalty.receiver, royaltyAmount);
    }

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

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

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

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

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

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

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

// File: @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/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

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

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

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

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

    /**
     * @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.2
// 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 {
    // Reference type for token approval.
    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 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 {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

                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 0x80 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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


pragma solidity ^0.8.9;






 
 
 
contract NON is ERC721A, Ownable, ReentrancyGuard, ERC2981 { 
event DevMintEvent(address ownerAddress, uint256 startWith, uint256 amountMinted);
uint256 public devTotal;
    uint256 public _maxSupply = 3001;
    uint256 public _mintPrice = 0.002 ether;
    uint256 public _maxMintPerTx = 20;
 
    uint256 public _maxFreeMintPerAddr = 2;
    uint256 public _maxFreeMintSupply = 1001;
     uint256 public devSupply = 200;
 
    using Strings for uint256;
    string public baseURI;

    mapping(address => uint256) private _mintedFreeAmount;
   
 
    // Royalties
    address public royaltyAdd;
 
    constructor(string memory initBaseURI) ERC721A("NOnes", "NON") {
        baseURI = initBaseURI;
        setDefaultRoyalty(msg.sender, 1000); // 10%
    }
 
    // Set default royalty account & percentage
    function setDefaultRoyalty(address _receiver, uint96 _feeNumerator) public {
        royaltyAdd = _receiver;
        _setDefaultRoyalty(_receiver, _feeNumerator);
    }
 
    // Set token specific royalty
    function setTokenRoyalty(
        uint256 tokenId,
        uint96 feeNumerator
    ) external onlyOwner {
        _setTokenRoyalty(tokenId, royaltyAdd, feeNumerator);
    }
 
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view override returns (address, uint256) {
        // Get royalty info from ERC2981 base implementation
        (, uint royaltyAmt) = super.royaltyInfo(_tokenId, _salePrice);
        // Royalty address is always the one specified in this contract 
        return (royaltyAdd, royaltyAmt);
    }
 
    // /**
    //  * @dev See {IERC165-supportsInterface}.
    //  */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, ERC2981) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || 
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }
 
 
    function mint(uint256 count) external payable {
        uint256 cost = _mintPrice;
        bool isFree = ((totalSupply() + count < _maxFreeMintSupply + 1) &&
            (_mintedFreeAmount[msg.sender] + count <= _maxFreeMintPerAddr)) ||
            (msg.sender == owner());
 
        if (isFree) {
            cost = 0;
        }
 
        require(msg.value >= count * cost, "Please send the exact amount.");
        require(totalSupply() + count < _maxSupply - devSupply + 1, "Sold out!");
        require(count < _maxMintPerTx + 1, "Max per TX reached.");
 
        if (isFree) {
            _mintedFreeAmount[msg.sender] += count;
        }
 
        _safeMint(msg.sender, count);
    }
 
     function devMint() public onlyOwner {
        devTotal += devSupply;
        emit DevMintEvent(_msgSender(), devTotal, devSupply);
        _safeMint(msg.sender, devSupply);
    }
 
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    
function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Block X2Y2
        if (operator == 0xF849de01B080aDC3A814FaBE1E2087475cF2E354) {
            return false;
        }

        return super.isApprovedForAll(owner, operator);
    }
  
 
    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 setBaseURI(string memory uri) public onlyOwner {
        baseURI = uri;
    }
 
    function setFreeAmount(uint256 amount) external onlyOwner {
        _maxFreeMintSupply = amount;
    }
 
    function setPrice(uint256 _newPrice) external onlyOwner {
        _mintPrice = _newPrice;
    }
 
    function withdraw() public payable onlyOwner nonReentrant {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","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":false,"internalType":"address","name":"ownerAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"startWith","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountMinted","type":"uint256"}],"name":"DevMintEvent","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":"_maxFreeMintPerAddr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxFreeMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","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":[],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royaltyAdd","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setTokenRoyalty","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052610bb9600d5566071afd498d0000600e556014600f5560026010556103e960115560c86012553480156200003757600080fd5b50604051620045eb380380620045eb83398181016040528101906200005d9190620005c4565b6040518060400160405280600581526020017f4e4f6e65730000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4e4f4e00000000000000000000000000000000000000000000000000000000008152508160029081620000da919062000860565b508060039081620000ec919062000860565b50620000fd6200015a60201b60201c565b600081905550505062000125620001196200015f60201b60201c565b6200016760201b60201c565b600160098190555080601390816200013e919062000860565b5062000153336103e86200022d60201b60201c565b5062000a62565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b81601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200028082826200028460201b60201c565b5050565b620002946200042760201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115620002f5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ec90620009ce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000367576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200035e9062000a40565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600a60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000612710905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200049a826200044f565b810181811067ffffffffffffffff82111715620004bc57620004bb62000460565b5b80604052505050565b6000620004d162000431565b9050620004df82826200048f565b919050565b600067ffffffffffffffff82111562000502576200050162000460565b5b6200050d826200044f565b9050602081019050919050565b60005b838110156200053a5780820151818401526020810190506200051d565b60008484015250505050565b60006200055d6200055784620004e4565b620004c5565b9050828152602081018484840111156200057c576200057b6200044a565b5b620005898482856200051a565b509392505050565b600082601f830112620005a957620005a862000445565b5b8151620005bb84826020860162000546565b91505092915050565b600060208284031215620005dd57620005dc6200043b565b5b600082015167ffffffffffffffff811115620005fe57620005fd62000440565b5b6200060c8482850162000591565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200066857607f821691505b6020821081036200067e576200067d62000620565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006e87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006a9565b620006f48683620006a9565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007416200073b62000735846200070c565b62000716565b6200070c565b9050919050565b6000819050919050565b6200075d8362000720565b620007756200076c8262000748565b848454620006b6565b825550505050565b600090565b6200078c6200077d565b6200079981848462000752565b505050565b5b81811015620007c157620007b560008262000782565b6001810190506200079f565b5050565b601f8211156200081057620007da8162000684565b620007e58462000699565b81016020851015620007f5578190505b6200080d620008048562000699565b8301826200079e565b50505b505050565b600082821c905092915050565b6000620008356000198460080262000815565b1980831691505092915050565b600062000850838362000822565b9150826002028217905092915050565b6200086b8262000615565b67ffffffffffffffff81111562000887576200088662000460565b5b6200089382546200064f565b620008a0828285620007c5565b600060209050601f831160018114620008d85760008415620008c3578287015190505b620008cf858262000842565b8655506200093f565b601f198416620008e88662000684565b60005b828110156200091257848901518255600182019150602085019450602081019050620008eb565b868310156200093257848901516200092e601f89168262000822565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000620009b6602a8362000947565b9150620009c38262000958565b604082019050919050565b60006020820190508181036000830152620009e981620009a7565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600062000a2860198362000947565b915062000a3582620009f0565b602082019050919050565b6000602082019050818103600083015262000a5b8162000a19565b9050919050565b613b798062000a726000396000f3fe6080604052600436106102045760003560e01c80636352211e1161011857806395d89b41116100a0578063b88d4fde1161006f578063b88d4fde14610704578063c87b56dd1461072d578063de314a591461076a578063e985e9c514610795578063f2fde38b146107d257610204565b806395d89b41146106695780639cb57d2014610694578063a0712d68146106bf578063a22cb465146106db57610204565b8063715018a6116100e7578063715018a6146105be5780637c69e207146105d55780638da5cb5b146105ec57806391b7f5ed1461061757806392910eec1461064057610204565b80636352211e146104f057806367a4f4a91461052d5780636c0360eb1461055657806370a082311461058157610204565b8063190866921161019b5780633ccfd60b1161016a5780633ccfd60b1461043e57806341c66d0a1461044857806342842e0e1461047357806355f804b31461049c5780635e1c4b60146104c557610204565b8063190866921461038157806322f4596f146103ac57806323b872dd146103d75780632a55205a1461040057610204565b8063081812fc116101d7578063081812fc146102c5578063095ea7b3146103025780630afb04db1461032b57806318160ddd1461035657610204565b806301ffc9a7146102095780630387da421461024657806304634d8d1461027157806306fdde031461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906127c3565b6107fb565b60405161023d919061280b565b60405180910390f35b34801561025257600080fd5b5061025b6108f5565b604051610268919061283f565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906128fc565b6108fb565b005b3480156102a657600080fd5b506102af61094a565b6040516102bc91906129cc565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e79190612a1a565b6109dc565b6040516102f99190612a56565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190612a71565b610a5b565b005b34801561033757600080fd5b50610340610b9f565b60405161034d919061283f565b60405180910390f35b34801561036257600080fd5b5061036b610ba5565b604051610378919061283f565b60405180910390f35b34801561038d57600080fd5b50610396610bbc565b6040516103a39190612a56565b60405180910390f35b3480156103b857600080fd5b506103c1610be2565b6040516103ce919061283f565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f99190612ab1565b610be8565b005b34801561040c57600080fd5b5061042760048036038101906104229190612b04565b610f0a565b604051610435929190612b44565b60405180910390f35b610446610f4c565b005b34801561045457600080fd5b5061045d611022565b60405161046a919061283f565b60405180910390f35b34801561047f57600080fd5b5061049a60048036038101906104959190612ab1565b611028565b005b3480156104a857600080fd5b506104c360048036038101906104be9190612ca2565b611048565b005b3480156104d157600080fd5b506104da611063565b6040516104e7919061283f565b60405180910390f35b3480156104fc57600080fd5b5061051760048036038101906105129190612a1a565b611069565b6040516105249190612a56565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f9190612ceb565b61107b565b005b34801561056257600080fd5b5061056b6110b4565b60405161057891906129cc565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a39190612d2b565b611142565b6040516105b5919061283f565b60405180910390f35b3480156105ca57600080fd5b506105d36111fa565b005b3480156105e157600080fd5b506105ea61120e565b005b3480156105f857600080fd5b50610601611285565b60405161060e9190612a56565b60405180910390f35b34801561062357600080fd5b5061063e60048036038101906106399190612a1a565b6112af565b005b34801561064c57600080fd5b5061066760048036038101906106629190612a1a565b6112c1565b005b34801561067557600080fd5b5061067e6112d3565b60405161068b91906129cc565b60405180910390f35b3480156106a057600080fd5b506106a9611365565b6040516106b6919061283f565b60405180910390f35b6106d960048036038101906106d49190612a1a565b61136b565b005b3480156106e757600080fd5b5061070260048036038101906106fd9190612d84565b6115b2565b005b34801561071057600080fd5b5061072b60048036038101906107269190612e65565b611729565b005b34801561073957600080fd5b50610754600480360381019061074f9190612a1a565b61179c565b60405161076191906129cc565b60405180910390f35b34801561077657600080fd5b5061077f611818565b60405161078c919061283f565b60405180910390f35b3480156107a157600080fd5b506107bc60048036038101906107b79190612ee8565b61181e565b6040516107c9919061280b565b60405180910390f35b3480156107de57600080fd5b506107f960048036038101906107f49190612d2b565b611883565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088e57506301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108be57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ee5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600e5481565b81601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506109468282611906565b5050565b60606002805461095990612f57565b80601f016020809104026020016040519081016040528092919081815260200182805461098590612f57565b80156109d25780601f106109a7576101008083540402835291602001916109d2565b820191906000526020600020905b8154815290600101906020018083116109b557829003601f168201915b5050505050905090565b60006109e782611a9b565b610a1d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6682611069565b90508073ffffffffffffffffffffffffffffffffffffffff16610a87611afa565b73ffffffffffffffffffffffffffffffffffffffff1614610aea57610ab381610aae611afa565b61181e565b610ae9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b6000610baf611b02565b6001546000540303905090565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b6000610bf382611b07565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c5a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c6684611bd3565b91509150610c7c8187610c77611afa565b611bfa565b610cc857610c9186610c8c611afa565b61181e565b610cc7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d2e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d3b8686866001611c3e565b8015610d4657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e1485610df0888887611c44565b7c020000000000000000000000000000000000000000000000000000000017611c6c565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e9a5760006001850190506000600460008381526020019081526020016000205403610e98576000548114610e97578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f028686866001611c97565b505050505050565b6000806000610f198585611c9d565b915050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168192509250509250929050565b610f54611e87565b600260095403610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9090612fd4565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610fc790613025565b60006040518083038185875af1925050503d8060008114611004576040519150601f19603f3d011682016040523d82523d6000602084013e611009565b606091505b505090508061101757600080fd5b506001600981905550565b60125481565b61104383838360405180602001604052806000815250611729565b505050565b611050611e87565b806013908161105f91906131e6565b5050565b60115481565b600061107482611b07565b9050919050565b611083611e87565b6110b082601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611f05565b5050565b601380546110c190612f57565b80601f01602080910402602001604051908101604052809291908181526020018280546110ed90612f57565b801561113a5780601f1061110f5761010080835404028352916020019161113a565b820191906000526020600020905b81548152906001019060200180831161111d57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111a9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611202611e87565b61120c60006120ac565b565b611216611e87565b601254600c600082825461122a91906132e7565b925050819055507f8d8664e4328cbcd16b52db004cff5622d17995140cefada9f4578b857f9b204e61125a612172565b600c5460125460405161126f9392919061331b565b60405180910390a16112833360125461217a565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112b7611e87565b80600e8190555050565b6112c9611e87565b8060118190555050565b6060600380546112e290612f57565b80601f016020809104026020016040519081016040528092919081815260200182805461130e90612f57565b801561135b5780601f106113305761010080835404028352916020019161135b565b820191906000526020600020905b81548152906001019060200180831161133e57829003601f168201915b5050505050905090565b60105481565b6000600e5490506000600160115461138391906132e7565b8361138c610ba5565b61139691906132e7565b1080156113ef575060105483601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113ec91906132e7565b11155b8061142c57506113fd611285565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b9050801561143957600091505b81836114459190613352565b341015611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e906133f8565b60405180910390fd5b6001601254600d546114999190613418565b6114a391906132e7565b836114ac610ba5565b6114b691906132e7565b106114f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ed90613498565b60405180910390fd5b6001600f5461150591906132e7565b8310611546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153d90613504565b60405180910390fd5b80156115a35782601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461159b91906132e7565b925050819055505b6115ad338461217a565b505050565b6115ba611afa565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361161e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061162b611afa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116d8611afa565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161171d919061280b565b60405180910390a35050565b611734848484610be8565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117965761175f84848484612198565b611795576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606117a782611a9b565b6117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd90613596565b60405180910390fd5b60136117f1836122e8565b6040516020016118029291906136c1565b6040516020818303038152906040529050919050565b600f5481565b600073f849de01b080adc3a814fabe1e2087475cf2e35473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611870576000905061187d565b61187a8383612448565b90505b92915050565b61188b611e87565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f190613762565b60405180910390fd5b611903816120ac565b50565b61190e6124dc565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111561196c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611963906137f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d290613860565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600a60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600081611aa6611b02565b11158015611ab5575060005482105b8015611af3575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611b16611b02565b11611b9c57600054811015611b9b5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611b99575b60008103611b8f576004600083600190039350838152602001908152602001600020549050611b65565b8092505050611bce565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611c5b8686846124e6565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000806000600b60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603611e3257600a6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000611e3c6124dc565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686611e689190613352565b611e7291906138af565b90508160000151819350935050509250929050565b611e8f612172565b73ffffffffffffffffffffffffffffffffffffffff16611ead611285565b73ffffffffffffffffffffffffffffffffffffffff1614611f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efa9061392c565b60405180910390fd5b565b611f0d6124dc565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f62906137f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611fda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd190613998565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600b600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550905050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b6121948282604051806020016040528060008152506124ef565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121be611afa565b8786866040518563ffffffff1660e01b81526004016121e09493929190613a0d565b6020604051808303816000875af192505050801561221c57506040513d601f19601f820116820180604052508101906122199190613a6e565b60015b612295573d806000811461224c576040519150601f19603f3d011682016040523d82523d6000602084013e612251565b606091505b50600081510361228d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000820361232f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612443565b600082905060005b6000821461236157808061234a90613a9b565b915050600a8261235a91906138af565b9150612337565b60008167ffffffffffffffff81111561237d5761237c612b77565b5b6040519080825280601f01601f1916602001820160405280156123af5781602001600182028036833780820191505090505b5090505b6000851461243c576001826123c89190613418565b9150600a856123d79190613ae3565b60306123e391906132e7565b60f81b8183815181106123f9576123f8613b14565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561243591906138af565b94506123b3565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000612710905090565b60009392505050565b6124f9838361258c565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461258757600080549050600083820390505b6125396000868380600101945086612198565b61256f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061252657816000541461258457600080fd5b50505b505050565b600080549050600082036125cc576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125d96000848385611c3e565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612650836126416000866000611c44565b61264a85612747565b17611c6c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146126f157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506126b6565b506000820361272c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506127426000848385611c97565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127a08161276b565b81146127ab57600080fd5b50565b6000813590506127bd81612797565b92915050565b6000602082840312156127d9576127d8612761565b5b60006127e7848285016127ae565b91505092915050565b60008115159050919050565b612805816127f0565b82525050565b600060208201905061282060008301846127fc565b92915050565b6000819050919050565b61283981612826565b82525050565b60006020820190506128546000830184612830565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128858261285a565b9050919050565b6128958161287a565b81146128a057600080fd5b50565b6000813590506128b28161288c565b92915050565b60006bffffffffffffffffffffffff82169050919050565b6128d9816128b8565b81146128e457600080fd5b50565b6000813590506128f6816128d0565b92915050565b6000806040838503121561291357612912612761565b5b6000612921858286016128a3565b9250506020612932858286016128e7565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561297657808201518184015260208101905061295b565b60008484015250505050565b6000601f19601f8301169050919050565b600061299e8261293c565b6129a88185612947565b93506129b8818560208601612958565b6129c181612982565b840191505092915050565b600060208201905081810360008301526129e68184612993565b905092915050565b6129f781612826565b8114612a0257600080fd5b50565b600081359050612a14816129ee565b92915050565b600060208284031215612a3057612a2f612761565b5b6000612a3e84828501612a05565b91505092915050565b612a508161287a565b82525050565b6000602082019050612a6b6000830184612a47565b92915050565b60008060408385031215612a8857612a87612761565b5b6000612a96858286016128a3565b9250506020612aa785828601612a05565b9150509250929050565b600080600060608486031215612aca57612ac9612761565b5b6000612ad8868287016128a3565b9350506020612ae9868287016128a3565b9250506040612afa86828701612a05565b9150509250925092565b60008060408385031215612b1b57612b1a612761565b5b6000612b2985828601612a05565b9250506020612b3a85828601612a05565b9150509250929050565b6000604082019050612b596000830185612a47565b612b666020830184612830565b9392505050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612baf82612982565b810181811067ffffffffffffffff82111715612bce57612bcd612b77565b5b80604052505050565b6000612be1612757565b9050612bed8282612ba6565b919050565b600067ffffffffffffffff821115612c0d57612c0c612b77565b5b612c1682612982565b9050602081019050919050565b82818337600083830152505050565b6000612c45612c4084612bf2565b612bd7565b905082815260208101848484011115612c6157612c60612b72565b5b612c6c848285612c23565b509392505050565b600082601f830112612c8957612c88612b6d565b5b8135612c99848260208601612c32565b91505092915050565b600060208284031215612cb857612cb7612761565b5b600082013567ffffffffffffffff811115612cd657612cd5612766565b5b612ce284828501612c74565b91505092915050565b60008060408385031215612d0257612d01612761565b5b6000612d1085828601612a05565b9250506020612d21858286016128e7565b9150509250929050565b600060208284031215612d4157612d40612761565b5b6000612d4f848285016128a3565b91505092915050565b612d61816127f0565b8114612d6c57600080fd5b50565b600081359050612d7e81612d58565b92915050565b60008060408385031215612d9b57612d9a612761565b5b6000612da9858286016128a3565b9250506020612dba85828601612d6f565b9150509250929050565b600067ffffffffffffffff821115612ddf57612dde612b77565b5b612de882612982565b9050602081019050919050565b6000612e08612e0384612dc4565b612bd7565b905082815260208101848484011115612e2457612e23612b72565b5b612e2f848285612c23565b509392505050565b600082601f830112612e4c57612e4b612b6d565b5b8135612e5c848260208601612df5565b91505092915050565b60008060008060808587031215612e7f57612e7e612761565b5b6000612e8d878288016128a3565b9450506020612e9e878288016128a3565b9350506040612eaf87828801612a05565b925050606085013567ffffffffffffffff811115612ed057612ecf612766565b5b612edc87828801612e37565b91505092959194509250565b60008060408385031215612eff57612efe612761565b5b6000612f0d858286016128a3565b9250506020612f1e858286016128a3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f6f57607f821691505b602082108103612f8257612f81612f28565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612fbe601f83612947565b9150612fc982612f88565b602082019050919050565b60006020820190508181036000830152612fed81612fb1565b9050919050565b600081905092915050565b50565b600061300f600083612ff4565b915061301a82612fff565b600082019050919050565b600061303082613002565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261309c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261305f565b6130a6868361305f565b95508019841693508086168417925050509392505050565b6000819050919050565b60006130e36130de6130d984612826565b6130be565b612826565b9050919050565b6000819050919050565b6130fd836130c8565b613111613109826130ea565b84845461306c565b825550505050565b600090565b613126613119565b6131318184846130f4565b505050565b5b818110156131555761314a60008261311e565b600181019050613137565b5050565b601f82111561319a5761316b8161303a565b6131748461304f565b81016020851015613183578190505b61319761318f8561304f565b830182613136565b50505b505050565b600082821c905092915050565b60006131bd6000198460080261319f565b1980831691505092915050565b60006131d683836131ac565b9150826002028217905092915050565b6131ef8261293c565b67ffffffffffffffff81111561320857613207612b77565b5b6132128254612f57565b61321d828285613159565b600060209050601f831160018114613250576000841561323e578287015190505b61324885826131ca565b8655506132b0565b601f19841661325e8661303a565b60005b8281101561328657848901518255600182019150602085019450602081019050613261565b868310156132a3578489015161329f601f8916826131ac565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006132f282612826565b91506132fd83612826565b9250828201905080821115613315576133146132b8565b5b92915050565b60006060820190506133306000830186612a47565b61333d6020830185612830565b61334a6040830184612830565b949350505050565b600061335d82612826565b915061336883612826565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133a1576133a06132b8565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b60006133e2601d83612947565b91506133ed826133ac565b602082019050919050565b60006020820190508181036000830152613411816133d5565b9050919050565b600061342382612826565b915061342e83612826565b9250828203905081811115613446576134456132b8565b5b92915050565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b6000613482600983612947565b915061348d8261344c565b602082019050919050565b600060208201905081810360008301526134b181613475565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b60006134ee601383612947565b91506134f9826134b8565b602082019050919050565b6000602082019050818103600083015261351d816134e1565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613580602f83612947565b915061358b82613524565b604082019050919050565b600060208201905081810360008301526135af81613573565b9050919050565b600081905092915050565b600081546135ce81612f57565b6135d881866135b6565b945060018216600081146135f357600181146136085761363b565b60ff198316865281151582028601935061363b565b6136118561303a565b60005b8381101561363357815481890152600182019150602081019050613614565b838801955050505b50505092915050565b600061364f8261293c565b61365981856135b6565b9350613669818560208601612958565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006136ab6005836135b6565b91506136b682613675565b600582019050919050565b60006136cd82856135c1565b91506136d98284613644565b91506136e48261369e565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061374c602683612947565b9150613757826136f0565b604082019050919050565b6000602082019050818103600083015261377b8161373f565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b60006137de602a83612947565b91506137e982613782565b604082019050919050565b6000602082019050818103600083015261380d816137d1565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600061384a601983612947565b915061385582613814565b602082019050919050565b600060208201905081810360008301526138798161383d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006138ba82612826565b91506138c583612826565b9250826138d5576138d4613880565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613916602083612947565b9150613921826138e0565b602082019050919050565b6000602082019050818103600083015261394581613909565b9050919050565b7f455243323938313a20496e76616c696420706172616d65746572730000000000600082015250565b6000613982601b83612947565b915061398d8261394c565b602082019050919050565b600060208201905081810360008301526139b181613975565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006139df826139b8565b6139e981856139c3565b93506139f9818560208601612958565b613a0281612982565b840191505092915050565b6000608082019050613a226000830187612a47565b613a2f6020830186612a47565b613a3c6040830185612830565b8181036060830152613a4e81846139d4565b905095945050505050565b600081519050613a6881612797565b92915050565b600060208284031215613a8457613a83612761565b5b6000613a9284828501613a59565b91505092915050565b6000613aa682612826565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ad857613ad76132b8565b5b600182019050919050565b6000613aee82612826565b9150613af983612826565b925082613b0957613b08613880565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220f0ae8c1b6bfe92e7efe0167a709ffc75fb55a9904f3b838ab96841ca7f25b5f764736f6c6343000810003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d575542754256767a457a69427437704e6867503641594d6847356b59773571357747633832567976794e4b452f00000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c80636352211e1161011857806395d89b41116100a0578063b88d4fde1161006f578063b88d4fde14610704578063c87b56dd1461072d578063de314a591461076a578063e985e9c514610795578063f2fde38b146107d257610204565b806395d89b41146106695780639cb57d2014610694578063a0712d68146106bf578063a22cb465146106db57610204565b8063715018a6116100e7578063715018a6146105be5780637c69e207146105d55780638da5cb5b146105ec57806391b7f5ed1461061757806392910eec1461064057610204565b80636352211e146104f057806367a4f4a91461052d5780636c0360eb1461055657806370a082311461058157610204565b8063190866921161019b5780633ccfd60b1161016a5780633ccfd60b1461043e57806341c66d0a1461044857806342842e0e1461047357806355f804b31461049c5780635e1c4b60146104c557610204565b8063190866921461038157806322f4596f146103ac57806323b872dd146103d75780632a55205a1461040057610204565b8063081812fc116101d7578063081812fc146102c5578063095ea7b3146103025780630afb04db1461032b57806318160ddd1461035657610204565b806301ffc9a7146102095780630387da421461024657806304634d8d1461027157806306fdde031461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906127c3565b6107fb565b60405161023d919061280b565b60405180910390f35b34801561025257600080fd5b5061025b6108f5565b604051610268919061283f565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906128fc565b6108fb565b005b3480156102a657600080fd5b506102af61094a565b6040516102bc91906129cc565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e79190612a1a565b6109dc565b6040516102f99190612a56565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190612a71565b610a5b565b005b34801561033757600080fd5b50610340610b9f565b60405161034d919061283f565b60405180910390f35b34801561036257600080fd5b5061036b610ba5565b604051610378919061283f565b60405180910390f35b34801561038d57600080fd5b50610396610bbc565b6040516103a39190612a56565b60405180910390f35b3480156103b857600080fd5b506103c1610be2565b6040516103ce919061283f565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f99190612ab1565b610be8565b005b34801561040c57600080fd5b5061042760048036038101906104229190612b04565b610f0a565b604051610435929190612b44565b60405180910390f35b610446610f4c565b005b34801561045457600080fd5b5061045d611022565b60405161046a919061283f565b60405180910390f35b34801561047f57600080fd5b5061049a60048036038101906104959190612ab1565b611028565b005b3480156104a857600080fd5b506104c360048036038101906104be9190612ca2565b611048565b005b3480156104d157600080fd5b506104da611063565b6040516104e7919061283f565b60405180910390f35b3480156104fc57600080fd5b5061051760048036038101906105129190612a1a565b611069565b6040516105249190612a56565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f9190612ceb565b61107b565b005b34801561056257600080fd5b5061056b6110b4565b60405161057891906129cc565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a39190612d2b565b611142565b6040516105b5919061283f565b60405180910390f35b3480156105ca57600080fd5b506105d36111fa565b005b3480156105e157600080fd5b506105ea61120e565b005b3480156105f857600080fd5b50610601611285565b60405161060e9190612a56565b60405180910390f35b34801561062357600080fd5b5061063e60048036038101906106399190612a1a565b6112af565b005b34801561064c57600080fd5b5061066760048036038101906106629190612a1a565b6112c1565b005b34801561067557600080fd5b5061067e6112d3565b60405161068b91906129cc565b60405180910390f35b3480156106a057600080fd5b506106a9611365565b6040516106b6919061283f565b60405180910390f35b6106d960048036038101906106d49190612a1a565b61136b565b005b3480156106e757600080fd5b5061070260048036038101906106fd9190612d84565b6115b2565b005b34801561071057600080fd5b5061072b60048036038101906107269190612e65565b611729565b005b34801561073957600080fd5b50610754600480360381019061074f9190612a1a565b61179c565b60405161076191906129cc565b60405180910390f35b34801561077657600080fd5b5061077f611818565b60405161078c919061283f565b60405180910390f35b3480156107a157600080fd5b506107bc60048036038101906107b79190612ee8565b61181e565b6040516107c9919061280b565b60405180910390f35b3480156107de57600080fd5b506107f960048036038101906107f49190612d2b565b611883565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088e57506301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108be57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ee5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600e5481565b81601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506109468282611906565b5050565b60606002805461095990612f57565b80601f016020809104026020016040519081016040528092919081815260200182805461098590612f57565b80156109d25780601f106109a7576101008083540402835291602001916109d2565b820191906000526020600020905b8154815290600101906020018083116109b557829003601f168201915b5050505050905090565b60006109e782611a9b565b610a1d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6682611069565b90508073ffffffffffffffffffffffffffffffffffffffff16610a87611afa565b73ffffffffffffffffffffffffffffffffffffffff1614610aea57610ab381610aae611afa565b61181e565b610ae9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b6000610baf611b02565b6001546000540303905090565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b6000610bf382611b07565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c5a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c6684611bd3565b91509150610c7c8187610c77611afa565b611bfa565b610cc857610c9186610c8c611afa565b61181e565b610cc7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d2e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d3b8686866001611c3e565b8015610d4657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e1485610df0888887611c44565b7c020000000000000000000000000000000000000000000000000000000017611c6c565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e9a5760006001850190506000600460008381526020019081526020016000205403610e98576000548114610e97578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f028686866001611c97565b505050505050565b6000806000610f198585611c9d565b915050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168192509250509250929050565b610f54611e87565b600260095403610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9090612fd4565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610fc790613025565b60006040518083038185875af1925050503d8060008114611004576040519150601f19603f3d011682016040523d82523d6000602084013e611009565b606091505b505090508061101757600080fd5b506001600981905550565b60125481565b61104383838360405180602001604052806000815250611729565b505050565b611050611e87565b806013908161105f91906131e6565b5050565b60115481565b600061107482611b07565b9050919050565b611083611e87565b6110b082601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611f05565b5050565b601380546110c190612f57565b80601f01602080910402602001604051908101604052809291908181526020018280546110ed90612f57565b801561113a5780601f1061110f5761010080835404028352916020019161113a565b820191906000526020600020905b81548152906001019060200180831161111d57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111a9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611202611e87565b61120c60006120ac565b565b611216611e87565b601254600c600082825461122a91906132e7565b925050819055507f8d8664e4328cbcd16b52db004cff5622d17995140cefada9f4578b857f9b204e61125a612172565b600c5460125460405161126f9392919061331b565b60405180910390a16112833360125461217a565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112b7611e87565b80600e8190555050565b6112c9611e87565b8060118190555050565b6060600380546112e290612f57565b80601f016020809104026020016040519081016040528092919081815260200182805461130e90612f57565b801561135b5780601f106113305761010080835404028352916020019161135b565b820191906000526020600020905b81548152906001019060200180831161133e57829003601f168201915b5050505050905090565b60105481565b6000600e5490506000600160115461138391906132e7565b8361138c610ba5565b61139691906132e7565b1080156113ef575060105483601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113ec91906132e7565b11155b8061142c57506113fd611285565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b9050801561143957600091505b81836114459190613352565b341015611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e906133f8565b60405180910390fd5b6001601254600d546114999190613418565b6114a391906132e7565b836114ac610ba5565b6114b691906132e7565b106114f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ed90613498565b60405180910390fd5b6001600f5461150591906132e7565b8310611546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153d90613504565b60405180910390fd5b80156115a35782601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461159b91906132e7565b925050819055505b6115ad338461217a565b505050565b6115ba611afa565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361161e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061162b611afa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116d8611afa565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161171d919061280b565b60405180910390a35050565b611734848484610be8565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117965761175f84848484612198565b611795576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606117a782611a9b565b6117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd90613596565b60405180910390fd5b60136117f1836122e8565b6040516020016118029291906136c1565b6040516020818303038152906040529050919050565b600f5481565b600073f849de01b080adc3a814fabe1e2087475cf2e35473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611870576000905061187d565b61187a8383612448565b90505b92915050565b61188b611e87565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f190613762565b60405180910390fd5b611903816120ac565b50565b61190e6124dc565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111561196c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611963906137f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d290613860565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600a60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600081611aa6611b02565b11158015611ab5575060005482105b8015611af3575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611b16611b02565b11611b9c57600054811015611b9b5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611b99575b60008103611b8f576004600083600190039350838152602001908152602001600020549050611b65565b8092505050611bce565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611c5b8686846124e6565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000806000600b60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603611e3257600a6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000611e3c6124dc565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686611e689190613352565b611e7291906138af565b90508160000151819350935050509250929050565b611e8f612172565b73ffffffffffffffffffffffffffffffffffffffff16611ead611285565b73ffffffffffffffffffffffffffffffffffffffff1614611f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efa9061392c565b60405180910390fd5b565b611f0d6124dc565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f62906137f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611fda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd190613998565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600b600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550905050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b6121948282604051806020016040528060008152506124ef565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121be611afa565b8786866040518563ffffffff1660e01b81526004016121e09493929190613a0d565b6020604051808303816000875af192505050801561221c57506040513d601f19601f820116820180604052508101906122199190613a6e565b60015b612295573d806000811461224c576040519150601f19603f3d011682016040523d82523d6000602084013e612251565b606091505b50600081510361228d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000820361232f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612443565b600082905060005b6000821461236157808061234a90613a9b565b915050600a8261235a91906138af565b9150612337565b60008167ffffffffffffffff81111561237d5761237c612b77565b5b6040519080825280601f01601f1916602001820160405280156123af5781602001600182028036833780820191505090505b5090505b6000851461243c576001826123c89190613418565b9150600a856123d79190613ae3565b60306123e391906132e7565b60f81b8183815181106123f9576123f8613b14565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561243591906138af565b94506123b3565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000612710905090565b60009392505050565b6124f9838361258c565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461258757600080549050600083820390505b6125396000868380600101945086612198565b61256f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061252657816000541461258457600080fd5b50505b505050565b600080549050600082036125cc576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125d96000848385611c3e565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612650836126416000866000611c44565b61264a85612747565b17611c6c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146126f157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506126b6565b506000820361272c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506127426000848385611c97565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127a08161276b565b81146127ab57600080fd5b50565b6000813590506127bd81612797565b92915050565b6000602082840312156127d9576127d8612761565b5b60006127e7848285016127ae565b91505092915050565b60008115159050919050565b612805816127f0565b82525050565b600060208201905061282060008301846127fc565b92915050565b6000819050919050565b61283981612826565b82525050565b60006020820190506128546000830184612830565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128858261285a565b9050919050565b6128958161287a565b81146128a057600080fd5b50565b6000813590506128b28161288c565b92915050565b60006bffffffffffffffffffffffff82169050919050565b6128d9816128b8565b81146128e457600080fd5b50565b6000813590506128f6816128d0565b92915050565b6000806040838503121561291357612912612761565b5b6000612921858286016128a3565b9250506020612932858286016128e7565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561297657808201518184015260208101905061295b565b60008484015250505050565b6000601f19601f8301169050919050565b600061299e8261293c565b6129a88185612947565b93506129b8818560208601612958565b6129c181612982565b840191505092915050565b600060208201905081810360008301526129e68184612993565b905092915050565b6129f781612826565b8114612a0257600080fd5b50565b600081359050612a14816129ee565b92915050565b600060208284031215612a3057612a2f612761565b5b6000612a3e84828501612a05565b91505092915050565b612a508161287a565b82525050565b6000602082019050612a6b6000830184612a47565b92915050565b60008060408385031215612a8857612a87612761565b5b6000612a96858286016128a3565b9250506020612aa785828601612a05565b9150509250929050565b600080600060608486031215612aca57612ac9612761565b5b6000612ad8868287016128a3565b9350506020612ae9868287016128a3565b9250506040612afa86828701612a05565b9150509250925092565b60008060408385031215612b1b57612b1a612761565b5b6000612b2985828601612a05565b9250506020612b3a85828601612a05565b9150509250929050565b6000604082019050612b596000830185612a47565b612b666020830184612830565b9392505050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612baf82612982565b810181811067ffffffffffffffff82111715612bce57612bcd612b77565b5b80604052505050565b6000612be1612757565b9050612bed8282612ba6565b919050565b600067ffffffffffffffff821115612c0d57612c0c612b77565b5b612c1682612982565b9050602081019050919050565b82818337600083830152505050565b6000612c45612c4084612bf2565b612bd7565b905082815260208101848484011115612c6157612c60612b72565b5b612c6c848285612c23565b509392505050565b600082601f830112612c8957612c88612b6d565b5b8135612c99848260208601612c32565b91505092915050565b600060208284031215612cb857612cb7612761565b5b600082013567ffffffffffffffff811115612cd657612cd5612766565b5b612ce284828501612c74565b91505092915050565b60008060408385031215612d0257612d01612761565b5b6000612d1085828601612a05565b9250506020612d21858286016128e7565b9150509250929050565b600060208284031215612d4157612d40612761565b5b6000612d4f848285016128a3565b91505092915050565b612d61816127f0565b8114612d6c57600080fd5b50565b600081359050612d7e81612d58565b92915050565b60008060408385031215612d9b57612d9a612761565b5b6000612da9858286016128a3565b9250506020612dba85828601612d6f565b9150509250929050565b600067ffffffffffffffff821115612ddf57612dde612b77565b5b612de882612982565b9050602081019050919050565b6000612e08612e0384612dc4565b612bd7565b905082815260208101848484011115612e2457612e23612b72565b5b612e2f848285612c23565b509392505050565b600082601f830112612e4c57612e4b612b6d565b5b8135612e5c848260208601612df5565b91505092915050565b60008060008060808587031215612e7f57612e7e612761565b5b6000612e8d878288016128a3565b9450506020612e9e878288016128a3565b9350506040612eaf87828801612a05565b925050606085013567ffffffffffffffff811115612ed057612ecf612766565b5b612edc87828801612e37565b91505092959194509250565b60008060408385031215612eff57612efe612761565b5b6000612f0d858286016128a3565b9250506020612f1e858286016128a3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f6f57607f821691505b602082108103612f8257612f81612f28565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612fbe601f83612947565b9150612fc982612f88565b602082019050919050565b60006020820190508181036000830152612fed81612fb1565b9050919050565b600081905092915050565b50565b600061300f600083612ff4565b915061301a82612fff565b600082019050919050565b600061303082613002565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261309c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261305f565b6130a6868361305f565b95508019841693508086168417925050509392505050565b6000819050919050565b60006130e36130de6130d984612826565b6130be565b612826565b9050919050565b6000819050919050565b6130fd836130c8565b613111613109826130ea565b84845461306c565b825550505050565b600090565b613126613119565b6131318184846130f4565b505050565b5b818110156131555761314a60008261311e565b600181019050613137565b5050565b601f82111561319a5761316b8161303a565b6131748461304f565b81016020851015613183578190505b61319761318f8561304f565b830182613136565b50505b505050565b600082821c905092915050565b60006131bd6000198460080261319f565b1980831691505092915050565b60006131d683836131ac565b9150826002028217905092915050565b6131ef8261293c565b67ffffffffffffffff81111561320857613207612b77565b5b6132128254612f57565b61321d828285613159565b600060209050601f831160018114613250576000841561323e578287015190505b61324885826131ca565b8655506132b0565b601f19841661325e8661303a565b60005b8281101561328657848901518255600182019150602085019450602081019050613261565b868310156132a3578489015161329f601f8916826131ac565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006132f282612826565b91506132fd83612826565b9250828201905080821115613315576133146132b8565b5b92915050565b60006060820190506133306000830186612a47565b61333d6020830185612830565b61334a6040830184612830565b949350505050565b600061335d82612826565b915061336883612826565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133a1576133a06132b8565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b60006133e2601d83612947565b91506133ed826133ac565b602082019050919050565b60006020820190508181036000830152613411816133d5565b9050919050565b600061342382612826565b915061342e83612826565b9250828203905081811115613446576134456132b8565b5b92915050565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b6000613482600983612947565b915061348d8261344c565b602082019050919050565b600060208201905081810360008301526134b181613475565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b60006134ee601383612947565b91506134f9826134b8565b602082019050919050565b6000602082019050818103600083015261351d816134e1565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613580602f83612947565b915061358b82613524565b604082019050919050565b600060208201905081810360008301526135af81613573565b9050919050565b600081905092915050565b600081546135ce81612f57565b6135d881866135b6565b945060018216600081146135f357600181146136085761363b565b60ff198316865281151582028601935061363b565b6136118561303a565b60005b8381101561363357815481890152600182019150602081019050613614565b838801955050505b50505092915050565b600061364f8261293c565b61365981856135b6565b9350613669818560208601612958565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006136ab6005836135b6565b91506136b682613675565b600582019050919050565b60006136cd82856135c1565b91506136d98284613644565b91506136e48261369e565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061374c602683612947565b9150613757826136f0565b604082019050919050565b6000602082019050818103600083015261377b8161373f565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b60006137de602a83612947565b91506137e982613782565b604082019050919050565b6000602082019050818103600083015261380d816137d1565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600061384a601983612947565b915061385582613814565b602082019050919050565b600060208201905081810360008301526138798161383d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006138ba82612826565b91506138c583612826565b9250826138d5576138d4613880565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613916602083612947565b9150613921826138e0565b602082019050919050565b6000602082019050818103600083015261394581613909565b9050919050565b7f455243323938313a20496e76616c696420706172616d65746572730000000000600082015250565b6000613982601b83612947565b915061398d8261394c565b602082019050919050565b600060208201905081810360008301526139b181613975565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006139df826139b8565b6139e981856139c3565b93506139f9818560208601612958565b613a0281612982565b840191505092915050565b6000608082019050613a226000830187612a47565b613a2f6020830186612a47565b613a3c6040830185612830565b8181036060830152613a4e81846139d4565b905095945050505050565b600081519050613a6881612797565b92915050565b600060208284031215613a8457613a83612761565b5b6000613a9284828501613a59565b91505092915050565b6000613aa682612826565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ad857613ad76132b8565b5b600182019050919050565b6000613aee82612826565b9150613af983612826565b925082613b0957613b08613880565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220f0ae8c1b6bfe92e7efe0167a709ffc75fb55a9904f3b838ab96841ca7f25b5f764736f6c63430008100033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d575542754256767a457a69427437704e6867503641594d6847356b59773571357747633832567976794e4b452f00000000000000000000

-----Decoded View---------------
Arg [0] : initBaseURI (string): ipfs://QmWUBuBVvzEziBt7pNhgP6AYMhG5kYw5q5wGc82VyvyNKE/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d575542754256767a457a69427437704e6867503641594d
Arg [3] : 6847356b59773571357747633832567976794e4b452f00000000000000000000


Deployed Bytecode Sourcemap

66741:4369:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68424:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66957:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67576:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35183:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41666:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41107:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66888:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30934:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67327:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66918:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45373:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67977:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;70902:205;;;:::i;:::-;;67139:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48286:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70586:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67091:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36576:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67791:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67211:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32118:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15029:103;;;;;;;;;;;;;:::i;:::-;;69570:182;;;;;;;;;;;;;:::i;:::-;;14381:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70796:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70683:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35359;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67046:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68852:708;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42224:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49069:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70227:350;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67003:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69879:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15287:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68424:416;68527:4;68566:26;68551:41;;;:11;:41;;;;:84;;;;68625:10;68610:25;;:11;:25;;;;68551:84;:161;;;;68702:10;68687:25;;:11;:25;;;;68551:161;:238;;;;68779:10;68764:25;;:11;:25;;;;68551:238;68544:245;;68424:416;;;:::o;66957:39::-;;;;:::o;67576:171::-;67675:9;67662:10;;:22;;;;;;;;;;;;;;;;;;67695:44;67714:9;67725:13;67695:18;:44::i;:::-;67576:171;;:::o;35183:100::-;35237:13;35270:5;35263:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35183:100;:::o;41666:218::-;41742:7;41767:16;41775:7;41767;:16::i;:::-;41762:64;;41792:34;;;;;;;;;;;;;;41762:64;41846:15;:24;41862:7;41846:24;;;;;;;;;;;:30;;;;;;;;;;;;41839:37;;41666:218;;;:::o;41107:400::-;41188:13;41204:16;41212:7;41204;:16::i;:::-;41188:32;;41260:5;41237:28;;:19;:17;:19::i;:::-;:28;;;41233:175;;41285:44;41302:5;41309:19;:17;:19::i;:::-;41285:16;:44::i;:::-;41280:128;;41357:35;;;;;;;;;;;;;;41280:128;41233:175;41453:2;41420:15;:24;41436:7;41420:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;41491:7;41487:2;41471:28;;41480:5;41471:28;;;;;;;;;;;;41177:330;41107:400;;:::o;66888:23::-;;;;:::o;30934:323::-;30995:7;31223:15;:13;:15::i;:::-;31208:12;;31192:13;;:28;:46;31185:53;;30934:323;:::o;67327:25::-;;;;;;;;;;;;;:::o;66918:32::-;;;;:::o;45373:2817::-;45507:27;45537;45556:7;45537:18;:27::i;:::-;45507:57;;45622:4;45581:45;;45597:19;45581:45;;;45577:86;;45635:28;;;;;;;;;;;;;;45577:86;45677:27;45706:23;45733:35;45760:7;45733:26;:35::i;:::-;45676:92;;;;45868:68;45893:15;45910:4;45916:19;:17;:19::i;:::-;45868:24;:68::i;:::-;45863:180;;45956:43;45973:4;45979:19;:17;:19::i;:::-;45956:16;:43::i;:::-;45951:92;;46008:35;;;;;;;;;;;;;;45951:92;45863:180;46074:1;46060:16;;:2;:16;;;46056:52;;46085:23;;;;;;;;;;;;;;46056:52;46121:43;46143:4;46149:2;46153:7;46162:1;46121:21;:43::i;:::-;46257:15;46254:160;;;46397:1;46376:19;46369:30;46254:160;46794:18;:24;46813:4;46794:24;;;;;;;;;;;;;;;;46792:26;;;;;;;;;;;;46863:18;:22;46882:2;46863:22;;;;;;;;;;;;;;;;46861:24;;;;;;;;;;;47185:146;47222:2;47271:45;47286:4;47292:2;47296:19;47271:14;:45::i;:::-;27333:8;47243:73;47185:18;:146::i;:::-;47156:17;:26;47174:7;47156:26;;;;;;;;;;;:175;;;;47502:1;27333:8;47451:19;:47;:52;47447:627;;47524:19;47556:1;47546:7;:11;47524:33;;47713:1;47679:17;:30;47697:11;47679:30;;;;;;;;;;;;:35;47675:384;;47817:13;;47802:11;:28;47798:242;;47997:19;47964:17;:30;47982:11;47964:30;;;;;;;;;;;:52;;;;47798:242;47675:384;47505:569;47447:627;48121:7;48117:2;48102:27;;48111:4;48102:27;;;;;;;;;;;;48140:42;48161:4;48167:2;48171:7;48180:1;48140:20;:42::i;:::-;45496:2694;;;45373:2817;;;:::o;67977:365::-;68066:7;68075;68160:15;68179:39;68197:8;68207:10;68179:17;:39::i;:::-;68157:61;;;68311:10;;;;;;;;;;;68323;68303:31;;;;;67977:365;;;;;:::o;70902:205::-;14267:13;:11;:13::i;:::-;11306:1:::1;11904:7;;:19:::0;11896:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;11306:1;12037:7;:18;;;;70972:12:::2;70998:10;70990:24;;71036:21;70990:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70971:101;;;71091:7;71083:16;;;::::0;::::2;;70960:147;11262:1:::1;12216:7;:22;;;;70902:205::o:0;67139:30::-;;;;:::o;48286:185::-;48424:39;48441:4;48447:2;48451:7;48424:39;;;;;;;;;;;;:16;:39::i;:::-;48286:185;;;:::o;70586:88::-;14267:13;:11;:13::i;:::-;70663:3:::1;70653:7;:13;;;;;;:::i;:::-;;70586:88:::0;:::o;67091:40::-;;;;:::o;36576:152::-;36648:7;36691:27;36710:7;36691:18;:27::i;:::-;36668:52;;36576:152;;;:::o;67791:177::-;14267:13;:11;:13::i;:::-;67909:51:::1;67926:7;67935:10;;;;;;;;;;;67947:12;67909:16;:51::i;:::-;67791:177:::0;;:::o;67211:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32118:233::-;32190:7;32231:1;32214:19;;:5;:19;;;32210:60;;32242:28;;;;;;;;;;;;;;32210:60;26277:13;32288:18;:25;32307:5;32288:25;;;;;;;;;;;;;;;;:55;32281:62;;32118:233;;;:::o;15029:103::-;14267:13;:11;:13::i;:::-;15094:30:::1;15121:1;15094:18;:30::i;:::-;15029:103::o:0;69570:182::-;14267:13;:11;:13::i;:::-;69629:9:::1;;69617:8;;:21;;;;;;;:::i;:::-;;;;;;;;69654:47;69667:12;:10;:12::i;:::-;69681:8;;69691:9;;69654:47;;;;;;;;:::i;:::-;;;;;;;;69712:32;69722:10;69734:9;;69712;:32::i;:::-;69570:182::o:0;14381:87::-;14427:7;14454:6;;;;;;;;;;;14447:13;;14381:87;:::o;70796:97::-;14267:13;:11;:13::i;:::-;70876:9:::1;70863:10;:22;;;;70796:97:::0;:::o;70683:104::-;14267:13;:11;:13::i;:::-;70773:6:::1;70752:18;:27;;;;70683:104:::0;:::o;35359:::-;35415:13;35448:7;35441:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35359:104;:::o;67046:38::-;;;;:::o;68852:708::-;68909:12;68924:10;;68909:25;;68945:11;69006:1;68985:18;;:22;;;;:::i;:::-;68977:5;68961:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:46;68960:127;;;;;69067:19;;69058:5;69026:17;:29;69044:10;69026:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:60;;68960:127;68959:169;;;;69120:7;:5;:7::i;:::-;69106:21;;:10;:21;;;68959:169;68945:183;;69146:6;69142:47;;;69176:1;69169:8;;69142:47;69231:4;69223:5;:12;;;;:::i;:::-;69210:9;:25;;69202:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;69337:1;69325:9;;69312:10;;:22;;;;:::i;:::-;:26;;;;:::i;:::-;69304:5;69288:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:50;69280:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;69395:1;69379:13;;:17;;;;:::i;:::-;69371:5;:25;69363:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;69438:6;69434:77;;;69494:5;69461:17;:29;69479:10;69461:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;69434:77;69524:28;69534:10;69546:5;69524:9;:28::i;:::-;68898:662;;68852:708;:::o;42224:308::-;42335:19;:17;:19::i;:::-;42323:31;;:8;:31;;;42319:61;;42363:17;;;;;;;;;;;;;;42319:61;42445:8;42393:18;:39;42412:19;:17;:19::i;:::-;42393:39;;;;;;;;;;;;;;;:49;42433:8;42393:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;42505:8;42469:55;;42484:19;:17;:19::i;:::-;42469:55;;;42515:8;42469:55;;;;;;:::i;:::-;;;;;;;;42224:308;;:::o;49069:399::-;49236:31;49249:4;49255:2;49259:7;49236:12;:31::i;:::-;49300:1;49282:2;:14;;;:19;49278:183;;49321:56;49352:4;49358:2;49362:7;49371:5;49321:30;:56::i;:::-;49316:145;;49405:40;;;;;;;;;;;;;;49316:145;49278:183;49069:399;;;;:::o;70227:350::-;70345:13;70398:16;70406:7;70398;:16::i;:::-;70376:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;70531:7;70540:18;:7;:16;:18::i;:::-;70514:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;70500:69;;70227:350;;;:::o;67003:33::-;;;;:::o;69879:335::-;70004:4;70065:42;70053:54;;:8;:54;;;70049:99;;70131:5;70124:12;;;;70049:99;70167:39;70190:5;70197:8;70167:22;:39::i;:::-;70160:46;;69879:335;;;;;:::o;15287:201::-;14267:13;:11;:13::i;:::-;15396:1:::1;15376:22;;:8;:22;;::::0;15368:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;15452:28;15471:8;15452:18;:28::i;:::-;15287:201:::0;:::o;5592:332::-;5711:17;:15;:17::i;:::-;5695:33;;:12;:33;;;;5687:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;5814:1;5794:22;;:8;:22;;;5786:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;5881:35;;;;;;;;5893:8;5881:35;;;;;;5903:12;5881:35;;;;;5859:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5592:332;;:::o;43111:282::-;43176:4;43232:7;43213:15;:13;:15::i;:::-;:26;;:66;;;;;43266:13;;43256:7;:23;43213:66;:153;;;;;43365:1;27053:8;43317:17;:26;43335:7;43317:26;;;;;;;;;;;;:44;:49;43213:153;43193:173;;43111:282;;;:::o;64877:105::-;64937:7;64964:10;64957:17;;64877:105;:::o;30450:92::-;30506:7;30450:92;:::o;37731:1275::-;37798:7;37818:12;37833:7;37818:22;;37901:4;37882:15;:13;:15::i;:::-;:23;37878:1061;;37935:13;;37928:4;:20;37924:1015;;;37973:14;37990:17;:23;38008:4;37990:23;;;;;;;;;;;;37973:40;;38107:1;27053:8;38079:6;:24;:29;38075:845;;38744:113;38761:1;38751:6;:11;38744:113;;38804:17;:25;38822:6;;;;;;;38804:25;;;;;;;;;;;;38795:34;;38744:113;;;38890:6;38883:13;;;;;;38075:845;37950:989;37924:1015;37878:1061;38967:31;;;;;;;;;;;;;;37731:1275;;;;:::o;44274:479::-;44376:27;44405:23;44446:38;44487:15;:24;44503:7;44487:24;;;;;;;;;;;44446:65;;44658:18;44635:41;;44715:19;44709:26;44690:45;;44620:126;44274:479;;;:::o;43502:659::-;43651:11;43816:16;43809:5;43805:28;43796:37;;43976:16;43965:9;43961:32;43948:45;;44126:15;44115:9;44112:30;44104:5;44093:9;44090:20;44087:56;44077:66;;43502:659;;;;;:::o;50130:159::-;;;;;:::o;64186:311::-;64321:7;64341:16;27457:3;64367:19;:41;;64341:68;;27457:3;64435:31;64446:4;64452:2;64456:9;64435:10;:31::i;:::-;64427:40;;:62;;64420:69;;;64186:311;;;;;:::o;39554:450::-;39634:14;39802:16;39795:5;39791:28;39782:37;;39979:5;39965:11;39940:23;39936:41;39933:52;39926:5;39923:63;39913:73;;39554:450;;;;:::o;50954:158::-;;;;;:::o;4500:442::-;4597:7;4606;4626:26;4655:17;:27;4673:8;4655:27;;;;;;;;;;;4626:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4727:1;4699:30;;:7;:16;;;:30;;;4695:92;;4756:19;4746:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4695:92;4799:21;4864:17;:15;:17::i;:::-;4823:58;;4837:7;:23;;;4824:36;;:10;:36;;;;:::i;:::-;4823:58;;;;:::i;:::-;4799:82;;4902:7;:16;;;4920:13;4894:40;;;;;;4500:442;;;;;:::o;14546:132::-;14621:12;:10;:12::i;:::-;14610:23;;:7;:5;:7::i;:::-;:23;;;14602:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14546:132::o;6375:390::-;6543:17;:15;:17::i;:::-;6527:33;;:12;:33;;;;6519:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;6646:1;6626:22;;:8;:22;;;6618:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;6722:35;;;;;;;;6734:8;6722:35;;;;;;6744:12;6722:35;;;;;6693:17;:26;6711:7;6693:26;;;;;;;;;;;:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6375:390;;;:::o;15648:191::-;15722:16;15741:6;;;;;;;;;;;15722:25;;15767:8;15758:6;;:17;;;;;;;;;;;;;;;;;;15822:8;15791:40;;15812:8;15791:40;;;;;;;;;;;;15711:128;15648:191;:::o;12932:98::-;12985:7;13012:10;13005:17;;12932:98;:::o;58709:112::-;58786:27;58796:2;58800:8;58786:27;;;;;;;;;;;;:9;:27::i;:::-;58709:112;;:::o;51552:716::-;51715:4;51761:2;51736:45;;;51782:19;:17;:19::i;:::-;51803:4;51809:7;51818:5;51736:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;51732:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52036:1;52019:6;:13;:18;52015:235;;52065:40;;;;;;;;;;;;;;52015:235;52208:6;52202:13;52193:6;52189:2;52185:15;52178:38;51732:529;51905:54;;;51895:64;;;:6;:64;;;;51888:71;;;51552:716;;;;;;:::o;7427:723::-;7483:13;7713:1;7704:5;:10;7700:53;;7731:10;;;;;;;;;;;;;;;;;;;;;7700:53;7763:12;7778:5;7763:20;;7794:14;7819:78;7834:1;7826:4;:9;7819:78;;7852:8;;;;;:::i;:::-;;;;7883:2;7875:10;;;;;:::i;:::-;;;7819:78;;;7907:19;7939:6;7929:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7907:39;;7957:154;7973:1;7964:5;:10;7957:154;;8001:1;7991:11;;;;;:::i;:::-;;;8068:2;8060:5;:10;;;;:::i;:::-;8047:2;:24;;;;:::i;:::-;8034:39;;8017:6;8024;8017:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;8097:2;8088:11;;;;;:::i;:::-;;;7957:154;;;8135:6;8121:21;;;;;7427:723;;;;:::o;42689:164::-;42786:4;42810:18;:25;42829:5;42810:25;;;;;;;;;;;;;;;:35;42836:8;42810:35;;;;;;;;;;;;;;;;;;;;;;;;;42803:42;;42689:164;;;;:::o;5224:97::-;5282:6;5308:5;5301:12;;5224:97;:::o;63887:147::-;64024:6;63887:147;;;;;:::o;57936:689::-;58067:19;58073:2;58077:8;58067:5;:19::i;:::-;58146:1;58128:2;:14;;;:19;58124:483;;58168:11;58182:13;;58168:27;;58214:13;58236:8;58230:3;:14;58214:30;;58263:233;58294:62;58333:1;58337:2;58341:7;;;;;;58350:5;58294:30;:62::i;:::-;58289:167;;58392:40;;;;;;;;;;;;;;58289:167;58491:3;58483:5;:11;58263:233;;58578:3;58561:13;;:20;58557:34;;58583:8;;;58557:34;58149:458;;58124:483;57936:689;;;:::o;52730:2454::-;52803:20;52826:13;;52803:36;;52866:1;52854:8;:13;52850:44;;52876:18;;;;;;;;;;;;;;52850:44;52907:61;52937:1;52941:2;52945:12;52959:8;52907:21;:61::i;:::-;53451:1;26415:2;53421:1;:26;;53420:32;53408:8;:45;53382:18;:22;53401:2;53382:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;53730:139;53767:2;53821:33;53844:1;53848:2;53852:1;53821:14;:33::i;:::-;53788:30;53809:8;53788:20;:30::i;:::-;:66;53730:18;:139::i;:::-;53696:17;:31;53714:12;53696:31;;;;;;;;;;;:173;;;;53886:16;53917:11;53946:8;53931:12;:23;53917:37;;54201:16;54197:2;54193:25;54181:37;;54573:12;54533:8;54492:1;54430:25;54371:1;54310;54283:335;54698:1;54684:12;54680:20;54638:346;54739:3;54730:7;54727:16;54638:346;;54957:7;54947:8;54944:1;54917:25;54914:1;54911;54906:59;54792:1;54783:7;54779:15;54768:26;;54638:346;;;54642:77;55029:1;55017:8;:13;55013:45;;55039:19;;;;;;;;;;;;;;55013:45;55091:3;55075:13;:19;;;;53156:1950;;55116:60;55145:1;55149:2;55153:12;55167:8;55116:20;:60::i;:::-;52792:2392;52730:2454;;:::o;40106:324::-;40176:14;40409:1;40399:8;40396:15;40370:24;40366:46;40356:56;;40106: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:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:126::-;1990:7;2030:42;2023:5;2019:54;2008:65;;1953:126;;;:::o;2085:96::-;2122:7;2151:24;2169:5;2151:24;:::i;:::-;2140:35;;2085:96;;;:::o;2187:122::-;2260:24;2278:5;2260:24;:::i;:::-;2253:5;2250:35;2240:63;;2299:1;2296;2289:12;2240:63;2187:122;:::o;2315:139::-;2361:5;2399:6;2386:20;2377:29;;2415:33;2442:5;2415:33;:::i;:::-;2315:139;;;;:::o;2460:109::-;2496:7;2536:26;2529:5;2525:38;2514:49;;2460:109;;;:::o;2575:120::-;2647:23;2664:5;2647:23;:::i;:::-;2640:5;2637:34;2627:62;;2685:1;2682;2675:12;2627:62;2575:120;:::o;2701:137::-;2746:5;2784:6;2771:20;2762:29;;2800:32;2826:5;2800:32;:::i;:::-;2701:137;;;;:::o;2844:472::-;2911:6;2919;2968:2;2956:9;2947:7;2943:23;2939:32;2936:119;;;2974:79;;:::i;:::-;2936:119;3094:1;3119:53;3164:7;3155:6;3144:9;3140:22;3119:53;:::i;:::-;3109:63;;3065:117;3221:2;3247:52;3291:7;3282:6;3271:9;3267:22;3247:52;:::i;:::-;3237:62;;3192:117;2844:472;;;;;:::o;3322:99::-;3374:6;3408:5;3402:12;3392:22;;3322:99;;;:::o;3427:169::-;3511:11;3545:6;3540:3;3533:19;3585:4;3580:3;3576:14;3561:29;;3427:169;;;;:::o;3602:246::-;3683:1;3693:113;3707:6;3704:1;3701:13;3693:113;;;3792:1;3787:3;3783:11;3777:18;3773:1;3768:3;3764:11;3757:39;3729:2;3726:1;3722:10;3717:15;;3693:113;;;3840:1;3831:6;3826:3;3822:16;3815:27;3664:184;3602:246;;;:::o;3854:102::-;3895:6;3946:2;3942:7;3937:2;3930:5;3926:14;3922:28;3912:38;;3854:102;;;:::o;3962:377::-;4050:3;4078:39;4111:5;4078:39;:::i;:::-;4133:71;4197:6;4192:3;4133:71;:::i;:::-;4126:78;;4213:65;4271:6;4266:3;4259:4;4252:5;4248:16;4213:65;:::i;:::-;4303:29;4325:6;4303:29;:::i;:::-;4298:3;4294:39;4287:46;;4054:285;3962:377;;;;:::o;4345:313::-;4458:4;4496:2;4485:9;4481:18;4473:26;;4545:9;4539:4;4535:20;4531:1;4520:9;4516:17;4509:47;4573:78;4646:4;4637:6;4573:78;:::i;:::-;4565:86;;4345:313;;;;:::o;4664:122::-;4737:24;4755:5;4737:24;:::i;:::-;4730:5;4727:35;4717:63;;4776:1;4773;4766:12;4717:63;4664:122;:::o;4792:139::-;4838:5;4876:6;4863:20;4854:29;;4892:33;4919:5;4892:33;:::i;:::-;4792:139;;;;:::o;4937:329::-;4996:6;5045:2;5033:9;5024:7;5020:23;5016:32;5013:119;;;5051:79;;:::i;:::-;5013:119;5171:1;5196:53;5241:7;5232:6;5221:9;5217:22;5196:53;:::i;:::-;5186:63;;5142:117;4937:329;;;;:::o;5272:118::-;5359:24;5377:5;5359:24;:::i;:::-;5354:3;5347:37;5272:118;;:::o;5396:222::-;5489:4;5527:2;5516:9;5512:18;5504:26;;5540:71;5608:1;5597:9;5593:17;5584:6;5540:71;:::i;:::-;5396:222;;;;:::o;5624:474::-;5692:6;5700;5749:2;5737:9;5728:7;5724:23;5720:32;5717:119;;;5755:79;;:::i;:::-;5717:119;5875:1;5900:53;5945:7;5936:6;5925:9;5921:22;5900:53;:::i;:::-;5890:63;;5846:117;6002:2;6028:53;6073:7;6064:6;6053:9;6049:22;6028:53;:::i;:::-;6018:63;;5973:118;5624:474;;;;;:::o;6104:619::-;6181:6;6189;6197;6246:2;6234:9;6225:7;6221:23;6217:32;6214:119;;;6252:79;;:::i;:::-;6214:119;6372:1;6397:53;6442:7;6433:6;6422:9;6418:22;6397:53;:::i;:::-;6387:63;;6343:117;6499:2;6525:53;6570:7;6561:6;6550:9;6546:22;6525:53;:::i;:::-;6515:63;;6470:118;6627:2;6653:53;6698:7;6689:6;6678:9;6674:22;6653:53;:::i;:::-;6643:63;;6598:118;6104:619;;;;;:::o;6729:474::-;6797:6;6805;6854:2;6842:9;6833:7;6829:23;6825:32;6822:119;;;6860:79;;:::i;:::-;6822:119;6980:1;7005:53;7050:7;7041:6;7030:9;7026:22;7005:53;:::i;:::-;6995:63;;6951:117;7107:2;7133:53;7178:7;7169:6;7158:9;7154:22;7133:53;:::i;:::-;7123:63;;7078:118;6729:474;;;;;:::o;7209:332::-;7330:4;7368:2;7357:9;7353:18;7345:26;;7381:71;7449:1;7438:9;7434:17;7425:6;7381:71;:::i;:::-;7462:72;7530:2;7519:9;7515:18;7506:6;7462:72;:::i;:::-;7209:332;;;;;:::o;7547:117::-;7656:1;7653;7646:12;7670:117;7779:1;7776;7769:12;7793:180;7841:77;7838:1;7831:88;7938:4;7935:1;7928:15;7962:4;7959:1;7952:15;7979:281;8062:27;8084:4;8062:27;:::i;:::-;8054:6;8050:40;8192:6;8180:10;8177:22;8156:18;8144:10;8141:34;8138:62;8135:88;;;8203:18;;:::i;:::-;8135:88;8243:10;8239:2;8232:22;8022:238;7979:281;;:::o;8266:129::-;8300:6;8327:20;;:::i;:::-;8317:30;;8356:33;8384:4;8376:6;8356:33;:::i;:::-;8266:129;;;:::o;8401:308::-;8463:4;8553:18;8545:6;8542:30;8539:56;;;8575:18;;:::i;:::-;8539:56;8613:29;8635:6;8613:29;:::i;:::-;8605:37;;8697:4;8691;8687:15;8679:23;;8401:308;;;:::o;8715:146::-;8812:6;8807:3;8802;8789:30;8853:1;8844:6;8839:3;8835:16;8828:27;8715:146;;;:::o;8867:425::-;8945:5;8970:66;8986:49;9028:6;8986:49;:::i;:::-;8970:66;:::i;:::-;8961:75;;9059:6;9052:5;9045:21;9097:4;9090:5;9086:16;9135:3;9126:6;9121:3;9117:16;9114:25;9111:112;;;9142:79;;:::i;:::-;9111:112;9232:54;9279:6;9274:3;9269;9232:54;:::i;:::-;8951:341;8867:425;;;;;:::o;9312:340::-;9368:5;9417:3;9410:4;9402:6;9398:17;9394:27;9384:122;;9425:79;;:::i;:::-;9384:122;9542:6;9529:20;9567:79;9642:3;9634:6;9627:4;9619:6;9615:17;9567:79;:::i;:::-;9558:88;;9374:278;9312:340;;;;:::o;9658:509::-;9727:6;9776:2;9764:9;9755:7;9751:23;9747:32;9744:119;;;9782:79;;:::i;:::-;9744:119;9930:1;9919:9;9915:17;9902:31;9960:18;9952:6;9949:30;9946:117;;;9982:79;;:::i;:::-;9946:117;10087:63;10142:7;10133:6;10122:9;10118:22;10087:63;:::i;:::-;10077:73;;9873:287;9658:509;;;;:::o;10173:472::-;10240:6;10248;10297:2;10285:9;10276:7;10272:23;10268:32;10265:119;;;10303:79;;:::i;:::-;10265:119;10423:1;10448:53;10493:7;10484:6;10473:9;10469:22;10448:53;:::i;:::-;10438:63;;10394:117;10550:2;10576:52;10620:7;10611:6;10600:9;10596:22;10576:52;:::i;:::-;10566:62;;10521:117;10173:472;;;;;:::o;10651:329::-;10710:6;10759:2;10747:9;10738:7;10734:23;10730:32;10727:119;;;10765:79;;:::i;:::-;10727:119;10885:1;10910:53;10955:7;10946:6;10935:9;10931:22;10910:53;:::i;:::-;10900:63;;10856:117;10651:329;;;;:::o;10986:116::-;11056:21;11071:5;11056:21;:::i;:::-;11049:5;11046:32;11036:60;;11092:1;11089;11082:12;11036:60;10986:116;:::o;11108:133::-;11151:5;11189:6;11176:20;11167:29;;11205:30;11229:5;11205:30;:::i;:::-;11108:133;;;;:::o;11247:468::-;11312:6;11320;11369:2;11357:9;11348:7;11344:23;11340:32;11337:119;;;11375:79;;:::i;:::-;11337:119;11495:1;11520:53;11565:7;11556:6;11545:9;11541:22;11520:53;:::i;:::-;11510:63;;11466:117;11622:2;11648:50;11690:7;11681:6;11670:9;11666:22;11648:50;:::i;:::-;11638:60;;11593:115;11247:468;;;;;:::o;11721:307::-;11782:4;11872:18;11864:6;11861:30;11858:56;;;11894:18;;:::i;:::-;11858:56;11932:29;11954:6;11932:29;:::i;:::-;11924:37;;12016:4;12010;12006:15;11998:23;;11721:307;;;:::o;12034:423::-;12111:5;12136:65;12152:48;12193:6;12152:48;:::i;:::-;12136:65;:::i;:::-;12127:74;;12224:6;12217:5;12210:21;12262:4;12255:5;12251:16;12300:3;12291:6;12286:3;12282:16;12279:25;12276:112;;;12307:79;;:::i;:::-;12276:112;12397:54;12444:6;12439:3;12434;12397:54;:::i;:::-;12117:340;12034:423;;;;;:::o;12476:338::-;12531:5;12580:3;12573:4;12565:6;12561:17;12557:27;12547:122;;12588:79;;:::i;:::-;12547:122;12705:6;12692:20;12730:78;12804:3;12796:6;12789:4;12781:6;12777:17;12730:78;:::i;:::-;12721:87;;12537:277;12476:338;;;;:::o;12820:943::-;12915:6;12923;12931;12939;12988:3;12976:9;12967:7;12963:23;12959:33;12956:120;;;12995:79;;:::i;:::-;12956:120;13115:1;13140:53;13185:7;13176:6;13165:9;13161:22;13140:53;:::i;:::-;13130:63;;13086:117;13242:2;13268:53;13313:7;13304:6;13293:9;13289:22;13268:53;:::i;:::-;13258:63;;13213:118;13370:2;13396:53;13441:7;13432:6;13421:9;13417:22;13396:53;:::i;:::-;13386:63;;13341:118;13526:2;13515:9;13511:18;13498:32;13557:18;13549:6;13546:30;13543:117;;;13579:79;;:::i;:::-;13543:117;13684:62;13738:7;13729:6;13718:9;13714:22;13684:62;:::i;:::-;13674:72;;13469:287;12820:943;;;;;;;:::o;13769:474::-;13837:6;13845;13894:2;13882:9;13873:7;13869:23;13865:32;13862:119;;;13900:79;;:::i;:::-;13862:119;14020:1;14045:53;14090:7;14081:6;14070:9;14066:22;14045:53;:::i;:::-;14035:63;;13991:117;14147:2;14173:53;14218:7;14209:6;14198:9;14194:22;14173:53;:::i;:::-;14163:63;;14118:118;13769:474;;;;;:::o;14249:180::-;14297:77;14294:1;14287:88;14394:4;14391:1;14384:15;14418:4;14415:1;14408:15;14435:320;14479:6;14516:1;14510:4;14506:12;14496:22;;14563:1;14557:4;14553:12;14584:18;14574:81;;14640:4;14632:6;14628:17;14618:27;;14574:81;14702:2;14694:6;14691:14;14671:18;14668:38;14665:84;;14721:18;;:::i;:::-;14665:84;14486:269;14435:320;;;:::o;14761:181::-;14901:33;14897:1;14889:6;14885:14;14878:57;14761:181;:::o;14948:366::-;15090:3;15111:67;15175:2;15170:3;15111:67;:::i;:::-;15104:74;;15187:93;15276:3;15187:93;:::i;:::-;15305:2;15300:3;15296:12;15289:19;;14948:366;;;:::o;15320:419::-;15486:4;15524:2;15513:9;15509:18;15501:26;;15573:9;15567:4;15563:20;15559:1;15548:9;15544:17;15537:47;15601:131;15727:4;15601:131;:::i;:::-;15593:139;;15320:419;;;:::o;15745:147::-;15846:11;15883:3;15868:18;;15745:147;;;;:::o;15898:114::-;;:::o;16018:398::-;16177:3;16198:83;16279:1;16274:3;16198:83;:::i;:::-;16191:90;;16290:93;16379:3;16290:93;:::i;:::-;16408:1;16403:3;16399:11;16392:18;;16018:398;;;:::o;16422:379::-;16606:3;16628:147;16771:3;16628:147;:::i;:::-;16621:154;;16792:3;16785:10;;16422:379;;;:::o;16807:141::-;16856:4;16879:3;16871:11;;16902:3;16899:1;16892:14;16936:4;16933:1;16923:18;16915:26;;16807:141;;;:::o;16954:93::-;16991:6;17038:2;17033;17026:5;17022:14;17018:23;17008:33;;16954:93;;;:::o;17053:107::-;17097:8;17147:5;17141:4;17137:16;17116:37;;17053:107;;;;:::o;17166:393::-;17235:6;17285:1;17273:10;17269:18;17308:97;17338:66;17327:9;17308:97;:::i;:::-;17426:39;17456:8;17445:9;17426:39;:::i;:::-;17414:51;;17498:4;17494:9;17487:5;17483:21;17474:30;;17547:4;17537:8;17533:19;17526:5;17523:30;17513:40;;17242:317;;17166:393;;;;;:::o;17565:60::-;17593:3;17614:5;17607:12;;17565:60;;;:::o;17631:142::-;17681:9;17714:53;17732:34;17741:24;17759:5;17741:24;:::i;:::-;17732:34;:::i;:::-;17714:53;:::i;:::-;17701:66;;17631:142;;;:::o;17779:75::-;17822:3;17843:5;17836:12;;17779:75;;;:::o;17860:269::-;17970:39;18001:7;17970:39;:::i;:::-;18031:91;18080:41;18104:16;18080:41;:::i;:::-;18072:6;18065:4;18059:11;18031:91;:::i;:::-;18025:4;18018:105;17936:193;17860:269;;;:::o;18135:73::-;18180:3;18135:73;:::o;18214:189::-;18291:32;;:::i;:::-;18332:65;18390:6;18382;18376:4;18332:65;:::i;:::-;18267:136;18214:189;;:::o;18409:186::-;18469:120;18486:3;18479:5;18476:14;18469:120;;;18540:39;18577:1;18570:5;18540:39;:::i;:::-;18513:1;18506:5;18502:13;18493:22;;18469:120;;;18409:186;;:::o;18601:543::-;18702:2;18697:3;18694:11;18691:446;;;18736:38;18768:5;18736:38;:::i;:::-;18820:29;18838:10;18820:29;:::i;:::-;18810:8;18806:44;19003:2;18991:10;18988:18;18985:49;;;19024:8;19009:23;;18985:49;19047:80;19103:22;19121:3;19103:22;:::i;:::-;19093:8;19089:37;19076:11;19047:80;:::i;:::-;18706:431;;18691:446;18601:543;;;:::o;19150:117::-;19204:8;19254:5;19248:4;19244:16;19223:37;;19150:117;;;;:::o;19273:169::-;19317:6;19350:51;19398:1;19394:6;19386:5;19383:1;19379:13;19350:51;:::i;:::-;19346:56;19431:4;19425;19421:15;19411:25;;19324:118;19273:169;;;;:::o;19447:295::-;19523:4;19669:29;19694:3;19688:4;19669:29;:::i;:::-;19661:37;;19731:3;19728:1;19724:11;19718:4;19715:21;19707:29;;19447:295;;;;:::o;19747:1395::-;19864:37;19897:3;19864:37;:::i;:::-;19966:18;19958:6;19955:30;19952:56;;;19988:18;;:::i;:::-;19952:56;20032:38;20064:4;20058:11;20032:38;:::i;:::-;20117:67;20177:6;20169;20163:4;20117:67;:::i;:::-;20211:1;20235:4;20222:17;;20267:2;20259:6;20256:14;20284:1;20279:618;;;;20941:1;20958:6;20955:77;;;21007:9;21002:3;20998:19;20992:26;20983:35;;20955:77;21058:67;21118:6;21111:5;21058:67;:::i;:::-;21052:4;21045:81;20914:222;20249:887;;20279:618;20331:4;20327:9;20319:6;20315:22;20365:37;20397:4;20365:37;:::i;:::-;20424:1;20438:208;20452:7;20449:1;20446:14;20438:208;;;20531:9;20526:3;20522:19;20516:26;20508:6;20501:42;20582:1;20574:6;20570:14;20560:24;;20629:2;20618:9;20614:18;20601:31;;20475:4;20472:1;20468:12;20463:17;;20438:208;;;20674:6;20665:7;20662:19;20659:179;;;20732:9;20727:3;20723:19;20717:26;20775:48;20817:4;20809:6;20805:17;20794:9;20775:48;:::i;:::-;20767:6;20760:64;20682:156;20659:179;20884:1;20880;20872:6;20868:14;20864:22;20858:4;20851:36;20286:611;;;20249:887;;19839:1303;;;19747:1395;;:::o;21148:180::-;21196:77;21193:1;21186:88;21293:4;21290:1;21283:15;21317:4;21314:1;21307:15;21334:191;21374:3;21393:20;21411:1;21393:20;:::i;:::-;21388:25;;21427:20;21445:1;21427:20;:::i;:::-;21422:25;;21470:1;21467;21463:9;21456:16;;21491:3;21488:1;21485:10;21482:36;;;21498:18;;:::i;:::-;21482:36;21334:191;;;;:::o;21531:442::-;21680:4;21718:2;21707:9;21703:18;21695:26;;21731:71;21799:1;21788:9;21784:17;21775:6;21731:71;:::i;:::-;21812:72;21880:2;21869:9;21865:18;21856:6;21812:72;:::i;:::-;21894;21962:2;21951:9;21947:18;21938:6;21894:72;:::i;:::-;21531:442;;;;;;:::o;21979:348::-;22019:7;22042:20;22060:1;22042:20;:::i;:::-;22037:25;;22076:20;22094:1;22076:20;:::i;:::-;22071:25;;22264:1;22196:66;22192:74;22189:1;22186:81;22181:1;22174:9;22167:17;22163:105;22160:131;;;22271:18;;:::i;:::-;22160:131;22319:1;22316;22312:9;22301:20;;21979:348;;;;:::o;22333:179::-;22473:31;22469:1;22461:6;22457:14;22450:55;22333:179;:::o;22518:366::-;22660:3;22681:67;22745:2;22740:3;22681:67;:::i;:::-;22674:74;;22757:93;22846:3;22757:93;:::i;:::-;22875:2;22870:3;22866:12;22859:19;;22518:366;;;:::o;22890:419::-;23056:4;23094:2;23083:9;23079:18;23071:26;;23143:9;23137:4;23133:20;23129:1;23118:9;23114:17;23107:47;23171:131;23297:4;23171:131;:::i;:::-;23163:139;;22890:419;;;:::o;23315:194::-;23355:4;23375:20;23393:1;23375:20;:::i;:::-;23370:25;;23409:20;23427:1;23409:20;:::i;:::-;23404:25;;23453:1;23450;23446:9;23438:17;;23477:1;23471:4;23468:11;23465:37;;;23482:18;;:::i;:::-;23465:37;23315:194;;;;:::o;23515:159::-;23655:11;23651:1;23643:6;23639:14;23632:35;23515:159;:::o;23680:365::-;23822:3;23843:66;23907:1;23902:3;23843:66;:::i;:::-;23836:73;;23918:93;24007:3;23918:93;:::i;:::-;24036:2;24031:3;24027:12;24020:19;;23680:365;;;:::o;24051:419::-;24217:4;24255:2;24244:9;24240:18;24232:26;;24304:9;24298:4;24294:20;24290:1;24279:9;24275:17;24268:47;24332:131;24458:4;24332:131;:::i;:::-;24324:139;;24051:419;;;:::o;24476:169::-;24616:21;24612:1;24604:6;24600:14;24593:45;24476:169;:::o;24651:366::-;24793:3;24814:67;24878:2;24873:3;24814:67;:::i;:::-;24807:74;;24890:93;24979:3;24890:93;:::i;:::-;25008:2;25003:3;24999:12;24992:19;;24651:366;;;:::o;25023:419::-;25189:4;25227:2;25216:9;25212:18;25204:26;;25276:9;25270:4;25266:20;25262:1;25251:9;25247:17;25240:47;25304:131;25430:4;25304:131;:::i;:::-;25296:139;;25023:419;;;:::o;25448:234::-;25588:34;25584:1;25576:6;25572:14;25565:58;25657:17;25652:2;25644:6;25640:15;25633:42;25448:234;:::o;25688:366::-;25830:3;25851:67;25915:2;25910:3;25851:67;:::i;:::-;25844:74;;25927:93;26016:3;25927:93;:::i;:::-;26045:2;26040:3;26036:12;26029:19;;25688:366;;;:::o;26060:419::-;26226:4;26264:2;26253:9;26249:18;26241:26;;26313:9;26307:4;26303:20;26299:1;26288:9;26284:17;26277:47;26341:131;26467:4;26341:131;:::i;:::-;26333:139;;26060:419;;;:::o;26485:148::-;26587:11;26624:3;26609:18;;26485:148;;;;:::o;26663:874::-;26766:3;26803:5;26797:12;26832:36;26858:9;26832:36;:::i;:::-;26884:89;26966:6;26961:3;26884:89;:::i;:::-;26877:96;;27004:1;26993:9;26989:17;27020:1;27015:166;;;;27195:1;27190:341;;;;26982:549;;27015:166;27099:4;27095:9;27084;27080:25;27075:3;27068:38;27161:6;27154:14;27147:22;27139:6;27135:35;27130:3;27126:45;27119:52;;27015:166;;27190:341;27257:38;27289:5;27257:38;:::i;:::-;27317:1;27331:154;27345:6;27342:1;27339:13;27331:154;;;27419:7;27413:14;27409:1;27404:3;27400:11;27393:35;27469:1;27460:7;27456:15;27445:26;;27367:4;27364:1;27360:12;27355:17;;27331:154;;;27514:6;27509:3;27505:16;27498:23;;27197:334;;26982:549;;26770:767;;26663:874;;;;:::o;27543:390::-;27649:3;27677:39;27710:5;27677:39;:::i;:::-;27732:89;27814:6;27809:3;27732:89;:::i;:::-;27725:96;;27830:65;27888:6;27883:3;27876:4;27869:5;27865:16;27830:65;:::i;:::-;27920:6;27915:3;27911:16;27904:23;;27653:280;27543:390;;;;:::o;27939:155::-;28079:7;28075:1;28067:6;28063:14;28056:31;27939:155;:::o;28100:400::-;28260:3;28281:84;28363:1;28358:3;28281:84;:::i;:::-;28274:91;;28374:93;28463:3;28374:93;:::i;:::-;28492:1;28487:3;28483:11;28476:18;;28100:400;;;:::o;28506:695::-;28784:3;28806:92;28894:3;28885:6;28806:92;:::i;:::-;28799:99;;28915:95;29006:3;28997:6;28915:95;:::i;:::-;28908:102;;29027:148;29171:3;29027:148;:::i;:::-;29020:155;;29192:3;29185:10;;28506:695;;;;;:::o;29207:225::-;29347:34;29343:1;29335:6;29331:14;29324:58;29416:8;29411:2;29403:6;29399:15;29392:33;29207:225;:::o;29438:366::-;29580:3;29601:67;29665:2;29660:3;29601:67;:::i;:::-;29594:74;;29677:93;29766:3;29677:93;:::i;:::-;29795:2;29790:3;29786:12;29779:19;;29438:366;;;:::o;29810:419::-;29976:4;30014:2;30003:9;29999:18;29991:26;;30063:9;30057:4;30053:20;30049:1;30038:9;30034:17;30027:47;30091:131;30217:4;30091:131;:::i;:::-;30083:139;;29810:419;;;:::o;30235:229::-;30375:34;30371:1;30363:6;30359:14;30352:58;30444:12;30439:2;30431:6;30427:15;30420:37;30235:229;:::o;30470:366::-;30612:3;30633:67;30697:2;30692:3;30633:67;:::i;:::-;30626:74;;30709:93;30798:3;30709:93;:::i;:::-;30827:2;30822:3;30818:12;30811:19;;30470:366;;;:::o;30842:419::-;31008:4;31046:2;31035:9;31031:18;31023:26;;31095:9;31089:4;31085:20;31081:1;31070:9;31066:17;31059:47;31123:131;31249:4;31123:131;:::i;:::-;31115:139;;30842:419;;;:::o;31267:175::-;31407:27;31403:1;31395:6;31391:14;31384:51;31267:175;:::o;31448:366::-;31590:3;31611:67;31675:2;31670:3;31611:67;:::i;:::-;31604:74;;31687:93;31776:3;31687:93;:::i;:::-;31805:2;31800:3;31796:12;31789:19;;31448:366;;;:::o;31820:419::-;31986:4;32024:2;32013:9;32009:18;32001:26;;32073:9;32067:4;32063:20;32059:1;32048:9;32044:17;32037:47;32101:131;32227:4;32101:131;:::i;:::-;32093:139;;31820:419;;;:::o;32245:180::-;32293:77;32290:1;32283:88;32390:4;32387:1;32380:15;32414:4;32411:1;32404:15;32431:185;32471:1;32488:20;32506:1;32488:20;:::i;:::-;32483:25;;32522:20;32540:1;32522:20;:::i;:::-;32517:25;;32561:1;32551:35;;32566:18;;:::i;:::-;32551:35;32608:1;32605;32601:9;32596:14;;32431:185;;;;:::o;32622:182::-;32762:34;32758:1;32750:6;32746:14;32739:58;32622:182;:::o;32810:366::-;32952:3;32973:67;33037:2;33032:3;32973:67;:::i;:::-;32966:74;;33049:93;33138:3;33049:93;:::i;:::-;33167:2;33162:3;33158:12;33151:19;;32810:366;;;:::o;33182:419::-;33348:4;33386:2;33375:9;33371:18;33363:26;;33435:9;33429:4;33425:20;33421:1;33410:9;33406:17;33399:47;33463:131;33589:4;33463:131;:::i;:::-;33455:139;;33182:419;;;:::o;33607:177::-;33747:29;33743:1;33735:6;33731:14;33724:53;33607:177;:::o;33790:366::-;33932:3;33953:67;34017:2;34012:3;33953:67;:::i;:::-;33946:74;;34029:93;34118:3;34029:93;:::i;:::-;34147:2;34142:3;34138:12;34131:19;;33790:366;;;:::o;34162:419::-;34328:4;34366:2;34355:9;34351:18;34343:26;;34415:9;34409:4;34405:20;34401:1;34390:9;34386:17;34379:47;34443:131;34569:4;34443:131;:::i;:::-;34435:139;;34162:419;;;:::o;34587:98::-;34638:6;34672:5;34666:12;34656:22;;34587:98;;;:::o;34691:168::-;34774:11;34808:6;34803:3;34796:19;34848:4;34843:3;34839:14;34824:29;;34691:168;;;;:::o;34865:373::-;34951:3;34979:38;35011:5;34979:38;:::i;:::-;35033:70;35096:6;35091:3;35033:70;:::i;:::-;35026:77;;35112:65;35170:6;35165:3;35158:4;35151:5;35147:16;35112:65;:::i;:::-;35202:29;35224:6;35202:29;:::i;:::-;35197:3;35193:39;35186:46;;34955:283;34865:373;;;;:::o;35244:640::-;35439:4;35477:3;35466:9;35462:19;35454:27;;35491:71;35559:1;35548:9;35544:17;35535:6;35491:71;:::i;:::-;35572:72;35640:2;35629:9;35625:18;35616:6;35572:72;:::i;:::-;35654;35722:2;35711:9;35707:18;35698:6;35654:72;:::i;:::-;35773:9;35767:4;35763:20;35758:2;35747:9;35743:18;35736:48;35801:76;35872:4;35863:6;35801:76;:::i;:::-;35793:84;;35244:640;;;;;;;:::o;35890:141::-;35946:5;35977:6;35971:13;35962:22;;35993:32;36019:5;35993:32;:::i;:::-;35890:141;;;;:::o;36037:349::-;36106:6;36155:2;36143:9;36134:7;36130:23;36126:32;36123:119;;;36161:79;;:::i;:::-;36123:119;36281:1;36306:63;36361:7;36352:6;36341:9;36337:22;36306:63;:::i;:::-;36296:73;;36252:127;36037:349;;;;:::o;36392:233::-;36431:3;36454:24;36472:5;36454:24;:::i;:::-;36445:33;;36500:66;36493:5;36490:77;36487:103;;36570:18;;:::i;:::-;36487:103;36617:1;36610:5;36606:13;36599:20;;36392:233;;;:::o;36631:176::-;36663:1;36680:20;36698:1;36680:20;:::i;:::-;36675:25;;36714:20;36732:1;36714:20;:::i;:::-;36709:25;;36753:1;36743:35;;36758:18;;:::i;:::-;36743:35;36799:1;36796;36792:9;36787:14;;36631:176;;;;:::o;36813:180::-;36861:77;36858:1;36851:88;36958:4;36955:1;36948:15;36982:4;36979:1;36972:15

Swarm Source

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