ETH Price: $3,457.98 (+2.07%)
Gas: 10 Gwei

Token

PFP Origin (PO)
 

Overview

Max Total Supply

7,777 PO

Holders

4,543

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PO
0x4b6a535dfbbd7bc4618f002cd5441602f6004896
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:
PFPOrigin

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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
// Creator: Chiru Labs

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
// Creator: Chiru Labs

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




pragma solidity ^0.8.4;



contract PFPOrigin is ERC721A, Ownable, ReentrancyGuard {
    using Address for address;
    using Strings for uint;
    string  public baseTokenURI = "ipfs://bafybeic5krvvbzs6astme2cuplml2zgtirqys2ics6ed275cmdqmloocfe/";
    uint256 public MAX_SUPPLY = 7777;
    uint256 public MAX_FREE_SUPPLY = 7500;
    uint256 public MAX_PER_TX = 20;
    uint256 public PRICE = 0.003 ether;
    uint256 public MAX_FREE_PER_WALLET = 1;
    bool public status = false;
    bool public revealed = false;

    mapping(address => uint256) public perWalletFreeMinted;

    constructor() ERC721A("PFP Origin", "PO") {}


    function devMint(address to, uint amount) external onlyOwner {
		require(
			_totalMinted() + amount <= MAX_SUPPLY,
			'Exceeds max supply'
		);
		_safeMint(to, amount);
	}

    function OwnerBatchMint(uint256 amount) external onlyOwner
    {
        require(
			_totalMinted() + amount <= MAX_SUPPLY,
			'Exceeds max supply'
		);
        _safeMint(msg.sender, amount);
    }

    function mint(uint256 amount) external payable
    {
        
		require(amount <= MAX_PER_TX,"Exceeds NFT per transaction limit");
		require(_totalMinted() + amount <= MAX_SUPPLY,"Exceeds max supply");
        require(status, "Minting is not live yet.");
        uint payForCount = amount;
        uint minted = perWalletFreeMinted[msg.sender];
        if(minted < MAX_FREE_PER_WALLET && _totalMinted()<MAX_FREE_SUPPLY) {
            uint remainingFreeMints = MAX_FREE_PER_WALLET - minted;
            if(amount > remainingFreeMints) {
                payForCount = amount - remainingFreeMints;
            }
            else {
                payForCount = 0;
            }
        }

		require(
			msg.value >= payForCount * PRICE,
			'Ether value sent is not sufficient'
		);
    	perWalletFreeMinted[msg.sender] += amount;

        _safeMint(msg.sender, amount);
    }

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

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }
    function withdraw() public onlyOwner nonReentrant {
        (bool os, ) = payable(owner()).call{value: address(this).balance}('');
        require(os);
    }

    
    function tokenURI(uint tokenId)
		public
		view
		override
		returns (string memory)
	{
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        return bytes(_baseURI()).length > 0 
            ? string(abi.encodePacked(_baseURI(), tokenId.toString(), ".json"))
            : baseTokenURI;
	}

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

    function reveal(bool _revealed) external onlyOwner
    {
        revealed = _revealed;
    }

    function setStatus(bool _status) external onlyOwner
    {
        status = _status;
    }

    function setPrice(uint256 _price) external onlyOwner
    {
        PRICE = _price;
    }

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

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

    function setMaxFreeAmount(uint256 _amount) external onlyOwner
    {
        MAX_FREE_SUPPLY = _amount;
    }

}

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_FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"OwnerBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","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":[{"internalType":"address","name":"","type":"address"}],"name":"perWalletFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_revealed","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setLimitFreeMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxLimitPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051806080016040528060438152602001620036ce60439139600a90805190602001906200003592919062000256565b50611e61600b55611d4c600c556014600d55660aa87bee538000600e556001600f556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055503480156200009a57600080fd5b506040518060400160405280600a81526020017f504650204f726967696e000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f504f00000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200011f92919062000256565b5080600390805190602001906200013892919062000256565b50620001496200017f60201b60201c565b600081905550505062000171620001656200018860201b60201c565b6200019060201b60201c565b60016009819055506200036a565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002649062000335565b90600052602060002090601f016020900481019282620002885760008555620002d4565b82601f10620002a357805160ff1916838001178555620002d4565b82800160010185558215620002d4579182015b82811115620002d3578251825591602001919060010190620002b6565b5b509050620002e39190620002e7565b5090565b5b8082111562000302576000816000905550600101620002e8565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200034e57607f821691505b60208210810362000364576200036362000306565b5b50919050565b613354806200037a6000396000f3fe60806040526004361061021a5760003560e01c8063715018a611610123578063a0712d68116100ab578063d547cfb71161006f578063d547cfb71461079a578063e19979f5146107c5578063e985e9c5146107ee578063f2fde38b1461082b578063f43a22dc146108545761021a565b8063a0712d68146106b2578063a22cb465146106ce578063b88d4fde146106f7578063c87b56dd14610720578063d0fc579d1461075d5761021a565b806391b7f5ed116100f257806391b7f5ed146105e1578063940cd05b1461060a57806395d89b411461063357806398710d1e1461065e5780639e9fcffc146106895761021a565b8063715018a61461054b5780638171609b146105625780638d859f3e1461058b5780638da5cb5b146105b65761021a565b806332cb6b0c116101a657806355f804b31161017557806355f804b3146104565780635c40f6f41461047f578063627804af146104a85780636352211e146104d157806370a082311461050e5761021a565b806332cb6b0c146103c05780633ccfd60b146103eb57806342842e0e14610402578063518302271461042b5761021a565b8063095ea7b3116101ed578063095ea7b3146102ef5780630c23bb3f1461031857806318160ddd14610341578063200d2ed21461036c57806323b872dd146103975761021a565b806301ffc9a71461021f57806302ddb65b1461025c57806306fdde0314610287578063081812fc146102b2575b600080fd5b34801561022b57600080fd5b506102466004803603810190610241919061245d565b61087f565b60405161025391906124a5565b60405180910390f35b34801561026857600080fd5b50610271610911565b60405161027e91906124d9565b60405180910390f35b34801561029357600080fd5b5061029c610917565b6040516102a9919061258d565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d491906125db565b6109a9565b6040516102e69190612649565b60405180910390f35b3480156102fb57600080fd5b5061031660048036038101906103119190612690565b610a25565b005b34801561032457600080fd5b5061033f600480360381019061033a91906125db565b610b66565b005b34801561034d57600080fd5b50610356610b78565b60405161036391906124d9565b60405180910390f35b34801561037857600080fd5b50610381610b8f565b60405161038e91906124a5565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b991906126d0565b610ba2565b005b3480156103cc57600080fd5b506103d5610ec4565b6040516103e291906124d9565b60405180910390f35b3480156103f757600080fd5b50610400610eca565b005b34801561040e57600080fd5b50610429600480360381019061042491906126d0565b610fa7565b005b34801561043757600080fd5b50610440610fc7565b60405161044d91906124a5565b60405180910390f35b34801561046257600080fd5b5061047d60048036038101906104789190612858565b610fda565b005b34801561048b57600080fd5b506104a660048036038101906104a191906128cd565b610ffc565b005b3480156104b457600080fd5b506104cf60048036038101906104ca9190612690565b611021565b005b3480156104dd57600080fd5b506104f860048036038101906104f391906125db565b61108e565b6040516105059190612649565b60405180910390f35b34801561051a57600080fd5b50610535600480360381019061053091906128fa565b6110a0565b60405161054291906124d9565b60405180910390f35b34801561055757600080fd5b50610560611158565b005b34801561056e57600080fd5b50610589600480360381019061058491906125db565b61116c565b005b34801561059757600080fd5b506105a06111d8565b6040516105ad91906124d9565b60405180910390f35b3480156105c257600080fd5b506105cb6111de565b6040516105d89190612649565b60405180910390f35b3480156105ed57600080fd5b50610608600480360381019061060391906125db565b611208565b005b34801561061657600080fd5b50610631600480360381019061062c91906128cd565b61121a565b005b34801561063f57600080fd5b5061064861123f565b604051610655919061258d565b60405180910390f35b34801561066a57600080fd5b506106736112d1565b60405161068091906124d9565b60405180910390f35b34801561069557600080fd5b506106b060048036038101906106ab91906125db565b6112d7565b005b6106cc60048036038101906106c791906125db565b6112e9565b005b3480156106da57600080fd5b506106f560048036038101906106f09190612927565b611524565b005b34801561070357600080fd5b5061071e60048036038101906107199190612a08565b61169b565b005b34801561072c57600080fd5b50610747600480360381019061074291906125db565b61170e565b604051610754919061258d565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f91906128fa565b611831565b60405161079191906124d9565b60405180910390f35b3480156107a657600080fd5b506107af611849565b6040516107bc919061258d565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e791906125db565b6118d7565b005b3480156107fa57600080fd5b5061081560048036038101906108109190612a8b565b6118e9565b60405161082291906124a5565b60405180910390f35b34801561083757600080fd5b50610852600480360381019061084d91906128fa565b61197d565b005b34801561086057600080fd5b50610869611a00565b60405161087691906124d9565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108da57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061090a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600c5481565b60606002805461092690612afa565b80601f016020809104026020016040519081016040528092919081815260200182805461095290612afa565b801561099f5780601f106109745761010080835404028352916020019161099f565b820191906000526020600020905b81548152906001019060200180831161098257829003601f168201915b5050505050905090565b60006109b482611a06565b6109ea576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a308261108e565b90508073ffffffffffffffffffffffffffffffffffffffff16610a51611a65565b73ffffffffffffffffffffffffffffffffffffffff1614610ab457610a7d81610a78611a65565b6118e9565b610ab3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b6e611a6d565b80600c8190555050565b6000610b82611aeb565b6001546000540303905090565b601060009054906101000a900460ff1681565b6000610bad82611af4565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c14576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c2084611bc0565b91509150610c368187610c31611a65565b611be2565b610c8257610c4b86610c46611a65565b6118e9565b610c81576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610ce8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cf58686866001611c26565b8015610d0057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610dce85610daa888887611c2c565b7c020000000000000000000000000000000000000000000000000000000017611c54565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e545760006001850190506000600460008381526020019081526020016000205403610e52576000548114610e51578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ebc8686866001611c7f565b505050505050565b600b5481565b610ed2611a6d565b600260095403610f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0e90612b77565b60405180910390fd5b60026009819055506000610f296111de565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f4c90612bc8565b60006040518083038185875af1925050503d8060008114610f89576040519150601f19603f3d011682016040523d82523d6000602084013e610f8e565b606091505b5050905080610f9c57600080fd5b506001600981905550565b610fc28383836040518060200160405280600081525061169b565b505050565b601060019054906101000a900460ff1681565b610fe2611a6d565b80600a9080519060200190610ff892919061234e565b5050565b611004611a6d565b80601060006101000a81548160ff02191690831515021790555050565b611029611a6d565b600b5481611035611c85565b61103f9190612c0c565b1115611080576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107790612cae565b60405180910390fd5b61108a8282611c98565b5050565b600061109982611af4565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611107576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611160611a6d565b61116a6000611cb6565b565b611174611a6d565b600b5481611180611c85565b61118a9190612c0c565b11156111cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c290612cae565b60405180910390fd5b6111d53382611c98565b50565b600e5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611210611a6d565b80600e8190555050565b611222611a6d565b80601060016101000a81548160ff02191690831515021790555050565b60606003805461124e90612afa565b80601f016020809104026020016040519081016040528092919081815260200182805461127a90612afa565b80156112c75780601f1061129c576101008083540402835291602001916112c7565b820191906000526020600020905b8154815290600101906020018083116112aa57829003601f168201915b5050505050905090565b600f5481565b6112df611a6d565b80600d8190555050565b600d5481111561132e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132590612d40565b60405180910390fd5b600b548161133a611c85565b6113449190612c0c565b1115611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c90612cae565b60405180910390fd5b601060009054906101000a900460ff166113d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cb90612dac565b60405180910390fd5b60008190506000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f54811080156114365750600c54611434611c85565b105b1561146f57600081600f5461144b9190612dcc565b9050808411156114685780846114619190612dcc565b925061146d565b600092505b505b600e548261147d9190612e00565b3410156114bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b690612ecc565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461150e9190612c0c565b9250508190555061151f3384611c98565b505050565b61152c611a65565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611590576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061159d611a65565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661164a611a65565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161168f91906124a5565b60405180910390a35050565b6116a6848484610ba2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611708576116d184848484611d7c565b611707576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061171982611a06565b611758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174f90612f5e565b60405180910390fd5b6000611762611ecc565b51116117f857600a805461177590612afa565b80601f01602080910402602001604051908101604052809291908181526020018280546117a190612afa565b80156117ee5780601f106117c3576101008083540402835291602001916117ee565b820191906000526020600020905b8154815290600101906020018083116117d157829003601f168201915b505050505061182a565b611800611ecc565b61180983611f5e565b60405160200161181a929190613006565b6040516020818303038152906040525b9050919050565b60116020528060005260406000206000915090505481565b600a805461185690612afa565b80601f016020809104026020016040519081016040528092919081815260200182805461188290612afa565b80156118cf5780601f106118a4576101008083540402835291602001916118cf565b820191906000526020600020905b8154815290600101906020018083116118b257829003601f168201915b505050505081565b6118df611a6d565b80600f8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611985611a6d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb906130a7565b60405180910390fd5b6119fd81611cb6565b50565b600d5481565b600081611a11611aeb565b11158015611a20575060005482105b8015611a5e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611a756120be565b73ffffffffffffffffffffffffffffffffffffffff16611a936111de565b73ffffffffffffffffffffffffffffffffffffffff1614611ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae090613113565b60405180910390fd5b565b60006001905090565b60008082905080611b03611aeb565b11611b8957600054811015611b885760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611b86575b60008103611b7c576004600083600190039350838152602001908152602001600020549050611b52565b8092505050611bbb565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611c438686846120c6565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000611c8f611aeb565b60005403905090565b611cb28282604051806020016040528060008152506120cf565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611da2611a65565b8786866040518563ffffffff1660e01b8152600401611dc49493929190613188565b6020604051808303816000875af1925050508015611e0057506040513d601f19601f82011682018060405250810190611dfd91906131e9565b60015b611e79573d8060008114611e30576040519150601f19603f3d011682016040523d82523d6000602084013e611e35565b606091505b506000815103611e71576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611edb90612afa565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0790612afa565b8015611f545780601f10611f2957610100808354040283529160200191611f54565b820191906000526020600020905b815481529060010190602001808311611f3757829003601f168201915b5050505050905090565b606060008203611fa5576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506120b9565b600082905060005b60008214611fd7578080611fc090613216565b915050600a82611fd0919061328d565b9150611fad565b60008167ffffffffffffffff811115611ff357611ff261272d565b5b6040519080825280601f01601f1916602001820160405280156120255781602001600182028036833780820191505090505b5090505b600085146120b25760018261203e9190612dcc565b9150600a8561204d91906132be565b60306120599190612c0c565b60f81b81838151811061206f5761206e6132ef565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120ab919061328d565b9450612029565b8093505050505b919050565b600033905090565b60009392505050565b6120d9838361216c565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461216757600080549050600083820390505b6121196000868380600101945086611d7c565b61214f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061210657816000541461216457600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121d8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203612212576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61221f6000848385611c26565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612296836122876000866000611c2c565b6122908561233e565b17611c54565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106122ba578060008190555050506123396000848385611c7f565b505050565b60006001821460e11b9050919050565b82805461235a90612afa565b90600052602060002090601f01602090048101928261237c57600085556123c3565b82601f1061239557805160ff19168380011785556123c3565b828001600101855582156123c3579182015b828111156123c25782518255916020019190600101906123a7565b5b5090506123d091906123d4565b5090565b5b808211156123ed5760008160009055506001016123d5565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61243a81612405565b811461244557600080fd5b50565b60008135905061245781612431565b92915050565b600060208284031215612473576124726123fb565b5b600061248184828501612448565b91505092915050565b60008115159050919050565b61249f8161248a565b82525050565b60006020820190506124ba6000830184612496565b92915050565b6000819050919050565b6124d3816124c0565b82525050565b60006020820190506124ee60008301846124ca565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561252e578082015181840152602081019050612513565b8381111561253d576000848401525b50505050565b6000601f19601f8301169050919050565b600061255f826124f4565b61256981856124ff565b9350612579818560208601612510565b61258281612543565b840191505092915050565b600060208201905081810360008301526125a78184612554565b905092915050565b6125b8816124c0565b81146125c357600080fd5b50565b6000813590506125d5816125af565b92915050565b6000602082840312156125f1576125f06123fb565b5b60006125ff848285016125c6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061263382612608565b9050919050565b61264381612628565b82525050565b600060208201905061265e600083018461263a565b92915050565b61266d81612628565b811461267857600080fd5b50565b60008135905061268a81612664565b92915050565b600080604083850312156126a7576126a66123fb565b5b60006126b58582860161267b565b92505060206126c6858286016125c6565b9150509250929050565b6000806000606084860312156126e9576126e86123fb565b5b60006126f78682870161267b565b93505060206127088682870161267b565b9250506040612719868287016125c6565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61276582612543565b810181811067ffffffffffffffff821117156127845761278361272d565b5b80604052505050565b60006127976123f1565b90506127a3828261275c565b919050565b600067ffffffffffffffff8211156127c3576127c261272d565b5b6127cc82612543565b9050602081019050919050565b82818337600083830152505050565b60006127fb6127f6846127a8565b61278d565b90508281526020810184848401111561281757612816612728565b5b6128228482856127d9565b509392505050565b600082601f83011261283f5761283e612723565b5b813561284f8482602086016127e8565b91505092915050565b60006020828403121561286e5761286d6123fb565b5b600082013567ffffffffffffffff81111561288c5761288b612400565b5b6128988482850161282a565b91505092915050565b6128aa8161248a565b81146128b557600080fd5b50565b6000813590506128c7816128a1565b92915050565b6000602082840312156128e3576128e26123fb565b5b60006128f1848285016128b8565b91505092915050565b6000602082840312156129105761290f6123fb565b5b600061291e8482850161267b565b91505092915050565b6000806040838503121561293e5761293d6123fb565b5b600061294c8582860161267b565b925050602061295d858286016128b8565b9150509250929050565b600067ffffffffffffffff8211156129825761298161272d565b5b61298b82612543565b9050602081019050919050565b60006129ab6129a684612967565b61278d565b9050828152602081018484840111156129c7576129c6612728565b5b6129d28482856127d9565b509392505050565b600082601f8301126129ef576129ee612723565b5b81356129ff848260208601612998565b91505092915050565b60008060008060808587031215612a2257612a216123fb565b5b6000612a308782880161267b565b9450506020612a418782880161267b565b9350506040612a52878288016125c6565b925050606085013567ffffffffffffffff811115612a7357612a72612400565b5b612a7f878288016129da565b91505092959194509250565b60008060408385031215612aa257612aa16123fb565b5b6000612ab08582860161267b565b9250506020612ac18582860161267b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b1257607f821691505b602082108103612b2557612b24612acb565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612b61601f836124ff565b9150612b6c82612b2b565b602082019050919050565b60006020820190508181036000830152612b9081612b54565b9050919050565b600081905092915050565b50565b6000612bb2600083612b97565b9150612bbd82612ba2565b600082019050919050565b6000612bd382612ba5565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c17826124c0565b9150612c22836124c0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c5757612c56612bdd565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000612c986012836124ff565b9150612ca382612c62565b602082019050919050565b60006020820190508181036000830152612cc781612c8b565b9050919050565b7f45786365656473204e465420706572207472616e73616374696f6e206c696d6960008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d2a6021836124ff565b9150612d3582612cce565b604082019050919050565b60006020820190508181036000830152612d5981612d1d565b9050919050565b7f4d696e74696e67206973206e6f74206c697665207965742e0000000000000000600082015250565b6000612d966018836124ff565b9150612da182612d60565b602082019050919050565b60006020820190508181036000830152612dc581612d89565b9050919050565b6000612dd7826124c0565b9150612de2836124c0565b925082821015612df557612df4612bdd565b5b828203905092915050565b6000612e0b826124c0565b9150612e16836124c0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e4f57612e4e612bdd565b5b828202905092915050565b7f45746865722076616c75652073656e74206973206e6f7420737566666963696560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b6000612eb66022836124ff565b9150612ec182612e5a565b604082019050919050565b60006020820190508181036000830152612ee581612ea9565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612f48602f836124ff565b9150612f5382612eec565b604082019050919050565b60006020820190508181036000830152612f7781612f3b565b9050919050565b600081905092915050565b6000612f94826124f4565b612f9e8185612f7e565b9350612fae818560208601612510565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612ff0600583612f7e565b9150612ffb82612fba565b600582019050919050565b60006130128285612f89565b915061301e8284612f89565b915061302982612fe3565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130916026836124ff565b915061309c82613035565b604082019050919050565b600060208201905081810360008301526130c081613084565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006130fd6020836124ff565b9150613108826130c7565b602082019050919050565b6000602082019050818103600083015261312c816130f0565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061315a82613133565b613164818561313e565b9350613174818560208601612510565b61317d81612543565b840191505092915050565b600060808201905061319d600083018761263a565b6131aa602083018661263a565b6131b760408301856124ca565b81810360608301526131c9818461314f565b905095945050505050565b6000815190506131e381612431565b92915050565b6000602082840312156131ff576131fe6123fb565b5b600061320d848285016131d4565b91505092915050565b6000613221826124c0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361325357613252612bdd565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613298826124c0565b91506132a3836124c0565b9250826132b3576132b261325e565b5b828204905092915050565b60006132c9826124c0565b91506132d4836124c0565b9250826132e4576132e361325e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212202d4a1a55320896c57345112e209ffdad2fe30b3b1640afcbc4def71f0478a3c864736f6c634300080e0033697066733a2f2f6261667962656963356b727676627a73366173746d65326375706c6d6c327a6774697271797332696373366564323735636d64716d6c6f6f6366652f

