ETH Price: $3,491.72 (+7.57%)
Gas: 7 Gwei

Token

ETFPunks (ETF)
 

Overview

Max Total Supply

2,024 ETF

Holders

1,042

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 ETF
0xde8808e925a758d60d1d80944d9cf3de3d394555
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:
ETFPunks

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-01-12
*/

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.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 functionCall(target, data, "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");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(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) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(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) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason 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 {
            // 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/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.1.0

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of 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 through `_extraData`.
        uint24 extraData;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

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

    // ==============================
    //            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`.
     *
     * 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 calldata data
    ) external;

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 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.1.0

pragma solidity ^0.8.4;


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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard,
 * including the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at `_startTokenId()`
 * (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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 => address) private _tokenApprovals;

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

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

    /**
     * @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 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view 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 {
        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;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

    /**
     * @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 See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    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 '';
    }

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev 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 (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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 {
        _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 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 {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        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 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal {
        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 Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(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++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool 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))
                }
            }
        }
    }

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        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 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;
    }

    /**
     * @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 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 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 returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

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

// File: contract.sol


pragma solidity ^0.8.7;






contract ETFPunks is ERC721A, Ownable, ReentrancyGuard {
  using Address for address;
  using Strings for uint;

  string  public  baseTokenURI = "ipfs://bafybeibyrwr4zi5xwmhajytnjou65vdkfnxqbedbmndjt76urdzsfl6kw4/";
  bool public isPublicSaleActive = true;

  uint256 public  maxSupply = 2024;
  uint256 public  MAX_MINTS_PER_TX = 7;
  uint256 public  PUBLIC_SALE_PRICE = 0.001 ether;
  uint256 public  NUM_FREE_MINTS = 1024;
  uint256 public  MAX_FREE_PER_WALLET = 1;
  uint256 public  freeNFTAlreadyMinted = 0;

  constructor() ERC721A("ETFPunks", "ETF") {}

  function mint(uint256 numberOfTokens) external payable
  {
    require(isPublicSaleActive, "Public sale is paused.");
    require(totalSupply() + numberOfTokens < maxSupply + 1, "Maximum supply exceeded.");

    require(numberOfTokens <= MAX_MINTS_PER_TX, "Maximum mints per transaction exceeded.");

    if(freeNFTAlreadyMinted + numberOfTokens > NUM_FREE_MINTS)
    {
        require(PUBLIC_SALE_PRICE * numberOfTokens <= msg.value, "Invalid ETH value sent. Error Code: 1");
    } 
    else 
    {
        uint sender_balance = balanceOf(msg.sender);
        
        if (sender_balance + numberOfTokens > MAX_FREE_PER_WALLET) 
        { 
            if (sender_balance < MAX_FREE_PER_WALLET)
            {
                uint free_available = MAX_FREE_PER_WALLET - sender_balance;
                uint to_be_paid = numberOfTokens - free_available;
                require(PUBLIC_SALE_PRICE * to_be_paid <= msg.value, "Invalid ETH value sent. Error Code: 2");

                freeNFTAlreadyMinted += free_available;
            }
            else
            {
                require(PUBLIC_SALE_PRICE * numberOfTokens <= msg.value, "Invalid ETH value sent. Error Code: 3");
            }
        }  
        else 
        {
            require(numberOfTokens <= MAX_FREE_PER_WALLET, "Maximum mints per transaction exceeded");
            freeNFTAlreadyMinted += numberOfTokens;
        }
    }

    _safeMint(msg.sender, numberOfTokens);
  }

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

  function treasuryMint(uint quantity)
    public
    onlyOwner
  {
    require(quantity > 0, "Invalid mint amount");
    require(totalSupply() + quantity <= maxSupply, "Maximum supply exceeded");

    _safeMint(msg.sender, quantity);
  }

  function withdraw()
    public
    onlyOwner
    nonReentrant
  {
    Address.sendValue(payable(msg.sender), address(this).balance);
  }

  function tokenURI(uint _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
    
    return string(abi.encodePacked(baseTokenURI, "/", _tokenId.toString()));
  }

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

  function getIsPublicSaleActive() 
    public
    view 
    returns (bool) {
      return isPublicSaleActive;
  }

  function getFreeNftAlreadyMinted() 
    public
    view 
    returns (uint256) {
      return freeNFTAlreadyMinted;
  }

  function setIsPublicSaleActive(bool _isPublicSaleActive)
      external
      onlyOwner
  {
      isPublicSaleActive = _isPublicSaleActive;
  }

  function setNumFreeMints(uint256 _numfreemints)
      external
      onlyOwner
  {
      NUM_FREE_MINTS = _numfreemints;
  }

  function getSalePrice()
  public
  view
  returns (uint256)
  {
    return PUBLIC_SALE_PRICE;
  }

  function setSalePrice(uint256 _price)
      external
      onlyOwner
  {
      PUBLIC_SALE_PRICE = _price;
  }

  function setMaxLimitPerTransaction(uint256 _limit)
      external
      onlyOwner
  {
      MAX_MINTS_PER_TX = _limit;
  }

  function setFreeLimitPerWallet(uint256 _limit)
      external
      onlyOwner
  {
      MAX_FREE_PER_WALLET = _limit;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeNFTAlreadyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFreeNftAlreadyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getIsPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setFreeLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxLimitPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180608001604052806043815260200162003a7560439139600a9080519060200190620000359291906200023c565b506001600b60006101000a81548160ff0219169083151502179055506107e8600c556007600d5566038d7ea4c68000600e55610400600f55600160105560006011553480156200008457600080fd5b506040518060400160405280600881526020017f45544650756e6b730000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f45544600000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001099291906200023c565b508060039080519060200190620001229291906200023c565b50620001336200016960201b60201c565b60008190555050506200015b6200014f6200016e60201b60201c565b6200017660201b60201c565b600160098190555062000351565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024a90620002ec565b90600052602060002090601f0160209004810192826200026e5760008555620002ba565b82601f106200028957805160ff1916838001178555620002ba565b82800160010185558215620002ba579182015b82811115620002b95782518255916020019190600101906200029c565b5b509050620002c99190620002cd565b5090565b5b80821115620002e8576000816000905550600101620002ce565b5090565b600060028204905060018216806200030557607f821691505b602082108114156200031c576200031b62000322565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61371480620003616000396000f3fe60806040526004361061021a5760003560e01c806370a0823111610123578063a0712d68116100ab578063d547cfb71161006f578063d547cfb71461078c578063d5abeb01146107b7578063e985e9c5146107e2578063efdc77881461081f578063f2fde38b146108485761021a565b8063a0712d68146106b6578063a22cb465146106d2578063b88d4fde146106fb578063c6a91b4214610724578063c87b56dd1461074f5761021a565b80638da5cb5b116100f25780638da5cb5b146105e157806395d89b411461060c578063982d669e1461063757806398710d1e146106625780639e9fcffc1461068d5761021a565b806370a0823114610537578063715018a6146105745780638bc9a4c61461058b5780638d87caff146105b65761021a565b80631e84c413116101a65780632fbc0bf1116101755780632fbc0bf1146104665780633ccfd60b1461049157806342842e0e146104a857806355f804b3146104d15780636352211e146104fa5761021a565b80631e84c413146103c0578063202f298a146103eb57806323b872dd1461041457806328cad13d1461043d5761021a565b8063095ea7b3116101ed578063095ea7b3146102ef5780630a00ae831461031857806318160ddd146103415780631919fed71461036c578063193ad7b4146103955761021a565b806301ffc9a71461021f57806306fdde031461025c57806307e89ec014610287578063081812fc146102b2575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906126c8565b610871565b6040516102539190612be5565b60405180910390f35b34801561026857600080fd5b50610271610903565b60405161027e9190612c00565b60405180910390f35b34801561029357600080fd5b5061029c610995565b6040516102a99190612e02565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d4919061276b565b61099b565b6040516102e69190612b7e565b60405180910390f35b3480156102fb57600080fd5b506103166004803603810190610311919061265b565b610a17565b005b34801561032457600080fd5b5061033f600480360381019061033a919061276b565b610b58565b005b34801561034d57600080fd5b50610356610b6a565b6040516103639190612e02565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e919061276b565b610b81565b005b3480156103a157600080fd5b506103aa610b93565b6040516103b79190612e02565b60405180910390f35b3480156103cc57600080fd5b506103d5610b99565b6040516103e29190612be5565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d919061276b565b610bac565b005b34801561042057600080fd5b5061043b60048036038101906104369190612545565b610bbe565b005b34801561044957600080fd5b50610464600480360381019061045f919061269b565b610ee3565b005b34801561047257600080fd5b5061047b610f08565b6040516104889190612e02565b60405180910390f35b34801561049d57600080fd5b506104a6610f12565b005b3480156104b457600080fd5b506104cf60048036038101906104ca9190612545565b610f7c565b005b3480156104dd57600080fd5b506104f860048036038101906104f39190612722565b610f9c565b005b34801561050657600080fd5b50610521600480360381019061051c919061276b565b610fbe565b60405161052e9190612b7e565b60405180910390f35b34801561054357600080fd5b5061055e600480360381019061055991906124d8565b610fd0565b60405161056b9190612e02565b60405180910390f35b34801561058057600080fd5b50610589611089565b005b34801561059757600080fd5b506105a061109d565b6040516105ad9190612be5565b60405180910390f35b3480156105c257600080fd5b506105cb6110b4565b6040516105d89190612e02565b60405180910390f35b3480156105ed57600080fd5b506105f66110be565b6040516106039190612b7e565b60405180910390f35b34801561061857600080fd5b506106216110e8565b60405161062e9190612c00565b60405180910390f35b34801561064357600080fd5b5061064c61117a565b6040516106599190612e02565b60405180910390f35b34801561066e57600080fd5b50610677611180565b6040516106849190612e02565b60405180910390f35b34801561069957600080fd5b506106b460048036038101906106af919061276b565b611186565b005b6106d060048036038101906106cb919061276b565b611198565b005b3480156106de57600080fd5b506106f960048036038101906106f4919061261b565b61147c565b005b34801561070757600080fd5b50610722600480360381019061071d9190612598565b6115f4565b005b34801561073057600080fd5b50610739611667565b6040516107469190612e02565b60405180910390f35b34801561075b57600080fd5b506107766004803603810190610771919061276b565b61166d565b6040516107839190612c00565b60405180910390f35b34801561079857600080fd5b506107a16116e9565b6040516107ae9190612c00565b60405180910390f35b3480156107c357600080fd5b506107cc611777565b6040516107d99190612e02565b60405180910390f35b3480156107ee57600080fd5b5061080960048036038101906108049190612505565b61177d565b6040516108169190612be5565b60405180910390f35b34801561082b57600080fd5b506108466004803603810190610841919061276b565b611811565b005b34801561085457600080fd5b5061086f600480360381019061086a91906124d8565b6118c0565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108cc57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108fc5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610912906130d2565b80601f016020809104026020016040519081016040528092919081815260200182805461093e906130d2565b801561098b5780601f106109605761010080835404028352916020019161098b565b820191906000526020600020905b81548152906001019060200180831161096e57829003601f168201915b5050505050905090565b600e5481565b60006109a682611944565b6109dc576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2282610fbe565b90508073ffffffffffffffffffffffffffffffffffffffff16610a436119a3565b73ffffffffffffffffffffffffffffffffffffffff1614610aa657610a6f81610a6a6119a3565b61177d565b610aa5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b606119ab565b80600f8190555050565b6000610b74611a29565b6001546000540303905090565b610b896119ab565b80600e8190555050565b60115481565b600b60009054906101000a900460ff1681565b610bb46119ab565b8060108190555050565b6000610bc982611a2e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c30576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c3c84611afc565b91509150610c528187610c4d6119a3565b611b1e565b610c9e57610c6786610c626119a3565b61177d565b610c9d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d05576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d128686866001611b62565b8015610d1d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610deb85610dc7888887611b68565b7c020000000000000000000000000000000000000000000000000000000017611b90565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e73576000600185019050600060046000838152602001908152602001600020541415610e71576000548114610e70578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610edb8686866001611bbb565b505050505050565b610eeb6119ab565b80600b60006101000a81548160ff02191690831515021790555050565b6000600e54905090565b610f1a6119ab565b60026009541415610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5790612de2565b60405180910390fd5b6002600981905550610f723347611bc1565b6001600981905550565b610f97838383604051806020016040528060008152506115f4565b505050565b610fa46119ab565b80600a9080519060200190610fba9291906122ec565b5050565b6000610fc982611a2e565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611038576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110916119ab565b61109b6000611cb5565b565b6000600b60009054906101000a900460ff16905090565b6000601154905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110f7906130d2565b80601f0160208091040260200160405190810160405280929190818152602001828054611123906130d2565b80156111705780601f1061114557610100808354040283529160200191611170565b820191906000526020600020905b81548152906001019060200180831161115357829003601f168201915b5050505050905090565b600f5481565b60105481565b61118e6119ab565b80600d8190555050565b600b60009054906101000a900460ff166111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111de90612d02565b60405180910390fd5b6001600c546111f69190612f07565b816111ff610b6a565b6112099190612f07565b10611249576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124090612ca2565b60405180910390fd5b600d5481111561128e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128590612da2565b60405180910390fd5b600f548160115461129f9190612f07565b11156112fa573481600e546112b49190612f8e565b11156112f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ec90612d82565b60405180910390fd5b61146f565b600061130533610fd0565b905060105482826113169190612f07565b111561140e576010548110156113b8576000816010546113369190612fe8565b9050600081846113469190612fe8565b90503481600e546113579190612f8e565b1115611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f90612cc2565b60405180910390fd5b81601160008282546113aa9190612f07565b925050819055505050611409565b3482600e546113c79190612f8e565b1115611408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ff90612c22565b60405180910390fd5b5b61146d565b601054821115611453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144a90612d62565b60405180910390fd5b81601160008282546114659190612f07565b925050819055505b505b6114793382611d7b565b50565b6114846119a3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114e9576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114f66119a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115a36119a3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115e89190612be5565b60405180910390a35050565b6115ff848484610bbe565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116615761162a84848484611d99565b611660576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600d5481565b606061167882611944565b6116b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ae90612d42565b60405180910390fd5b600a6116c283611ef9565b6040516020016116d3929190612b3a565b6040516020818303038152906040529050919050565b600a80546116f6906130d2565b80601f0160208091040260200160405190810160405280929190818152602001828054611722906130d2565b801561176f5780601f106117445761010080835404028352916020019161176f565b820191906000526020600020905b81548152906001019060200180831161175257829003601f168201915b505050505081565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118196119ab565b6000811161185c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185390612dc2565b60405180910390fd5b600c5481611868610b6a565b6118729190612f07565b11156118b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118aa90612ce2565b60405180910390fd5b6118bd3382611d7b565b50565b6118c86119ab565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192f90612c42565b60405180910390fd5b61194181611cb5565b50565b60008161194f611a29565b1115801561195e575060005482105b801561199c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6119b361205a565b73ffffffffffffffffffffffffffffffffffffffff166119d16110be565b73ffffffffffffffffffffffffffffffffffffffff1614611a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1e90612d22565b60405180910390fd5b565b600090565b60008082905080611a3d611a29565b11611ac557600054811015611ac45760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611ac2575b6000811415611ab8576004600083600190039350838152602001908152602001600020549050611a8d565b8092505050611af7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b7f868684612062565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b80471015611c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfb90612c82565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611c2a90612b69565b60006040518083038185875af1925050503d8060008114611c67576040519150601f19603f3d011682016040523d82523d6000602084013e611c6c565b606091505b5050905080611cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca790612c62565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d9582826040518060200160405280600081525061206b565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611dbf6119a3565b8786866040518563ffffffff1660e01b8152600401611de19493929190612b99565b602060405180830381600087803b158015611dfb57600080fd5b505af1925050508015611e2c57506040513d601f19601f82011682018060405250810190611e2991906126f5565b60015b611ea6573d8060008114611e5c576040519150601f19603f3d011682016040523d82523d6000602084013e611e61565b606091505b50600081511415611e9e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611f41576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612055565b600082905060005b60008214611f73578080611f5c90613135565b915050600a82611f6c9190612f5d565b9150611f49565b60008167ffffffffffffffff811115611f8f57611f8e61326b565b5b6040519080825280601f01601f191660200182016040528015611fc15781602001600182028036833780820191505090505b5090505b6000851461204e57600182611fda9190612fe8565b9150600a85611fe9919061317e565b6030611ff59190612f07565b60f81b81838151811061200b5761200a61323c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120479190612f5d565b9450611fc5565b8093505050505b919050565b600033905090565b60009392505050565b6120758383612108565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461210357600080549050600083820390505b6120b56000868380600101945086611d99565b6120eb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120a257816000541461210057600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612175576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156121b0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121bd6000848385611b62565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612234836122256000866000611b68565b61222e856122dc565b17611b90565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612258578060008190555050506122d76000848385611bbb565b505050565b60006001821460e11b9050919050565b8280546122f8906130d2565b90600052602060002090601f01602090048101928261231a5760008555612361565b82601f1061233357805160ff1916838001178555612361565b82800160010185558215612361579182015b82811115612360578251825591602001919060010190612345565b5b50905061236e9190612372565b5090565b5b8082111561238b576000816000905550600101612373565b5090565b60006123a261239d84612e42565b612e1d565b9050828152602081018484840111156123be576123bd61329f565b5b6123c9848285613090565b509392505050565b60006123e46123df84612e73565b612e1d565b905082815260208101848484011115612400576123ff61329f565b5b61240b848285613090565b509392505050565b60008135905061242281613682565b92915050565b60008135905061243781613699565b92915050565b60008135905061244c816136b0565b92915050565b600081519050612461816136b0565b92915050565b600082601f83011261247c5761247b61329a565b5b813561248c84826020860161238f565b91505092915050565b600082601f8301126124aa576124a961329a565b5b81356124ba8482602086016123d1565b91505092915050565b6000813590506124d2816136c7565b92915050565b6000602082840312156124ee576124ed6132a9565b5b60006124fc84828501612413565b91505092915050565b6000806040838503121561251c5761251b6132a9565b5b600061252a85828601612413565b925050602061253b85828601612413565b9150509250929050565b60008060006060848603121561255e5761255d6132a9565b5b600061256c86828701612413565b935050602061257d86828701612413565b925050604061258e868287016124c3565b9150509250925092565b600080600080608085870312156125b2576125b16132a9565b5b60006125c087828801612413565b94505060206125d187828801612413565b93505060406125e2878288016124c3565b925050606085013567ffffffffffffffff811115612603576126026132a4565b5b61260f87828801612467565b91505092959194509250565b60008060408385031215612632576126316132a9565b5b600061264085828601612413565b925050602061265185828601612428565b9150509250929050565b60008060408385031215612672576126716132a9565b5b600061268085828601612413565b9250506020612691858286016124c3565b9150509250929050565b6000602082840312156126b1576126b06132a9565b5b60006126bf84828501612428565b91505092915050565b6000602082840312156126de576126dd6132a9565b5b60006126ec8482850161243d565b91505092915050565b60006020828403121561270b5761270a6132a9565b5b600061271984828501612452565b91505092915050565b600060208284031215612738576127376132a9565b5b600082013567ffffffffffffffff811115612756576127556132a4565b5b61276284828501612495565b91505092915050565b600060208284031215612781576127806132a9565b5b600061278f848285016124c3565b91505092915050565b6127a18161301c565b82525050565b6127b08161302e565b82525050565b60006127c182612eb9565b6127cb8185612ecf565b93506127db81856020860161309f565b6127e4816132ae565b840191505092915050565b60006127fa82612ec4565b6128048185612eeb565b935061281481856020860161309f565b61281d816132ae565b840191505092915050565b600061283382612ec4565b61283d8185612efc565b935061284d81856020860161309f565b80840191505092915050565b60008154612866816130d2565b6128708186612efc565b9450600182166000811461288b576001811461289c576128cf565b60ff198316865281860193506128cf565b6128a585612ea4565b60005b838110156128c7578154818901526001820191506020810190506128a8565b838801955050505b50505092915050565b60006128e5602583612eeb565b91506128f0826132bf565b604082019050919050565b6000612908602683612eeb565b91506129138261330e565b604082019050919050565b600061292b603a83612eeb565b91506129368261335d565b604082019050919050565b600061294e601d83612eeb565b9150612959826133ac565b602082019050919050565b6000612971601883612eeb565b915061297c826133d5565b602082019050919050565b6000612994602583612eeb565b915061299f826133fe565b604082019050919050565b60006129b7601783612eeb565b91506129c28261344d565b602082019050919050565b60006129da601683612eeb565b91506129e582613476565b602082019050919050565b60006129fd602083612eeb565b9150612a088261349f565b602082019050919050565b6000612a20602f83612eeb565b9150612a2b826134c8565b604082019050919050565b6000612a43602683612eeb565b9150612a4e82613517565b604082019050919050565b6000612a66602583612eeb565b9150612a7182613566565b604082019050919050565b6000612a89602783612eeb565b9150612a94826135b5565b604082019050919050565b6000612aac600083612ee0565b9150612ab782613604565b600082019050919050565b6000612acf601383612eeb565b9150612ada82613607565b602082019050919050565b6000612af2601f83612eeb565b9150612afd82613630565b602082019050919050565b6000612b15600183612efc565b9150612b2082613659565b600182019050919050565b612b3481613086565b82525050565b6000612b468285612859565b9150612b5182612b08565b9150612b5d8284612828565b91508190509392505050565b6000612b7482612a9f565b9150819050919050565b6000602082019050612b936000830184612798565b92915050565b6000608082019050612bae6000830187612798565b612bbb6020830186612798565b612bc86040830185612b2b565b8181036060830152612bda81846127b6565b905095945050505050565b6000602082019050612bfa60008301846127a7565b92915050565b60006020820190508181036000830152612c1a81846127ef565b905092915050565b60006020820190508181036000830152612c3b816128d8565b9050919050565b60006020820190508181036000830152612c5b816128fb565b9050919050565b60006020820190508181036000830152612c7b8161291e565b9050919050565b60006020820190508181036000830152612c9b81612941565b9050919050565b60006020820190508181036000830152612cbb81612964565b9050919050565b60006020820190508181036000830152612cdb81612987565b9050919050565b60006020820190508181036000830152612cfb816129aa565b9050919050565b60006020820190508181036000830152612d1b816129cd565b9050919050565b60006020820190508181036000830152612d3b816129f0565b9050919050565b60006020820190508181036000830152612d5b81612a13565b9050919050565b60006020820190508181036000830152612d7b81612a36565b9050919050565b60006020820190508181036000830152612d9b81612a59565b9050919050565b60006020820190508181036000830152612dbb81612a7c565b9050919050565b60006020820190508181036000830152612ddb81612ac2565b9050919050565b60006020820190508181036000830152612dfb81612ae5565b9050919050565b6000602082019050612e176000830184612b2b565b92915050565b6000612e27612e38565b9050612e338282613104565b919050565b6000604051905090565b600067ffffffffffffffff821115612e5d57612e5c61326b565b5b612e66826132ae565b9050602081019050919050565b600067ffffffffffffffff821115612e8e57612e8d61326b565b5b612e97826132ae565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612f1282613086565b9150612f1d83613086565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f5257612f516131af565b5b828201905092915050565b6000612f6882613086565b9150612f7383613086565b925082612f8357612f826131de565b5b828204905092915050565b6000612f9982613086565b9150612fa483613086565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612fdd57612fdc6131af565b5b828202905092915050565b6000612ff382613086565b9150612ffe83613086565b925082821015613011576130106131af565b5b828203905092915050565b600061302782613066565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156130bd5780820151818401526020810190506130a2565b838111156130cc576000848401525b50505050565b600060028204905060018216806130ea57607f821691505b602082108114156130fe576130fd61320d565b5b50919050565b61310d826132ae565b810181811067ffffffffffffffff8211171561312c5761312b61326b565b5b80604052505050565b600061314082613086565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613173576131726131af565b5b600182019050919050565b600061318982613086565b915061319483613086565b9250826131a4576131a36131de565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f496e76616c6964204554482076616c75652073656e742e204572726f7220436f60008201527f64653a2033000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d6178696d756d20737570706c792065786365656465642e0000000000000000600082015250565b7f496e76616c6964204554482076616c75652073656e742e204572726f7220436f60008201527f64653a2032000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f5075626c69632073616c65206973207061757365642e00000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d6178696d756d206d696e747320706572207472616e73616374696f6e20657860008201527f6365656465640000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964204554482076616c75652073656e742e204572726f7220436f60008201527f64653a2031000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d206d696e747320706572207472616e73616374696f6e20657860008201527f6365656465642e00000000000000000000000000000000000000000000000000602082015250565b50565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b61368b8161301c565b811461369657600080fd5b50565b6136a28161302e565b81146136ad57600080fd5b50565b6136b98161303a565b81146136c457600080fd5b50565b6136d081613086565b81146136db57600080fd5b5056fea2646970667358221220ee3c6b5f9fec8c686fda29330d856f09e3bffa192043bcfbb22b17142902fe1c64736f6c63430008070033697066733a2f2f626166796265696279727772347a693578776d68616a79746e6a6f75363576646b666e7871626564626d6e646a7437367572647a73666c366b77342f

Deployed Bytecode

0x60806040526004361061021a5760003560e01c806370a0823111610123578063a0712d68116100ab578063d547cfb71161006f578063d547cfb71461078c578063d5abeb01146107b7578063e985e9c5146107e2578063efdc77881461081f578063f2fde38b146108485761021a565b8063a0712d68146106b6578063a22cb465146106d2578063b88d4fde146106fb578063c6a91b4214610724578063c87b56dd1461074f5761021a565b80638da5cb5b116100f25780638da5cb5b146105e157806395d89b411461060c578063982d669e1461063757806398710d1e146106625780639e9fcffc1461068d5761021a565b806370a0823114610537578063715018a6146105745780638bc9a4c61461058b5780638d87caff146105b65761021a565b80631e84c413116101a65780632fbc0bf1116101755780632fbc0bf1146104665780633ccfd60b1461049157806342842e0e146104a857806355f804b3146104d15780636352211e146104fa5761021a565b80631e84c413146103c0578063202f298a146103eb57806323b872dd1461041457806328cad13d1461043d5761021a565b8063095ea7b3116101ed578063095ea7b3146102ef5780630a00ae831461031857806318160ddd146103415780631919fed71461036c578063193ad7b4146103955761021a565b806301ffc9a71461021f57806306fdde031461025c57806307e89ec014610287578063081812fc146102b2575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906126c8565b610871565b6040516102539190612be5565b60405180910390f35b34801561026857600080fd5b50610271610903565b60405161027e9190612c00565b60405180910390f35b34801561029357600080fd5b5061029c610995565b6040516102a99190612e02565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d4919061276b565b61099b565b6040516102e69190612b7e565b60405180910390f35b3480156102fb57600080fd5b506103166004803603810190610311919061265b565b610a17565b005b34801561032457600080fd5b5061033f600480360381019061033a919061276b565b610b58565b005b34801561034d57600080fd5b50610356610b6a565b6040516103639190612e02565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e919061276b565b610b81565b005b3480156103a157600080fd5b506103aa610b93565b6040516103b79190612e02565b60405180910390f35b3480156103cc57600080fd5b506103d5610b99565b6040516103e29190612be5565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d919061276b565b610bac565b005b34801561042057600080fd5b5061043b60048036038101906104369190612545565b610bbe565b005b34801561044957600080fd5b50610464600480360381019061045f919061269b565b610ee3565b005b34801561047257600080fd5b5061047b610f08565b6040516104889190612e02565b60405180910390f35b34801561049d57600080fd5b506104a6610f12565b005b3480156104b457600080fd5b506104cf60048036038101906104ca9190612545565b610f7c565b005b3480156104dd57600080fd5b506104f860048036038101906104f39190612722565b610f9c565b005b34801561050657600080fd5b50610521600480360381019061051c919061276b565b610fbe565b60405161052e9190612b7e565b60405180910390f35b34801561054357600080fd5b5061055e600480360381019061055991906124d8565b610fd0565b60405161056b9190612e02565b60405180910390f35b34801561058057600080fd5b50610589611089565b005b34801561059757600080fd5b506105a061109d565b6040516105ad9190612be5565b60405180910390f35b3480156105c257600080fd5b506105cb6110b4565b6040516105d89190612e02565b60405180910390f35b3480156105ed57600080fd5b506105f66110be565b6040516106039190612b7e565b60405180910390f35b34801561061857600080fd5b506106216110e8565b60405161062e9190612c00565b60405180910390f35b34801561064357600080fd5b5061064c61117a565b6040516106599190612e02565b60405180910390f35b34801561066e57600080fd5b50610677611180565b6040516106849190612e02565b60405180910390f35b34801561069957600080fd5b506106b460048036038101906106af919061276b565b611186565b005b6106d060048036038101906106cb919061276b565b611198565b005b3480156106de57600080fd5b506106f960048036038101906106f4919061261b565b61147c565b005b34801561070757600080fd5b50610722600480360381019061071d9190612598565b6115f4565b005b34801561073057600080fd5b50610739611667565b6040516107469190612e02565b60405180910390f35b34801561075b57600080fd5b506107766004803603810190610771919061276b565b61166d565b6040516107839190612c00565b60405180910390f35b34801561079857600080fd5b506107a16116e9565b6040516107ae9190612c00565b60405180910390f35b3480156107c357600080fd5b506107cc611777565b6040516107d99190612e02565b60405180910390f35b3480156107ee57600080fd5b5061080960048036038101906108049190612505565b61177d565b6040516108169190612be5565b60405180910390f35b34801561082b57600080fd5b506108466004803603810190610841919061276b565b611811565b005b34801561085457600080fd5b5061086f600480360381019061086a91906124d8565b6118c0565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108cc57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108fc5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610912906130d2565b80601f016020809104026020016040519081016040528092919081815260200182805461093e906130d2565b801561098b5780601f106109605761010080835404028352916020019161098b565b820191906000526020600020905b81548152906001019060200180831161096e57829003601f168201915b5050505050905090565b600e5481565b60006109a682611944565b6109dc576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2282610fbe565b90508073ffffffffffffffffffffffffffffffffffffffff16610a436119a3565b73ffffffffffffffffffffffffffffffffffffffff1614610aa657610a6f81610a6a6119a3565b61177d565b610aa5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b606119ab565b80600f8190555050565b6000610b74611a29565b6001546000540303905090565b610b896119ab565b80600e8190555050565b60115481565b600b60009054906101000a900460ff1681565b610bb46119ab565b8060108190555050565b6000610bc982611a2e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c30576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c3c84611afc565b91509150610c528187610c4d6119a3565b611b1e565b610c9e57610c6786610c626119a3565b61177d565b610c9d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d05576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d128686866001611b62565b8015610d1d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610deb85610dc7888887611b68565b7c020000000000000000000000000000000000000000000000000000000017611b90565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e73576000600185019050600060046000838152602001908152602001600020541415610e71576000548114610e70578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610edb8686866001611bbb565b505050505050565b610eeb6119ab565b80600b60006101000a81548160ff02191690831515021790555050565b6000600e54905090565b610f1a6119ab565b60026009541415610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5790612de2565b60405180910390fd5b6002600981905550610f723347611bc1565b6001600981905550565b610f97838383604051806020016040528060008152506115f4565b505050565b610fa46119ab565b80600a9080519060200190610fba9291906122ec565b5050565b6000610fc982611a2e565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611038576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110916119ab565b61109b6000611cb5565b565b6000600b60009054906101000a900460ff16905090565b6000601154905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110f7906130d2565b80601f0160208091040260200160405190810160405280929190818152602001828054611123906130d2565b80156111705780601f1061114557610100808354040283529160200191611170565b820191906000526020600020905b81548152906001019060200180831161115357829003601f168201915b5050505050905090565b600f5481565b60105481565b61118e6119ab565b80600d8190555050565b600b60009054906101000a900460ff166111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111de90612d02565b60405180910390fd5b6001600c546111f69190612f07565b816111ff610b6a565b6112099190612f07565b10611249576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124090612ca2565b60405180910390fd5b600d5481111561128e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128590612da2565b60405180910390fd5b600f548160115461129f9190612f07565b11156112fa573481600e546112b49190612f8e565b11156112f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ec90612d82565b60405180910390fd5b61146f565b600061130533610fd0565b905060105482826113169190612f07565b111561140e576010548110156113b8576000816010546113369190612fe8565b9050600081846113469190612fe8565b90503481600e546113579190612f8e565b1115611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f90612cc2565b60405180910390fd5b81601160008282546113aa9190612f07565b925050819055505050611409565b3482600e546113c79190612f8e565b1115611408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ff90612c22565b60405180910390fd5b5b61146d565b601054821115611453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144a90612d62565b60405180910390fd5b81601160008282546114659190612f07565b925050819055505b505b6114793382611d7b565b50565b6114846119a3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114e9576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114f66119a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115a36119a3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115e89190612be5565b60405180910390a35050565b6115ff848484610bbe565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116615761162a84848484611d99565b611660576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600d5481565b606061167882611944565b6116b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ae90612d42565b60405180910390fd5b600a6116c283611ef9565b6040516020016116d3929190612b3a565b6040516020818303038152906040529050919050565b600a80546116f6906130d2565b80601f0160208091040260200160405190810160405280929190818152602001828054611722906130d2565b801561176f5780601f106117445761010080835404028352916020019161176f565b820191906000526020600020905b81548152906001019060200180831161175257829003601f168201915b505050505081565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118196119ab565b6000811161185c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185390612dc2565b60405180910390fd5b600c5481611868610b6a565b6118729190612f07565b11156118b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118aa90612ce2565b60405180910390fd5b6118bd3382611d7b565b50565b6118c86119ab565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192f90612c42565b60405180910390fd5b61194181611cb5565b50565b60008161194f611a29565b1115801561195e575060005482105b801561199c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6119b361205a565b73ffffffffffffffffffffffffffffffffffffffff166119d16110be565b73ffffffffffffffffffffffffffffffffffffffff1614611a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1e90612d22565b60405180910390fd5b565b600090565b60008082905080611a3d611a29565b11611ac557600054811015611ac45760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611ac2575b6000811415611ab8576004600083600190039350838152602001908152602001600020549050611a8d565b8092505050611af7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b7f868684612062565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b80471015611c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfb90612c82565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611c2a90612b69565b60006040518083038185875af1925050503d8060008114611c67576040519150601f19603f3d011682016040523d82523d6000602084013e611c6c565b606091505b5050905080611cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca790612c62565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d9582826040518060200160405280600081525061206b565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611dbf6119a3565b8786866040518563ffffffff1660e01b8152600401611de19493929190612b99565b602060405180830381600087803b158015611dfb57600080fd5b505af1925050508015611e2c57506040513d601f19601f82011682018060405250810190611e2991906126f5565b60015b611ea6573d8060008114611e5c576040519150601f19603f3d011682016040523d82523d6000602084013e611e61565b606091505b50600081511415611e9e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611f41576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612055565b600082905060005b60008214611f73578080611f5c90613135565b915050600a82611f6c9190612f5d565b9150611f49565b60008167ffffffffffffffff811115611f8f57611f8e61326b565b5b6040519080825280601f01601f191660200182016040528015611fc15781602001600182028036833780820191505090505b5090505b6000851461204e57600182611fda9190612fe8565b9150600a85611fe9919061317e565b6030611ff59190612f07565b60f81b81838151811061200b5761200a61323c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120479190612f5d565b9450611fc5565b8093505050505b919050565b600033905090565b60009392505050565b6120758383612108565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461210357600080549050600083820390505b6120b56000868380600101945086611d99565b6120eb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120a257816000541461210057600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612175576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156121b0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121bd6000848385611b62565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612234836122256000866000611b68565b61222e856122dc565b17611b90565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612258578060008190555050506122d76000848385611bbb565b505050565b60006001821460e11b9050919050565b8280546122f8906130d2565b90600052602060002090601f01602090048101928261231a5760008555612361565b82601f1061233357805160ff1916838001178555612361565b82800160010185558215612361579182015b82811115612360578251825591602001919060010190612345565b5b50905061236e9190612372565b5090565b5b8082111561238b576000816000905550600101612373565b5090565b60006123a261239d84612e42565b612e1d565b9050828152602081018484840111156123be576123bd61329f565b5b6123c9848285613090565b509392505050565b60006123e46123df84612e73565b612e1d565b905082815260208101848484011115612400576123ff61329f565b5b61240b848285613090565b509392505050565b60008135905061242281613682565b92915050565b60008135905061243781613699565b92915050565b60008135905061244c816136b0565b92915050565b600081519050612461816136b0565b92915050565b600082601f83011261247c5761247b61329a565b5b813561248c84826020860161238f565b91505092915050565b600082601f8301126124aa576124a961329a565b5b81356124ba8482602086016123d1565b91505092915050565b6000813590506124d2816136c7565b92915050565b6000602082840312156124ee576124ed6132a9565b5b60006124fc84828501612413565b91505092915050565b6000806040838503121561251c5761251b6132a9565b5b600061252a85828601612413565b925050602061253b85828601612413565b9150509250929050565b60008060006060848603121561255e5761255d6132a9565b5b600061256c86828701612413565b935050602061257d86828701612413565b925050604061258e868287016124c3565b9150509250925092565b600080600080608085870312156125b2576125b16132a9565b5b60006125c087828801612413565b94505060206125d187828801612413565b93505060406125e2878288016124c3565b925050606085013567ffffffffffffffff811115612603576126026132a4565b5b61260f87828801612467565b91505092959194509250565b60008060408385031215612632576126316132a9565b5b600061264085828601612413565b925050602061265185828601612428565b9150509250929050565b60008060408385031215612672576126716132a9565b5b600061268085828601612413565b9250506020612691858286016124c3565b9150509250929050565b6000602082840312156126b1576126b06132a9565b5b60006126bf84828501612428565b91505092915050565b6000602082840312156126de576126dd6132a9565b5b60006126ec8482850161243d565b91505092915050565b60006020828403121561270b5761270a6132a9565b5b600061271984828501612452565b91505092915050565b600060208284031215612738576127376132a9565b5b600082013567ffffffffffffffff811115612756576127556132a4565b5b61276284828501612495565b91505092915050565b600060208284031215612781576127806132a9565b5b600061278f848285016124c3565b91505092915050565b6127a18161301c565b82525050565b6127b08161302e565b82525050565b60006127c182612eb9565b6127cb8185612ecf565b93506127db81856020860161309f565b6127e4816132ae565b840191505092915050565b60006127fa82612ec4565b6128048185612eeb565b935061281481856020860161309f565b61281d816132ae565b840191505092915050565b600061283382612ec4565b61283d8185612efc565b935061284d81856020860161309f565b80840191505092915050565b60008154612866816130d2565b6128708186612efc565b9450600182166000811461288b576001811461289c576128cf565b60ff198316865281860193506128cf565b6128a585612ea4565b60005b838110156128c7578154818901526001820191506020810190506128a8565b838801955050505b50505092915050565b60006128e5602583612eeb565b91506128f0826132bf565b604082019050919050565b6000612908602683612eeb565b91506129138261330e565b604082019050919050565b600061292b603a83612eeb565b91506129368261335d565b604082019050919050565b600061294e601d83612eeb565b9150612959826133ac565b602082019050919050565b6000612971601883612eeb565b915061297c826133d5565b602082019050919050565b6000612994602583612eeb565b915061299f826133fe565b604082019050919050565b60006129b7601783612eeb565b91506129c28261344d565b602082019050919050565b60006129da601683612eeb565b91506129e582613476565b602082019050919050565b60006129fd602083612eeb565b9150612a088261349f565b602082019050919050565b6000612a20602f83612eeb565b9150612a2b826134c8565b604082019050919050565b6000612a43602683612eeb565b9150612a4e82613517565b604082019050919050565b6000612a66602583612eeb565b9150612a7182613566565b604082019050919050565b6000612a89602783612eeb565b9150612a94826135b5565b604082019050919050565b6000612aac600083612ee0565b9150612ab782613604565b600082019050919050565b6000612acf601383612eeb565b9150612ada82613607565b602082019050919050565b6000612af2601f83612eeb565b9150612afd82613630565b602082019050919050565b6000612b15600183612efc565b9150612b2082613659565b600182019050919050565b612b3481613086565b82525050565b6000612b468285612859565b9150612b5182612b08565b9150612b5d8284612828565b91508190509392505050565b6000612b7482612a9f565b9150819050919050565b6000602082019050612b936000830184612798565b92915050565b6000608082019050612bae6000830187612798565b612bbb6020830186612798565b612bc86040830185612b2b565b8181036060830152612bda81846127b6565b905095945050505050565b6000602082019050612bfa60008301846127a7565b92915050565b60006020820190508181036000830152612c1a81846127ef565b905092915050565b60006020820190508181036000830152612c3b816128d8565b9050919050565b60006020820190508181036000830152612c5b816128fb565b9050919050565b60006020820190508181036000830152612c7b8161291e565b9050919050565b60006020820190508181036000830152612c9b81612941565b9050919050565b60006020820190508181036000830152612cbb81612964565b9050919050565b60006020820190508181036000830152612cdb81612987565b9050919050565b60006020820190508181036000830152612cfb816129aa565b9050919050565b60006020820190508181036000830152612d1b816129cd565b9050919050565b60006020820190508181036000830152612d3b816129f0565b9050919050565b60006020820190508181036000830152612d5b81612a13565b9050919050565b60006020820190508181036000830152612d7b81612a36565b9050919050565b60006020820190508181036000830152612d9b81612a59565b9050919050565b60006020820190508181036000830152612dbb81612a7c565b9050919050565b60006020820190508181036000830152612ddb81612ac2565b9050919050565b60006020820190508181036000830152612dfb81612ae5565b9050919050565b6000602082019050612e176000830184612b2b565b92915050565b6000612e27612e38565b9050612e338282613104565b919050565b6000604051905090565b600067ffffffffffffffff821115612e5d57612e5c61326b565b5b612e66826132ae565b9050602081019050919050565b600067ffffffffffffffff821115612e8e57612e8d61326b565b5b612e97826132ae565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612f1282613086565b9150612f1d83613086565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f5257612f516131af565b5b828201905092915050565b6000612f6882613086565b9150612f7383613086565b925082612f8357612f826131de565b5b828204905092915050565b6000612f9982613086565b9150612fa483613086565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612fdd57612fdc6131af565b5b828202905092915050565b6000612ff382613086565b9150612ffe83613086565b925082821015613011576130106131af565b5b828203905092915050565b600061302782613066565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156130bd5780820151818401526020810190506130a2565b838111156130cc576000848401525b50505050565b600060028204905060018216806130ea57607f821691505b602082108114156130fe576130fd61320d565b5b50919050565b61310d826132ae565b810181811067ffffffffffffffff8211171561312c5761312b61326b565b5b80604052505050565b600061314082613086565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613173576131726131af565b5b600182019050919050565b600061318982613086565b915061319483613086565b9250826131a4576131a36131de565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f496e76616c6964204554482076616c75652073656e742e204572726f7220436f60008201527f64653a2033000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d6178696d756d20737570706c792065786365656465642e0000000000000000600082015250565b7f496e76616c6964204554482076616c75652073656e742e204572726f7220436f60008201527f64653a2032000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f5075626c69632073616c65206973207061757365642e00000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d6178696d756d206d696e747320706572207472616e73616374696f6e20657860008201527f6365656465640000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964204554482076616c75652073656e742e204572726f7220436f60008201527f64653a2031000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d206d696e747320706572207472616e73616374696f6e20657860008201527f6365656465642e00000000000000000000000000000000000000000000000000602082015250565b50565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b61368b8161301c565b811461369657600080fd5b50565b6136a28161302e565b81146136ad57600080fd5b50565b6136b98161303a565b81146136c457600080fd5b50565b6136d081613086565b81146136db57600080fd5b5056fea2646970667358221220ee3c6b5f9fec8c686fda29330d856f09e3bffa192043bcfbb22b17142902fe1c64736f6c63430008070033

Deployed Bytecode Sourcemap

62173:4052:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31977:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37624:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62519:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39570:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39118:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65598:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31031:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65842:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62657:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62397:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66096:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48835:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65444:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65733:103;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64608:142;;;;;;;;;;;;;:::i;:::-;;40460:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64244:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37413:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32656:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16616:103;;;;;;;;;;;;;:::i;:::-;;65191:117;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65314:124;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15968:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37793:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62571:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62613:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65963:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62753:1485;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39846:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40716:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62478:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64756:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62292:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62441:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40225:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64358:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16874:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31977:615;32062:4;32377:10;32362:25;;:11;:25;;;;:102;;;;32454:10;32439:25;;:11;:25;;;;32362:102;:179;;;;32531:10;32516:25;;:11;:25;;;;32362:179;32342:199;;31977:615;;;:::o;37624:100::-;37678:13;37711:5;37704:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37624:100;:::o;62519:47::-;;;;:::o;39570:204::-;39638:7;39663:16;39671:7;39663;:16::i;:::-;39658:64;;39688:34;;;;;;;;;;;;;;39658:64;39742:15;:24;39758:7;39742:24;;;;;;;;;;;;;;;;;;;;;39735:31;;39570:204;;;:::o;39118:386::-;39191:13;39207:16;39215:7;39207;:16::i;:::-;39191:32;;39263:5;39240:28;;:19;:17;:19::i;:::-;:28;;;39236:175;;39288:44;39305:5;39312:19;:17;:19::i;:::-;39288:16;:44::i;:::-;39283:128;;39360:35;;;;;;;;;;;;;;39283:128;39236:175;39450:2;39423:15;:24;39439:7;39423:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39488:7;39484:2;39468:28;;39477:5;39468:28;;;;;;;;;;;;39180:324;39118:386;;:::o;65598:129::-;15854:13;:11;:13::i;:::-;65708::::1;65691:14;:30;;;;65598:129:::0;:::o;31031:315::-;31084:7;31312:15;:13;:15::i;:::-;31297:12;;31281:13;;:28;:46;31274:53;;31031:315;:::o;65842:115::-;15854:13;:11;:13::i;:::-;65945:6:::1;65925:17;:26;;;;65842:115:::0;:::o;62657:40::-;;;;:::o;62397:37::-;;;;;;;;;;;;;:::o;66096:126::-;15854:13;:11;:13::i;:::-;66210:6:::1;66188:19;:28;;;;66096:126:::0;:::o;48835:2800::-;48969:27;48999;49018:7;48999:18;:27::i;:::-;48969:57;;49084:4;49043:45;;49059:19;49043:45;;;49039:86;;49097:28;;;;;;;;;;;;;;49039:86;49139:27;49168:23;49195:28;49215:7;49195:19;:28::i;:::-;49138:85;;;;49323:62;49342:15;49359:4;49365:19;:17;:19::i;:::-;49323:18;:62::i;:::-;49318:174;;49405:43;49422:4;49428:19;:17;:19::i;:::-;49405:16;:43::i;:::-;49400:92;;49457:35;;;;;;;;;;;;;;49400:92;49318:174;49523:1;49509:16;;:2;:16;;;49505:52;;;49534:23;;;;;;;;;;;;;;49505:52;49570:43;49592:4;49598:2;49602:7;49611:1;49570:21;:43::i;:::-;49706:15;49703:160;;;49846:1;49825:19;49818:30;49703:160;50241:18;:24;50260:4;50241:24;;;;;;;;;;;;;;;;50239:26;;;;;;;;;;;;50310:18;:22;50329:2;50310:22;;;;;;;;;;;;;;;;50308:24;;;;;;;;;;;50632:145;50669:2;50717:45;50732:4;50738:2;50742:19;50717:14;:45::i;:::-;28259:8;50690:72;50632:18;:145::i;:::-;50603:17;:26;50621:7;50603:26;;;;;;;;;;;:174;;;;50947:1;28259:8;50897:19;:46;:51;50893:626;;;50969:19;51001:1;50991:7;:11;50969:33;;51158:1;51124:17;:30;51142:11;51124:30;;;;;;;;;;;;:35;51120:384;;;51262:13;;51247:11;:28;51243:242;;51442:19;51409:17;:30;51427:11;51409:30;;;;;;;;;;;:52;;;;51243:242;51120:384;50950:569;50893:626;51566:7;51562:2;51547:27;;51556:4;51547:27;;;;;;;;;;;;51585:42;51606:4;51612:2;51616:7;51625:1;51585:20;:42::i;:::-;48958:2677;;;48835:2800;;;:::o;65444:148::-;15854:13;:11;:13::i;:::-;65567:19:::1;65546:18;;:40;;;;;;;;;;;;;;;;;;65444:148:::0;:::o;65733:103::-;65787:7;65813:17;;65806:24;;65733:103;:::o;64608:142::-;15854:13;:11;:13::i;:::-;12893:1:::1;13491:7;;:19;;13483:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;12893:1;13624:7;:18;;;;64683:61:::2;64709:10;64722:21;64683:17;:61::i;:::-;12849:1:::1;13803:7;:22;;;;64608:142::o:0;40460:185::-;40598:39;40615:4;40621:2;40625:7;40598:39;;;;;;;;;;;;:16;:39::i;:::-;40460:185;;;:::o;64244:108::-;15854:13;:11;:13::i;:::-;64339:7:::1;64324:12;:22;;;;;;;;;;;;:::i;:::-;;64244:108:::0;:::o;37413:144::-;37477:7;37520:27;37539:7;37520:18;:27::i;:::-;37497:52;;37413:144;;;:::o;32656:224::-;32720:7;32761:1;32744:19;;:5;:19;;;32740:60;;;32772:28;;;;;;;;;;;;;;32740:60;27211:13;32818:18;:25;32837:5;32818:25;;;;;;;;;;;;;;;;:54;32811:61;;32656:224;;;:::o;16616:103::-;15854:13;:11;:13::i;:::-;16681:30:::1;16708:1;16681:18;:30::i;:::-;16616:103::o:0;65191:117::-;65262:4;65284:18;;;;;;;;;;;65277:25;;65191:117;:::o;65314:124::-;65387:7;65412:20;;65405:27;;65314:124;:::o;15968:87::-;16014:7;16041:6;;;;;;;;;;;16034:13;;15968:87;:::o;37793:104::-;37849:13;37882:7;37875:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37793:104;:::o;62571:37::-;;;;:::o;62613:39::-;;;;:::o;65963:127::-;15854:13;:11;:13::i;:::-;66078:6:::1;66059:16;:25;;;;65963:127:::0;:::o;62753:1485::-;62826:18;;;;;;;;;;;62818:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;62931:1;62919:9;;:13;;;;:::i;:::-;62902:14;62886:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:46;62878:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;62996:16;;62978:14;:34;;62970:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;63108:14;;63091;63068:20;;:37;;;;:::i;:::-;:54;63065:1122;;;63186:9;63168:14;63148:17;;:34;;;;:::i;:::-;:47;;63140:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;63065:1122;;;63274:19;63296:21;63306:10;63296:9;:21::i;:::-;63274:43;;63376:19;;63359:14;63342;:31;;;;:::i;:::-;:53;63338:842;;;63444:19;;63427:14;:36;63423:551;;;63497:19;63541:14;63519:19;;:36;;;;:::i;:::-;63497:58;;63574:15;63609:14;63592;:31;;;;:::i;:::-;63574:49;;63684:9;63670:10;63650:17;;:30;;;;:::i;:::-;:43;;63642:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;63780:14;63756:20;;:38;;;;;;;:::i;:::-;;;;;;;;63478:332;;63423:551;;;63907:9;63889:14;63869:17;;:34;;;;:::i;:::-;:47;;63861:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;63423:551;63338:842;;;64053:19;;64035:14;:37;;64027:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;64154:14;64130:20;;:38;;;;;;;:::i;:::-;;;;;;;;63338:842;63263:924;63065:1122;64195:37;64205:10;64217:14;64195:9;:37::i;:::-;62753:1485;:::o;39846:308::-;39957:19;:17;:19::i;:::-;39945:31;;:8;:31;;;39941:61;;;39985:17;;;;;;;;;;;;;;39941:61;40067:8;40015:18;:39;40034:19;:17;:19::i;:::-;40015:39;;;;;;;;;;;;;;;:49;40055:8;40015:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;40127:8;40091:55;;40106:19;:17;:19::i;:::-;40091:55;;;40137:8;40091:55;;;;;;:::i;:::-;;;;;;;;39846:308;;:::o;40716:399::-;40883:31;40896:4;40902:2;40906:7;40883:12;:31::i;:::-;40947:1;40929:2;:14;;;:19;40925:183;;40968:56;40999:4;41005:2;41009:7;41018:5;40968:30;:56::i;:::-;40963:145;;41052:40;;;;;;;;;;;;;;40963:145;40925:183;40716:399;;;;:::o;62478:36::-;;;;:::o;64756:288::-;64852:13;64885:17;64893:8;64885:7;:17::i;:::-;64877:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;64998:12;65017:19;:8;:17;:19::i;:::-;64981:56;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64967:71;;64756:288;;;:::o;62292:100::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;62441:32::-;;;;:::o;40225:164::-;40322:4;40346:18;:25;40365:5;40346:25;;;;;;;;;;;;;;;:35;40372:8;40346:35;;;;;;;;;;;;;;;;;;;;;;;;;40339:42;;40225:164;;;;:::o;64358:244::-;15854:13;:11;:13::i;:::-;64451:1:::1;64440:8;:12;64432:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;64519:9;;64507:8;64491:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;64483:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;64565:31;64575:10;64587:8;64565:9;:31::i;:::-;64358:244:::0;:::o;16874:201::-;15854:13;:11;:13::i;:::-;16983:1:::1;16963:22;;:8;:22;;;;16955:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;17039:28;17058:8;17039:18;:28::i;:::-;16874:201:::0;:::o;41370:273::-;41427:4;41483:7;41464:15;:13;:15::i;:::-;:26;;:66;;;;;41517:13;;41507:7;:23;41464:66;:152;;;;;41615:1;27981:8;41568:17;:26;41586:7;41568:26;;;;;;;;;;;;:43;:48;41464:152;41444:172;;41370:273;;;:::o;59931:105::-;59991:7;60018:10;60011:17;;59931:105;:::o;16133:132::-;16208:12;:10;:12::i;:::-;16197:23;;:7;:5;:7::i;:::-;:23;;;16189:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16133:132::o;30555:92::-;30611:7;30555:92;:::o;34330:1129::-;34397:7;34417:12;34432:7;34417:22;;34500:4;34481:15;:13;:15::i;:::-;:23;34477:915;;34534:13;;34527:4;:20;34523:869;;;34572:14;34589:17;:23;34607:4;34589:23;;;;;;;;;;;;34572:40;;34705:1;27981:8;34678:6;:23;:28;34674:699;;;35197:113;35214:1;35204:6;:11;35197:113;;;35257:17;:25;35275:6;;;;;;;35257:25;;;;;;;;;;;;35248:34;;35197:113;;;35343:6;35336:13;;;;;;34674:699;34549:843;34523:869;34477:915;35420:31;;;;;;;;;;;;;;34330:1129;;;;:::o;47171:652::-;47266:27;47295:23;47336:53;47392:15;47336:71;;47578:7;47572:4;47565:21;47613:22;47607:4;47600:36;47689:4;47683;47673:21;47650:44;;47785:19;47779:26;47760:45;;47516:300;47171:652;;;:::o;47936:645::-;48078:11;48240:15;48234:4;48230:26;48222:34;;48399:15;48388:9;48384:31;48371:44;;48546:15;48535:9;48532:30;48525:4;48514:9;48511:19;48508:55;48498:65;;47936:645;;;;;:::o;58764:159::-;;;;;:::o;57076:309::-;57211:7;57231:16;28382:3;57257:19;:40;;57231:67;;28382:3;57324:31;57335:4;57341:2;57345:9;57324:10;:31::i;:::-;57316:40;;:61;;57309:68;;;57076:309;;;;;:::o;36904:447::-;36984:14;37152:15;37145:5;37141:27;37132:36;;37326:5;37312:11;37288:22;37284:40;37281:51;37274:5;37271:62;37261:72;;36904:447;;;;:::o;59582:158::-;;;;;:::o;5022:317::-;5137:6;5112:21;:31;;5104:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5191:12;5209:9;:14;;5231:6;5209:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5190:52;;;5261:7;5253:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;5093:246;5022:317;;:::o;17235:191::-;17309:16;17328:6;;;;;;;;;;;17309:25;;17354:8;17345:6;;:17;;;;;;;;;;;;;;;;;;17409:8;17378:40;;17399:8;17378:40;;;;;;;;;;;;17298:128;17235:191;:::o;41727:104::-;41796:27;41806:2;41810:8;41796:27;;;;;;;;;;;;:9;:27::i;:::-;41727:104;;:::o;55586:716::-;55749:4;55795:2;55770:45;;;55816:19;:17;:19::i;:::-;55837:4;55843:7;55852:5;55770:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;55766:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56070:1;56053:6;:13;:18;56049:235;;;56099:40;;;;;;;;;;;;;;56049:235;56242:6;56236:13;56227:6;56223:2;56219:15;56212:38;55766:529;55939:54;;;55929:64;;;:6;:64;;;;55922:71;;;55586:716;;;;;;:::o;461:723::-;517:13;747:1;738:5;:10;734:53;;;765:10;;;;;;;;;;;;;;;;;;;;;734:53;797:12;812:5;797:20;;828:14;853:78;868:1;860:4;:9;853:78;;886:8;;;;;:::i;:::-;;;;917:2;909:10;;;;;:::i;:::-;;;853:78;;;941:19;973:6;963:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;941:39;;991:154;1007:1;998:5;:10;991:154;;1035:1;1025:11;;;;;:::i;:::-;;;1102:2;1094:5;:10;;;;:::i;:::-;1081:2;:24;;;;:::i;:::-;1068:39;;1051:6;1058;1051:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1131:2;1122:11;;;;;:::i;:::-;;;991:154;;;1169:6;1155:21;;;;;461:723;;;;:::o;14519:98::-;14572:7;14599:10;14592:17;;14519:98;:::o;57961:147::-;58098:6;57961:147;;;;;:::o;42247:681::-;42370:19;42376:2;42380:8;42370:5;:19::i;:::-;42449:1;42431:2;:14;;;:19;42427:483;;42471:11;42485:13;;42471:27;;42517:13;42539:8;42533:3;:14;42517:30;;42566:233;42597:62;42636:1;42640:2;42644:7;;;;;;42653:5;42597:30;:62::i;:::-;42592:167;;42695:40;;;;;;;;;;;;;;42592:167;42794:3;42786:5;:11;42566:233;;42881:3;42864:13;;:20;42860:34;;42886:8;;;42860:34;42452:458;;42427:483;42247:681;;;:::o;43201:1529::-;43266:20;43289:13;;43266:36;;43331:1;43317:16;;:2;:16;;;43313:48;;;43342:19;;;;;;;;;;;;;;43313:48;43388:1;43376:8;:13;43372:44;;;43398:18;;;;;;;;;;;;;;43372:44;43429:61;43459:1;43463:2;43467:12;43481:8;43429:21;:61::i;:::-;43972:1;27348:2;43943:1;:25;;43942:31;43930:8;:44;43904:18;:22;43923:2;43904:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;44251:139;44288:2;44342:33;44365:1;44369:2;44373:1;44342:14;:33::i;:::-;44309:30;44330:8;44309:20;:30::i;:::-;:66;44251:18;:139::i;:::-;44217:17;:31;44235:12;44217:31;;;;;;;;;;;:173;;;;44407:15;44425:12;44407:30;;44452:11;44481:8;44466:12;:23;44452:37;;44504:101;44556:9;;;;;;44552:2;44531:35;;44548:1;44531:35;;;;;;;;;;;;44600:3;44590:7;:13;44504:101;;44637:3;44621:13;:19;;;;43678:974;;44662:60;44691:1;44695:2;44699:12;44713:8;44662:20;:60::i;:::-;43255:1475;43201:1529;;:::o;38734:322::-;38804:14;39035:1;39025:8;39022:15;38997:23;38993:45;38983:55;;38734:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8869:845::-;8972:3;9009:5;9003:12;9038:36;9064:9;9038:36;:::i;:::-;9090:89;9172:6;9167:3;9090:89;:::i;:::-;9083:96;;9210:1;9199:9;9195:17;9226:1;9221:137;;;;9372:1;9367:341;;;;9188:520;;9221:137;9305:4;9301:9;9290;9286:25;9281:3;9274:38;9341:6;9336:3;9332:16;9325:23;;9221:137;;9367:341;9434:38;9466:5;9434:38;:::i;:::-;9494:1;9508:154;9522:6;9519:1;9516:13;9508:154;;;9596:7;9590:14;9586:1;9581:3;9577:11;9570:35;9646:1;9637:7;9633:15;9622:26;;9544:4;9541:1;9537:12;9532:17;;9508:154;;;9691:6;9686:3;9682:16;9675:23;;9374:334;;9188:520;;8976:738;;8869:845;;;;:::o;9720:366::-;9862:3;9883:67;9947:2;9942:3;9883:67;:::i;:::-;9876:74;;9959:93;10048:3;9959:93;:::i;:::-;10077:2;10072:3;10068:12;10061:19;;9720:366;;;:::o;10092:::-;10234:3;10255:67;10319:2;10314:3;10255:67;:::i;:::-;10248:74;;10331:93;10420:3;10331:93;:::i;:::-;10449:2;10444:3;10440:12;10433:19;;10092:366;;;:::o;10464:::-;10606:3;10627:67;10691:2;10686:3;10627:67;:::i;:::-;10620:74;;10703:93;10792:3;10703:93;:::i;:::-;10821:2;10816:3;10812:12;10805:19;;10464:366;;;:::o;10836:::-;10978:3;10999:67;11063:2;11058:3;10999:67;:::i;:::-;10992:74;;11075:93;11164:3;11075:93;:::i;:::-;11193:2;11188:3;11184:12;11177:19;;10836:366;;;:::o;11208:::-;11350:3;11371:67;11435:2;11430:3;11371:67;:::i;:::-;11364:74;;11447:93;11536:3;11447:93;:::i;:::-;11565:2;11560:3;11556:12;11549:19;;11208:366;;;:::o;11580:::-;11722:3;11743:67;11807:2;11802:3;11743:67;:::i;:::-;11736:74;;11819:93;11908:3;11819:93;:::i;:::-;11937:2;11932:3;11928:12;11921:19;;11580:366;;;:::o;11952:::-;12094:3;12115:67;12179:2;12174:3;12115:67;:::i;:::-;12108:74;;12191:93;12280:3;12191:93;:::i;:::-;12309:2;12304:3;12300:12;12293:19;;11952:366;;;:::o;12324:::-;12466:3;12487:67;12551:2;12546:3;12487:67;:::i;:::-;12480:74;;12563:93;12652:3;12563:93;:::i;:::-;12681:2;12676:3;12672:12;12665:19;;12324:366;;;:::o;12696:::-;12838:3;12859:67;12923:2;12918:3;12859:67;:::i;:::-;12852:74;;12935:93;13024:3;12935:93;:::i;:::-;13053:2;13048:3;13044:12;13037:19;;12696:366;;;:::o;13068:::-;13210:3;13231:67;13295:2;13290:3;13231:67;:::i;:::-;13224:74;;13307:93;13396:3;13307:93;:::i;:::-;13425:2;13420:3;13416:12;13409:19;;13068:366;;;:::o;13440:::-;13582:3;13603:67;13667:2;13662:3;13603:67;:::i;:::-;13596:74;;13679:93;13768:3;13679:93;:::i;:::-;13797:2;13792:3;13788:12;13781:19;;13440:366;;;:::o;13812:::-;13954:3;13975:67;14039:2;14034:3;13975:67;:::i;:::-;13968:74;;14051:93;14140:3;14051:93;:::i;:::-;14169:2;14164:3;14160:12;14153:19;;13812:366;;;:::o;14184:::-;14326:3;14347:67;14411:2;14406:3;14347:67;:::i;:::-;14340:74;;14423:93;14512:3;14423:93;:::i;:::-;14541:2;14536:3;14532:12;14525:19;;14184:366;;;:::o;14556:398::-;14715:3;14736:83;14817:1;14812:3;14736:83;:::i;:::-;14729:90;;14828:93;14917:3;14828:93;:::i;:::-;14946:1;14941:3;14937:11;14930:18;;14556:398;;;:::o;14960:366::-;15102:3;15123:67;15187:2;15182:3;15123:67;:::i;:::-;15116:74;;15199:93;15288:3;15199:93;:::i;:::-;15317:2;15312:3;15308:12;15301:19;;14960:366;;;:::o;15332:::-;15474:3;15495:67;15559:2;15554:3;15495:67;:::i;:::-;15488:74;;15571:93;15660:3;15571:93;:::i;:::-;15689:2;15684:3;15680:12;15673:19;;15332:366;;;:::o;15704:400::-;15864:3;15885:84;15967:1;15962:3;15885:84;:::i;:::-;15878:91;;15978:93;16067:3;15978:93;:::i;:::-;16096:1;16091:3;16087:11;16080:18;;15704:400;;;:::o;16110:118::-;16197:24;16215:5;16197:24;:::i;:::-;16192:3;16185:37;16110:118;;:::o;16234:695::-;16512:3;16534:92;16622:3;16613:6;16534:92;:::i;:::-;16527:99;;16643:148;16787:3;16643:148;:::i;:::-;16636:155;;16808:95;16899:3;16890:6;16808:95;:::i;:::-;16801:102;;16920:3;16913:10;;16234:695;;;;;:::o;16935:379::-;17119:3;17141:147;17284:3;17141:147;:::i;:::-;17134:154;;17305:3;17298:10;;16935:379;;;:::o;17320:222::-;17413:4;17451:2;17440:9;17436:18;17428:26;;17464:71;17532:1;17521:9;17517:17;17508:6;17464:71;:::i;:::-;17320:222;;;;:::o;17548:640::-;17743:4;17781:3;17770:9;17766:19;17758:27;;17795:71;17863:1;17852:9;17848:17;17839:6;17795:71;:::i;:::-;17876:72;17944:2;17933:9;17929:18;17920:6;17876:72;:::i;:::-;17958;18026:2;18015:9;18011:18;18002:6;17958:72;:::i;:::-;18077:9;18071:4;18067:20;18062:2;18051:9;18047:18;18040:48;18105:76;18176:4;18167:6;18105:76;:::i;:::-;18097:84;;17548:640;;;;;;;:::o;18194:210::-;18281:4;18319:2;18308:9;18304:18;18296:26;;18332:65;18394:1;18383:9;18379:17;18370:6;18332:65;:::i;:::-;18194:210;;;;:::o;18410:313::-;18523:4;18561:2;18550:9;18546:18;18538:26;;18610:9;18604:4;18600:20;18596:1;18585:9;18581:17;18574:47;18638:78;18711:4;18702:6;18638:78;:::i;:::-;18630:86;;18410:313;;;;:::o;18729:419::-;18895:4;18933:2;18922:9;18918:18;18910:26;;18982:9;18976:4;18972:20;18968:1;18957:9;18953:17;18946:47;19010:131;19136:4;19010:131;:::i;:::-;19002:139;;18729:419;;;:::o;19154:::-;19320:4;19358:2;19347:9;19343:18;19335:26;;19407:9;19401:4;19397:20;19393:1;19382:9;19378:17;19371:47;19435:131;19561:4;19435:131;:::i;:::-;19427:139;;19154:419;;;:::o;19579:::-;19745:4;19783:2;19772:9;19768:18;19760:26;;19832:9;19826:4;19822:20;19818:1;19807:9;19803:17;19796:47;19860:131;19986:4;19860:131;:::i;:::-;19852:139;;19579:419;;;:::o;20004:::-;20170:4;20208:2;20197:9;20193:18;20185:26;;20257:9;20251:4;20247:20;20243:1;20232:9;20228:17;20221:47;20285:131;20411:4;20285:131;:::i;:::-;20277:139;;20004:419;;;:::o;20429:::-;20595:4;20633:2;20622:9;20618:18;20610:26;;20682:9;20676:4;20672:20;20668:1;20657:9;20653:17;20646:47;20710:131;20836:4;20710:131;:::i;:::-;20702:139;;20429:419;;;:::o;20854:::-;21020:4;21058:2;21047:9;21043:18;21035:26;;21107:9;21101:4;21097:20;21093:1;21082:9;21078:17;21071:47;21135:131;21261:4;21135:131;:::i;:::-;21127:139;;20854:419;;;:::o;21279:::-;21445:4;21483:2;21472:9;21468:18;21460:26;;21532:9;21526:4;21522:20;21518:1;21507:9;21503:17;21496:47;21560:131;21686:4;21560:131;:::i;:::-;21552:139;;21279:419;;;:::o;21704:::-;21870:4;21908:2;21897:9;21893:18;21885:26;;21957:9;21951:4;21947:20;21943:1;21932:9;21928:17;21921:47;21985:131;22111:4;21985:131;:::i;:::-;21977:139;;21704:419;;;:::o;22129:::-;22295:4;22333:2;22322:9;22318:18;22310:26;;22382:9;22376:4;22372:20;22368:1;22357:9;22353:17;22346:47;22410:131;22536:4;22410:131;:::i;:::-;22402:139;;22129:419;;;:::o;22554:::-;22720:4;22758:2;22747:9;22743:18;22735:26;;22807:9;22801:4;22797:20;22793:1;22782:9;22778:17;22771:47;22835:131;22961:4;22835:131;:::i;:::-;22827:139;;22554:419;;;:::o;22979:::-;23145:4;23183:2;23172:9;23168:18;23160:26;;23232:9;23226:4;23222:20;23218:1;23207:9;23203:17;23196:47;23260:131;23386:4;23260:131;:::i;:::-;23252:139;;22979:419;;;:::o;23404:::-;23570:4;23608:2;23597:9;23593:18;23585:26;;23657:9;23651:4;23647:20;23643:1;23632:9;23628:17;23621:47;23685:131;23811:4;23685:131;:::i;:::-;23677:139;;23404:419;;;:::o;23829:::-;23995:4;24033:2;24022:9;24018:18;24010:26;;24082:9;24076:4;24072:20;24068:1;24057:9;24053:17;24046:47;24110:131;24236:4;24110:131;:::i;:::-;24102:139;;23829:419;;;:::o;24254:::-;24420:4;24458:2;24447:9;24443:18;24435:26;;24507:9;24501:4;24497:20;24493:1;24482:9;24478:17;24471:47;24535:131;24661:4;24535:131;:::i;:::-;24527:139;;24254:419;;;:::o;24679:::-;24845:4;24883:2;24872:9;24868:18;24860:26;;24932:9;24926:4;24922:20;24918:1;24907:9;24903:17;24896:47;24960:131;25086:4;24960:131;:::i;:::-;24952:139;;24679:419;;;:::o;25104:222::-;25197:4;25235:2;25224:9;25220:18;25212:26;;25248:71;25316:1;25305:9;25301:17;25292:6;25248:71;:::i;:::-;25104:222;;;;:::o;25332:129::-;25366:6;25393:20;;:::i;:::-;25383:30;;25422:33;25450:4;25442:6;25422:33;:::i;:::-;25332:129;;;:::o;25467:75::-;25500:6;25533:2;25527:9;25517:19;;25467:75;:::o;25548:307::-;25609:4;25699:18;25691:6;25688:30;25685:56;;;25721:18;;:::i;:::-;25685:56;25759:29;25781:6;25759:29;:::i;:::-;25751:37;;25843:4;25837;25833:15;25825:23;;25548:307;;;:::o;25861:308::-;25923:4;26013:18;26005:6;26002:30;25999:56;;;26035:18;;:::i;:::-;25999:56;26073:29;26095:6;26073:29;:::i;:::-;26065:37;;26157:4;26151;26147:15;26139:23;;25861:308;;;:::o;26175:141::-;26224:4;26247:3;26239:11;;26270:3;26267:1;26260:14;26304:4;26301:1;26291:18;26283:26;;26175:141;;;:::o;26322:98::-;26373:6;26407:5;26401:12;26391:22;;26322:98;;;:::o;26426:99::-;26478:6;26512:5;26506:12;26496:22;;26426:99;;;:::o;26531:168::-;26614:11;26648:6;26643:3;26636:19;26688:4;26683:3;26679:14;26664:29;;26531:168;;;;:::o;26705:147::-;26806:11;26843:3;26828:18;;26705:147;;;;:::o;26858:169::-;26942:11;26976:6;26971:3;26964:19;27016:4;27011:3;27007:14;26992:29;;26858:169;;;;:::o;27033:148::-;27135:11;27172:3;27157:18;;27033:148;;;;:::o;27187:305::-;27227:3;27246:20;27264:1;27246:20;:::i;:::-;27241:25;;27280:20;27298:1;27280:20;:::i;:::-;27275:25;;27434:1;27366:66;27362:74;27359:1;27356:81;27353:107;;;27440:18;;:::i;:::-;27353:107;27484:1;27481;27477:9;27470:16;;27187:305;;;;:::o;27498:185::-;27538:1;27555:20;27573:1;27555:20;:::i;:::-;27550:25;;27589:20;27607:1;27589:20;:::i;:::-;27584:25;;27628:1;27618:35;;27633:18;;:::i;:::-;27618:35;27675:1;27672;27668:9;27663:14;;27498:185;;;;:::o;27689:348::-;27729:7;27752:20;27770:1;27752:20;:::i;:::-;27747:25;;27786:20;27804:1;27786:20;:::i;:::-;27781:25;;27974:1;27906:66;27902:74;27899:1;27896:81;27891:1;27884:9;27877:17;27873:105;27870:131;;;27981:18;;:::i;:::-;27870:131;28029:1;28026;28022:9;28011:20;;27689:348;;;;:::o;28043:191::-;28083:4;28103:20;28121:1;28103:20;:::i;:::-;28098:25;;28137:20;28155:1;28137:20;:::i;:::-;28132:25;;28176:1;28173;28170:8;28167:34;;;28181:18;;:::i;:::-;28167:34;28226:1;28223;28219:9;28211:17;;28043:191;;;;:::o;28240:96::-;28277:7;28306:24;28324:5;28306:24;:::i;:::-;28295:35;;28240:96;;;:::o;28342:90::-;28376:7;28419:5;28412:13;28405:21;28394:32;;28342:90;;;:::o;28438:149::-;28474:7;28514:66;28507:5;28503:78;28492:89;;28438:149;;;:::o;28593:126::-;28630:7;28670:42;28663:5;28659:54;28648:65;;28593:126;;;:::o;28725:77::-;28762:7;28791:5;28780:16;;28725:77;;;:::o;28808:154::-;28892:6;28887:3;28882;28869:30;28954:1;28945:6;28940:3;28936:16;28929:27;28808:154;;;:::o;28968:307::-;29036:1;29046:113;29060:6;29057:1;29054:13;29046:113;;;29145:1;29140:3;29136:11;29130:18;29126:1;29121:3;29117:11;29110:39;29082:2;29079:1;29075:10;29070:15;;29046:113;;;29177:6;29174:1;29171:13;29168:101;;;29257:1;29248:6;29243:3;29239:16;29232:27;29168:101;29017:258;28968:307;;;:::o;29281:320::-;29325:6;29362:1;29356:4;29352:12;29342:22;;29409:1;29403:4;29399:12;29430:18;29420:81;;29486:4;29478:6;29474:17;29464:27;;29420:81;29548:2;29540:6;29537:14;29517:18;29514:38;29511:84;;;29567:18;;:::i;:::-;29511:84;29332:269;29281:320;;;:::o;29607:281::-;29690:27;29712:4;29690:27;:::i;:::-;29682:6;29678:40;29820:6;29808:10;29805:22;29784:18;29772:10;29769:34;29766:62;29763:88;;;29831:18;;:::i;:::-;29763:88;29871:10;29867:2;29860:22;29650:238;29607:281;;:::o;29894:233::-;29933:3;29956:24;29974:5;29956:24;:::i;:::-;29947:33;;30002:66;29995:5;29992:77;29989:103;;;30072:18;;:::i;:::-;29989:103;30119:1;30112:5;30108:13;30101:20;;29894:233;;;:::o;30133:176::-;30165:1;30182:20;30200:1;30182:20;:::i;:::-;30177:25;;30216:20;30234:1;30216:20;:::i;:::-;30211:25;;30255:1;30245:35;;30260:18;;:::i;:::-;30245:35;30301:1;30298;30294:9;30289:14;;30133:176;;;;:::o;30315:180::-;30363:77;30360:1;30353:88;30460:4;30457:1;30450:15;30484:4;30481:1;30474:15;30501:180;30549:77;30546:1;30539:88;30646:4;30643:1;30636:15;30670:4;30667:1;30660:15;30687:180;30735:77;30732:1;30725:88;30832:4;30829:1;30822:15;30856:4;30853:1;30846:15;30873:180;30921:77;30918:1;30911:88;31018:4;31015:1;31008:15;31042:4;31039:1;31032:15;31059:180;31107:77;31104:1;31097:88;31204:4;31201:1;31194:15;31228:4;31225:1;31218:15;31245:117;31354:1;31351;31344:12;31368:117;31477:1;31474;31467:12;31491:117;31600:1;31597;31590:12;31614:117;31723:1;31720;31713:12;31737:102;31778:6;31829:2;31825:7;31820:2;31813:5;31809:14;31805:28;31795:38;;31737:102;;;:::o;31845:224::-;31985:34;31981:1;31973:6;31969:14;31962:58;32054:7;32049:2;32041:6;32037:15;32030:32;31845:224;:::o;32075:225::-;32215:34;32211:1;32203:6;32199:14;32192:58;32284:8;32279:2;32271:6;32267:15;32260:33;32075:225;:::o;32306:245::-;32446:34;32442:1;32434:6;32430:14;32423:58;32515:28;32510:2;32502:6;32498:15;32491:53;32306:245;:::o;32557:179::-;32697:31;32693:1;32685:6;32681:14;32674:55;32557:179;:::o;32742:174::-;32882:26;32878:1;32870:6;32866:14;32859:50;32742:174;:::o;32922:224::-;33062:34;33058:1;33050:6;33046:14;33039:58;33131:7;33126:2;33118:6;33114:15;33107:32;32922:224;:::o;33152:173::-;33292:25;33288:1;33280:6;33276:14;33269:49;33152:173;:::o;33331:172::-;33471:24;33467:1;33459:6;33455:14;33448:48;33331:172;:::o;33509:182::-;33649:34;33645:1;33637:6;33633:14;33626:58;33509:182;:::o;33697:234::-;33837:34;33833:1;33825:6;33821:14;33814:58;33906:17;33901:2;33893:6;33889:15;33882:42;33697:234;:::o;33937:225::-;34077:34;34073:1;34065:6;34061:14;34054:58;34146:8;34141:2;34133:6;34129:15;34122:33;33937:225;:::o;34168:224::-;34308:34;34304:1;34296:6;34292:14;34285:58;34377:7;34372:2;34364:6;34360:15;34353:32;34168:224;:::o;34398:226::-;34538:34;34534:1;34526:6;34522:14;34515:58;34607:9;34602:2;34594:6;34590:15;34583:34;34398:226;:::o;34630:114::-;;:::o;34750:169::-;34890:21;34886:1;34878:6;34874:14;34867:45;34750:169;:::o;34925:181::-;35065:33;35061:1;35053:6;35049:14;35042:57;34925:181;:::o;35112:151::-;35252:3;35248:1;35240:6;35236:14;35229:27;35112:151;:::o;35269:122::-;35342:24;35360:5;35342:24;:::i;:::-;35335:5;35332:35;35322:63;;35381:1;35378;35371:12;35322:63;35269:122;:::o;35397:116::-;35467:21;35482:5;35467:21;:::i;:::-;35460:5;35457:32;35447:60;;35503:1;35500;35493:12;35447:60;35397:116;:::o;35519:120::-;35591:23;35608:5;35591:23;:::i;:::-;35584:5;35581:34;35571:62;;35629:1;35626;35619:12;35571:62;35519:120;:::o;35645:122::-;35718:24;35736:5;35718:24;:::i;:::-;35711:5;35708:35;35698:63;;35757:1;35754;35747:12;35698:63;35645:122;:::o

Swarm Source

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