ETH Price: $3,491.10 (+2.11%)
Gas: 12 Gwei

Token

Guilty Vamps (GV)
 

Overview

Max Total Supply

168 GV

Holders

40

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
mdrfkr.eth
Balance
1 GV
0x60314c86b99a2a108e5097fc2688aa1e3c30be30
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:
GuiltyVamps

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-02
*/

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.8.0) (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() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

    function _nonReentrantAfter() private {
        // 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/Address.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/GuiltyVamps.sol


pragma solidity ^0.8.17;





contract GuiltyVamps is ERC721A, ReentrancyGuard, Ownable {

  event SetMaximumAllowedTokens(uint256 _count);
  event SetMaximumAllowedTokensPerPurchase(uint256 _count);
  event SetMaxSupply(uint256 _count);
  event SetPrice(uint256 _price);
  event SetBaseUri(string baseURI);
  event Mint(address userAddress, uint256 _count);
  
  uint256 public mintPrice = 0.069 ether;
  string _baseTokenURI;

  bool public isActive = false;

  uint256 public MAX_SUPPLY = 169;
  uint256 public maximumAllowedTokensPerPurchase = 1;
  uint256 public maximumAllowedTokensPerWallet = 1;

  constructor(string memory baseURI) ERC721A("Guilty Vamps", "GV") {
    setBaseURI(baseURI);
  }

  modifier saleIsOpen(uint256 _mintAmount) {
    uint256 currentSupply = totalSupply();

    require(currentSupply <= MAX_SUPPLY, "Sale has ended.");
    require(currentSupply + _mintAmount <= MAX_SUPPLY, "All CNR minted.");
    _;
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(tx.origin == msg.sender, "Calling from other contract is not allowed.");
    require(
      _mintAmount > 0 && numberMinted(msg.sender) + _mintAmount <= maximumAllowedTokensPerWallet,
       "Invalid mint amount or minted max amount already."
    );
    _;
  }

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

  function setMaximumAllowedTokens(uint256 _count) public onlyOwner {
    maximumAllowedTokensPerPurchase = _count;
    emit SetMaximumAllowedTokensPerPurchase(_count);
  }

  function setMaximumAllowedTokensPerWallet(uint256 _count) public onlyOwner {
    maximumAllowedTokensPerWallet = _count;
    emit SetMaximumAllowedTokens(_count);
  }

  function setMaxMintSupply(uint256 maxMintSupply) external  onlyOwner {
    MAX_SUPPLY = maxMintSupply;
    emit SetMaxSupply(maxMintSupply);
  }

  function setPrice(uint256 _price) public onlyOwner {
    mintPrice = _price;
    emit SetPrice(_price);
  }

  function toggleSaleStatus() public onlyOwner {
    isActive = !isActive;
  }

  function setBaseURI(string memory baseURI) public onlyOwner {
    _baseTokenURI = baseURI;
    emit SetBaseUri(baseURI);
  }


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

  function airdrop(uint256 _count, address _address) external onlyOwner {
    uint256 supply = totalSupply();

    require(supply + _count <= MAX_SUPPLY, "Total supply exceeded.");
    require(supply <= MAX_SUPPLY, "Total supply spent.");

    _safeMint(_address, _count);
  }

  function batchAirdrop(uint256 _count, address[] calldata addresses) external onlyOwner {
    uint256 supply = totalSupply();

    require(supply + _count <= MAX_SUPPLY, "Total supply exceeded.");
    require(supply <= MAX_SUPPLY, "Total supply spent.");

    for (uint256 i = 0; i < addresses.length; i++) {
      require(addresses[i] != address(0), "Can't add a null address");
      _safeMint(addresses[i], _count);
    }
  }

  function mint(uint256 _count) public payable mintCompliance(_count) saleIsOpen(_count) nonReentrant {
     if (msg.sender != owner()) {
      require(isActive, "Sale is not active currently.");
    }

    require( _count <= maximumAllowedTokensPerPurchase, "Exceeds maximum allowed tokens");
    require(msg.value >= (mintPrice * _count), "Insufficient ETH amount sent.");

    _safeMint(msg.sender, _count);
     emit Mint(msg.sender, _count);
  }

  function burnToken(uint256 tokenId) external onlyOwner {
      _burn(tokenId);
  }

  function batchBurn(uint256[] memory tokenIds) external onlyOwner {
        uint256 len = tokenIds.length;
        for (uint256 i; i < len; i++) {
            uint256 tokenid = tokenIds[i];
            _burn(tokenid);
        }
  }

  function withdraw() external onlyOwner nonReentrant{
    uint balance = address(this).balance;
     Address.sendValue(payable(owner()), balance);  
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"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":"userAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"_count","type":"uint256"}],"name":"Mint","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":false,"internalType":"string","name":"baseURI","type":"string"}],"name":"SetBaseUri","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_count","type":"uint256"}],"name":"SetMaxSupply","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_count","type":"uint256"}],"name":"SetMaximumAllowedTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_count","type":"uint256"}],"name":"SetMaximumAllowedTokensPerPurchase","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_price","type":"uint256"}],"name":"SetPrice","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"batchAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"batchBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burnToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumAllowedTokensPerPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumAllowedTokensPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintSupply","type":"uint256"}],"name":"setMaxMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokensPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266f5232269808000600a556000600c60006101000a81548160ff02191690831515021790555060a9600d556001600e556001600f553480156200004657600080fd5b506040516200457a3803806200457a83398181016040528101906200006c9190620004d3565b6040518060400160405280600c81526020017f4775696c74792056616d707300000000000000000000000000000000000000008152506040518060400160405280600281526020017f47560000000000000000000000000000000000000000000000000000000000008152508160029081620000e991906200076f565b508060039081620000fb91906200076f565b506200010c6200015460201b60201c565b600081905550505060016008819055506200013c620001306200015960201b60201c565b6200016160201b60201c565b6200014d816200022760201b60201c565b506200093e565b600090565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002376200028560201b60201c565b80600b90816200024891906200076f565b507fafa35f42f46f5052816d7c6a2e9406eca98294b20726677862d83b4a7418d8d5816040516200027a9190620008a8565b60405180910390a150565b620002956200015960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002bb6200031660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000314576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200030b906200091c565b60405180910390fd5b565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003a9826200035e565b810181811067ffffffffffffffff82111715620003cb57620003ca6200036f565b5b80604052505050565b6000620003e062000340565b9050620003ee82826200039e565b919050565b600067ffffffffffffffff8211156200041157620004106200036f565b5b6200041c826200035e565b9050602081019050919050565b60005b83811015620004495780820151818401526020810190506200042c565b60008484015250505050565b60006200046c6200046684620003f3565b620003d4565b9050828152602081018484840111156200048b576200048a62000359565b5b6200049884828562000429565b509392505050565b600082601f830112620004b857620004b762000354565b5b8151620004ca84826020860162000455565b91505092915050565b600060208284031215620004ec57620004eb6200034a565b5b600082015167ffffffffffffffff8111156200050d576200050c6200034f565b5b6200051b84828501620004a0565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200057757607f821691505b6020821081036200058d576200058c6200052f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005f77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005b8565b620006038683620005b8565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006506200064a62000644846200061b565b62000625565b6200061b565b9050919050565b6000819050919050565b6200066c836200062f565b620006846200067b8262000657565b848454620005c5565b825550505050565b600090565b6200069b6200068c565b620006a881848462000661565b505050565b5b81811015620006d057620006c460008262000691565b600181019050620006ae565b5050565b601f8211156200071f57620006e98162000593565b620006f484620005a8565b8101602085101562000704578190505b6200071c6200071385620005a8565b830182620006ad565b50505b505050565b600082821c905092915050565b6000620007446000198460080262000724565b1980831691505092915050565b60006200075f838362000731565b9150826002028217905092915050565b6200077a8262000524565b67ffffffffffffffff8111156200079657620007956200036f565b5b620007a282546200055e565b620007af828285620006d4565b600060209050601f831160018114620007e75760008415620007d2578287015190505b620007de858262000751565b8655506200084e565b601f198416620007f78662000593565b60005b828110156200082157848901518255600182019150602085019450602081019050620007fa565b868310156200084157848901516200083d601f89168262000731565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b6000620008748262000524565b62000880818562000856565b93506200089281856020860162000429565b6200089d816200035e565b840191505092915050565b60006020820190508181036000830152620008c4818462000867565b905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200090460208362000856565b91506200091182620008cc565b602082019050919050565b600060208201905081810360008301526200093781620008f5565b9050919050565b613c2c806200094e6000396000f3fe6080604052600436106102045760003560e01c80637389fbb711610118578063bc63f02e116100a0578063dc8e92ea1161006f578063dc8e92ea146106ea578063e985e9c514610713578063ea6eb83614610750578063f2fde38b14610779578063fb7e6ccb146107a257610204565b8063bc63f02e1461061c578063c87b56dd14610645578063cadf881814610682578063dc33e681146106ad57610204565b806395d89b41116100e757806395d89b41146105655780639a3bf72814610590578063a0712d68146105bb578063a22cb465146105d7578063b88d4fde1461060057610204565b80637389fbb7146104bf5780637b47ec1a146104e85780638da5cb5b1461051157806391b7f5ed1461053c57610204565b806332cb6b0c1161019b57806355f804b31161016a57806355f804b3146103da5780636352211e146104035780636817c76c1461044057806370a082311461046b578063715018a6146104a857610204565b806332cb6b0c146103535780633ccfd60b1461037e57806342842e0e146103955780634dfea627146103b157610204565b8063095ea7b3116101d7578063095ea7b3146102c557806318160ddd146102e157806322f3e2d41461030c57806323b872dd1461033757610204565b806301ffc9a714610209578063049c5c491461024657806306fdde031461025d578063081812fc14610288575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b919061271a565b6107cb565b60405161023d9190612762565b60405180910390f35b34801561025257600080fd5b5061025b61085d565b005b34801561026957600080fd5b50610272610891565b60405161027f919061280d565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa9190612865565b610923565b6040516102bc91906128d3565b60405180910390f35b6102df60048036038101906102da919061291a565b6109a2565b005b3480156102ed57600080fd5b506102f6610ae6565b6040516103039190612969565b60405180910390f35b34801561031857600080fd5b50610321610afd565b60405161032e9190612762565b60405180910390f35b610351600480360381019061034c9190612984565b610b10565b005b34801561035f57600080fd5b50610368610e32565b6040516103759190612969565b60405180910390f35b34801561038a57600080fd5b50610393610e38565b005b6103af60048036038101906103aa9190612984565b610e69565b005b3480156103bd57600080fd5b506103d860048036038101906103d39190612865565b610e89565b005b3480156103e657600080fd5b5061040160048036038101906103fc9190612b0c565b610ed2565b005b34801561040f57600080fd5b5061042a60048036038101906104259190612865565b610f24565b60405161043791906128d3565b60405180910390f35b34801561044c57600080fd5b50610455610f36565b6040516104629190612969565b60405180910390f35b34801561047757600080fd5b50610492600480360381019061048d9190612b55565b610f3c565b60405161049f9190612969565b60405180910390f35b3480156104b457600080fd5b506104bd610ff4565b005b3480156104cb57600080fd5b506104e660048036038101906104e19190612865565b611008565b005b3480156104f457600080fd5b5061050f600480360381019061050a9190612865565b611051565b005b34801561051d57600080fd5b50610526611065565b60405161053391906128d3565b60405180910390f35b34801561054857600080fd5b50610563600480360381019061055e9190612865565b61108f565b005b34801561057157600080fd5b5061057a6110d8565b604051610587919061280d565b60405180910390f35b34801561059c57600080fd5b506105a561116a565b6040516105b29190612969565b60405180910390f35b6105d560048036038101906105d09190612865565b611170565b005b3480156105e357600080fd5b506105fe60048036038101906105f99190612bae565b61145d565b005b61061a60048036038101906106159190612c8f565b611568565b005b34801561062857600080fd5b50610643600480360381019061063e9190612d12565b6115db565b005b34801561065157600080fd5b5061066c60048036038101906106679190612865565b611693565b604051610679919061280d565b60405180910390f35b34801561068e57600080fd5b50610697611731565b6040516106a49190612969565b60405180910390f35b3480156106b957600080fd5b506106d460048036038101906106cf9190612b55565b611737565b6040516106e19190612969565b60405180910390f35b3480156106f657600080fd5b50610711600480360381019061070c9190612e1a565b611749565b005b34801561071f57600080fd5b5061073a60048036038101906107359190612e63565b6117a3565b6040516107479190612762565b60405180910390f35b34801561075c57600080fd5b5061077760048036038101906107729190612865565b611837565b005b34801561078557600080fd5b506107a0600480360381019061079b9190612b55565b611880565b005b3480156107ae57600080fd5b506107c960048036038101906107c49190612efe565b611903565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108565750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610865611a9b565b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6060600280546108a090612f8d565b80601f01602080910402602001604051908101604052809291908181526020018280546108cc90612f8d565b80156109195780601f106108ee57610100808354040283529160200191610919565b820191906000526020600020905b8154815290600101906020018083116108fc57829003601f168201915b5050505050905090565b600061092e82611b19565b610964576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ad82610f24565b90508073ffffffffffffffffffffffffffffffffffffffff166109ce611b78565b73ffffffffffffffffffffffffffffffffffffffff1614610a31576109fa816109f5611b78565b6117a3565b610a30576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610af0611b80565b6001546000540303905090565b600c60009054906101000a900460ff1681565b6000610b1b82611b85565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b82576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b8e84611c51565b91509150610ba48187610b9f611b78565b611c78565b610bf057610bb986610bb4611b78565b6117a3565b610bef576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c56576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c638686866001611cbc565b8015610c6e57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d3c85610d18888887611cc2565b7c020000000000000000000000000000000000000000000000000000000017611cea565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610dc25760006001850190506000600460008381526020019081526020016000205403610dc0576000548114610dbf578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e2a8686866001611d15565b505050505050565b600d5481565b610e40611a9b565b610e48611d1b565b6000479050610e5e610e58611065565b82611d6a565b50610e67611e5e565b565b610e8483838360405180602001604052806000815250611568565b505050565b610e91611a9b565b80600e819055507f2721fa37346dd22e4efeccef3ba09c3a6a1ed728a25745709c850d754d1c113881604051610ec79190612969565b60405180910390a150565b610eda611a9b565b80600b9081610ee9919061316a565b507fafa35f42f46f5052816d7c6a2e9406eca98294b20726677862d83b4a7418d8d581604051610f19919061280d565b60405180910390a150565b6000610f2f82611b85565b9050919050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fa3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ffc611a9b565b6110066000611e68565b565b611010611a9b565b80600d819055507f3f8118fc46e72ecde0c5e090803cad8c88e817b2f1e93e820aa9bfbf51f2468d816040516110469190612969565b60405180910390a150565b611059611a9b565b61106281611f2e565b50565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611097611a9b565b80600a819055507f4f5539c0409dfc4cb06f64cbd31237e1fbfe443f531584bf4dd77ec7fc5ba7b1816040516110cd9190612969565b60405180910390a150565b6060600380546110e790612f8d565b80601f016020809104026020016040519081016040528092919081815260200182805461111390612f8d565b80156111605780601f1061113557610100808354040283529160200191611160565b820191906000526020600020905b81548152906001019060200180831161114357829003601f168201915b5050505050905090565b600e5481565b803373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d6906132ae565b60405180910390fd5b6000811180156112045750600f54816111f733611737565b61120191906132fd565b11155b611243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123a906133a3565b60405180910390fd5b81600061124e610ae6565b9050600d54811115611295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128c9061340f565b60405180910390fd5b600d5482826112a491906132fd565b11156112e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dc9061347b565b60405180910390fd5b6112ed611d1b565b6112f5611065565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461137757600c60009054906101000a900460ff16611376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136d906134e7565b60405180910390fd5b5b600e548411156113bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b390613553565b60405180910390fd5b83600a546113ca9190613573565b34101561140c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140390613601565b60405180910390fd5b6114163385611f3c565b7f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968853385604051611447929190613621565b60405180910390a1611457611e5e565b50505050565b806007600061146a611b78565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611517611b78565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161155c9190612762565b60405180910390a35050565b611573848484610b10565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115d55761159e84848484611f5a565b6115d4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6115e3611a9b565b60006115ed610ae6565b9050600d5483826115fe91906132fd565b111561163f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163690613696565b60405180910390fd5b600d54811115611684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167b90613702565b60405180910390fd5b61168e8284611f3c565b505050565b606061169e82611b19565b6116d4576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006116de6120aa565b905060008151036116fe5760405180602001604052806000815250611729565b806117088461213c565b60405160200161171992919061375e565b6040516020818303038152906040525b915050919050565b600f5481565b60006117428261218c565b9050919050565b611751611a9b565b60008151905060005b8181101561179e57600083828151811061177757611776613782565b5b6020026020010151905061178a81611f2e565b508080611796906137b1565b91505061175a565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61183f611a9b565b80600f819055507f71bc795b7d05fc9a5fe835ea7565de00e48de52fc5384846bc9add7a0f6b5866816040516118759190612969565b60405180910390a150565b611888611a9b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ee9061386b565b60405180910390fd5b61190081611e68565b50565b61190b611a9b565b6000611915610ae6565b9050600d54848261192691906132fd565b1115611967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195e90613696565b60405180910390fd5b600d548111156119ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a390613702565b60405180910390fd5b60005b83839050811015611a9457600073ffffffffffffffffffffffffffffffffffffffff168484838181106119e5576119e4613782565b5b90506020020160208101906119fa9190612b55565b73ffffffffffffffffffffffffffffffffffffffff1603611a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a47906138d7565b60405180910390fd5b611a81848483818110611a6657611a65613782565b5b9050602002016020810190611a7b9190612b55565b86611f3c565b8080611a8c906137b1565b9150506119af565b5050505050565b611aa36121e3565b73ffffffffffffffffffffffffffffffffffffffff16611ac1611065565b73ffffffffffffffffffffffffffffffffffffffff1614611b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0e90613943565b60405180910390fd5b565b600081611b24611b80565b11158015611b33575060005482105b8015611b71575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611b94611b80565b11611c1a57600054811015611c195760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611c17575b60008103611c0d576004600083600190039350838152602001908152602001600020549050611be3565b8092505050611c4c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611cd98686846121eb565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600260085403611d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d57906139af565b60405180910390fd5b6002600881905550565b80471015611dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da490613a1b565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611dd390613a6c565b60006040518083038185875af1925050503d8060008114611e10576040519150601f19603f3d011682016040523d82523d6000602084013e611e15565b606091505b5050905080611e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5090613af3565b60405180910390fd5b505050565b6001600881905550565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f398160006121f4565b50565b611f56828260405180602001604052806000815250612446565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f80611b78565b8786866040518563ffffffff1660e01b8152600401611fa29493929190613b68565b6020604051808303816000875af1925050508015611fde57506040513d601f19601f82011682018060405250810190611fdb9190613bc9565b60015b612057573d806000811461200e576040519150601f19603f3d011682016040523d82523d6000602084013e612013565b606091505b50600081510361204f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b80546120b990612f8d565b80601f01602080910402602001604051908101604052809291908181526020018280546120e590612f8d565b80156121325780601f1061210757610100808354040283529160200191612132565b820191906000526020600020905b81548152906001019060200180831161211557829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561217757600184039350600a81066030018453600a8104905080612155575b50828103602084039350808452505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b60009392505050565b60006121ff83611b85565b9050600081905060008061221286611c51565b91509150841561227b5761222e8184612229611b78565b611c78565b61227a576122438361223e611b78565b6117a3565b612279576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b612289836000886001611cbc565b801561229457600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061233c836122f985600088611cc2565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717611cea565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516036123c257600060018701905060006004600083815260200190815260200160002054036123c05760005481146123bf578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461242c836000886001611d15565b600160008154809291906001019190505550505050505050565b61245083836124e3565b60008373ffffffffffffffffffffffffffffffffffffffff163b146124de57600080549050600083820390505b6124906000868380600101945086611f5a565b6124c6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061247d5781600054146124db57600080fd5b50505b505050565b60008054905060008203612523576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125306000848385611cbc565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506125a7836125986000866000611cc2565b6125a18561269e565b17611cea565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461264857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061260d565b5060008203612683576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506126996000848385611d15565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6126f7816126c2565b811461270257600080fd5b50565b600081359050612714816126ee565b92915050565b6000602082840312156127305761272f6126b8565b5b600061273e84828501612705565b91505092915050565b60008115159050919050565b61275c81612747565b82525050565b60006020820190506127776000830184612753565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127b757808201518184015260208101905061279c565b60008484015250505050565b6000601f19601f8301169050919050565b60006127df8261277d565b6127e98185612788565b93506127f9818560208601612799565b612802816127c3565b840191505092915050565b6000602082019050818103600083015261282781846127d4565b905092915050565b6000819050919050565b6128428161282f565b811461284d57600080fd5b50565b60008135905061285f81612839565b92915050565b60006020828403121561287b5761287a6126b8565b5b600061288984828501612850565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128bd82612892565b9050919050565b6128cd816128b2565b82525050565b60006020820190506128e860008301846128c4565b92915050565b6128f7816128b2565b811461290257600080fd5b50565b600081359050612914816128ee565b92915050565b60008060408385031215612931576129306126b8565b5b600061293f85828601612905565b925050602061295085828601612850565b9150509250929050565b6129638161282f565b82525050565b600060208201905061297e600083018461295a565b92915050565b60008060006060848603121561299d5761299c6126b8565b5b60006129ab86828701612905565b93505060206129bc86828701612905565b92505060406129cd86828701612850565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a19826127c3565b810181811067ffffffffffffffff82111715612a3857612a376129e1565b5b80604052505050565b6000612a4b6126ae565b9050612a578282612a10565b919050565b600067ffffffffffffffff821115612a7757612a766129e1565b5b612a80826127c3565b9050602081019050919050565b82818337600083830152505050565b6000612aaf612aaa84612a5c565b612a41565b905082815260208101848484011115612acb57612aca6129dc565b5b612ad6848285612a8d565b509392505050565b600082601f830112612af357612af26129d7565b5b8135612b03848260208601612a9c565b91505092915050565b600060208284031215612b2257612b216126b8565b5b600082013567ffffffffffffffff811115612b4057612b3f6126bd565b5b612b4c84828501612ade565b91505092915050565b600060208284031215612b6b57612b6a6126b8565b5b6000612b7984828501612905565b91505092915050565b612b8b81612747565b8114612b9657600080fd5b50565b600081359050612ba881612b82565b92915050565b60008060408385031215612bc557612bc46126b8565b5b6000612bd385828601612905565b9250506020612be485828601612b99565b9150509250929050565b600067ffffffffffffffff821115612c0957612c086129e1565b5b612c12826127c3565b9050602081019050919050565b6000612c32612c2d84612bee565b612a41565b905082815260208101848484011115612c4e57612c4d6129dc565b5b612c59848285612a8d565b509392505050565b600082601f830112612c7657612c756129d7565b5b8135612c86848260208601612c1f565b91505092915050565b60008060008060808587031215612ca957612ca86126b8565b5b6000612cb787828801612905565b9450506020612cc887828801612905565b9350506040612cd987828801612850565b925050606085013567ffffffffffffffff811115612cfa57612cf96126bd565b5b612d0687828801612c61565b91505092959194509250565b60008060408385031215612d2957612d286126b8565b5b6000612d3785828601612850565b9250506020612d4885828601612905565b9150509250929050565b600067ffffffffffffffff821115612d6d57612d6c6129e1565b5b602082029050602081019050919050565b600080fd5b6000612d96612d9184612d52565b612a41565b90508083825260208201905060208402830185811115612db957612db8612d7e565b5b835b81811015612de25780612dce8882612850565b845260208401935050602081019050612dbb565b5050509392505050565b600082601f830112612e0157612e006129d7565b5b8135612e11848260208601612d83565b91505092915050565b600060208284031215612e3057612e2f6126b8565b5b600082013567ffffffffffffffff811115612e4e57612e4d6126bd565b5b612e5a84828501612dec565b91505092915050565b60008060408385031215612e7a57612e796126b8565b5b6000612e8885828601612905565b9250506020612e9985828601612905565b9150509250929050565b600080fd5b60008083601f840112612ebe57612ebd6129d7565b5b8235905067ffffffffffffffff811115612edb57612eda612ea3565b5b602083019150836020820283011115612ef757612ef6612d7e565b5b9250929050565b600080600060408486031215612f1757612f166126b8565b5b6000612f2586828701612850565b935050602084013567ffffffffffffffff811115612f4657612f456126bd565b5b612f5286828701612ea8565b92509250509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612fa557607f821691505b602082108103612fb857612fb7612f5e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026130207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612fe3565b61302a8683612fe3565b95508019841693508086168417925050509392505050565b6000819050919050565b600061306761306261305d8461282f565b613042565b61282f565b9050919050565b6000819050919050565b6130818361304c565b61309561308d8261306e565b848454612ff0565b825550505050565b600090565b6130aa61309d565b6130b5818484613078565b505050565b5b818110156130d9576130ce6000826130a2565b6001810190506130bb565b5050565b601f82111561311e576130ef81612fbe565b6130f884612fd3565b81016020851015613107578190505b61311b61311385612fd3565b8301826130ba565b50505b505050565b600082821c905092915050565b600061314160001984600802613123565b1980831691505092915050565b600061315a8383613130565b9150826002028217905092915050565b6131738261277d565b67ffffffffffffffff81111561318c5761318b6129e1565b5b6131968254612f8d565b6131a18282856130dd565b600060209050601f8311600181146131d457600084156131c2578287015190505b6131cc858261314e565b865550613234565b601f1984166131e286612fbe565b60005b8281101561320a578489015182556001820191506020850194506020810190506131e5565b868310156132275784890151613223601f891682613130565b8355505b6001600288020188555050505b505050505050565b7f43616c6c696e672066726f6d206f7468657220636f6e7472616374206973206e60008201527f6f7420616c6c6f7765642e000000000000000000000000000000000000000000602082015250565b6000613298602b83612788565b91506132a38261323c565b604082019050919050565b600060208201905081810360008301526132c78161328b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006133088261282f565b91506133138361282f565b925082820190508082111561332b5761332a6132ce565b5b92915050565b7f496e76616c6964206d696e7420616d6f756e74206f72206d696e746564206d6160008201527f7820616d6f756e7420616c72656164792e000000000000000000000000000000602082015250565b600061338d603183612788565b915061339882613331565b604082019050919050565b600060208201905081810360008301526133bc81613380565b9050919050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b60006133f9600f83612788565b9150613404826133c3565b602082019050919050565b60006020820190508181036000830152613428816133ec565b9050919050565b7f416c6c20434e52206d696e7465642e0000000000000000000000000000000000600082015250565b6000613465600f83612788565b91506134708261342f565b602082019050919050565b6000602082019050818103600083015261349481613458565b9050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b60006134d1601d83612788565b91506134dc8261349b565b602082019050919050565b60006020820190508181036000830152613500816134c4565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b600061353d601e83612788565b915061354882613507565b602082019050919050565b6000602082019050818103600083015261356c81613530565b9050919050565b600061357e8261282f565b91506135898361282f565b92508282026135978161282f565b915082820484148315176135ae576135ad6132ce565b5b5092915050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b60006135eb601d83612788565b91506135f6826135b5565b602082019050919050565b6000602082019050818103600083015261361a816135de565b9050919050565b600060408201905061363660008301856128c4565b613643602083018461295a565b9392505050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b6000613680601683612788565b915061368b8261364a565b602082019050919050565b600060208201905081810360008301526136af81613673565b9050919050565b7f546f74616c20737570706c79207370656e742e00000000000000000000000000600082015250565b60006136ec601383612788565b91506136f7826136b6565b602082019050919050565b6000602082019050818103600083015261371b816136df565b9050919050565b600081905092915050565b60006137388261277d565b6137428185613722565b9350613752818560208601612799565b80840191505092915050565b600061376a828561372d565b9150613776828461372d565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006137bc8261282f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036137ee576137ed6132ce565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613855602683612788565b9150613860826137f9565b604082019050919050565b6000602082019050818103600083015261388481613848565b9050919050565b7f43616e2774206164642061206e756c6c20616464726573730000000000000000600082015250565b60006138c1601883612788565b91506138cc8261388b565b602082019050919050565b600060208201905081810360008301526138f0816138b4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061392d602083612788565b9150613938826138f7565b602082019050919050565b6000602082019050818103600083015261395c81613920565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613999601f83612788565b91506139a482613963565b602082019050919050565b600060208201905081810360008301526139c88161398c565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613a05601d83612788565b9150613a10826139cf565b602082019050919050565b60006020820190508181036000830152613a34816139f8565b9050919050565b600081905092915050565b50565b6000613a56600083613a3b565b9150613a6182613a46565b600082019050919050565b6000613a7782613a49565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613add603a83612788565b9150613ae882613a81565b604082019050919050565b60006020820190508181036000830152613b0c81613ad0565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613b3a82613b13565b613b448185613b1e565b9350613b54818560208601612799565b613b5d816127c3565b840191505092915050565b6000608082019050613b7d60008301876128c4565b613b8a60208301866128c4565b613b97604083018561295a565b8181036060830152613ba98184613b2f565b905095945050505050565b600081519050613bc3816126ee565b92915050565b600060208284031215613bdf57613bde6126b8565b5b6000613bed84828501613bb4565b9150509291505056fea2646970667358221220f03f248f8f354ed93246601a4d625975e8c2855a4149796ea7ce9dbdc1529f7364736f6c634300081100330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d4e564e77676e7a4277356d38596d73726e767550556854334c57454e44713737653852756f63585a4c43444c2f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c80637389fbb711610118578063bc63f02e116100a0578063dc8e92ea1161006f578063dc8e92ea146106ea578063e985e9c514610713578063ea6eb83614610750578063f2fde38b14610779578063fb7e6ccb146107a257610204565b8063bc63f02e1461061c578063c87b56dd14610645578063cadf881814610682578063dc33e681146106ad57610204565b806395d89b41116100e757806395d89b41146105655780639a3bf72814610590578063a0712d68146105bb578063a22cb465146105d7578063b88d4fde1461060057610204565b80637389fbb7146104bf5780637b47ec1a146104e85780638da5cb5b1461051157806391b7f5ed1461053c57610204565b806332cb6b0c1161019b57806355f804b31161016a57806355f804b3146103da5780636352211e146104035780636817c76c1461044057806370a082311461046b578063715018a6146104a857610204565b806332cb6b0c146103535780633ccfd60b1461037e57806342842e0e146103955780634dfea627146103b157610204565b8063095ea7b3116101d7578063095ea7b3146102c557806318160ddd146102e157806322f3e2d41461030c57806323b872dd1461033757610204565b806301ffc9a714610209578063049c5c491461024657806306fdde031461025d578063081812fc14610288575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b919061271a565b6107cb565b60405161023d9190612762565b60405180910390f35b34801561025257600080fd5b5061025b61085d565b005b34801561026957600080fd5b50610272610891565b60405161027f919061280d565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa9190612865565b610923565b6040516102bc91906128d3565b60405180910390f35b6102df60048036038101906102da919061291a565b6109a2565b005b3480156102ed57600080fd5b506102f6610ae6565b6040516103039190612969565b60405180910390f35b34801561031857600080fd5b50610321610afd565b60405161032e9190612762565b60405180910390f35b610351600480360381019061034c9190612984565b610b10565b005b34801561035f57600080fd5b50610368610e32565b6040516103759190612969565b60405180910390f35b34801561038a57600080fd5b50610393610e38565b005b6103af60048036038101906103aa9190612984565b610e69565b005b3480156103bd57600080fd5b506103d860048036038101906103d39190612865565b610e89565b005b3480156103e657600080fd5b5061040160048036038101906103fc9190612b0c565b610ed2565b005b34801561040f57600080fd5b5061042a60048036038101906104259190612865565b610f24565b60405161043791906128d3565b60405180910390f35b34801561044c57600080fd5b50610455610f36565b6040516104629190612969565b60405180910390f35b34801561047757600080fd5b50610492600480360381019061048d9190612b55565b610f3c565b60405161049f9190612969565b60405180910390f35b3480156104b457600080fd5b506104bd610ff4565b005b3480156104cb57600080fd5b506104e660048036038101906104e19190612865565b611008565b005b3480156104f457600080fd5b5061050f600480360381019061050a9190612865565b611051565b005b34801561051d57600080fd5b50610526611065565b60405161053391906128d3565b60405180910390f35b34801561054857600080fd5b50610563600480360381019061055e9190612865565b61108f565b005b34801561057157600080fd5b5061057a6110d8565b604051610587919061280d565b60405180910390f35b34801561059c57600080fd5b506105a561116a565b6040516105b29190612969565b60405180910390f35b6105d560048036038101906105d09190612865565b611170565b005b3480156105e357600080fd5b506105fe60048036038101906105f99190612bae565b61145d565b005b61061a60048036038101906106159190612c8f565b611568565b005b34801561062857600080fd5b50610643600480360381019061063e9190612d12565b6115db565b005b34801561065157600080fd5b5061066c60048036038101906106679190612865565b611693565b604051610679919061280d565b60405180910390f35b34801561068e57600080fd5b50610697611731565b6040516106a49190612969565b60405180910390f35b3480156106b957600080fd5b506106d460048036038101906106cf9190612b55565b611737565b6040516106e19190612969565b60405180910390f35b3480156106f657600080fd5b50610711600480360381019061070c9190612e1a565b611749565b005b34801561071f57600080fd5b5061073a60048036038101906107359190612e63565b6117a3565b6040516107479190612762565b60405180910390f35b34801561075c57600080fd5b5061077760048036038101906107729190612865565b611837565b005b34801561078557600080fd5b506107a0600480360381019061079b9190612b55565b611880565b005b3480156107ae57600080fd5b506107c960048036038101906107c49190612efe565b611903565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108565750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610865611a9b565b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6060600280546108a090612f8d565b80601f01602080910402602001604051908101604052809291908181526020018280546108cc90612f8d565b80156109195780601f106108ee57610100808354040283529160200191610919565b820191906000526020600020905b8154815290600101906020018083116108fc57829003601f168201915b5050505050905090565b600061092e82611b19565b610964576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ad82610f24565b90508073ffffffffffffffffffffffffffffffffffffffff166109ce611b78565b73ffffffffffffffffffffffffffffffffffffffff1614610a31576109fa816109f5611b78565b6117a3565b610a30576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610af0611b80565b6001546000540303905090565b600c60009054906101000a900460ff1681565b6000610b1b82611b85565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b82576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b8e84611c51565b91509150610ba48187610b9f611b78565b611c78565b610bf057610bb986610bb4611b78565b6117a3565b610bef576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c56576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c638686866001611cbc565b8015610c6e57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d3c85610d18888887611cc2565b7c020000000000000000000000000000000000000000000000000000000017611cea565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610dc25760006001850190506000600460008381526020019081526020016000205403610dc0576000548114610dbf578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e2a8686866001611d15565b505050505050565b600d5481565b610e40611a9b565b610e48611d1b565b6000479050610e5e610e58611065565b82611d6a565b50610e67611e5e565b565b610e8483838360405180602001604052806000815250611568565b505050565b610e91611a9b565b80600e819055507f2721fa37346dd22e4efeccef3ba09c3a6a1ed728a25745709c850d754d1c113881604051610ec79190612969565b60405180910390a150565b610eda611a9b565b80600b9081610ee9919061316a565b507fafa35f42f46f5052816d7c6a2e9406eca98294b20726677862d83b4a7418d8d581604051610f19919061280d565b60405180910390a150565b6000610f2f82611b85565b9050919050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fa3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ffc611a9b565b6110066000611e68565b565b611010611a9b565b80600d819055507f3f8118fc46e72ecde0c5e090803cad8c88e817b2f1e93e820aa9bfbf51f2468d816040516110469190612969565b60405180910390a150565b611059611a9b565b61106281611f2e565b50565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611097611a9b565b80600a819055507f4f5539c0409dfc4cb06f64cbd31237e1fbfe443f531584bf4dd77ec7fc5ba7b1816040516110cd9190612969565b60405180910390a150565b6060600380546110e790612f8d565b80601f016020809104026020016040519081016040528092919081815260200182805461111390612f8d565b80156111605780601f1061113557610100808354040283529160200191611160565b820191906000526020600020905b81548152906001019060200180831161114357829003601f168201915b5050505050905090565b600e5481565b803373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d6906132ae565b60405180910390fd5b6000811180156112045750600f54816111f733611737565b61120191906132fd565b11155b611243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123a906133a3565b60405180910390fd5b81600061124e610ae6565b9050600d54811115611295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128c9061340f565b60405180910390fd5b600d5482826112a491906132fd565b11156112e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dc9061347b565b60405180910390fd5b6112ed611d1b565b6112f5611065565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461137757600c60009054906101000a900460ff16611376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136d906134e7565b60405180910390fd5b5b600e548411156113bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b390613553565b60405180910390fd5b83600a546113ca9190613573565b34101561140c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140390613601565b60405180910390fd5b6114163385611f3c565b7f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968853385604051611447929190613621565b60405180910390a1611457611e5e565b50505050565b806007600061146a611b78565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611517611b78565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161155c9190612762565b60405180910390a35050565b611573848484610b10565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115d55761159e84848484611f5a565b6115d4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6115e3611a9b565b60006115ed610ae6565b9050600d5483826115fe91906132fd565b111561163f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163690613696565b60405180910390fd5b600d54811115611684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167b90613702565b60405180910390fd5b61168e8284611f3c565b505050565b606061169e82611b19565b6116d4576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006116de6120aa565b905060008151036116fe5760405180602001604052806000815250611729565b806117088461213c565b60405160200161171992919061375e565b6040516020818303038152906040525b915050919050565b600f5481565b60006117428261218c565b9050919050565b611751611a9b565b60008151905060005b8181101561179e57600083828151811061177757611776613782565b5b6020026020010151905061178a81611f2e565b508080611796906137b1565b91505061175a565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61183f611a9b565b80600f819055507f71bc795b7d05fc9a5fe835ea7565de00e48de52fc5384846bc9add7a0f6b5866816040516118759190612969565b60405180910390a150565b611888611a9b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ee9061386b565b60405180910390fd5b61190081611e68565b50565b61190b611a9b565b6000611915610ae6565b9050600d54848261192691906132fd565b1115611967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195e90613696565b60405180910390fd5b600d548111156119ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a390613702565b60405180910390fd5b60005b83839050811015611a9457600073ffffffffffffffffffffffffffffffffffffffff168484838181106119e5576119e4613782565b5b90506020020160208101906119fa9190612b55565b73ffffffffffffffffffffffffffffffffffffffff1603611a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a47906138d7565b60405180910390fd5b611a81848483818110611a6657611a65613782565b5b9050602002016020810190611a7b9190612b55565b86611f3c565b8080611a8c906137b1565b9150506119af565b5050505050565b611aa36121e3565b73ffffffffffffffffffffffffffffffffffffffff16611ac1611065565b73ffffffffffffffffffffffffffffffffffffffff1614611b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0e90613943565b60405180910390fd5b565b600081611b24611b80565b11158015611b33575060005482105b8015611b71575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611b94611b80565b11611c1a57600054811015611c195760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611c17575b60008103611c0d576004600083600190039350838152602001908152602001600020549050611be3565b8092505050611c4c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611cd98686846121eb565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600260085403611d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d57906139af565b60405180910390fd5b6002600881905550565b80471015611dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da490613a1b565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611dd390613a6c565b60006040518083038185875af1925050503d8060008114611e10576040519150601f19603f3d011682016040523d82523d6000602084013e611e15565b606091505b5050905080611e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5090613af3565b60405180910390fd5b505050565b6001600881905550565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f398160006121f4565b50565b611f56828260405180602001604052806000815250612446565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f80611b78565b8786866040518563ffffffff1660e01b8152600401611fa29493929190613b68565b6020604051808303816000875af1925050508015611fde57506040513d601f19601f82011682018060405250810190611fdb9190613bc9565b60015b612057573d806000811461200e576040519150601f19603f3d011682016040523d82523d6000602084013e612013565b606091505b50600081510361204f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b80546120b990612f8d565b80601f01602080910402602001604051908101604052809291908181526020018280546120e590612f8d565b80156121325780601f1061210757610100808354040283529160200191612132565b820191906000526020600020905b81548152906001019060200180831161211557829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561217757600184039350600a81066030018453600a8104905080612155575b50828103602084039350808452505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b60009392505050565b60006121ff83611b85565b9050600081905060008061221286611c51565b91509150841561227b5761222e8184612229611b78565b611c78565b61227a576122438361223e611b78565b6117a3565b612279576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b612289836000886001611cbc565b801561229457600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061233c836122f985600088611cc2565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717611cea565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516036123c257600060018701905060006004600083815260200190815260200160002054036123c05760005481146123bf578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461242c836000886001611d15565b600160008154809291906001019190505550505050505050565b61245083836124e3565b60008373ffffffffffffffffffffffffffffffffffffffff163b146124de57600080549050600083820390505b6124906000868380600101945086611f5a565b6124c6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061247d5781600054146124db57600080fd5b50505b505050565b60008054905060008203612523576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125306000848385611cbc565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506125a7836125986000866000611cc2565b6125a18561269e565b17611cea565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461264857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061260d565b5060008203612683576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506126996000848385611d15565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6126f7816126c2565b811461270257600080fd5b50565b600081359050612714816126ee565b92915050565b6000602082840312156127305761272f6126b8565b5b600061273e84828501612705565b91505092915050565b60008115159050919050565b61275c81612747565b82525050565b60006020820190506127776000830184612753565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127b757808201518184015260208101905061279c565b60008484015250505050565b6000601f19601f8301169050919050565b60006127df8261277d565b6127e98185612788565b93506127f9818560208601612799565b612802816127c3565b840191505092915050565b6000602082019050818103600083015261282781846127d4565b905092915050565b6000819050919050565b6128428161282f565b811461284d57600080fd5b50565b60008135905061285f81612839565b92915050565b60006020828403121561287b5761287a6126b8565b5b600061288984828501612850565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128bd82612892565b9050919050565b6128cd816128b2565b82525050565b60006020820190506128e860008301846128c4565b92915050565b6128f7816128b2565b811461290257600080fd5b50565b600081359050612914816128ee565b92915050565b60008060408385031215612931576129306126b8565b5b600061293f85828601612905565b925050602061295085828601612850565b9150509250929050565b6129638161282f565b82525050565b600060208201905061297e600083018461295a565b92915050565b60008060006060848603121561299d5761299c6126b8565b5b60006129ab86828701612905565b93505060206129bc86828701612905565b92505060406129cd86828701612850565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a19826127c3565b810181811067ffffffffffffffff82111715612a3857612a376129e1565b5b80604052505050565b6000612a4b6126ae565b9050612a578282612a10565b919050565b600067ffffffffffffffff821115612a7757612a766129e1565b5b612a80826127c3565b9050602081019050919050565b82818337600083830152505050565b6000612aaf612aaa84612a5c565b612a41565b905082815260208101848484011115612acb57612aca6129dc565b5b612ad6848285612a8d565b509392505050565b600082601f830112612af357612af26129d7565b5b8135612b03848260208601612a9c565b91505092915050565b600060208284031215612b2257612b216126b8565b5b600082013567ffffffffffffffff811115612b4057612b3f6126bd565b5b612b4c84828501612ade565b91505092915050565b600060208284031215612b6b57612b6a6126b8565b5b6000612b7984828501612905565b91505092915050565b612b8b81612747565b8114612b9657600080fd5b50565b600081359050612ba881612b82565b92915050565b60008060408385031215612bc557612bc46126b8565b5b6000612bd385828601612905565b9250506020612be485828601612b99565b9150509250929050565b600067ffffffffffffffff821115612c0957612c086129e1565b5b612c12826127c3565b9050602081019050919050565b6000612c32612c2d84612bee565b612a41565b905082815260208101848484011115612c4e57612c4d6129dc565b5b612c59848285612a8d565b509392505050565b600082601f830112612c7657612c756129d7565b5b8135612c86848260208601612c1f565b91505092915050565b60008060008060808587031215612ca957612ca86126b8565b5b6000612cb787828801612905565b9450506020612cc887828801612905565b9350506040612cd987828801612850565b925050606085013567ffffffffffffffff811115612cfa57612cf96126bd565b5b612d0687828801612c61565b91505092959194509250565b60008060408385031215612d2957612d286126b8565b5b6000612d3785828601612850565b9250506020612d4885828601612905565b9150509250929050565b600067ffffffffffffffff821115612d6d57612d6c6129e1565b5b602082029050602081019050919050565b600080fd5b6000612d96612d9184612d52565b612a41565b90508083825260208201905060208402830185811115612db957612db8612d7e565b5b835b81811015612de25780612dce8882612850565b845260208401935050602081019050612dbb565b5050509392505050565b600082601f830112612e0157612e006129d7565b5b8135612e11848260208601612d83565b91505092915050565b600060208284031215612e3057612e2f6126b8565b5b600082013567ffffffffffffffff811115612e4e57612e4d6126bd565b5b612e5a84828501612dec565b91505092915050565b60008060408385031215612e7a57612e796126b8565b5b6000612e8885828601612905565b9250506020612e9985828601612905565b9150509250929050565b600080fd5b60008083601f840112612ebe57612ebd6129d7565b5b8235905067ffffffffffffffff811115612edb57612eda612ea3565b5b602083019150836020820283011115612ef757612ef6612d7e565b5b9250929050565b600080600060408486031215612f1757612f166126b8565b5b6000612f2586828701612850565b935050602084013567ffffffffffffffff811115612f4657612f456126bd565b5b612f5286828701612ea8565b92509250509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612fa557607f821691505b602082108103612fb857612fb7612f5e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026130207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612fe3565b61302a8683612fe3565b95508019841693508086168417925050509392505050565b6000819050919050565b600061306761306261305d8461282f565b613042565b61282f565b9050919050565b6000819050919050565b6130818361304c565b61309561308d8261306e565b848454612ff0565b825550505050565b600090565b6130aa61309d565b6130b5818484613078565b505050565b5b818110156130d9576130ce6000826130a2565b6001810190506130bb565b5050565b601f82111561311e576130ef81612fbe565b6130f884612fd3565b81016020851015613107578190505b61311b61311385612fd3565b8301826130ba565b50505b505050565b600082821c905092915050565b600061314160001984600802613123565b1980831691505092915050565b600061315a8383613130565b9150826002028217905092915050565b6131738261277d565b67ffffffffffffffff81111561318c5761318b6129e1565b5b6131968254612f8d565b6131a18282856130dd565b600060209050601f8311600181146131d457600084156131c2578287015190505b6131cc858261314e565b865550613234565b601f1984166131e286612fbe565b60005b8281101561320a578489015182556001820191506020850194506020810190506131e5565b868310156132275784890151613223601f891682613130565b8355505b6001600288020188555050505b505050505050565b7f43616c6c696e672066726f6d206f7468657220636f6e7472616374206973206e60008201527f6f7420616c6c6f7765642e000000000000000000000000000000000000000000602082015250565b6000613298602b83612788565b91506132a38261323c565b604082019050919050565b600060208201905081810360008301526132c78161328b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006133088261282f565b91506133138361282f565b925082820190508082111561332b5761332a6132ce565b5b92915050565b7f496e76616c6964206d696e7420616d6f756e74206f72206d696e746564206d6160008201527f7820616d6f756e7420616c72656164792e000000000000000000000000000000602082015250565b600061338d603183612788565b915061339882613331565b604082019050919050565b600060208201905081810360008301526133bc81613380565b9050919050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b60006133f9600f83612788565b9150613404826133c3565b602082019050919050565b60006020820190508181036000830152613428816133ec565b9050919050565b7f416c6c20434e52206d696e7465642e0000000000000000000000000000000000600082015250565b6000613465600f83612788565b91506134708261342f565b602082019050919050565b6000602082019050818103600083015261349481613458565b9050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b60006134d1601d83612788565b91506134dc8261349b565b602082019050919050565b60006020820190508181036000830152613500816134c4565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b600061353d601e83612788565b915061354882613507565b602082019050919050565b6000602082019050818103600083015261356c81613530565b9050919050565b600061357e8261282f565b91506135898361282f565b92508282026135978161282f565b915082820484148315176135ae576135ad6132ce565b5b5092915050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b60006135eb601d83612788565b91506135f6826135b5565b602082019050919050565b6000602082019050818103600083015261361a816135de565b9050919050565b600060408201905061363660008301856128c4565b613643602083018461295a565b9392505050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b6000613680601683612788565b915061368b8261364a565b602082019050919050565b600060208201905081810360008301526136af81613673565b9050919050565b7f546f74616c20737570706c79207370656e742e00000000000000000000000000600082015250565b60006136ec601383612788565b91506136f7826136b6565b602082019050919050565b6000602082019050818103600083015261371b816136df565b9050919050565b600081905092915050565b60006137388261277d565b6137428185613722565b9350613752818560208601612799565b80840191505092915050565b600061376a828561372d565b9150613776828461372d565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006137bc8261282f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036137ee576137ed6132ce565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613855602683612788565b9150613860826137f9565b604082019050919050565b6000602082019050818103600083015261388481613848565b9050919050565b7f43616e2774206164642061206e756c6c20616464726573730000000000000000600082015250565b60006138c1601883612788565b91506138cc8261388b565b602082019050919050565b600060208201905081810360008301526138f0816138b4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061392d602083612788565b9150613938826138f7565b602082019050919050565b6000602082019050818103600083015261395c81613920565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613999601f83612788565b91506139a482613963565b602082019050919050565b600060208201905081810360008301526139c88161398c565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613a05601d83612788565b9150613a10826139cf565b602082019050919050565b60006020820190508181036000830152613a34816139f8565b9050919050565b600081905092915050565b50565b6000613a56600083613a3b565b9150613a6182613a46565b600082019050919050565b6000613a7782613a49565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613add603a83612788565b9150613ae882613a81565b604082019050919050565b60006020820190508181036000830152613b0c81613ad0565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613b3a82613b13565b613b448185613b1e565b9350613b54818560208601612799565b613b5d816127c3565b840191505092915050565b6000608082019050613b7d60008301876128c4565b613b8a60208301866128c4565b613b97604083018561295a565b8181036060830152613ba98184613b2f565b905095945050505050565b600081519050613bc3816126ee565b92915050565b600060208284031215613bdf57613bde6126b8565b5b6000613bed84828501613bb4565b9150509291505056fea2646970667358221220f03f248f8f354ed93246601a4d625975e8c2855a4149796ea7ce9dbdc1529f7364736f6c63430008110033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d4e564e77676e7a4277356d38596d73726e767550556854334c57454e44713737653852756f63585a4c43444c2f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://gateway.pinata.cloud/ipfs/QmNVNwgnzBw5m8YmsrnvuPUhT3LWENDq77e8RuocXZLCDL/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d4e564e77676e7a4277356d38596d73726e767550556854334c57454e
Arg [4] : 44713737653852756f63585a4c43444c2f000000000000000000000000000000


Deployed Bytecode Sourcemap

67478:4026:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34371:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69488:78;;;;;;;;;;;;;:::i;:::-;;35273:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41764:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41197:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31024:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67891:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45403:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67926:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71347:154;;;;;;;;;;;;;:::i;:::-;;48324:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68865:173;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69572:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36666:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67821:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32208:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15150:103;;;;;;;;;;;;;:::i;:::-;;69219:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71015:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14502:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69372:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35449:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67962:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70551:458;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42322:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49115:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69821:281;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35659:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68017:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68752:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71105:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42713:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69044:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15408:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70108:437;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34371:639;34456:4;34795:10;34780:25;;:11;:25;;;;:102;;;;34872:10;34857:25;;:11;:25;;;;34780:102;:179;;;;34949:10;34934:25;;:11;:25;;;;34780:179;34760:199;;34371:639;;;:::o;69488:78::-;14388:13;:11;:13::i;:::-;69552:8:::1;;;;;;;;;;;69551:9;69540:8;;:20;;;;;;;;;;;;;;;;;;69488:78::o:0;35273:100::-;35327:13;35360:5;35353:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35273:100;:::o;41764:218::-;41840:7;41865:16;41873:7;41865;:16::i;:::-;41860:64;;41890:34;;;;;;;;;;;;;;41860:64;41944:15;:24;41960:7;41944:24;;;;;;;;;;;:30;;;;;;;;;;;;41937:37;;41764:218;;;:::o;41197:408::-;41286:13;41302:16;41310:7;41302;:16::i;:::-;41286:32;;41358:5;41335:28;;:19;:17;:19::i;:::-;:28;;;41331:175;;41383:44;41400:5;41407:19;:17;:19::i;:::-;41383:16;:44::i;:::-;41378:128;;41455:35;;;;;;;;;;;;;;41378:128;41331:175;41551:2;41518:15;:24;41534:7;41518:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;41589:7;41585:2;41569:28;;41578:5;41569:28;;;;;;;;;;;;41275:330;41197:408;;:::o;31024:323::-;31085:7;31313:15;:13;:15::i;:::-;31298:12;;31282:13;;:28;:46;31275:53;;31024:323;:::o;67891:28::-;;;;;;;;;;;;;:::o;45403:2825::-;45545:27;45575;45594:7;45575:18;:27::i;:::-;45545:57;;45660:4;45619:45;;45635:19;45619:45;;;45615:86;;45673:28;;;;;;;;;;;;;;45615:86;45715:27;45744:23;45771:35;45798:7;45771:26;:35::i;:::-;45714:92;;;;45906:68;45931:15;45948:4;45954:19;:17;:19::i;:::-;45906:24;:68::i;:::-;45901:180;;45994:43;46011:4;46017:19;:17;:19::i;:::-;45994:16;:43::i;:::-;45989:92;;46046:35;;;;;;;;;;;;;;45989:92;45901:180;46112:1;46098:16;;:2;:16;;;46094:52;;46123:23;;;;;;;;;;;;;;46094:52;46159:43;46181:4;46187:2;46191:7;46200:1;46159:21;:43::i;:::-;46295:15;46292:160;;;46435:1;46414:19;46407:30;46292:160;46832:18;:24;46851:4;46832:24;;;;;;;;;;;;;;;;46830:26;;;;;;;;;;;;46901:18;:22;46920:2;46901:22;;;;;;;;;;;;;;;;46899:24;;;;;;;;;;;47223:146;47260:2;47309:45;47324:4;47330:2;47334:19;47309:14;:45::i;:::-;27423:8;47281:73;47223:18;:146::i;:::-;47194:17;:26;47212:7;47194:26;;;;;;;;;;;:175;;;;47540:1;27423:8;47489:19;:47;:52;47485:627;;47562:19;47594:1;47584:7;:11;47562:33;;47751:1;47717:17;:30;47735:11;47717:30;;;;;;;;;;;;:35;47713:384;;47855:13;;47840:11;:28;47836:242;;48035:19;48002:17;:30;48020:11;48002:30;;;;;;;;;;;:52;;;;47836:242;47713:384;47543:569;47485:627;48159:7;48155:2;48140:27;;48149:4;48140:27;;;;;;;;;;;;48178:42;48199:4;48205:2;48209:7;48218:1;48178:20;:42::i;:::-;45534:2694;;;45403:2825;;;:::o;67926:31::-;;;;:::o;71347:154::-;14388:13;:11;:13::i;:::-;2345:21:::1;:19;:21::i;:::-;71405:12:::2;71420:21;71405:36;;71449:44;71475:7;:5;:7::i;:::-;71485;71449:17;:44::i;:::-;71398:103;2389:20:::1;:18;:20::i;:::-;71347:154::o:0;48324:193::-;48470:39;48487:4;48493:2;48497:7;48470:39;;;;;;;;;;;;:16;:39::i;:::-;48324:193;;;:::o;68865:173::-;14388:13;:11;:13::i;:::-;68972:6:::1;68938:31;:40;;;;68990:42;69025:6;68990:42;;;;;;:::i;:::-;;;;;;;;68865:173:::0;:::o;69572:127::-;14388:13;:11;:13::i;:::-;69655:7:::1;69639:13;:23;;;;;;:::i;:::-;;69674:19;69685:7;69674:19;;;;;;:::i;:::-;;;;;;;;69572:127:::0;:::o;36666:152::-;36738:7;36781:27;36800:7;36781:18;:27::i;:::-;36758:52;;36666:152;;;:::o;67821:38::-;;;;:::o;32208:233::-;32280:7;32321:1;32304:19;;:5;:19;;;32300:60;;32332:28;;;;;;;;;;;;;;32300:60;26367:13;32378:18;:25;32397:5;32378:25;;;;;;;;;;;;;;;;:55;32371:62;;32208:233;;;:::o;15150:103::-;14388:13;:11;:13::i;:::-;15215:30:::1;15242:1;15215:18;:30::i;:::-;15150:103::o:0;69219:147::-;14388:13;:11;:13::i;:::-;69308::::1;69295:10;:26;;;;69333:27;69346:13;69333:27;;;;;;:::i;:::-;;;;;;;;69219:147:::0;:::o;71015:84::-;14388:13;:11;:13::i;:::-;71079:14:::1;71085:7;71079:5;:14::i;:::-;71015:84:::0;:::o;14502:87::-;14548:7;14575:6;;;;;;;;;;;14568:13;;14502:87;:::o;69372:110::-;14388:13;:11;:13::i;:::-;69442:6:::1;69430:9;:18;;;;69460:16;69469:6;69460:16;;;;;;:::i;:::-;;;;;;;;69372:110:::0;:::o;35449:104::-;35505:13;35538:7;35531:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35449:104;:::o;67962:50::-;;;;:::o;70551:458::-;70611:6;68493:10;68480:23;;:9;:23;;;68472:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;68588:1;68574:11;:15;:90;;;;;68635:29;;68620:11;68593:24;68606:10;68593:12;:24::i;:::-;:38;;;;:::i;:::-;:71;;68574:90;68558:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;70630:6:::1;68223:21;68247:13;:11;:13::i;:::-;68223:37;;68294:10;;68277:13;:27;;68269:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;68370:10;;68355:11;68339:13;:27;;;;:::i;:::-;:41;;68331:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;2345:21:::2;:19;:21::i;:::-;70677:7:::3;:5;:7::i;:::-;70663:21;;:10;:21;;;70659:94;;70703:8;;;;;;;;;;;70695:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;70659:94;70780:31;;70770:6;:41;;70761:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;70887:6;70875:9;;:18;;;;:::i;:::-;70861:9;:33;;70853:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;70937:29;70947:10;70959:6;70937:9;:29::i;:::-;70979:24;70984:10;70996:6;70979:24;;;;;;;:::i;:::-;;;;;;;;2389:20:::2;:18;:20::i;:::-;68216:198:::1;68739:1;70551:458:::0;;:::o;42322:234::-;42469:8;42417:18;:39;42436:19;:17;:19::i;:::-;42417:39;;;;;;;;;;;;;;;:49;42457:8;42417:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;42529:8;42493:55;;42508:19;:17;:19::i;:::-;42493:55;;;42539:8;42493:55;;;;;;:::i;:::-;;;;;;;;42322:234;;:::o;49115:407::-;49290:31;49303:4;49309:2;49313:7;49290:12;:31::i;:::-;49354:1;49336:2;:14;;;:19;49332:183;;49375:56;49406:4;49412:2;49416:7;49425:5;49375:30;:56::i;:::-;49370:145;;49459:40;;;;;;;;;;;;;;49370:145;49332:183;49115:407;;;;:::o;69821:281::-;14388:13;:11;:13::i;:::-;69898:14:::1;69915:13;:11;:13::i;:::-;69898:30;;69964:10;;69954:6;69945;:15;;;;:::i;:::-;:29;;69937:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;70026:10;;70016:6;:20;;70008:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;70069:27;70079:8;70089:6;70069:9;:27::i;:::-;69891:211;69821:281:::0;;:::o;35659:318::-;35732:13;35763:16;35771:7;35763;:16::i;:::-;35758:59;;35788:29;;;;;;;;;;;;;;35758:59;35830:21;35854:10;:8;:10::i;:::-;35830:34;;35907:1;35888:7;35882:21;:26;:87;;;;;;;;;;;;;;;;;35935:7;35944:18;35954:7;35944:9;:18::i;:::-;35918:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35882:87;35875:94;;;35659:318;;;:::o;68017:48::-;;;;:::o;68752:107::-;68810:7;68833:20;68847:5;68833:13;:20::i;:::-;68826:27;;68752:107;;;:::o;71105:236::-;14388:13;:11;:13::i;:::-;71181:11:::1;71195:8;:15;71181:29;;71226:9;71221:115;71241:3;71237:1;:7;71221:115;;;71266:15;71284:8;71293:1;71284:11;;;;;;;;:::i;:::-;;;;;;;;71266:29;;71310:14;71316:7;71310:5;:14::i;:::-;71251:85;71246:3;;;;;:::i;:::-;;;;71221:115;;;;71170:171;71105:236:::0;:::o;42713:164::-;42810:4;42834:18;:25;42853:5;42834:25;;;;;;;;;;;;;;;:35;42860:8;42834:35;;;;;;;;;;;;;;;;;;;;;;;;;42827:42;;42713:164;;;;:::o;69044:169::-;14388:13;:11;:13::i;:::-;69158:6:::1;69126:29;:38;;;;69176:31;69200:6;69176:31;;;;;;:::i;:::-;;;;;;;;69044:169:::0;:::o;15408:201::-;14388:13;:11;:13::i;:::-;15517:1:::1;15497:22;;:8;:22;;::::0;15489:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;15573:28;15592:8;15573:18;:28::i;:::-;15408:201:::0;:::o;70108:437::-;14388:13;:11;:13::i;:::-;70202:14:::1;70219:13;:11;:13::i;:::-;70202:30;;70268:10;;70258:6;70249;:15;;;;:::i;:::-;:29;;70241:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;70330:10;;70320:6;:20;;70312:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;70378:9;70373:167;70397:9;;:16;;70393:1;:20;70373:167;;;70461:1;70437:26;;:9;;70447:1;70437:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;:26;;::::0;70429:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;70501:31;70511:9;;70521:1;70511:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;70525:6;70501:9;:31::i;:::-;70415:3;;;;;:::i;:::-;;;;70373:167;;;;70195:350;70108:437:::0;;;:::o;14667:132::-;14742:12;:10;:12::i;:::-;14731:23;;:7;:5;:7::i;:::-;:23;;;14723:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14667:132::o;43135:282::-;43200:4;43256:7;43237:15;:13;:15::i;:::-;:26;;:66;;;;;43290:13;;43280:7;:23;43237:66;:153;;;;;43389:1;27143:8;43341:17;:26;43359:7;43341:26;;;;;;;;;;;;:44;:49;43237:153;43217:173;;43135:282;;;:::o;65443:105::-;65503:7;65530:10;65523:17;;65443:105;:::o;30540:92::-;30596:7;30540:92;:::o;37821:1275::-;37888:7;37908:12;37923:7;37908:22;;37991:4;37972:15;:13;:15::i;:::-;:23;37968:1061;;38025:13;;38018:4;:20;38014:1015;;;38063:14;38080:17;:23;38098:4;38080:23;;;;;;;;;;;;38063:40;;38197:1;27143:8;38169:6;:24;:29;38165:845;;38834:113;38851:1;38841:6;:11;38834:113;;38894:17;:25;38912:6;;;;;;;38894:25;;;;;;;;;;;;38885:34;;38834:113;;;38980:6;38973:13;;;;;;38165:845;38040:989;38014:1015;37968:1061;39057:31;;;;;;;;;;;;;;37821:1275;;;;:::o;44298:485::-;44400:27;44429:23;44470:38;44511:15;:24;44527:7;44511:24;;;;;;;;;;;44470:65;;44688:18;44665:41;;44745:19;44739:26;44720:45;;44650:126;44298:485;;;:::o;43526:659::-;43675:11;43840:16;43833:5;43829:28;43820:37;;44000:16;43989:9;43985:32;43972:45;;44150:15;44139:9;44136:30;44128:5;44117:9;44114:20;44111:56;44101:66;;43526:659;;;;;:::o;50184:159::-;;;;;:::o;64752:311::-;64887:7;64907:16;27547:3;64933:19;:41;;64907:68;;27547:3;65001:31;65012:4;65018:2;65022:9;65001:10;:31::i;:::-;64993:40;;:62;;64986:69;;;64752:311;;;;;:::o;39644:450::-;39724:14;39892:16;39885:5;39881:28;39872:37;;40069:5;40055:11;40030:23;40026:41;40023:52;40016:5;40013:63;40003:73;;39644:450;;;;:::o;51008:158::-;;;;;:::o;2425:293::-;1827:1;2559:7;;:19;2551:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1827:1;2692:7;:18;;;;2425:293::o;5440:317::-;5555:6;5530:21;:31;;5522:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5609:12;5627:9;:14;;5649:6;5627:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5608:52;;;5679:7;5671:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;5511:246;5440:317;;:::o;2726:213::-;1783:1;2909:7;:22;;;;2726:213::o;15769:191::-;15843:16;15862:6;;;;;;;;;;;15843:25;;15888:8;15879:6;;:17;;;;;;;;;;;;;;;;;;15943:8;15912:40;;15933:8;15912:40;;;;;;;;;;;;15832:128;15769:191;:::o;59654:89::-;59714:21;59720:7;59729:5;59714;:21::i;:::-;59654:89;:::o;59275:112::-;59352:27;59362:2;59366:8;59352:27;;;;;;;;;;;;:9;:27::i;:::-;59275:112;;:::o;51606:716::-;51769:4;51815:2;51790:45;;;51836:19;:17;:19::i;:::-;51857:4;51863:7;51872:5;51790:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;51786:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52090:1;52073:6;:13;:18;52069:235;;52119:40;;;;;;;;;;;;;;52069:235;52262:6;52256:13;52247:6;52243:2;52239:15;52232:38;51786:529;51959:54;;;51949:64;;;:6;:64;;;;51942:71;;;51606:716;;;;;;:::o;69707:108::-;69767:13;69796;69789:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69707:108;:::o;65650:1745::-;65715:17;66149:4;66142;66136:11;66132:22;66241:1;66235:4;66228:15;66316:4;66313:1;66309:12;66302:19;;66398:1;66393:3;66386:14;66502:3;66741:5;66723:428;66749:1;66723:428;;;66789:1;66784:3;66780:11;66773:18;;66960:2;66954:4;66950:13;66946:2;66942:22;66937:3;66929:36;67054:2;67048:4;67044:13;67036:21;;67121:4;66723:428;67111:25;66723:428;66727:21;67190:3;67185;67181:13;67305:4;67300:3;67296:14;67289:21;;67370:6;67365:3;67358:19;65754:1634;;;65650:1745;;;:::o;32523:178::-;32584:7;26367:13;26505:2;32612:18;:25;32631:5;32612:25;;;;;;;;;;;;;;;;:50;;32611:82;32604:89;;32523:178;;;:::o;13053:98::-;13106:7;13133:10;13126:17;;13053:98;:::o;64453:147::-;64590:6;64453:147;;;;;:::o;59972:3081::-;60052:27;60082;60101:7;60082:18;:27::i;:::-;60052:57;;60122:12;60153:19;60122:52;;60188:27;60217:23;60244:35;60271:7;60244:26;:35::i;:::-;60187:92;;;;60296:13;60292:316;;;60417:68;60442:15;60459:4;60465:19;:17;:19::i;:::-;60417:24;:68::i;:::-;60412:184;;60509:43;60526:4;60532:19;:17;:19::i;:::-;60509:16;:43::i;:::-;60504:92;;60561:35;;;;;;;;;;;;;;60504:92;60412:184;60292:316;60620:51;60642:4;60656:1;60660:7;60669:1;60620:21;:51::i;:::-;60764:15;60761:160;;;60904:1;60883:19;60876:30;60761:160;61582:1;26632:3;61552:1;:26;;61551:32;61523:18;:24;61542:4;61523:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;61850:176;61887:4;61958:53;61973:4;61987:1;61991:19;61958:14;:53::i;:::-;27423:8;27143;61911:43;61910:101;61850:18;:176::i;:::-;61821:17;:26;61839:7;61821:26;;;;;;;;;;;:205;;;;62197:1;27423:8;62146:19;:47;:52;62142:627;;62219:19;62251:1;62241:7;:11;62219:33;;62408:1;62374:17;:30;62392:11;62374:30;;;;;;;;;;;;:35;62370:384;;62512:13;;62497:11;:28;62493:242;;62692:19;62659:17;:30;62677:11;62659:30;;;;;;;;;;;:52;;;;62493:242;62370:384;62200:569;62142:627;62824:7;62820:1;62797:35;;62806:4;62797:35;;;;;;;;;;;;62843:50;62864:4;62878:1;62882:7;62891:1;62843:20;:50::i;:::-;63020:12;;:14;;;;;;;;;;;;;60041:3012;;;;59972:3081;;:::o;58502:689::-;58633:19;58639:2;58643:8;58633:5;:19::i;:::-;58712:1;58694:2;:14;;;:19;58690:483;;58734:11;58748:13;;58734:27;;58780:13;58802:8;58796:3;:14;58780:30;;58829:233;58860:62;58899:1;58903:2;58907:7;;;;;;58916:5;58860:30;:62::i;:::-;58855:167;;58958:40;;;;;;;;;;;;;;58855:167;59057:3;59049:5;:11;58829:233;;59144:3;59127:13;;:20;59123:34;;59149:8;;;59123:34;58715:458;;58690:483;58502:689;;;:::o;52784:2966::-;52857:20;52880:13;;52857:36;;52920:1;52908:8;:13;52904:44;;52930:18;;;;;;;;;;;;;;52904:44;52961:61;52991:1;52995:2;52999:12;53013:8;52961:21;:61::i;:::-;53505:1;26505:2;53475:1;:26;;53474:32;53462:8;:45;53436:18;:22;53455:2;53436:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;53784:139;53821:2;53875:33;53898:1;53902:2;53906:1;53875:14;:33::i;:::-;53842:30;53863:8;53842:20;:30::i;:::-;:66;53784:18;:139::i;:::-;53750:17;:31;53768:12;53750:31;;;;;;;;;;;:173;;;;53940:16;53971:11;54000:8;53985:12;:23;53971:37;;54521:16;54517:2;54513:25;54501:37;;54893:12;54853:8;54812:1;54750:25;54691:1;54630;54603:335;55264:1;55250:12;55246:20;55204:346;55305:3;55296:7;55293:16;55204:346;;55523:7;55513:8;55510:1;55483:25;55480:1;55477;55472:59;55358:1;55349:7;55345:15;55334:26;;55204:346;;;55208:77;55595:1;55583:8;:13;55579:45;;55605:19;;;;;;;;;;;;;;55579:45;55657:3;55641:13;:19;;;;53210:2462;;55682:60;55711:1;55715:2;55719:12;55733:8;55682:20;:60::i;:::-;52846:2904;52784:2966;;:::o;40196:324::-;40266:14;40499:1;40489:8;40486:15;40460:24;40456:46;40446:56;;40196:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:180;6161:77;6158:1;6151:88;6258:4;6255:1;6248:15;6282:4;6279:1;6272:15;6299:281;6382:27;6404:4;6382:27;:::i;:::-;6374:6;6370:40;6512:6;6500:10;6497:22;6476:18;6464:10;6461:34;6458:62;6455:88;;;6523:18;;:::i;:::-;6455:88;6563:10;6559:2;6552:22;6342:238;6299:281;;:::o;6586:129::-;6620:6;6647:20;;:::i;:::-;6637:30;;6676:33;6704:4;6696:6;6676:33;:::i;:::-;6586:129;;;:::o;6721:308::-;6783:4;6873:18;6865:6;6862:30;6859:56;;;6895:18;;:::i;:::-;6859:56;6933:29;6955:6;6933:29;:::i;:::-;6925:37;;7017:4;7011;7007:15;6999:23;;6721:308;;;:::o;7035:146::-;7132:6;7127:3;7122;7109:30;7173:1;7164:6;7159:3;7155:16;7148:27;7035:146;;;:::o;7187:425::-;7265:5;7290:66;7306:49;7348:6;7306:49;:::i;:::-;7290:66;:::i;:::-;7281:75;;7379:6;7372:5;7365:21;7417:4;7410:5;7406:16;7455:3;7446:6;7441:3;7437:16;7434:25;7431:112;;;7462:79;;:::i;:::-;7431:112;7552:54;7599:6;7594:3;7589;7552:54;:::i;:::-;7271:341;7187:425;;;;;:::o;7632:340::-;7688:5;7737:3;7730:4;7722:6;7718:17;7714:27;7704:122;;7745:79;;:::i;:::-;7704:122;7862:6;7849:20;7887:79;7962:3;7954:6;7947:4;7939:6;7935:17;7887:79;:::i;:::-;7878:88;;7694:278;7632:340;;;;:::o;7978:509::-;8047:6;8096:2;8084:9;8075:7;8071:23;8067:32;8064:119;;;8102:79;;:::i;:::-;8064:119;8250:1;8239:9;8235:17;8222:31;8280:18;8272:6;8269:30;8266:117;;;8302:79;;:::i;:::-;8266:117;8407:63;8462:7;8453:6;8442:9;8438:22;8407:63;:::i;:::-;8397:73;;8193:287;7978:509;;;;:::o;8493:329::-;8552:6;8601:2;8589:9;8580:7;8576:23;8572:32;8569:119;;;8607:79;;:::i;:::-;8569:119;8727:1;8752:53;8797:7;8788:6;8777:9;8773:22;8752:53;:::i;:::-;8742:63;;8698:117;8493:329;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:474::-;11679:6;11687;11736:2;11724:9;11715:7;11711:23;11707:32;11704:119;;;11742:79;;:::i;:::-;11704:119;11862:1;11887:53;11932:7;11923:6;11912:9;11908:22;11887:53;:::i;:::-;11877:63;;11833:117;11989:2;12015:53;12060:7;12051:6;12040:9;12036:22;12015:53;:::i;:::-;12005:63;;11960:118;11611:474;;;;;:::o;12091:311::-;12168:4;12258:18;12250:6;12247:30;12244:56;;;12280:18;;:::i;:::-;12244:56;12330:4;12322:6;12318:17;12310:25;;12390:4;12384;12380:15;12372:23;;12091:311;;;:::o;12408:117::-;12517:1;12514;12507:12;12548:710;12644:5;12669:81;12685:64;12742:6;12685:64;:::i;:::-;12669:81;:::i;:::-;12660:90;;12770:5;12799:6;12792:5;12785:21;12833:4;12826:5;12822:16;12815:23;;12886:4;12878:6;12874:17;12866:6;12862:30;12915:3;12907:6;12904:15;12901:122;;;12934:79;;:::i;:::-;12901:122;13049:6;13032:220;13066:6;13061:3;13058:15;13032:220;;;13141:3;13170:37;13203:3;13191:10;13170:37;:::i;:::-;13165:3;13158:50;13237:4;13232:3;13228:14;13221:21;;13108:144;13092:4;13087:3;13083:14;13076:21;;13032:220;;;13036:21;12650:608;;12548:710;;;;;:::o;13281:370::-;13352:5;13401:3;13394:4;13386:6;13382:17;13378:27;13368:122;;13409:79;;:::i;:::-;13368:122;13526:6;13513:20;13551:94;13641:3;13633:6;13626:4;13618:6;13614:17;13551:94;:::i;:::-;13542:103;;13358:293;13281:370;;;;:::o;13657:539::-;13741:6;13790:2;13778:9;13769:7;13765:23;13761:32;13758:119;;;13796:79;;:::i;:::-;13758:119;13944:1;13933:9;13929:17;13916:31;13974:18;13966:6;13963:30;13960:117;;;13996:79;;:::i;:::-;13960:117;14101:78;14171:7;14162:6;14151:9;14147:22;14101:78;:::i;:::-;14091:88;;13887:302;13657:539;;;;:::o;14202:474::-;14270:6;14278;14327:2;14315:9;14306:7;14302:23;14298:32;14295:119;;;14333:79;;:::i;:::-;14295:119;14453:1;14478:53;14523:7;14514:6;14503:9;14499:22;14478:53;:::i;:::-;14468:63;;14424:117;14580:2;14606:53;14651:7;14642:6;14631:9;14627:22;14606:53;:::i;:::-;14596:63;;14551:118;14202:474;;;;;:::o;14682:117::-;14791:1;14788;14781:12;14822:568;14895:8;14905:6;14955:3;14948:4;14940:6;14936:17;14932:27;14922:122;;14963:79;;:::i;:::-;14922:122;15076:6;15063:20;15053:30;;15106:18;15098:6;15095:30;15092:117;;;15128:79;;:::i;:::-;15092:117;15242:4;15234:6;15230:17;15218:29;;15296:3;15288:4;15280:6;15276:17;15266:8;15262:32;15259:41;15256:128;;;15303:79;;:::i;:::-;15256:128;14822:568;;;;;:::o;15396:704::-;15491:6;15499;15507;15556:2;15544:9;15535:7;15531:23;15527:32;15524:119;;;15562:79;;:::i;:::-;15524:119;15682:1;15707:53;15752:7;15743:6;15732:9;15728:22;15707:53;:::i;:::-;15697:63;;15653:117;15837:2;15826:9;15822:18;15809:32;15868:18;15860:6;15857:30;15854:117;;;15890:79;;:::i;:::-;15854:117;16003:80;16075:7;16066:6;16055:9;16051:22;16003:80;:::i;:::-;15985:98;;;;15780:313;15396:704;;;;;:::o;16106:180::-;16154:77;16151:1;16144:88;16251:4;16248:1;16241:15;16275:4;16272:1;16265:15;16292:320;16336:6;16373:1;16367:4;16363:12;16353:22;;16420:1;16414:4;16410:12;16441:18;16431:81;;16497:4;16489:6;16485:17;16475:27;;16431:81;16559:2;16551:6;16548:14;16528:18;16525:38;16522:84;;16578:18;;:::i;:::-;16522:84;16343:269;16292:320;;;:::o;16618:141::-;16667:4;16690:3;16682:11;;16713:3;16710:1;16703:14;16747:4;16744:1;16734:18;16726:26;;16618:141;;;:::o;16765:93::-;16802:6;16849:2;16844;16837:5;16833:14;16829:23;16819:33;;16765:93;;;:::o;16864:107::-;16908:8;16958:5;16952:4;16948:16;16927:37;;16864:107;;;;:::o;16977:393::-;17046:6;17096:1;17084:10;17080:18;17119:97;17149:66;17138:9;17119:97;:::i;:::-;17237:39;17267:8;17256:9;17237:39;:::i;:::-;17225:51;;17309:4;17305:9;17298:5;17294:21;17285:30;;17358:4;17348:8;17344:19;17337:5;17334:30;17324:40;;17053:317;;16977:393;;;;;:::o;17376:60::-;17404:3;17425:5;17418:12;;17376:60;;;:::o;17442:142::-;17492:9;17525:53;17543:34;17552:24;17570:5;17552:24;:::i;:::-;17543:34;:::i;:::-;17525:53;:::i;:::-;17512:66;;17442:142;;;:::o;17590:75::-;17633:3;17654:5;17647:12;;17590:75;;;:::o;17671:269::-;17781:39;17812:7;17781:39;:::i;:::-;17842:91;17891:41;17915:16;17891:41;:::i;:::-;17883:6;17876:4;17870:11;17842:91;:::i;:::-;17836:4;17829:105;17747:193;17671:269;;;:::o;17946:73::-;17991:3;17946:73;:::o;18025:189::-;18102:32;;:::i;:::-;18143:65;18201:6;18193;18187:4;18143:65;:::i;:::-;18078:136;18025:189;;:::o;18220:186::-;18280:120;18297:3;18290:5;18287:14;18280:120;;;18351:39;18388:1;18381:5;18351:39;:::i;:::-;18324:1;18317:5;18313:13;18304:22;;18280:120;;;18220:186;;:::o;18412:543::-;18513:2;18508:3;18505:11;18502:446;;;18547:38;18579:5;18547:38;:::i;:::-;18631:29;18649:10;18631:29;:::i;:::-;18621:8;18617:44;18814:2;18802:10;18799:18;18796:49;;;18835:8;18820:23;;18796:49;18858:80;18914:22;18932:3;18914:22;:::i;:::-;18904:8;18900:37;18887:11;18858:80;:::i;:::-;18517:431;;18502:446;18412:543;;;:::o;18961:117::-;19015:8;19065:5;19059:4;19055:16;19034:37;;18961:117;;;;:::o;19084:169::-;19128:6;19161:51;19209:1;19205:6;19197:5;19194:1;19190:13;19161:51;:::i;:::-;19157:56;19242:4;19236;19232:15;19222:25;;19135:118;19084:169;;;;:::o;19258:295::-;19334:4;19480:29;19505:3;19499:4;19480:29;:::i;:::-;19472:37;;19542:3;19539:1;19535:11;19529:4;19526:21;19518:29;;19258:295;;;;:::o;19558:1395::-;19675:37;19708:3;19675:37;:::i;:::-;19777:18;19769:6;19766:30;19763:56;;;19799:18;;:::i;:::-;19763:56;19843:38;19875:4;19869:11;19843:38;:::i;:::-;19928:67;19988:6;19980;19974:4;19928:67;:::i;:::-;20022:1;20046:4;20033:17;;20078:2;20070:6;20067:14;20095:1;20090:618;;;;20752:1;20769:6;20766:77;;;20818:9;20813:3;20809:19;20803:26;20794:35;;20766:77;20869:67;20929:6;20922:5;20869:67;:::i;:::-;20863:4;20856:81;20725:222;20060:887;;20090:618;20142:4;20138:9;20130:6;20126:22;20176:37;20208:4;20176:37;:::i;:::-;20235:1;20249:208;20263:7;20260:1;20257:14;20249:208;;;20342:9;20337:3;20333:19;20327:26;20319:6;20312:42;20393:1;20385:6;20381:14;20371:24;;20440:2;20429:9;20425:18;20412:31;;20286:4;20283:1;20279:12;20274:17;;20249:208;;;20485:6;20476:7;20473:19;20470:179;;;20543:9;20538:3;20534:19;20528:26;20586:48;20628:4;20620:6;20616:17;20605:9;20586:48;:::i;:::-;20578:6;20571:64;20493:156;20470:179;20695:1;20691;20683:6;20679:14;20675:22;20669:4;20662:36;20097:611;;;20060:887;;19650:1303;;;19558:1395;;:::o;20959:230::-;21099:34;21095:1;21087:6;21083:14;21076:58;21168:13;21163:2;21155:6;21151:15;21144:38;20959:230;:::o;21195:366::-;21337:3;21358:67;21422:2;21417:3;21358:67;:::i;:::-;21351:74;;21434:93;21523:3;21434:93;:::i;:::-;21552:2;21547:3;21543:12;21536:19;;21195:366;;;:::o;21567:419::-;21733:4;21771:2;21760:9;21756:18;21748:26;;21820:9;21814:4;21810:20;21806:1;21795:9;21791:17;21784:47;21848:131;21974:4;21848:131;:::i;:::-;21840:139;;21567:419;;;:::o;21992:180::-;22040:77;22037:1;22030:88;22137:4;22134:1;22127:15;22161:4;22158:1;22151:15;22178:191;22218:3;22237:20;22255:1;22237:20;:::i;:::-;22232:25;;22271:20;22289:1;22271:20;:::i;:::-;22266:25;;22314:1;22311;22307:9;22300:16;;22335:3;22332:1;22329:10;22326:36;;;22342:18;;:::i;:::-;22326:36;22178:191;;;;:::o;22375:236::-;22515:34;22511:1;22503:6;22499:14;22492:58;22584:19;22579:2;22571:6;22567:15;22560:44;22375:236;:::o;22617:366::-;22759:3;22780:67;22844:2;22839:3;22780:67;:::i;:::-;22773:74;;22856:93;22945:3;22856:93;:::i;:::-;22974:2;22969:3;22965:12;22958:19;;22617:366;;;:::o;22989:419::-;23155:4;23193:2;23182:9;23178:18;23170:26;;23242:9;23236:4;23232:20;23228:1;23217:9;23213:17;23206:47;23270:131;23396:4;23270:131;:::i;:::-;23262:139;;22989:419;;;:::o;23414:165::-;23554:17;23550:1;23542:6;23538:14;23531:41;23414:165;:::o;23585:366::-;23727:3;23748:67;23812:2;23807:3;23748:67;:::i;:::-;23741:74;;23824:93;23913:3;23824:93;:::i;:::-;23942:2;23937:3;23933:12;23926:19;;23585:366;;;:::o;23957:419::-;24123:4;24161:2;24150:9;24146:18;24138:26;;24210:9;24204:4;24200:20;24196:1;24185:9;24181:17;24174:47;24238:131;24364:4;24238:131;:::i;:::-;24230:139;;23957:419;;;:::o;24382:165::-;24522:17;24518:1;24510:6;24506:14;24499:41;24382:165;:::o;24553:366::-;24695:3;24716:67;24780:2;24775:3;24716:67;:::i;:::-;24709:74;;24792:93;24881:3;24792:93;:::i;:::-;24910:2;24905:3;24901:12;24894:19;;24553:366;;;:::o;24925:419::-;25091:4;25129:2;25118:9;25114:18;25106:26;;25178:9;25172:4;25168:20;25164:1;25153:9;25149:17;25142:47;25206:131;25332:4;25206:131;:::i;:::-;25198:139;;24925:419;;;:::o;25350:179::-;25490:31;25486:1;25478:6;25474:14;25467:55;25350:179;:::o;25535:366::-;25677:3;25698:67;25762:2;25757:3;25698:67;:::i;:::-;25691:74;;25774:93;25863:3;25774:93;:::i;:::-;25892:2;25887:3;25883:12;25876:19;;25535:366;;;:::o;25907:419::-;26073:4;26111:2;26100:9;26096:18;26088:26;;26160:9;26154:4;26150:20;26146:1;26135:9;26131:17;26124:47;26188:131;26314:4;26188:131;:::i;:::-;26180:139;;25907:419;;;:::o;26332:180::-;26472:32;26468:1;26460:6;26456:14;26449:56;26332:180;:::o;26518:366::-;26660:3;26681:67;26745:2;26740:3;26681:67;:::i;:::-;26674:74;;26757:93;26846:3;26757:93;:::i;:::-;26875:2;26870:3;26866:12;26859:19;;26518:366;;;:::o;26890:419::-;27056:4;27094:2;27083:9;27079:18;27071:26;;27143:9;27137:4;27133:20;27129:1;27118:9;27114:17;27107:47;27171:131;27297:4;27171:131;:::i;:::-;27163:139;;26890:419;;;:::o;27315:410::-;27355:7;27378:20;27396:1;27378:20;:::i;:::-;27373:25;;27412:20;27430:1;27412:20;:::i;:::-;27407:25;;27467:1;27464;27460:9;27489:30;27507:11;27489:30;:::i;:::-;27478:41;;27668:1;27659:7;27655:15;27652:1;27649:22;27629:1;27622:9;27602:83;27579:139;;27698:18;;:::i;:::-;27579:139;27363:362;27315:410;;;;:::o;27731:179::-;27871:31;27867:1;27859:6;27855:14;27848:55;27731:179;:::o;27916:366::-;28058:3;28079:67;28143:2;28138:3;28079:67;:::i;:::-;28072:74;;28155:93;28244:3;28155:93;:::i;:::-;28273:2;28268:3;28264:12;28257:19;;27916:366;;;:::o;28288:419::-;28454:4;28492:2;28481:9;28477:18;28469:26;;28541:9;28535:4;28531:20;28527:1;28516:9;28512:17;28505:47;28569:131;28695:4;28569:131;:::i;:::-;28561:139;;28288:419;;;:::o;28713:332::-;28834:4;28872:2;28861:9;28857:18;28849:26;;28885:71;28953:1;28942:9;28938:17;28929:6;28885:71;:::i;:::-;28966:72;29034:2;29023:9;29019:18;29010:6;28966:72;:::i;:::-;28713:332;;;;;:::o;29051:172::-;29191:24;29187:1;29179:6;29175:14;29168:48;29051:172;:::o;29229:366::-;29371:3;29392:67;29456:2;29451:3;29392:67;:::i;:::-;29385:74;;29468:93;29557:3;29468:93;:::i;:::-;29586:2;29581:3;29577:12;29570:19;;29229:366;;;:::o;29601:419::-;29767:4;29805:2;29794:9;29790:18;29782:26;;29854:9;29848:4;29844:20;29840:1;29829:9;29825:17;29818:47;29882:131;30008:4;29882:131;:::i;:::-;29874:139;;29601:419;;;:::o;30026:169::-;30166:21;30162:1;30154:6;30150:14;30143:45;30026:169;:::o;30201:366::-;30343:3;30364:67;30428:2;30423:3;30364:67;:::i;:::-;30357:74;;30440:93;30529:3;30440:93;:::i;:::-;30558:2;30553:3;30549:12;30542:19;;30201:366;;;:::o;30573:419::-;30739:4;30777:2;30766:9;30762:18;30754:26;;30826:9;30820:4;30816:20;30812:1;30801:9;30797:17;30790:47;30854:131;30980:4;30854:131;:::i;:::-;30846:139;;30573:419;;;:::o;30998:148::-;31100:11;31137:3;31122:18;;30998:148;;;;:::o;31152:390::-;31258:3;31286:39;31319:5;31286:39;:::i;:::-;31341:89;31423:6;31418:3;31341:89;:::i;:::-;31334:96;;31439:65;31497:6;31492:3;31485:4;31478:5;31474:16;31439:65;:::i;:::-;31529:6;31524:3;31520:16;31513:23;;31262:280;31152:390;;;;:::o;31548:435::-;31728:3;31750:95;31841:3;31832:6;31750:95;:::i;:::-;31743:102;;31862:95;31953:3;31944:6;31862:95;:::i;:::-;31855:102;;31974:3;31967:10;;31548:435;;;;;:::o;31989:180::-;32037:77;32034:1;32027:88;32134:4;32131:1;32124:15;32158:4;32155:1;32148:15;32175:233;32214:3;32237:24;32255:5;32237:24;:::i;:::-;32228:33;;32283:66;32276:5;32273:77;32270:103;;32353:18;;:::i;:::-;32270:103;32400:1;32393:5;32389:13;32382:20;;32175:233;;;:::o;32414:225::-;32554:34;32550:1;32542:6;32538:14;32531:58;32623:8;32618:2;32610:6;32606:15;32599:33;32414:225;:::o;32645:366::-;32787:3;32808:67;32872:2;32867:3;32808:67;:::i;:::-;32801:74;;32884:93;32973:3;32884:93;:::i;:::-;33002:2;32997:3;32993:12;32986:19;;32645:366;;;:::o;33017:419::-;33183:4;33221:2;33210:9;33206:18;33198:26;;33270:9;33264:4;33260:20;33256:1;33245:9;33241:17;33234:47;33298:131;33424:4;33298:131;:::i;:::-;33290:139;;33017:419;;;:::o;33442:174::-;33582:26;33578:1;33570:6;33566:14;33559:50;33442:174;:::o;33622:366::-;33764:3;33785:67;33849:2;33844:3;33785:67;:::i;:::-;33778:74;;33861:93;33950:3;33861:93;:::i;:::-;33979:2;33974:3;33970:12;33963:19;;33622:366;;;:::o;33994:419::-;34160:4;34198:2;34187:9;34183:18;34175:26;;34247:9;34241:4;34237:20;34233:1;34222:9;34218:17;34211:47;34275:131;34401:4;34275:131;:::i;:::-;34267:139;;33994:419;;;:::o;34419:182::-;34559:34;34555:1;34547:6;34543:14;34536:58;34419:182;:::o;34607:366::-;34749:3;34770:67;34834:2;34829:3;34770:67;:::i;:::-;34763:74;;34846:93;34935:3;34846:93;:::i;:::-;34964:2;34959:3;34955:12;34948:19;;34607:366;;;:::o;34979:419::-;35145:4;35183:2;35172:9;35168:18;35160:26;;35232:9;35226:4;35222:20;35218:1;35207:9;35203:17;35196:47;35260:131;35386:4;35260:131;:::i;:::-;35252:139;;34979:419;;;:::o;35404:181::-;35544:33;35540:1;35532:6;35528:14;35521:57;35404:181;:::o;35591:366::-;35733:3;35754:67;35818:2;35813:3;35754:67;:::i;:::-;35747:74;;35830:93;35919:3;35830:93;:::i;:::-;35948:2;35943:3;35939:12;35932:19;;35591:366;;;:::o;35963:419::-;36129:4;36167:2;36156:9;36152:18;36144:26;;36216:9;36210:4;36206:20;36202:1;36191:9;36187:17;36180:47;36244:131;36370:4;36244:131;:::i;:::-;36236:139;;35963:419;;;:::o;36388:179::-;36528:31;36524:1;36516:6;36512:14;36505:55;36388:179;:::o;36573:366::-;36715:3;36736:67;36800:2;36795:3;36736:67;:::i;:::-;36729:74;;36812:93;36901:3;36812:93;:::i;:::-;36930:2;36925:3;36921:12;36914:19;;36573:366;;;:::o;36945:419::-;37111:4;37149:2;37138:9;37134:18;37126:26;;37198:9;37192:4;37188:20;37184:1;37173:9;37169:17;37162:47;37226:131;37352:4;37226:131;:::i;:::-;37218:139;;36945:419;;;:::o;37370:147::-;37471:11;37508:3;37493:18;;37370:147;;;;:::o;37523:114::-;;:::o;37643:398::-;37802:3;37823:83;37904:1;37899:3;37823:83;:::i;:::-;37816:90;;37915:93;38004:3;37915:93;:::i;:::-;38033:1;38028:3;38024:11;38017:18;;37643:398;;;:::o;38047:379::-;38231:3;38253:147;38396:3;38253:147;:::i;:::-;38246:154;;38417:3;38410:10;;38047:379;;;:::o;38432:245::-;38572:34;38568:1;38560:6;38556:14;38549:58;38641:28;38636:2;38628:6;38624:15;38617:53;38432:245;:::o;38683:366::-;38825:3;38846:67;38910:2;38905:3;38846:67;:::i;:::-;38839:74;;38922:93;39011:3;38922:93;:::i;:::-;39040:2;39035:3;39031:12;39024:19;;38683:366;;;:::o;39055:419::-;39221:4;39259:2;39248:9;39244:18;39236:26;;39308:9;39302:4;39298:20;39294:1;39283:9;39279:17;39272:47;39336:131;39462:4;39336:131;:::i;:::-;39328:139;;39055:419;;;:::o;39480:98::-;39531:6;39565:5;39559:12;39549:22;;39480:98;;;:::o;39584:168::-;39667:11;39701:6;39696:3;39689:19;39741:4;39736:3;39732:14;39717:29;;39584:168;;;;:::o;39758:373::-;39844:3;39872:38;39904:5;39872:38;:::i;:::-;39926:70;39989:6;39984:3;39926:70;:::i;:::-;39919:77;;40005:65;40063:6;40058:3;40051:4;40044:5;40040:16;40005:65;:::i;:::-;40095:29;40117:6;40095:29;:::i;:::-;40090:3;40086:39;40079:46;;39848:283;39758:373;;;;:::o;40137:640::-;40332:4;40370:3;40359:9;40355:19;40347:27;;40384:71;40452:1;40441:9;40437:17;40428:6;40384:71;:::i;:::-;40465:72;40533:2;40522:9;40518:18;40509:6;40465:72;:::i;:::-;40547;40615:2;40604:9;40600:18;40591:6;40547:72;:::i;:::-;40666:9;40660:4;40656:20;40651:2;40640:9;40636:18;40629:48;40694:76;40765:4;40756:6;40694:76;:::i;:::-;40686:84;;40137:640;;;;;;;:::o;40783:141::-;40839:5;40870:6;40864:13;40855:22;;40886:32;40912:5;40886:32;:::i;:::-;40783:141;;;;:::o;40930:349::-;40999:6;41048:2;41036:9;41027:7;41023:23;41019:32;41016:119;;;41054:79;;:::i;:::-;41016:119;41174:1;41199:63;41254:7;41245:6;41234:9;41230:22;41199:63;:::i;:::-;41189:73;;41145:127;40930:349;;;;:::o

Swarm Source

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