Deployed Bytecode

0x60806040526004361061021a5760003560e01c8063715018a611610123578063a0712d68116100ab578063d547cfb71161006f578063d547cfb71461079a578063e19979f5146107c5578063e985e9c5146107ee578063f2fde38b1461082b578063f43a22dc146108545761021a565b8063a0712d68146106b2578063a22cb465146106ce578063b88d4fde146106f7578063c87b56dd14610720578063d0fc579d1461075d5761021a565b806391b7f5ed116100f257806391b7f5ed146105e1578063940cd05b1461060a57806395d89b411461063357806398710d1e1461065e5780639e9fcffc146106895761021a565b8063715018a61461054b5780638171609b146105625780638d859f3e1461058b5780638da5cb5b146105b65761021a565b806332cb6b0c116101a657806355f804b31161017557806355f804b3146104565780635c40f6f41461047f578063627804af146104a85780636352211e146104d157806370a082311461050e5761021a565b806332cb6b0c146103c05780633ccfd60b146103eb57806342842e0e14610402578063518302271461042b5761021a565b8063095ea7b3116101ed578063095ea7b3146102ef5780630c23bb3f1461031857806318160ddd14610341578063200d2ed21461036c57806323b872dd146103975761021a565b806301ffc9a71461021f57806302ddb65b1461025c57806306fdde0314610287578063081812fc146102b2575b600080fd5b34801561022b57600080fd5b506102466004803603810190610241919061245d565b61087f565b60405161025391906124a5565b60405180910390f35b34801561026857600080fd5b50610271610911565b60405161027e91906124d9565b60405180910390f35b34801561029357600080fd5b5061029c610917565b6040516102a9919061258d565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d491906125db565b6109a9565b6040516102e69190612649565b60405180910390f35b3480156102fb57600080fd5b5061031660048036038101906103119190612690565b610a25565b005b34801561032457600080fd5b5061033f600480360381019061033a91906125db565b610b66565b005b34801561034d57600080fd5b50610356610b78565b60405161036391906124d9565b60405180910390f35b34801561037857600080fd5b50610381610b8f565b60405161038e91906124a5565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b991906126d0565b610ba2565b005b3480156103cc57600080fd5b506103d5610ec4565b6040516103e291906124d9565b60405180910390f35b3480156103f757600080fd5b50610400610eca565b005b34801561040e57600080fd5b50610429600480360381019061042491906126d0565b610fa7565b005b34801561043757600080fd5b50610440610fc7565b60405161044d91906124a5565b60405180910390f35b34801561046257600080fd5b5061047d60048036038101906104789190612858565b610fda565b005b34801561048b57600080fd5b506104a660048036038101906104a191906128cd565b610ffc565b005b3480156104b457600080fd5b506104cf60048036038101906104ca9190612690565b611021565b005b3480156104dd57600080fd5b506104f860048036038101906104f391906125db565b61108e565b6040516105059190612649565b60405180910390f35b34801561051a57600080fd5b50610535600480360381019061053091906128fa565b6110a0565b60405161054291906124d9565b60405180910390f35b34801561055757600080fd5b50610560611158565b005b34801561056e57600080fd5b50610589600480360381019061058491906125db565b61116c565b005b34801561059757600080fd5b506105a06111d8565b6040516105ad91906124d9565b60405180910390f35b3480156105c257600080fd5b506105cb6111de565b6040516105d89190612649565b60405180910390f35b3480156105ed57600080fd5b50610608600480360381019061060391906125db565b611208565b005b34801561061657600080fd5b50610631600480360381019061062c91906128cd565b61121a565b005b34801561063f57600080fd5b5061064861123f565b604051610655919061258d565b60405180910390f35b34801561066a57600080fd5b506106736112d1565b60405161068091906124d9565b60405180910390f35b34801561069557600080fd5b506106b060048036038101906106ab91906125db565b6112d7565b005b6106cc60048036038101906106c791906125db565b6112e9565b005b3480156106da57600080fd5b506106f560048036038101906106f09190612927565b611524565b005b34801561070357600080fd5b5061071e60048036038101906107199190612a08565b61169b565b005b34801561072c57600080fd5b50610747600480360381019061074291906125db565b61170e565b604051610754919061258d565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f91906128fa565b611831565b60405161079191906124d9565b60405180910390f35b3480156107a657600080fd5b506107af611849565b6040516107bc919061258d565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e791906125db565b6118d7565b005b3480156107fa57600080fd5b5061081560048036038101906108109190612a8b565b6118e9565b60405161082291906124a5565b60405180910390f35b34801561083757600080fd5b50610852600480360381019061084d91906128fa565b61197d565b005b34801561086057600080fd5b50610869611a00565b60405161087691906124d9565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108da57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061090a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600c5481565b60606002805461092690612afa565b80601f016020809104026020016040519081016040528092919081815260200182805461095290612afa565b801561099f5780601f106109745761010080835404028352916020019161099f565b820191906000526020600020905b81548152906001019060200180831161098257829003601f168201915b5050505050905090565b60006109b482611a06565b6109ea576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a308261108e565b90508073ffffffffffffffffffffffffffffffffffffffff16610a51611a65565b73ffffffffffffffffffffffffffffffffffffffff1614610ab457610a7d81610a78611a65565b6118e9565b610ab3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b6e611a6d565b80600c8190555050565b6000610b82611aeb565b6001546000540303905090565b601060009054906101000a900460ff1681565b6000610bad82611af4565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c14576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c2084611bc0565b91509150610c368187610c31611a65565b611be2565b610c8257610c4b86610c46611a65565b6118e9565b610c81576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610ce8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cf58686866001611c26565b8015610d0057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610dce85610daa888887611c2c565b7c020000000000000000000000000000000000000000000000000000000017611c54565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e545760006001850190506000600460008381526020019081526020016000205403610e52576000548114610e51578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ebc8686866001611c7f565b505050505050565b600b5481565b610ed2611a6d565b600260095403610f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0e90612b77565b60405180910390fd5b60026009819055506000610f296111de565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f4c90612bc8565b60006040518083038185875af1925050503d8060008114610f89576040519150601f19603f3d011682016040523d82523d6000602084013e610f8e565b606091505b5050905080610f9c57600080fd5b506001600981905550565b610fc28383836040518060200160405280600081525061169b565b505050565b601060019054906101000a900460ff1681565b610fe2611a6d565b80600a9080519060200190610ff892919061234e565b5050565b611004611a6d565b80601060006101000a81548160ff02191690831515021790555050565b611029611a6d565b600b5481611035611c85565b61103f9190612c0c565b1115611080576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107790612cae565b60405180910390fd5b61108a8282611c98565b5050565b600061109982611af4565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611107576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611160611a6d565b61116a6000611cb6565b565b611174611a6d565b600b5481611180611c85565b61118a9190612c0c565b11156111cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c290612cae565b60405180910390fd5b6111d53382611c98565b50565b600e5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611210611a6d565b80600e8190555050565b611222611a6d565b80601060016101000a81548160ff02191690831515021790555050565b60606003805461124e90612afa565b80601f016020809104026020016040519081016040528092919081815260200182805461127a90612afa565b80156112c75780601f1061129c576101008083540402835291602001916112c7565b820191906000526020600020905b8154815290600101906020018083116112aa57829003601f168201915b5050505050905090565b600f5481565b6112df611a6d565b80600d8190555050565b600d5481111561132e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132590612d40565b60405180910390fd5b600b548161133a611c85565b6113449190612c0c565b1115611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c90612cae565b60405180910390fd5b601060009054906101000a900460ff166113d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cb90612dac565b60405180910390fd5b60008190506000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f54811080156114365750600c54611434611c85565b105b1561146f57600081600f5461144b9190612dcc565b9050808411156114685780846114619190612dcc565b925061146d565b600092505b505b600e548261147d9190612e00565b3410156114bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b690612ecc565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461150e9190612c0c565b9250508190555061151f3384611c98565b505050565b61152c611a65565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611590576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061159d611a65565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661164a611a65565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161168f91906124a5565b60405180910390a35050565b6116a6848484610ba2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611708576116d184848484611d7c565b611707576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061171982611a06565b611758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174f90612f5e565b60405180910390fd5b6000611762611ecc565b51116117f857600a805461177590612afa565b80601f01602080910402602001604051908101604052809291908181526020018280546117a190612afa565b80156117ee5780601f106117c3576101008083540402835291602001916117ee565b820191906000526020600020905b8154815290600101906020018083116117d157829003601f168201915b505050505061182a565b611800611ecc565b61180983611f5e565b60405160200161181a929190613006565b6040516020818303038152906040525b9050919050565b60116020528060005260406000206000915090505481565b600a805461185690612afa565b80601f016020809104026020016040519081016040528092919081815260200182805461188290612afa565b80156118cf5780601f106118a4576101008083540402835291602001916118cf565b820191906000526020600020905b8154815290600101906020018083116118b257829003601f168201915b505050505081565b6118df611a6d565b80600f8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611985611a6d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb906130a7565b60405180910390fd5b6119fd81611cb6565b50565b600d5481565b600081611a11611aeb565b11158015611a20575060005482105b8015611a5e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611a756120be565b73ffffffffffffffffffffffffffffffffffffffff16611a936111de565b73ffffffffffffffffffffffffffffffffffffffff1614611ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae090613113565b60405180910390fd5b565b60006001905090565b60008082905080611b03611aeb565b11611b8957600054811015611b885760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611b86575b60008103611b7c576004600083600190039350838152602001908152602001600020549050611b52565b8092505050611bbb565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611c438686846120c6565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000611c8f611aeb565b60005403905090565b611cb28282604051806020016040528060008152506120cf565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611da2611a65565b8786866040518563ffffffff1660e01b8152600401611dc49493929190613188565b6020604051808303816000875af1925050508015611e0057506040513d601f19601f82011682018060405250810190611dfd91906131e9565b60015b611e79573d8060008114611e30576040519150601f19603f3d011682016040523d82523d6000602084013e611e35565b606091505b506000815103611e71576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611edb90612afa565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0790612afa565b8015611f545780601f10611f2957610100808354040283529160200191611f54565b820191906000526020600020905b815481529060010190602001808311611f3757829003601f168201915b5050505050905090565b606060008203611fa5576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506120b9565b600082905060005b60008214611fd7578080611fc090613216565b915050600a82611fd0919061328d565b9150611fad565b60008167ffffffffffffffff811115611ff357611ff261272d565b5b6040519080825280601f01601f1916602001820160405280156120255781602001600182028036833780820191505090505b5090505b600085146120b25760018261203e9190612dcc565b9150600a8561204d91906132be565b60306120599190612c0c565b60f81b81838151811061206f5761206e6132ef565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120ab919061328d565b9450612029565b8093505050505b919050565b600033905090565b60009392505050565b6120d9838361216c565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461216757600080549050600083820390505b6121196000868380600101945086611d7c565b61214f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061210657816000541461216457600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121d8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203612212576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61221f6000848385611c26565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612296836122876000866000611c2c565b6122908561233e565b17611c54565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106122ba578060008190555050506123396000848385611c7f565b505050565b60006001821460e11b9050919050565b82805461235a90612afa565b90600052602060002090601f01602090048101928261237c57600085556123c3565b82601f1061239557805160ff19168380011785556123c3565b828001600101855582156123c3579182015b828111156123c25782518255916020019190600101906123a7565b5b5090506123d091906123d4565b5090565b5b808211156123ed5760008160009055506001016123d5565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61243a81612405565b811461244557600080fd5b50565b60008135905061245781612431565b92915050565b600060208284031215612473576124726123fb565b5b600061248184828501612448565b91505092915050565b60008115159050919050565b61249f8161248a565b82525050565b60006020820190506124ba6000830184612496565b92915050565b6000819050919050565b6124d3816124c0565b82525050565b60006020820190506124ee60008301846124ca565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561252e578082015181840152602081019050612513565b8381111561253d576000848401525b50505050565b6000601f19601f8301169050919050565b600061255f826124f4565b61256981856124ff565b9350612579818560208601612510565b61258281612543565b840191505092915050565b600060208201905081810360008301526125a78184612554565b905092915050565b6125b8816124c0565b81146125c357600080fd5b50565b6000813590506125d5816125af565b92915050565b6000602082840312156125f1576125f06123fb565b5b60006125ff848285016125c6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061263382612608565b9050919050565b61264381612628565b82525050565b600060208201905061265e600083018461263a565b92915050565b61266d81612628565b811461267857600080fd5b50565b60008135905061268a81612664565b92915050565b600080604083850312156126a7576126a66123fb565b5b60006126b58582860161267b565b92505060206126c6858286016125c6565b9150509250929050565b6000806000606084860312156126e9576126e86123fb565b5b60006126f78682870161267b565b93505060206127088682870161267b565b9250506040612719868287016125c6565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61276582612543565b810181811067ffffffffffffffff821117156127845761278361272d565b5b80604052505050565b60006127976123f1565b90506127a3828261275c565b919050565b600067ffffffffffffffff8211156127c3576127c261272d565b5b6127cc82612543565b9050602081019050919050565b82818337600083830152505050565b60006127fb6127f6846127a8565b61278d565b90508281526020810184848401111561281757612816612728565b5b6128228482856127d9565b509392505050565b600082601f83011261283f5761283e612723565b5b813561284f8482602086016127e8565b91505092915050565b60006020828403121561286e5761286d6123fb565b5b600082013567ffffffffffffffff81111561288c5761288b612400565b5b6128988482850161282a565b91505092915050565b6128aa8161248a565b81146128b557600080fd5b50565b6000813590506128c7816128a1565b92915050565b6000602082840312156128e3576128e26123fb565b5b60006128f1848285016128b8565b91505092915050565b6000602082840312156129105761290f6123fb565b5b600061291e8482850161267b565b91505092915050565b6000806040838503121561293e5761293d6123fb565b5b600061294c8582860161267b565b925050602061295d858286016128b8565b9150509250929050565b600067ffffffffffffffff8211156129825761298161272d565b5b61298b82612543565b9050602081019050919050565b60006129ab6129a684612967565b61278d565b9050828152602081018484840111156129c7576129c6612728565b5b6129d28482856127d9565b509392505050565b600082601f8301126129ef576129ee612723565b5b81356129ff848260208601612998565b91505092915050565b60008060008060808587031215612a2257612a216123fb565b5b6000612a308782880161267b565b9450506020612a418782880161267b565b9350506040612a52878288016125c6565b925050606085013567ffffffffffffffff811115612a7357612a72612400565b5b612a7f878288016129da565b91505092959194509250565b60008060408385031215612aa257612aa16123fb565b5b6000612ab08582860161267b565b9250506020612ac18582860161267b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b1257607f821691505b602082108103612b2557612b24612acb565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612b61601f836124ff565b9150612b6c82612b2b565b602082019050919050565b60006020820190508181036000830152612b9081612b54565b9050919050565b600081905092915050565b50565b6000612bb2600083612b97565b9150612bbd82612ba2565b600082019050919050565b6000612bd382612ba5565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c17826124c0565b9150612c22836124c0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c5757612c56612bdd565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000612c986012836124ff565b9150612ca382612c62565b602082019050919050565b60006020820190508181036000830152612cc781612c8b565b9050919050565b7f45786365656473204e465420706572207472616e73616374696f6e206c696d6960008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d2a6021836124ff565b9150612d3582612cce565b604082019050919050565b60006020820190508181036000830152612d5981612d1d565b9050919050565b7f4d696e74696e67206973206e6f74206c697665207965742e0000000000000000600082015250565b6000612d966018836124ff565b9150612da182612d60565b602082019050919050565b60006020820190508181036000830152612dc581612d89565b9050919050565b6000612dd7826124c0565b9150612de2836124c0565b925082821015612df557612df4612bdd565b5b828203905092915050565b6000612e0b826124c0565b9150612e16836124c0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e4f57612e4e612bdd565b5b828202905092915050565b7f45746865722076616c75652073656e74206973206e6f7420737566666963696560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b6000612eb66022836124ff565b9150612ec182612e5a565b604082019050919050565b60006020820190508181036000830152612ee581612ea9565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612f48602f836124ff565b9150612f5382612eec565b604082019050919050565b60006020820190508181036000830152612f7781612f3b565b9050919050565b600081905092915050565b6000612f94826124f4565b612f9e8185612f7e565b9350612fae818560208601612510565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612ff0600583612f7e565b9150612ffb82612fba565b600582019050919050565b60006130128285612f89565b915061301e8284612f89565b915061302982612fe3565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130916026836124ff565b915061309c82613035565b604082019050919050565b600060208201905081810360008301526130c081613084565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006130fd6020836124ff565b9150613108826130c7565b602082019050919050565b6000602082019050818103600083015261312c816130f0565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061315a82613133565b613164818561313e565b9350613174818560208601612510565b61317d81612543565b840191505092915050565b600060808201905061319d600083018761263a565b6131aa602083018661263a565b6131b760408301856124ca565b81810360608301526131c9818461314f565b905095945050505050565b6000815190506131e381612431565b92915050565b6000602082840312156131ff576131fe6123fb565b5b600061320d848285016131d4565b91505092915050565b6000613221826124c0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361325357613252612bdd565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613298826124c0565b91506132a3836124c0565b9250826132b3576132b261325e565b5b828204905092915050565b60006132c9826124c0565b91506132d4836124c0565b9250826132e4576132e361325e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212202d4a1a55320896c57345112e209ffdad2fe30b3b1640afcbc4def71f0478a3c864736f6c634300080e0033

Deployed Bytecode Sourcemap

62224:3465:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32025:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62493:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37672:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39618:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39166:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65573:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31079:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62660:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48883:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62454:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64371:160;;;;;;;;;;;;;:::i;:::-;;40508:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62693:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64150:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65123:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62847:178;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37461:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32704:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16616:103;;;;;;;;;;;;;:::i;:::-;;63033:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62574:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15968:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65223:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65020:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37841:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62615:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65322:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63245:897;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39894:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40764:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64545:341;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62730:54;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62348:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65443:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40273:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16874:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62537:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32025:615;32110:4;32425:10;32410:25;;:11;:25;;;;:102;;;;32502:10;32487:25;;:11;:25;;;;32410:102;:179;;;;32579:10;32564:25;;:11;:25;;;;32410:179;32390:199;;32025:615;;;:::o;62493:37::-;;;;:::o;37672:100::-;37726:13;37759:5;37752:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37672:100;:::o;39618:204::-;39686:7;39711:16;39719:7;39711;:16::i;:::-;39706:64;;39736:34;;;;;;;;;;;;;;39706:64;39790:15;:24;39806:7;39790:24;;;;;;;;;;;;;;;;;;;;;39783:31;;39618:204;;;:::o;39166:386::-;39239:13;39255:16;39263:7;39255;:16::i;:::-;39239:32;;39311:5;39288:28;;:19;:17;:19::i;:::-;:28;;;39284:175;;39336:44;39353:5;39360:19;:17;:19::i;:::-;39336:16;:44::i;:::-;39331:128;;39408:35;;;;;;;;;;;;;;39331:128;39284:175;39498:2;39471:15;:24;39487:7;39471:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39536:7;39532:2;39516:28;;39525:5;39516:28;;;;;;;;;;;;39228:324;39166:386;;:::o;65573:111::-;15854:13;:11;:13::i;:::-;65669:7:::1;65651:15;:25;;;;65573:111:::0;:::o;31079:315::-;31132:7;31360:15;:13;:15::i;:::-;31345:12;;31329:13;;:28;:46;31322:53;;31079:315;:::o;62660:26::-;;;;;;;;;;;;;:::o;48883:2800::-;49017:27;49047;49066:7;49047:18;:27::i;:::-;49017:57;;49132:4;49091:45;;49107:19;49091:45;;;49087:86;;49145:28;;;;;;;;;;;;;;49087:86;49187:27;49216:23;49243:28;49263:7;49243:19;:28::i;:::-;49186:85;;;;49371:62;49390:15;49407:4;49413:19;:17;:19::i;:::-;49371:18;:62::i;:::-;49366:174;;49453:43;49470:4;49476:19;:17;:19::i;:::-;49453:16;:43::i;:::-;49448:92;;49505:35;;;;;;;;;;;;;;49448:92;49366:174;49571:1;49557:16;;:2;:16;;;49553:52;;49582:23;;;;;;;;;;;;;;49553:52;49618:43;49640:4;49646:2;49650:7;49659:1;49618:21;:43::i;:::-;49754:15;49751:160;;;49894:1;49873:19;49866:30;49751:160;50289:18;:24;50308:4;50289:24;;;;;;;;;;;;;;;;50287:26;;;;;;;;;;;;50358:18;:22;50377:2;50358:22;;;;;;;;;;;;;;;;50356:24;;;;;;;;;;;50680:145;50717:2;50765:45;50780:4;50786:2;50790:19;50765:14;:45::i;:::-;28307:8;50738:72;50680:18;:145::i;:::-;50651:17;:26;50669:7;50651:26;;;;;;;;;;;:174;;;;50995:1;28307:8;50945:19;:46;:51;50941:626;;51017:19;51049:1;51039:7;:11;51017:33;;51206:1;51172:17;:30;51190:11;51172:30;;;;;;;;;;;;:35;51168:384;;51310:13;;51295:11;:28;51291:242;;51490:19;51457:17;:30;51475:11;51457:30;;;;;;;;;;;:52;;;;51291:242;51168:384;50998:569;50941:626;51614:7;51610:2;51595:27;;51604:4;51595:27;;;;;;;;;;;;51633:42;51654:4;51660:2;51664:7;51673:1;51633:20;:42::i;:::-;49006:2677;;;48883:2800;;;:::o;62454:32::-;;;;:::o;64371:160::-;15854:13;:11;:13::i;:::-;12893:1:::1;13491:7;;:19:::0;13483:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;12893:1;13624:7;:18;;;;64433:7:::2;64454;:5;:7::i;:::-;64446:21;;64475;64446:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64432:69;;;64520:2;64512:11;;;::::0;::::2;;64421:110;12849:1:::1;13803:7;:22;;;;64371:160::o:0;40508:185::-;40646:39;40663:4;40669:2;40673:7;40646:39;;;;;;;;;;;;:16;:39::i;:::-;40508:185;;;:::o;62693:28::-;;;;;;;;;;;;;:::o;64150:106::-;15854:13;:11;:13::i;:::-;64241:7:::1;64226:12;:22;;;;;;;;;;;;:::i;:::-;;64150:106:::0;:::o;65123:92::-;15854:13;:11;:13::i;:::-;65200:7:::1;65191:6;;:16;;;;;;;;;;;;;;;;;;65123:92:::0;:::o;62847:178::-;15854:13;:11;:13::i;:::-;62953:10:::1;;62943:6;62926:14;:12;:14::i;:::-;:23;;;;:::i;:::-;:37;;62913:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;62999:21;63009:2;63013:6;62999:9;:21::i;:::-;62847:178:::0;;:::o;37461:144::-;37525:7;37568:27;37587:7;37568:18;:27::i;:::-;37545:52;;37461:144;;;:::o;32704:224::-;32768:7;32809:1;32792:19;;:5;:19;;;32788:60;;32820:28;;;;;;;;;;;;;;32788:60;27259:13;32866:18;:25;32885:5;32866:25;;;;;;;;;;;;;;;;:54;32859:61;;32704:224;;;:::o;16616:103::-;15854:13;:11;:13::i;:::-;16681:30:::1;16708:1;16681:18;:30::i;:::-;16616:103::o:0;63033:204::-;15854:13;:11;:13::i;:::-;63148:10:::1;;63138:6;63121:14;:12;:14::i;:::-;:23;;;;:::i;:::-;:37;;63108:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;63200:29;63210:10;63222:6;63200:9;:29::i;:::-;63033:204:::0;:::o;62574:34::-;;;;:::o;15968:87::-;16014:7;16041:6;;;;;;;;;;;16034:13;;15968:87;:::o;65223:91::-;15854:13;:11;:13::i;:::-;65300:6:::1;65292:5;:14;;;;65223:91:::0;:::o;65020:95::-;15854:13;:11;:13::i;:::-;65098:9:::1;65087:8;;:20;;;;;;;;;;;;;;;;;;65020:95:::0;:::o;37841:104::-;37897:13;37930:7;37923:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37841:104;:::o;62615:38::-;;;;:::o;65322:113::-;15854:13;:11;:13::i;:::-;65421:6:::1;65408:10;:19;;;;65322:113:::0;:::o;63245:897::-;63330:10;;63320:6;:20;;63312:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;63417:10;;63407:6;63390:14;:12;:14::i;:::-;:23;;;;:::i;:::-;:37;;63382:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;63468:6;;;;;;;;;;;63460:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;63514:16;63533:6;63514:25;;63550:11;63564:19;:31;63584:10;63564:31;;;;;;;;;;;;;;;;63550:45;;63618:19;;63609:6;:28;:62;;;;;63656:15;;63641:14;:12;:14::i;:::-;:30;63609:62;63606:339;;;63688:23;63736:6;63714:19;;:28;;;;:::i;:::-;63688:54;;63769:18;63760:6;:27;63757:177;;;63831:18;63822:6;:27;;;;:::i;:::-;63808:41;;63757:177;;;63917:1;63903:15;;63757:177;63673:272;63606:339;63991:5;;63977:11;:19;;;;:::i;:::-;63964:9;:32;;63951:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;64086:6;64051:19;:31;64071:10;64051:31;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;64105:29;64115:10;64127:6;64105:9;:29::i;:::-;63297:845;;63245:897;:::o;39894:308::-;40005:19;:17;:19::i;:::-;39993:31;;:8;:31;;;39989:61;;40033:17;;;;;;;;;;;;;;39989:61;40115:8;40063:18;:39;40082:19;:17;:19::i;:::-;40063:39;;;;;;;;;;;;;;;:49;40103:8;40063:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;40175:8;40139:55;;40154:19;:17;:19::i;:::-;40139:55;;;40185:8;40139:55;;;;;;:::i;:::-;;;;;;;;39894:308;;:::o;40764:399::-;40931:31;40944:4;40950:2;40954:7;40931:12;:31::i;:::-;40995:1;40977:2;:14;;;:19;40973:183;;41016:56;41047:4;41053:2;41057:7;41066:5;41016:30;:56::i;:::-;41011:145;;41100:40;;;;;;;;;;;;;;41011:145;40973:183;40764:399;;;;:::o;64545:341::-;64619:13;64655:16;64663:7;64655;:16::i;:::-;64647:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;64770:1;64749:10;:8;:10::i;:::-;64743:24;:28;:138;;64869:12;64743:138;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64812:10;:8;:10::i;:::-;64824:18;:7;:16;:18::i;:::-;64795:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64743:138;64736:145;;64545:341;;;:::o;62730:54::-;;;;;;;;;;;;;;;;;:::o;62348:99::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;65443:122::-;15854:13;:11;:13::i;:::-;65551:6:::1;65529:19;:28;;;;65443:122:::0;:::o;40273:164::-;40370:4;40394:18;:25;40413:5;40394:25;;;;;;;;;;;;;;;:35;40420:8;40394:35;;;;;;;;;;;;;;;;;;;;;;;;;40387:42;;40273:164;;;;:::o;16874:201::-;15854:13;:11;:13::i;:::-;16983:1:::1;16963:22;;:8;:22;;::::0;16955:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;17039:28;17058:8;17039:18;:28::i;:::-;16874:201:::0;:::o;62537:30::-;;;;:::o;41418:273::-;41475:4;41531:7;41512:15;:13;:15::i;:::-;:26;;:66;;;;;41565:13;;41555:7;:23;41512:66;:152;;;;;41663:1;28029:8;41616:17;:26;41634:7;41616:26;;;;;;;;;;;;:43;:48;41512:152;41492:172;;41418:273;;;:::o;59979:105::-;60039:7;60066:10;60059:17;;59979:105;:::o;16133:132::-;16208:12;:10;:12::i;:::-;16197:23;;:7;:5;:7::i;:::-;:23;;;16189:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16133:132::o;64264:101::-;64329:7;64356:1;64349:8;;64264:101;:::o;34378:1129::-;34445:7;34465:12;34480:7;34465:22;;34548:4;34529:15;:13;:15::i;:::-;:23;34525:915;;34582:13;;34575:4;:20;34571:869;;;34620:14;34637:17;:23;34655:4;34637:23;;;;;;;;;;;;34620:40;;34753:1;28029:8;34726:6;:23;:28;34722:699;;35245:113;35262:1;35252:6;:11;35245:113;;35305:17;:25;35323:6;;;;;;;35305:25;;;;;;;;;;;;35296:34;;35245:113;;;35391:6;35384:13;;;;;;34722:699;34597:843;34571:869;34525:915;35468:31;;;;;;;;;;;;;;34378:1129;;;;:::o;47219:652::-;47314:27;47343:23;47384:53;47440:15;47384:71;;47626:7;47620:4;47613:21;47661:22;47655:4;47648:36;47737:4;47731;47721:21;47698:44;;47833:19;47827:26;47808:45;;47564:300;47219:652;;;:::o;47984:645::-;48126:11;48288:15;48282:4;48278:26;48270:34;;48447:15;48436:9;48432:31;48419:44;;48594:15;48583:9;48580:30;48573:4;48562:9;48559:19;48556:55;48546:65;;47984:645;;;;;:::o;58812:159::-;;;;;:::o;57124:309::-;57259:7;57279:16;28430:3;57305:19;:40;;57279:67;;28430:3;57372:31;57383:4;57389:2;57393:9;57372:10;:31::i;:::-;57364:40;;:61;;57357:68;;;57124:309;;;;;:::o;36952:447::-;37032:14;37200:15;37193:5;37189:27;37180:36;;37374:5;37360:11;37336:22;37332:40;37329:51;37322:5;37319:62;37309:72;;36952:447;;;;:::o;59630:158::-;;;;;:::o;31492:285::-;31539:7;31743:15;:13;:15::i;:::-;31727:13;;:31;31720:38;;31492:285;:::o;41775:104::-;41844:27;41854:2;41858:8;41844:27;;;;;;;;;;;;:9;:27::i;:::-;41775:104;;:::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;55634:716::-;55797:4;55843:2;55818:45;;;55864:19;:17;:19::i;:::-;55885:4;55891:7;55900:5;55818:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;55814:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56118:1;56101:6;:13;:18;56097:235;;56147:40;;;;;;;;;;;;;;56097:235;56290:6;56284:13;56275:6;56271:2;56267:15;56260:38;55814:529;55987:54;;;55977:64;;;:6;:64;;;;55970:71;;;55634:716;;;;;;:::o;64894:118::-;64954:13;64992:12;64985:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64894:118;:::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;58009:147::-;58146:6;58009:147;;;;;:::o;42295:681::-;42418:19;42424:2;42428:8;42418:5;:19::i;:::-;42497:1;42479:2;:14;;;:19;42475:483;;42519:11;42533:13;;42519:27;;42565:13;42587:8;42581:3;:14;42565:30;;42614:233;42645:62;42684:1;42688:2;42692:7;;;;;;42701:5;42645:30;:62::i;:::-;42640:167;;42743:40;;;;;;;;;;;;;;42640:167;42842:3;42834:5;:11;42614:233;;42929:3;42912:13;;:20;42908:34;;42934:8;;;42908:34;42500:458;;42475:483;42295:681;;;:::o;43249:1529::-;43314:20;43337:13;;43314:36;;43379:1;43365:16;;:2;:16;;;43361:48;;43390:19;;;;;;;;;;;;;;43361:48;43436:1;43424:8;:13;43420:44;;43446:18;;;;;;;;;;;;;;43420:44;43477:61;43507:1;43511:2;43515:12;43529:8;43477:21;:61::i;:::-;44020:1;27396:2;43991:1;:25;;43990:31;43978:8;:44;43952:18;:22;43971:2;43952:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;44299:139;44336:2;44390:33;44413:1;44417:2;44421:1;44390:14;:33::i;:::-;44357:30;44378:8;44357:20;:30::i;:::-;:66;44299:18;:139::i;:::-;44265:17;:31;44283:12;44265:31;;;;;;;;;;;:173;;;;44455:15;44473:12;44455:30;;44500:11;44529:8;44514:12;:23;44500:37;;44552:101;44604:9;;;;;;44600:2;44579:35;;44596:1;44579:35;;;;;;;;;;;;44648:3;44638:7;:13;44552:101;;44685:3;44669:13;:19;;;;43726:974;;44710:60;44739:1;44743:2;44747:12;44761:8;44710:20;:60::i;:::-;43303:1475;43249:1529;;:::o;38782:322::-;38852:14;39083:1;39073:8;39070:15;39045:23;39041:45;39031:55;;38782:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:99::-;2005:6;2039:5;2033:12;2023:22;;1953:99;;;:::o;2058:169::-;2142:11;2176:6;2171:3;2164:19;2216:4;2211:3;2207:14;2192:29;;2058:169;;;;:::o;2233:307::-;2301:1;2311:113;2325:6;2322:1;2319:13;2311:113;;;2410:1;2405:3;2401:11;2395:18;2391:1;2386:3;2382:11;2375:39;2347:2;2344:1;2340:10;2335:15;;2311:113;;;2442:6;2439:1;2436:13;2433:101;;;2522:1;2513:6;2508:3;2504:16;2497:27;2433:101;2282:258;2233:307;;;:::o;2546:102::-;2587:6;2638:2;2634:7;2629:2;2622:5;2618:14;2614:28;2604:38;;2546:102;;;:::o;2654:364::-;2742:3;2770:39;2803:5;2770:39;:::i;:::-;2825:71;2889:6;2884:3;2825:71;:::i;:::-;2818:78;;2905:52;2950:6;2945:3;2938:4;2931:5;2927:16;2905:52;:::i;:::-;2982:29;3004:6;2982:29;:::i;:::-;2977:3;2973:39;2966:46;;2746:272;2654:364;;;;:::o;3024:313::-;3137:4;3175:2;3164:9;3160:18;3152:26;;3224:9;3218:4;3214:20;3210:1;3199:9;3195:17;3188:47;3252:78;3325:4;3316:6;3252:78;:::i;:::-;3244:86;;3024:313;;;;:::o;3343:122::-;3416:24;3434:5;3416:24;:::i;:::-;3409:5;3406:35;3396:63;;3455:1;3452;3445:12;3396:63;3343:122;:::o;3471:139::-;3517:5;3555:6;3542:20;3533:29;;3571:33;3598:5;3571:33;:::i;:::-;3471:139;;;;:::o;3616:329::-;3675:6;3724:2;3712:9;3703:7;3699:23;3695:32;3692:119;;;3730:79;;:::i;:::-;3692:119;3850:1;3875:53;3920:7;3911:6;3900:9;3896:22;3875:53;:::i;:::-;3865:63;;3821:117;3616:329;;;;:::o;3951:126::-;3988:7;4028:42;4021:5;4017:54;4006:65;;3951:126;;;:::o;4083:96::-;4120:7;4149:24;4167:5;4149:24;:::i;:::-;4138:35;;4083:96;;;:::o;4185:118::-;4272:24;4290:5;4272:24;:::i;:::-;4267:3;4260:37;4185:118;;:::o;4309:222::-;4402:4;4440:2;4429:9;4425:18;4417:26;;4453:71;4521:1;4510:9;4506:17;4497:6;4453:71;:::i;:::-;4309:222;;;;:::o;4537:122::-;4610:24;4628:5;4610:24;:::i;:::-;4603:5;4600:35;4590:63;;4649:1;4646;4639:12;4590:63;4537:122;:::o;4665:139::-;4711:5;4749:6;4736:20;4727:29;;4765:33;4792:5;4765:33;:::i;:::-;4665:139;;;;:::o;4810:474::-;4878:6;4886;4935:2;4923:9;4914:7;4910:23;4906:32;4903:119;;;4941:79;;:::i;:::-;4903:119;5061:1;5086:53;5131:7;5122:6;5111:9;5107:22;5086:53;:::i;:::-;5076:63;;5032:117;5188:2;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5159:118;4810:474;;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:116::-;8606:21;8621:5;8606:21;:::i;:::-;8599:5;8596:32;8586:60;;8642:1;8639;8632:12;8586:60;8536:116;:::o;8658:133::-;8701:5;8739:6;8726:20;8717:29;;8755:30;8779:5;8755:30;:::i;:::-;8658:133;;;;:::o;8797:323::-;8853:6;8902:2;8890:9;8881:7;8877:23;8873:32;8870:119;;;8908:79;;:::i;:::-;8870:119;9028:1;9053:50;9095:7;9086:6;9075:9;9071:22;9053:50;:::i;:::-;9043:60;;8999:114;8797:323;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:180::-;12498:77;12495:1;12488:88;12595:4;12592:1;12585:15;12619:4;12616:1;12609:15;12636:320;12680:6;12717:1;12711:4;12707:12;12697:22;;12764:1;12758:4;12754:12;12785:18;12775:81;;12841:4;12833:6;12829:17;12819:27;;12775:81;12903:2;12895:6;12892:14;12872:18;12869:38;12866:84;;12922:18;;:::i;:::-;12866:84;12687:269;12636:320;;;:::o;12962:181::-;13102:33;13098:1;13090:6;13086:14;13079:57;12962:181;:::o;13149:366::-;13291:3;13312:67;13376:2;13371:3;13312:67;:::i;:::-;13305:74;;13388:93;13477:3;13388:93;:::i;:::-;13506:2;13501:3;13497:12;13490:19;;13149:366;;;:::o;13521:419::-;13687:4;13725:2;13714:9;13710:18;13702:26;;13774:9;13768:4;13764:20;13760:1;13749:9;13745:17;13738:47;13802:131;13928:4;13802:131;:::i;:::-;13794:139;;13521:419;;;:::o;13946:147::-;14047:11;14084:3;14069:18;;13946:147;;;;:::o;14099:114::-;;:::o;14219:398::-;14378:3;14399:83;14480:1;14475:3;14399:83;:::i;:::-;14392:90;;14491:93;14580:3;14491:93;:::i;:::-;14609:1;14604:3;14600:11;14593:18;;14219:398;;;:::o;14623:379::-;14807:3;14829:147;14972:3;14829:147;:::i;:::-;14822:154;;14993:3;14986:10;;14623:379;;;:::o;15008:180::-;15056:77;15053:1;15046:88;15153:4;15150:1;15143:15;15177:4;15174:1;15167:15;15194:305;15234:3;15253:20;15271:1;15253:20;:::i;:::-;15248:25;;15287:20;15305:1;15287:20;:::i;:::-;15282:25;;15441:1;15373:66;15369:74;15366:1;15363:81;15360:107;;;15447:18;;:::i;:::-;15360:107;15491:1;15488;15484:9;15477:16;;15194:305;;;;:::o;15505:168::-;15645:20;15641:1;15633:6;15629:14;15622:44;15505:168;:::o;15679:366::-;15821:3;15842:67;15906:2;15901:3;15842:67;:::i;:::-;15835:74;;15918:93;16007:3;15918:93;:::i;:::-;16036:2;16031:3;16027:12;16020:19;;15679:366;;;:::o;16051:419::-;16217:4;16255:2;16244:9;16240:18;16232:26;;16304:9;16298:4;16294:20;16290:1;16279:9;16275:17;16268:47;16332:131;16458:4;16332:131;:::i;:::-;16324:139;;16051:419;;;:::o;16476:220::-;16616:34;16612:1;16604:6;16600:14;16593:58;16685:3;16680:2;16672:6;16668:15;16661:28;16476:220;:::o;16702:366::-;16844:3;16865:67;16929:2;16924:3;16865:67;:::i;:::-;16858:74;;16941:93;17030:3;16941:93;:::i;:::-;17059:2;17054:3;17050:12;17043:19;;16702:366;;;:::o;17074:419::-;17240:4;17278:2;17267:9;17263:18;17255:26;;17327:9;17321:4;17317:20;17313:1;17302:9;17298:17;17291:47;17355:131;17481:4;17355:131;:::i;:::-;17347:139;;17074:419;;;:::o;17499:174::-;17639:26;17635:1;17627:6;17623:14;17616:50;17499:174;:::o;17679:366::-;17821:3;17842:67;17906:2;17901:3;17842:67;:::i;:::-;17835:74;;17918:93;18007:3;17918:93;:::i;:::-;18036:2;18031:3;18027:12;18020:19;;17679:366;;;:::o;18051:419::-;18217:4;18255:2;18244:9;18240:18;18232:26;;18304:9;18298:4;18294:20;18290:1;18279:9;18275:17;18268:47;18332:131;18458:4;18332:131;:::i;:::-;18324:139;;18051:419;;;:::o;18476:191::-;18516:4;18536:20;18554:1;18536:20;:::i;:::-;18531:25;;18570:20;18588:1;18570:20;:::i;:::-;18565:25;;18609:1;18606;18603:8;18600:34;;;18614:18;;:::i;:::-;18600:34;18659:1;18656;18652:9;18644:17;;18476:191;;;;:::o;18673:348::-;18713:7;18736:20;18754:1;18736:20;:::i;:::-;18731:25;;18770:20;18788:1;18770:20;:::i;:::-;18765:25;;18958:1;18890:66;18886:74;18883:1;18880:81;18875:1;18868:9;18861:17;18857:105;18854:131;;;18965:18;;:::i;:::-;18854:131;19013:1;19010;19006:9;18995:20;;18673:348;;;;:::o;19027:221::-;19167:34;19163:1;19155:6;19151:14;19144:58;19236:4;19231:2;19223:6;19219:15;19212:29;19027:221;:::o;19254:366::-;19396:3;19417:67;19481:2;19476:3;19417:67;:::i;:::-;19410:74;;19493:93;19582:3;19493:93;:::i;:::-;19611:2;19606:3;19602:12;19595:19;;19254:366;;;:::o;19626:419::-;19792:4;19830:2;19819:9;19815:18;19807:26;;19879:9;19873:4;19869:20;19865:1;19854:9;19850:17;19843:47;19907:131;20033:4;19907:131;:::i;:::-;19899:139;;19626:419;;;:::o;20051:234::-;20191:34;20187:1;20179:6;20175:14;20168:58;20260:17;20255:2;20247:6;20243:15;20236:42;20051:234;:::o;20291:366::-;20433:3;20454:67;20518:2;20513:3;20454:67;:::i;:::-;20447:74;;20530:93;20619:3;20530:93;:::i;:::-;20648:2;20643:3;20639:12;20632:19;;20291:366;;;:::o;20663:419::-;20829:4;20867:2;20856:9;20852:18;20844:26;;20916:9;20910:4;20906:20;20902:1;20891:9;20887:17;20880:47;20944:131;21070:4;20944:131;:::i;:::-;20936:139;;20663:419;;;:::o;21088:148::-;21190:11;21227:3;21212:18;;21088:148;;;;:::o;21242:377::-;21348:3;21376:39;21409:5;21376:39;:::i;:::-;21431:89;21513:6;21508:3;21431:89;:::i;:::-;21424:96;;21529:52;21574:6;21569:3;21562:4;21555:5;21551:16;21529:52;:::i;:::-;21606:6;21601:3;21597:16;21590:23;;21352:267;21242:377;;;;:::o;21625:155::-;21765:7;21761:1;21753:6;21749:14;21742:31;21625:155;:::o;21786:400::-;21946:3;21967:84;22049:1;22044:3;21967:84;:::i;:::-;21960:91;;22060:93;22149:3;22060:93;:::i;:::-;22178:1;22173:3;22169:11;22162:18;;21786:400;;;:::o;22192:701::-;22473:3;22495:95;22586:3;22577:6;22495:95;:::i;:::-;22488:102;;22607:95;22698:3;22689:6;22607:95;:::i;:::-;22600:102;;22719:148;22863:3;22719:148;:::i;:::-;22712:155;;22884:3;22877:10;;22192:701;;;;;:::o;22899:225::-;23039:34;23035:1;23027:6;23023:14;23016:58;23108:8;23103:2;23095:6;23091:15;23084:33;22899:225;:::o;23130:366::-;23272:3;23293:67;23357:2;23352:3;23293:67;:::i;:::-;23286:74;;23369:93;23458:3;23369:93;:::i;:::-;23487:2;23482:3;23478:12;23471:19;;23130:366;;;:::o;23502:419::-;23668:4;23706:2;23695:9;23691:18;23683:26;;23755:9;23749:4;23745:20;23741:1;23730:9;23726:17;23719:47;23783:131;23909:4;23783:131;:::i;:::-;23775:139;;23502:419;;;:::o;23927:182::-;24067:34;24063:1;24055:6;24051:14;24044:58;23927:182;:::o;24115:366::-;24257:3;24278:67;24342:2;24337:3;24278:67;:::i;:::-;24271:74;;24354:93;24443:3;24354:93;:::i;:::-;24472:2;24467:3;24463:12;24456:19;;24115:366;;;:::o;24487:419::-;24653:4;24691:2;24680:9;24676:18;24668:26;;24740:9;24734:4;24730:20;24726:1;24715:9;24711:17;24704:47;24768:131;24894:4;24768:131;:::i;:::-;24760:139;;24487:419;;;:::o;24912:98::-;24963:6;24997:5;24991:12;24981:22;;24912:98;;;:::o;25016:168::-;25099:11;25133:6;25128:3;25121:19;25173:4;25168:3;25164:14;25149:29;;25016:168;;;;:::o;25190:360::-;25276:3;25304:38;25336:5;25304:38;:::i;:::-;25358:70;25421:6;25416:3;25358:70;:::i;:::-;25351:77;;25437:52;25482:6;25477:3;25470:4;25463:5;25459:16;25437:52;:::i;:::-;25514:29;25536:6;25514:29;:::i;:::-;25509:3;25505:39;25498:46;;25280:270;25190:360;;;;:::o;25556:640::-;25751:4;25789:3;25778:9;25774:19;25766:27;;25803:71;25871:1;25860:9;25856:17;25847:6;25803:71;:::i;:::-;25884:72;25952:2;25941:9;25937:18;25928:6;25884:72;:::i;:::-;25966;26034:2;26023:9;26019:18;26010:6;25966:72;:::i;:::-;26085:9;26079:4;26075:20;26070:2;26059:9;26055:18;26048:48;26113:76;26184:4;26175:6;26113:76;:::i;:::-;26105:84;;25556:640;;;;;;;:::o;26202:141::-;26258:5;26289:6;26283:13;26274:22;;26305:32;26331:5;26305:32;:::i;:::-;26202:141;;;;:::o;26349:349::-;26418:6;26467:2;26455:9;26446:7;26442:23;26438:32;26435:119;;;26473:79;;:::i;:::-;26435:119;26593:1;26618:63;26673:7;26664:6;26653:9;26649:22;26618:63;:::i;:::-;26608:73;;26564:127;26349:349;;;;:::o;26704:233::-;26743:3;26766:24;26784:5;26766:24;:::i;:::-;26757:33;;26812:66;26805:5;26802:77;26799:103;;26882:18;;:::i;:::-;26799:103;26929:1;26922:5;26918:13;26911:20;;26704:233;;;:::o;26943:180::-;26991:77;26988:1;26981:88;27088:4;27085:1;27078:15;27112:4;27109:1;27102:15;27129:185;27169:1;27186:20;27204:1;27186:20;:::i;:::-;27181:25;;27220:20;27238:1;27220:20;:::i;:::-;27215:25;;27259:1;27249:35;;27264:18;;:::i;:::-;27249:35;27306:1;27303;27299:9;27294:14;;27129:185;;;;:::o;27320:176::-;27352:1;27369:20;27387:1;27369:20;:::i;:::-;27364:25;;27403:20;27421:1;27403:20;:::i;:::-;27398:25;;27442:1;27432:35;;27447:18;;:::i;:::-;27432:35;27488:1;27485;27481:9;27476:14;;27320:176;;;;:::o;27502:180::-;27550:77;27547:1;27540:88;27647:4;27644:1;27637:15;27671:4;27668:1;27661:15

Swarm Source

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