ETH Price: $3,418.83 (-2.26%)
Gas: 5 Gwei

Token

PIXEL_PRINT (PASS)
 

Overview

Max Total Supply

89 PASS

Holders

61

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
29 PASS
0x41d2347cb216af680413c1486ca923b824a806b2
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:
Pixel_Prints

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-17
*/

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// 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 v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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: pixelprints.sol



pragma solidity ^0.8.10;






contract Pixel_Prints is ERC721A, Ownable {
    using Strings for uint256;

    uint256 public constant MAX_TOKENS = 333;

    uint256 public price = 0.05 ether;
    uint256 public maxMint = 1;
    bool public publicSale = false;
    bool public whitelistSale = false;

    mapping(address => uint256) public _whitelistClaimed;

    string public baseURI = "https://gateway.pinata.cloud/ipfs/QmdEXk9vs7aC3akWhw8MnM4XBXqWBnwrFC7pn1Q96D7uZB/";
    bytes32 public merkleRoot = 0xb02791eae516b1116dd8be4c05ee7bcea567d61ed5de3b1e025df80820806b79;

    constructor() ERC721A("PIXEL_PRINT", "PASS") {
    }

    function toggleWhitelistSale() external onlyOwner {
        whitelistSale = !whitelistSale;
    }

    function togglePublicSale() external onlyOwner {
        publicSale = !publicSale;
    }

    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        baseURI = _newBaseURI;
    }

    function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function setPrice(uint256 _price) public onlyOwner {
        price = _price;
    }

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

    //change max mint 
    function setMaxMint(uint256 _newMaxMint) external onlyOwner {
        maxMint = _newMaxMint;
    }

    //wl only mint
    function whitelistMint(uint256 tokens, bytes32[] calldata merkleProof) external payable {
        require(whitelistSale, "You can not mint right now");
        require(MerkleProof.verify(merkleProof, merkleRoot, keccak256(abi.encodePacked(msg.sender))), "You are not on the whitelist");
        require(_whitelistClaimed[_msgSender()] + tokens <= maxMint, "Cannot mint this many pass");
        require(tokens > 0, "Please mint at least 1 pass");
        require(price * tokens == msg.value, "Not enough ETH");

        _safeMint(_msgSender(), tokens);
        _whitelistClaimed[_msgSender()] += tokens;
    }

    //mint function for public
    function mint(uint256 tokens) external payable {
        require(publicSale, "Public sale has not started");
        require(tokens <= maxMint, "Cannot purchase this many tokens in a transaction");
        require(totalSupply() + tokens <= MAX_TOKENS, "Exceeded supply");
        require(tokens > 0, "Please mint at least 1 Pass");
        require(price * tokens == msg.value, "Not enough ETH");
        _safeMint(_msgSender(), tokens);
    }

    // Owner mint has no restrictions. use for giveaways, airdrops, etc
    function ownerMint(address to, uint256 tokens) external onlyOwner {
        require(totalSupply() + tokens <= MAX_TOKENS, "Minting would exceed max supply");
        require(tokens > 0, "Must mint at least one token");
        _safeMint(to, tokens);
    }

    function withdraw() public onlyOwner {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
  }
}

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_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_whitelistClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhitelistSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266b1a2bc2ec500006009556001600a556000600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff02191690831515021790555060405180608001604052806051815260200162003d0960519139600d90805190602001906200007b92919062000260565b507fb02791eae516b1116dd8be4c05ee7bcea567d61ed5de3b1e025df80820806b7960001b600e55348015620000b057600080fd5b506040518060400160405280600b81526020017f504958454c5f5052494e540000000000000000000000000000000000000000008152506040518060400160405280600481526020017f504153530000000000000000000000000000000000000000000000000000000081525081600290805190602001906200013592919062000260565b5080600390805190602001906200014e92919062000260565b506200015f6200018d60201b60201c565b6000819055505050620001876200017b6200019260201b60201c565b6200019a60201b60201c565b62000375565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200026e906200033f565b90600052602060002090601f016020900481019282620002925760008555620002de565b82601f10620002ad57805160ff1916838001178555620002de565b82800160010185558215620002de579182015b82811115620002dd578251825591602001919060010190620002c0565b5b509050620002ed9190620002f1565b5090565b5b808211156200030c576000816000905550600101620002f2565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200035857607f821691505b602082108114156200036f576200036e62000310565b5b50919050565b61398480620003856000396000f3fe6080604052600436106102045760003560e01c806370a0823111610118578063a0712d68116100a0578063d2cab0561161006f578063d2cab05614610720578063e222c7f91461073c578063e985e9c514610753578063f2fde38b14610790578063f47c84c5146107b957610204565b8063a0712d6814610675578063a22cb46514610691578063b88d4fde146106ba578063c87b56dd146106e357610204565b8063851a7708116100e7578063851a77081461058e5780638da5cb5b146105cb57806391b7f5ed146105f657806395d89b411461061f578063a035b1fe1461064a57610204565b806370a08231146104e6578063715018a6146105235780637501f7411461053a5780637cb647591461056557610204565b806333bc1c5c1161019b578063547520fe1161016a578063547520fe1461041557806355f804b31461043e57806359eda1b5146104675780636352211e1461047e5780636c0360eb146104bb57610204565b806333bc1c5c146103815780633ccfd60b146103ac57806342842e0e146103c3578063484b973c146103ec57610204565b806318160ddd116101d757806318160ddd146102d757806323b872dd146103025780632eb4a7ab1461032b57806331ffd6f11461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612854565b6107e4565b60405161023d919061289c565b60405180910390f35b34801561025257600080fd5b5061025b610876565b6040516102689190612950565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906129a8565b610908565b6040516102a59190612a16565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612a5d565b610984565b005b3480156102e357600080fd5b506102ec610ac5565b6040516102f99190612aac565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190612ac7565b610adc565b005b34801561033757600080fd5b50610340610e01565b60405161034d9190612b33565b60405180910390f35b34801561036257600080fd5b5061036b610e07565b604051610378919061289c565b60405180910390f35b34801561038d57600080fd5b50610396610e1a565b6040516103a3919061289c565b60405180910390f35b3480156103b857600080fd5b506103c1610e2d565b005b3480156103cf57600080fd5b506103ea60048036038101906103e59190612ac7565b610f29565b005b3480156103f857600080fd5b50610413600480360381019061040e9190612a5d565b610f49565b005b34801561042157600080fd5b5061043c600480360381019061043791906129a8565b61106d565b005b34801561044a57600080fd5b5061046560048036038101906104609190612c83565b6110f3565b005b34801561047357600080fd5b5061047c611189565b005b34801561048a57600080fd5b506104a560048036038101906104a091906129a8565b611231565b6040516104b29190612a16565b60405180910390f35b3480156104c757600080fd5b506104d0611243565b6040516104dd9190612950565b60405180910390f35b3480156104f257600080fd5b5061050d60048036038101906105089190612ccc565b6112d1565b60405161051a9190612aac565b60405180910390f35b34801561052f57600080fd5b5061053861138a565b005b34801561054657600080fd5b5061054f611412565b60405161055c9190612aac565b60405180910390f35b34801561057157600080fd5b5061058c60048036038101906105879190612d25565b611418565b005b34801561059a57600080fd5b506105b560048036038101906105b09190612ccc565b61149e565b6040516105c29190612aac565b60405180910390f35b3480156105d757600080fd5b506105e06114b6565b6040516105ed9190612a16565b60405180910390f35b34801561060257600080fd5b5061061d600480360381019061061891906129a8565b6114e0565b005b34801561062b57600080fd5b50610634611566565b6040516106419190612950565b60405180910390f35b34801561065657600080fd5b5061065f6115f8565b60405161066c9190612aac565b60405180910390f35b61068f600480360381019061068a91906129a8565b6115fe565b005b34801561069d57600080fd5b506106b860048036038101906106b39190612d7e565b61178f565b005b3480156106c657600080fd5b506106e160048036038101906106dc9190612e5f565b611907565b005b3480156106ef57600080fd5b5061070a600480360381019061070591906129a8565b61197a565b6040516107179190612950565b60405180910390f35b61073a60048036038101906107359190612f42565b611a19565b005b34801561074857600080fd5b50610751611cb6565b005b34801561075f57600080fd5b5061077a60048036038101906107759190612fa2565b611d5e565b604051610787919061289c565b60405180910390f35b34801561079c57600080fd5b506107b760048036038101906107b29190612ccc565b611df2565b005b3480156107c557600080fd5b506107ce611eea565b6040516107db9190612aac565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461088590613011565b80601f01602080910402602001604051908101604052809291908181526020018280546108b190613011565b80156108fe5780601f106108d3576101008083540402835291602001916108fe565b820191906000526020600020905b8154815290600101906020018083116108e157829003601f168201915b5050505050905090565b600061091382611ef0565b610949576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098f82611231565b90508073ffffffffffffffffffffffffffffffffffffffff166109b0611f4f565b73ffffffffffffffffffffffffffffffffffffffff1614610a13576109dc816109d7611f4f565b611d5e565b610a12576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610acf611f57565b6001546000540303905090565b6000610ae782611f5c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b4e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b5a8461202a565b91509150610b708187610b6b611f4f565b61204c565b610bbc57610b8586610b80611f4f565b611d5e565b610bbb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c23576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c308686866001612090565b8015610c3b57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d0985610ce5888887612096565b7c0200000000000000000000000000000000000000000000000000000000176120be565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d91576000600185019050600060046000838152602001908152602001600020541415610d8f576000548114610d8e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610df986868660016120e9565b505050505050565b600e5481565b600b60019054906101000a900460ff1681565b600b60009054906101000a900460ff1681565b610e356120ef565b73ffffffffffffffffffffffffffffffffffffffff16610e536114b6565b73ffffffffffffffffffffffffffffffffffffffff1614610ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea09061308f565b60405180910390fd5b6000610eb36114b6565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ed6906130e0565b60006040518083038185875af1925050503d8060008114610f13576040519150601f19603f3d011682016040523d82523d6000602084013e610f18565b606091505b5050905080610f2657600080fd5b50565b610f4483838360405180602001604052806000815250611907565b505050565b610f516120ef565b73ffffffffffffffffffffffffffffffffffffffff16610f6f6114b6565b73ffffffffffffffffffffffffffffffffffffffff1614610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc9061308f565b60405180910390fd5b61014d81610fd1610ac5565b610fdb9190613124565b111561101c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611013906131c6565b60405180910390fd5b6000811161105f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105690613232565b60405180910390fd5b61106982826120f7565b5050565b6110756120ef565b73ffffffffffffffffffffffffffffffffffffffff166110936114b6565b73ffffffffffffffffffffffffffffffffffffffff16146110e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e09061308f565b60405180910390fd5b80600a8190555050565b6110fb6120ef565b73ffffffffffffffffffffffffffffffffffffffff166111196114b6565b73ffffffffffffffffffffffffffffffffffffffff161461116f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111669061308f565b60405180910390fd5b80600d9080519060200190611185929190612745565b5050565b6111916120ef565b73ffffffffffffffffffffffffffffffffffffffff166111af6114b6565b73ffffffffffffffffffffffffffffffffffffffff1614611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc9061308f565b60405180910390fd5b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b600061123c82611f5c565b9050919050565b600d805461125090613011565b80601f016020809104026020016040519081016040528092919081815260200182805461127c90613011565b80156112c95780601f1061129e576101008083540402835291602001916112c9565b820191906000526020600020905b8154815290600101906020018083116112ac57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611339576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6113926120ef565b73ffffffffffffffffffffffffffffffffffffffff166113b06114b6565b73ffffffffffffffffffffffffffffffffffffffff1614611406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fd9061308f565b60405180910390fd5b6114106000612115565b565b600a5481565b6114206120ef565b73ffffffffffffffffffffffffffffffffffffffff1661143e6114b6565b73ffffffffffffffffffffffffffffffffffffffff1614611494576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148b9061308f565b60405180910390fd5b80600e8190555050565b600c6020528060005260406000206000915090505481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114e86120ef565b73ffffffffffffffffffffffffffffffffffffffff166115066114b6565b73ffffffffffffffffffffffffffffffffffffffff161461155c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115539061308f565b60405180910390fd5b8060098190555050565b60606003805461157590613011565b80601f01602080910402602001604051908101604052809291908181526020018280546115a190613011565b80156115ee5780601f106115c3576101008083540402835291602001916115ee565b820191906000526020600020905b8154815290600101906020018083116115d157829003601f168201915b5050505050905090565b60095481565b600b60009054906101000a900460ff1661164d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116449061329e565b60405180910390fd5b600a54811115611692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168990613330565b60405180910390fd5b61014d8161169e610ac5565b6116a89190613124565b11156116e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e09061339c565b60405180910390fd5b6000811161172c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172390613408565b60405180910390fd5b348160095461173b9190613428565b1461177b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611772906134ce565b60405180910390fd5b61178c6117866120ef565b826120f7565b50565b611797611f4f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117fc576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611809611f4f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118b6611f4f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118fb919061289c565b60405180910390a35050565b611912848484610adc565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119745761193d848484846121db565b611973576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061198582611ef0565b6119bb576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006119c561232c565b90506000815114156119e65760405180602001604052806000815250611a11565b806119f0846123be565b604051602001611a0192919061352a565b6040516020818303038152906040525b915050919050565b600b60019054906101000a900460ff16611a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5f9061359a565b60405180910390fd5b611adc828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e5433604051602001611ac19190613602565b60405160208183030381529060405280519060200120612418565b611b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1290613669565b60405180910390fd5b600a5483600c6000611b2b6120ef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b709190613124565b1115611bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba8906136d5565b60405180910390fd5b60008311611bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611beb90613741565b60405180910390fd5b3483600954611c039190613428565b14611c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3a906134ce565b60405180910390fd5b611c54611c4e6120ef565b846120f7565b82600c6000611c616120ef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611caa9190613124565b92505081905550505050565b611cbe6120ef565b73ffffffffffffffffffffffffffffffffffffffff16611cdc6114b6565b73ffffffffffffffffffffffffffffffffffffffff1614611d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d299061308f565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611dfa6120ef565b73ffffffffffffffffffffffffffffffffffffffff16611e186114b6565b73ffffffffffffffffffffffffffffffffffffffff1614611e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e659061308f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed5906137d3565b60405180910390fd5b611ee781612115565b50565b61014d81565b600081611efb611f57565b11158015611f0a575060005482105b8015611f48575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611f6b611f57565b11611ff357600054811015611ff25760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611ff0575b6000811415611fe6576004600083600190039350838152602001908152602001600020549050611fbb565b8092505050612025565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86120ad86868461242f565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b612111828260405180602001604052806000815250612438565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612201611f4f565b8786866040518563ffffffff1660e01b81526004016122239493929190613848565b6020604051808303816000875af192505050801561225f57506040513d601f19601f8201168201806040525081019061225c91906138a9565b60015b6122d9573d806000811461228f576040519150601f19603f3d011682016040523d82523d6000602084013e612294565b606091505b506000815114156122d1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d805461233b90613011565b80601f016020809104026020016040519081016040528092919081815260200182805461236790613011565b80156123b45780601f10612389576101008083540402835291602001916123b4565b820191906000526020600020905b81548152906001019060200180831161239757829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561240457600183039250600a81066030018353600a810490506123e4565b508181036020830392508083525050919050565b60008261242585846124d5565b1490509392505050565b60009392505050565b612442838361254a565b60008373ffffffffffffffffffffffffffffffffffffffff163b146124d057600080549050600083820390505b61248260008683806001019450866121db565b6124b8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061246f5781600054146124cd57600080fd5b50505b505050565b60008082905060005b845181101561253f5760008582815181106124fc576124fb6138d6565b5b6020026020010151905080831161251e57612517838261271e565b925061252b565b612528818461271e565b92505b50808061253790613905565b9150506124de565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125b7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156125f2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125ff6000848385612090565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612676836126676000866000612096565b61267085612735565b176120be565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061269a5780600081905550505061271960008483856120e9565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b82805461275190613011565b90600052602060002090601f01602090048101928261277357600085556127ba565b82601f1061278c57805160ff19168380011785556127ba565b828001600101855582156127ba579182015b828111156127b957825182559160200191906001019061279e565b5b5090506127c791906127cb565b5090565b5b808211156127e45760008160009055506001016127cc565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612831816127fc565b811461283c57600080fd5b50565b60008135905061284e81612828565b92915050565b60006020828403121561286a576128696127f2565b5b60006128788482850161283f565b91505092915050565b60008115159050919050565b61289681612881565b82525050565b60006020820190506128b1600083018461288d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128f15780820151818401526020810190506128d6565b83811115612900576000848401525b50505050565b6000601f19601f8301169050919050565b6000612922826128b7565b61292c81856128c2565b935061293c8185602086016128d3565b61294581612906565b840191505092915050565b6000602082019050818103600083015261296a8184612917565b905092915050565b6000819050919050565b61298581612972565b811461299057600080fd5b50565b6000813590506129a28161297c565b92915050565b6000602082840312156129be576129bd6127f2565b5b60006129cc84828501612993565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a00826129d5565b9050919050565b612a10816129f5565b82525050565b6000602082019050612a2b6000830184612a07565b92915050565b612a3a816129f5565b8114612a4557600080fd5b50565b600081359050612a5781612a31565b92915050565b60008060408385031215612a7457612a736127f2565b5b6000612a8285828601612a48565b9250506020612a9385828601612993565b9150509250929050565b612aa681612972565b82525050565b6000602082019050612ac16000830184612a9d565b92915050565b600080600060608486031215612ae057612adf6127f2565b5b6000612aee86828701612a48565b9350506020612aff86828701612a48565b9250506040612b1086828701612993565b9150509250925092565b6000819050919050565b612b2d81612b1a565b82525050565b6000602082019050612b486000830184612b24565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612b9082612906565b810181811067ffffffffffffffff82111715612baf57612bae612b58565b5b80604052505050565b6000612bc26127e8565b9050612bce8282612b87565b919050565b600067ffffffffffffffff821115612bee57612bed612b58565b5b612bf782612906565b9050602081019050919050565b82818337600083830152505050565b6000612c26612c2184612bd3565b612bb8565b905082815260208101848484011115612c4257612c41612b53565b5b612c4d848285612c04565b509392505050565b600082601f830112612c6a57612c69612b4e565b5b8135612c7a848260208601612c13565b91505092915050565b600060208284031215612c9957612c986127f2565b5b600082013567ffffffffffffffff811115612cb757612cb66127f7565b5b612cc384828501612c55565b91505092915050565b600060208284031215612ce257612ce16127f2565b5b6000612cf084828501612a48565b91505092915050565b612d0281612b1a565b8114612d0d57600080fd5b50565b600081359050612d1f81612cf9565b92915050565b600060208284031215612d3b57612d3a6127f2565b5b6000612d4984828501612d10565b91505092915050565b612d5b81612881565b8114612d6657600080fd5b50565b600081359050612d7881612d52565b92915050565b60008060408385031215612d9557612d946127f2565b5b6000612da385828601612a48565b9250506020612db485828601612d69565b9150509250929050565b600067ffffffffffffffff821115612dd957612dd8612b58565b5b612de282612906565b9050602081019050919050565b6000612e02612dfd84612dbe565b612bb8565b905082815260208101848484011115612e1e57612e1d612b53565b5b612e29848285612c04565b509392505050565b600082601f830112612e4657612e45612b4e565b5b8135612e56848260208601612def565b91505092915050565b60008060008060808587031215612e7957612e786127f2565b5b6000612e8787828801612a48565b9450506020612e9887828801612a48565b9350506040612ea987828801612993565b925050606085013567ffffffffffffffff811115612eca57612ec96127f7565b5b612ed687828801612e31565b91505092959194509250565b600080fd5b600080fd5b60008083601f840112612f0257612f01612b4e565b5b8235905067ffffffffffffffff811115612f1f57612f1e612ee2565b5b602083019150836020820283011115612f3b57612f3a612ee7565b5b9250929050565b600080600060408486031215612f5b57612f5a6127f2565b5b6000612f6986828701612993565b935050602084013567ffffffffffffffff811115612f8a57612f896127f7565b5b612f9686828701612eec565b92509250509250925092565b60008060408385031215612fb957612fb86127f2565b5b6000612fc785828601612a48565b9250506020612fd885828601612a48565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061302957607f821691505b6020821081141561303d5761303c612fe2565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006130796020836128c2565b915061308482613043565b602082019050919050565b600060208201905081810360008301526130a88161306c565b9050919050565b600081905092915050565b50565b60006130ca6000836130af565b91506130d5826130ba565b600082019050919050565b60006130eb826130bd565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061312f82612972565b915061313a83612972565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561316f5761316e6130f5565b5b828201905092915050565b7f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900600082015250565b60006131b0601f836128c2565b91506131bb8261317a565b602082019050919050565b600060208201905081810360008301526131df816131a3565b9050919050565b7f4d757374206d696e74206174206c65617374206f6e6520746f6b656e00000000600082015250565b600061321c601c836128c2565b9150613227826131e6565b602082019050919050565b6000602082019050818103600083015261324b8161320f565b9050919050565b7f5075626c69632073616c6520686173206e6f7420737461727465640000000000600082015250565b6000613288601b836128c2565b915061329382613252565b602082019050919050565b600060208201905081810360008301526132b78161327b565b9050919050565b7f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e7360008201527f20696e2061207472616e73616374696f6e000000000000000000000000000000602082015250565b600061331a6031836128c2565b9150613325826132be565b604082019050919050565b600060208201905081810360008301526133498161330d565b9050919050565b7f457863656564656420737570706c790000000000000000000000000000000000600082015250565b6000613386600f836128c2565b915061339182613350565b602082019050919050565b600060208201905081810360008301526133b581613379565b9050919050565b7f506c65617365206d696e74206174206c65617374203120506173730000000000600082015250565b60006133f2601b836128c2565b91506133fd826133bc565b602082019050919050565b60006020820190508181036000830152613421816133e5565b9050919050565b600061343382612972565b915061343e83612972565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613477576134766130f5565b5b828202905092915050565b7f4e6f7420656e6f75676820455448000000000000000000000000000000000000600082015250565b60006134b8600e836128c2565b91506134c382613482565b602082019050919050565b600060208201905081810360008301526134e7816134ab565b9050919050565b600081905092915050565b6000613504826128b7565b61350e81856134ee565b935061351e8185602086016128d3565b80840191505092915050565b600061353682856134f9565b915061354282846134f9565b91508190509392505050565b7f596f752063616e206e6f74206d696e74207269676874206e6f77000000000000600082015250565b6000613584601a836128c2565b915061358f8261354e565b602082019050919050565b600060208201905081810360008301526135b381613577565b9050919050565b60008160601b9050919050565b60006135d2826135ba565b9050919050565b60006135e4826135c7565b9050919050565b6135fc6135f7826129f5565b6135d9565b82525050565b600061360e82846135eb565b60148201915081905092915050565b7f596f7520617265206e6f74206f6e207468652077686974656c69737400000000600082015250565b6000613653601c836128c2565b915061365e8261361d565b602082019050919050565b6000602082019050818103600083015261368281613646565b9050919050565b7f43616e6e6f74206d696e742074686973206d616e792070617373000000000000600082015250565b60006136bf601a836128c2565b91506136ca82613689565b602082019050919050565b600060208201905081810360008301526136ee816136b2565b9050919050565b7f506c65617365206d696e74206174206c65617374203120706173730000000000600082015250565b600061372b601b836128c2565b9150613736826136f5565b602082019050919050565b6000602082019050818103600083015261375a8161371e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006137bd6026836128c2565b91506137c882613761565b604082019050919050565b600060208201905081810360008301526137ec816137b0565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061381a826137f3565b61382481856137fe565b93506138348185602086016128d3565b61383d81612906565b840191505092915050565b600060808201905061385d6000830187612a07565b61386a6020830186612a07565b6138776040830185612a9d565b8181036060830152613889818461380f565b905095945050505050565b6000815190506138a381612828565b92915050565b6000602082840312156138bf576138be6127f2565b5b60006138cd84828501613894565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061391082612972565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613943576139426130f5565b5b60018201905091905056fea264697066735822122028f88595d4913aaed89504209841d7e045b569565f82bd5ab96497dcf97d99d364736f6c634300080a003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d6445586b39767337614333616b576877384d6e4d345842587157426e7772464337706e315139364437755a422f

Deployed Bytecode

0x6080604052600436106102045760003560e01c806370a0823111610118578063a0712d68116100a0578063d2cab0561161006f578063d2cab05614610720578063e222c7f91461073c578063e985e9c514610753578063f2fde38b14610790578063f47c84c5146107b957610204565b8063a0712d6814610675578063a22cb46514610691578063b88d4fde146106ba578063c87b56dd146106e357610204565b8063851a7708116100e7578063851a77081461058e5780638da5cb5b146105cb57806391b7f5ed146105f657806395d89b411461061f578063a035b1fe1461064a57610204565b806370a08231146104e6578063715018a6146105235780637501f7411461053a5780637cb647591461056557610204565b806333bc1c5c1161019b578063547520fe1161016a578063547520fe1461041557806355f804b31461043e57806359eda1b5146104675780636352211e1461047e5780636c0360eb146104bb57610204565b806333bc1c5c146103815780633ccfd60b146103ac57806342842e0e146103c3578063484b973c146103ec57610204565b806318160ddd116101d757806318160ddd146102d757806323b872dd146103025780632eb4a7ab1461032b57806331ffd6f11461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612854565b6107e4565b60405161023d919061289c565b60405180910390f35b34801561025257600080fd5b5061025b610876565b6040516102689190612950565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906129a8565b610908565b6040516102a59190612a16565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612a5d565b610984565b005b3480156102e357600080fd5b506102ec610ac5565b6040516102f99190612aac565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190612ac7565b610adc565b005b34801561033757600080fd5b50610340610e01565b60405161034d9190612b33565b60405180910390f35b34801561036257600080fd5b5061036b610e07565b604051610378919061289c565b60405180910390f35b34801561038d57600080fd5b50610396610e1a565b6040516103a3919061289c565b60405180910390f35b3480156103b857600080fd5b506103c1610e2d565b005b3480156103cf57600080fd5b506103ea60048036038101906103e59190612ac7565b610f29565b005b3480156103f857600080fd5b50610413600480360381019061040e9190612a5d565b610f49565b005b34801561042157600080fd5b5061043c600480360381019061043791906129a8565b61106d565b005b34801561044a57600080fd5b5061046560048036038101906104609190612c83565b6110f3565b005b34801561047357600080fd5b5061047c611189565b005b34801561048a57600080fd5b506104a560048036038101906104a091906129a8565b611231565b6040516104b29190612a16565b60405180910390f35b3480156104c757600080fd5b506104d0611243565b6040516104dd9190612950565b60405180910390f35b3480156104f257600080fd5b5061050d60048036038101906105089190612ccc565b6112d1565b60405161051a9190612aac565b60405180910390f35b34801561052f57600080fd5b5061053861138a565b005b34801561054657600080fd5b5061054f611412565b60405161055c9190612aac565b60405180910390f35b34801561057157600080fd5b5061058c60048036038101906105879190612d25565b611418565b005b34801561059a57600080fd5b506105b560048036038101906105b09190612ccc565b61149e565b6040516105c29190612aac565b60405180910390f35b3480156105d757600080fd5b506105e06114b6565b6040516105ed9190612a16565b60405180910390f35b34801561060257600080fd5b5061061d600480360381019061061891906129a8565b6114e0565b005b34801561062b57600080fd5b50610634611566565b6040516106419190612950565b60405180910390f35b34801561065657600080fd5b5061065f6115f8565b60405161066c9190612aac565b60405180910390f35b61068f600480360381019061068a91906129a8565b6115fe565b005b34801561069d57600080fd5b506106b860048036038101906106b39190612d7e565b61178f565b005b3480156106c657600080fd5b506106e160048036038101906106dc9190612e5f565b611907565b005b3480156106ef57600080fd5b5061070a600480360381019061070591906129a8565b61197a565b6040516107179190612950565b60405180910390f35b61073a60048036038101906107359190612f42565b611a19565b005b34801561074857600080fd5b50610751611cb6565b005b34801561075f57600080fd5b5061077a60048036038101906107759190612fa2565b611d5e565b604051610787919061289c565b60405180910390f35b34801561079c57600080fd5b506107b760048036038101906107b29190612ccc565b611df2565b005b3480156107c557600080fd5b506107ce611eea565b6040516107db9190612aac565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461088590613011565b80601f01602080910402602001604051908101604052809291908181526020018280546108b190613011565b80156108fe5780601f106108d3576101008083540402835291602001916108fe565b820191906000526020600020905b8154815290600101906020018083116108e157829003601f168201915b5050505050905090565b600061091382611ef0565b610949576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098f82611231565b90508073ffffffffffffffffffffffffffffffffffffffff166109b0611f4f565b73ffffffffffffffffffffffffffffffffffffffff1614610a13576109dc816109d7611f4f565b611d5e565b610a12576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610acf611f57565b6001546000540303905090565b6000610ae782611f5c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b4e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b5a8461202a565b91509150610b708187610b6b611f4f565b61204c565b610bbc57610b8586610b80611f4f565b611d5e565b610bbb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c23576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c308686866001612090565b8015610c3b57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d0985610ce5888887612096565b7c0200000000000000000000000000000000000000000000000000000000176120be565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d91576000600185019050600060046000838152602001908152602001600020541415610d8f576000548114610d8e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610df986868660016120e9565b505050505050565b600e5481565b600b60019054906101000a900460ff1681565b600b60009054906101000a900460ff1681565b610e356120ef565b73ffffffffffffffffffffffffffffffffffffffff16610e536114b6565b73ffffffffffffffffffffffffffffffffffffffff1614610ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea09061308f565b60405180910390fd5b6000610eb36114b6565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ed6906130e0565b60006040518083038185875af1925050503d8060008114610f13576040519150601f19603f3d011682016040523d82523d6000602084013e610f18565b606091505b5050905080610f2657600080fd5b50565b610f4483838360405180602001604052806000815250611907565b505050565b610f516120ef565b73ffffffffffffffffffffffffffffffffffffffff16610f6f6114b6565b73ffffffffffffffffffffffffffffffffffffffff1614610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc9061308f565b60405180910390fd5b61014d81610fd1610ac5565b610fdb9190613124565b111561101c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611013906131c6565b60405180910390fd5b6000811161105f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105690613232565b60405180910390fd5b61106982826120f7565b5050565b6110756120ef565b73ffffffffffffffffffffffffffffffffffffffff166110936114b6565b73ffffffffffffffffffffffffffffffffffffffff16146110e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e09061308f565b60405180910390fd5b80600a8190555050565b6110fb6120ef565b73ffffffffffffffffffffffffffffffffffffffff166111196114b6565b73ffffffffffffffffffffffffffffffffffffffff161461116f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111669061308f565b60405180910390fd5b80600d9080519060200190611185929190612745565b5050565b6111916120ef565b73ffffffffffffffffffffffffffffffffffffffff166111af6114b6565b73ffffffffffffffffffffffffffffffffffffffff1614611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc9061308f565b60405180910390fd5b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b600061123c82611f5c565b9050919050565b600d805461125090613011565b80601f016020809104026020016040519081016040528092919081815260200182805461127c90613011565b80156112c95780601f1061129e576101008083540402835291602001916112c9565b820191906000526020600020905b8154815290600101906020018083116112ac57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611339576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6113926120ef565b73ffffffffffffffffffffffffffffffffffffffff166113b06114b6565b73ffffffffffffffffffffffffffffffffffffffff1614611406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fd9061308f565b60405180910390fd5b6114106000612115565b565b600a5481565b6114206120ef565b73ffffffffffffffffffffffffffffffffffffffff1661143e6114b6565b73ffffffffffffffffffffffffffffffffffffffff1614611494576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148b9061308f565b60405180910390fd5b80600e8190555050565b600c6020528060005260406000206000915090505481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114e86120ef565b73ffffffffffffffffffffffffffffffffffffffff166115066114b6565b73ffffffffffffffffffffffffffffffffffffffff161461155c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115539061308f565b60405180910390fd5b8060098190555050565b60606003805461157590613011565b80601f01602080910402602001604051908101604052809291908181526020018280546115a190613011565b80156115ee5780601f106115c3576101008083540402835291602001916115ee565b820191906000526020600020905b8154815290600101906020018083116115d157829003601f168201915b5050505050905090565b60095481565b600b60009054906101000a900460ff1661164d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116449061329e565b60405180910390fd5b600a54811115611692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168990613330565b60405180910390fd5b61014d8161169e610ac5565b6116a89190613124565b11156116e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e09061339c565b60405180910390fd5b6000811161172c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172390613408565b60405180910390fd5b348160095461173b9190613428565b1461177b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611772906134ce565b60405180910390fd5b61178c6117866120ef565b826120f7565b50565b611797611f4f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117fc576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611809611f4f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118b6611f4f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118fb919061289c565b60405180910390a35050565b611912848484610adc565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119745761193d848484846121db565b611973576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061198582611ef0565b6119bb576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006119c561232c565b90506000815114156119e65760405180602001604052806000815250611a11565b806119f0846123be565b604051602001611a0192919061352a565b6040516020818303038152906040525b915050919050565b600b60019054906101000a900460ff16611a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5f9061359a565b60405180910390fd5b611adc828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e5433604051602001611ac19190613602565b60405160208183030381529060405280519060200120612418565b611b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1290613669565b60405180910390fd5b600a5483600c6000611b2b6120ef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b709190613124565b1115611bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba8906136d5565b60405180910390fd5b60008311611bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611beb90613741565b60405180910390fd5b3483600954611c039190613428565b14611c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3a906134ce565b60405180910390fd5b611c54611c4e6120ef565b846120f7565b82600c6000611c616120ef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611caa9190613124565b92505081905550505050565b611cbe6120ef565b73ffffffffffffffffffffffffffffffffffffffff16611cdc6114b6565b73ffffffffffffffffffffffffffffffffffffffff1614611d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d299061308f565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611dfa6120ef565b73ffffffffffffffffffffffffffffffffffffffff16611e186114b6565b73ffffffffffffffffffffffffffffffffffffffff1614611e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e659061308f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed5906137d3565b60405180910390fd5b611ee781612115565b50565b61014d81565b600081611efb611f57565b11158015611f0a575060005482105b8015611f48575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611f6b611f57565b11611ff357600054811015611ff25760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611ff0575b6000811415611fe6576004600083600190039350838152602001908152602001600020549050611fbb565b8092505050612025565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86120ad86868461242f565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b612111828260405180602001604052806000815250612438565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612201611f4f565b8786866040518563ffffffff1660e01b81526004016122239493929190613848565b6020604051808303816000875af192505050801561225f57506040513d601f19601f8201168201806040525081019061225c91906138a9565b60015b6122d9573d806000811461228f576040519150601f19603f3d011682016040523d82523d6000602084013e612294565b606091505b506000815114156122d1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d805461233b90613011565b80601f016020809104026020016040519081016040528092919081815260200182805461236790613011565b80156123b45780601f10612389576101008083540402835291602001916123b4565b820191906000526020600020905b81548152906001019060200180831161239757829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561240457600183039250600a81066030018353600a810490506123e4565b508181036020830392508083525050919050565b60008261242585846124d5565b1490509392505050565b60009392505050565b612442838361254a565b60008373ffffffffffffffffffffffffffffffffffffffff163b146124d057600080549050600083820390505b61248260008683806001019450866121db565b6124b8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061246f5781600054146124cd57600080fd5b50505b505050565b60008082905060005b845181101561253f5760008582815181106124fc576124fb6138d6565b5b6020026020010151905080831161251e57612517838261271e565b925061252b565b612528818461271e565b92505b50808061253790613905565b9150506124de565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125b7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156125f2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125ff6000848385612090565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612676836126676000866000612096565b61267085612735565b176120be565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061269a5780600081905550505061271960008483856120e9565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b82805461275190613011565b90600052602060002090601f01602090048101928261277357600085556127ba565b82601f1061278c57805160ff19168380011785556127ba565b828001600101855582156127ba579182015b828111156127b957825182559160200191906001019061279e565b5b5090506127c791906127cb565b5090565b5b808211156127e45760008160009055506001016127cc565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612831816127fc565b811461283c57600080fd5b50565b60008135905061284e81612828565b92915050565b60006020828403121561286a576128696127f2565b5b60006128788482850161283f565b91505092915050565b60008115159050919050565b61289681612881565b82525050565b60006020820190506128b1600083018461288d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128f15780820151818401526020810190506128d6565b83811115612900576000848401525b50505050565b6000601f19601f8301169050919050565b6000612922826128b7565b61292c81856128c2565b935061293c8185602086016128d3565b61294581612906565b840191505092915050565b6000602082019050818103600083015261296a8184612917565b905092915050565b6000819050919050565b61298581612972565b811461299057600080fd5b50565b6000813590506129a28161297c565b92915050565b6000602082840312156129be576129bd6127f2565b5b60006129cc84828501612993565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a00826129d5565b9050919050565b612a10816129f5565b82525050565b6000602082019050612a2b6000830184612a07565b92915050565b612a3a816129f5565b8114612a4557600080fd5b50565b600081359050612a5781612a31565b92915050565b60008060408385031215612a7457612a736127f2565b5b6000612a8285828601612a48565b9250506020612a9385828601612993565b9150509250929050565b612aa681612972565b82525050565b6000602082019050612ac16000830184612a9d565b92915050565b600080600060608486031215612ae057612adf6127f2565b5b6000612aee86828701612a48565b9350506020612aff86828701612a48565b9250506040612b1086828701612993565b9150509250925092565b6000819050919050565b612b2d81612b1a565b82525050565b6000602082019050612b486000830184612b24565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612b9082612906565b810181811067ffffffffffffffff82111715612baf57612bae612b58565b5b80604052505050565b6000612bc26127e8565b9050612bce8282612b87565b919050565b600067ffffffffffffffff821115612bee57612bed612b58565b5b612bf782612906565b9050602081019050919050565b82818337600083830152505050565b6000612c26612c2184612bd3565b612bb8565b905082815260208101848484011115612c4257612c41612b53565b5b612c4d848285612c04565b509392505050565b600082601f830112612c6a57612c69612b4e565b5b8135612c7a848260208601612c13565b91505092915050565b600060208284031215612c9957612c986127f2565b5b600082013567ffffffffffffffff811115612cb757612cb66127f7565b5b612cc384828501612c55565b91505092915050565b600060208284031215612ce257612ce16127f2565b5b6000612cf084828501612a48565b91505092915050565b612d0281612b1a565b8114612d0d57600080fd5b50565b600081359050612d1f81612cf9565b92915050565b600060208284031215612d3b57612d3a6127f2565b5b6000612d4984828501612d10565b91505092915050565b612d5b81612881565b8114612d6657600080fd5b50565b600081359050612d7881612d52565b92915050565b60008060408385031215612d9557612d946127f2565b5b6000612da385828601612a48565b9250506020612db485828601612d69565b9150509250929050565b600067ffffffffffffffff821115612dd957612dd8612b58565b5b612de282612906565b9050602081019050919050565b6000612e02612dfd84612dbe565b612bb8565b905082815260208101848484011115612e1e57612e1d612b53565b5b612e29848285612c04565b509392505050565b600082601f830112612e4657612e45612b4e565b5b8135612e56848260208601612def565b91505092915050565b60008060008060808587031215612e7957612e786127f2565b5b6000612e8787828801612a48565b9450506020612e9887828801612a48565b9350506040612ea987828801612993565b925050606085013567ffffffffffffffff811115612eca57612ec96127f7565b5b612ed687828801612e31565b91505092959194509250565b600080fd5b600080fd5b60008083601f840112612f0257612f01612b4e565b5b8235905067ffffffffffffffff811115612f1f57612f1e612ee2565b5b602083019150836020820283011115612f3b57612f3a612ee7565b5b9250929050565b600080600060408486031215612f5b57612f5a6127f2565b5b6000612f6986828701612993565b935050602084013567ffffffffffffffff811115612f8a57612f896127f7565b5b612f9686828701612eec565b92509250509250925092565b60008060408385031215612fb957612fb86127f2565b5b6000612fc785828601612a48565b9250506020612fd885828601612a48565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061302957607f821691505b6020821081141561303d5761303c612fe2565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006130796020836128c2565b915061308482613043565b602082019050919050565b600060208201905081810360008301526130a88161306c565b9050919050565b600081905092915050565b50565b60006130ca6000836130af565b91506130d5826130ba565b600082019050919050565b60006130eb826130bd565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061312f82612972565b915061313a83612972565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561316f5761316e6130f5565b5b828201905092915050565b7f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900600082015250565b60006131b0601f836128c2565b91506131bb8261317a565b602082019050919050565b600060208201905081810360008301526131df816131a3565b9050919050565b7f4d757374206d696e74206174206c65617374206f6e6520746f6b656e00000000600082015250565b600061321c601c836128c2565b9150613227826131e6565b602082019050919050565b6000602082019050818103600083015261324b8161320f565b9050919050565b7f5075626c69632073616c6520686173206e6f7420737461727465640000000000600082015250565b6000613288601b836128c2565b915061329382613252565b602082019050919050565b600060208201905081810360008301526132b78161327b565b9050919050565b7f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e7360008201527f20696e2061207472616e73616374696f6e000000000000000000000000000000602082015250565b600061331a6031836128c2565b9150613325826132be565b604082019050919050565b600060208201905081810360008301526133498161330d565b9050919050565b7f457863656564656420737570706c790000000000000000000000000000000000600082015250565b6000613386600f836128c2565b915061339182613350565b602082019050919050565b600060208201905081810360008301526133b581613379565b9050919050565b7f506c65617365206d696e74206174206c65617374203120506173730000000000600082015250565b60006133f2601b836128c2565b91506133fd826133bc565b602082019050919050565b60006020820190508181036000830152613421816133e5565b9050919050565b600061343382612972565b915061343e83612972565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613477576134766130f5565b5b828202905092915050565b7f4e6f7420656e6f75676820455448000000000000000000000000000000000000600082015250565b60006134b8600e836128c2565b91506134c382613482565b602082019050919050565b600060208201905081810360008301526134e7816134ab565b9050919050565b600081905092915050565b6000613504826128b7565b61350e81856134ee565b935061351e8185602086016128d3565b80840191505092915050565b600061353682856134f9565b915061354282846134f9565b91508190509392505050565b7f596f752063616e206e6f74206d696e74207269676874206e6f77000000000000600082015250565b6000613584601a836128c2565b915061358f8261354e565b602082019050919050565b600060208201905081810360008301526135b381613577565b9050919050565b60008160601b9050919050565b60006135d2826135ba565b9050919050565b60006135e4826135c7565b9050919050565b6135fc6135f7826129f5565b6135d9565b82525050565b600061360e82846135eb565b60148201915081905092915050565b7f596f7520617265206e6f74206f6e207468652077686974656c69737400000000600082015250565b6000613653601c836128c2565b915061365e8261361d565b602082019050919050565b6000602082019050818103600083015261368281613646565b9050919050565b7f43616e6e6f74206d696e742074686973206d616e792070617373000000000000600082015250565b60006136bf601a836128c2565b91506136ca82613689565b602082019050919050565b600060208201905081810360008301526136ee816136b2565b9050919050565b7f506c65617365206d696e74206174206c65617374203120706173730000000000600082015250565b600061372b601b836128c2565b9150613736826136f5565b602082019050919050565b6000602082019050818103600083015261375a8161371e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006137bd6026836128c2565b91506137c882613761565b604082019050919050565b600060208201905081810360008301526137ec816137b0565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061381a826137f3565b61382481856137fe565b93506138348185602086016128d3565b61383d81612906565b840191505092915050565b600060808201905061385d6000830187612a07565b61386a6020830186612a07565b6138776040830185612a9d565b8181036060830152613889818461380f565b905095945050505050565b6000815190506138a381612828565b92915050565b6000602082840312156138bf576138be6127f2565b5b60006138cd84828501613894565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061391082612972565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613943576139426130f5565b5b60018201905091905056fea264697066735822122028f88595d4913aaed89504209841d7e045b569565f82bd5ab96497dcf97d99d364736f6c634300080a0033

Deployed Bytecode Sourcemap

60067:3011:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29865:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35512:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37458:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37006:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28919:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46723:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60526:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60309:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60272:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62930:145;;;;;;;;;;;;;:::i;:::-;;38348:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62663:259;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61347:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60895:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60690:99;;;;;;;;;;;;;:::i;:::-;;35301:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60412:107;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30544:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14456:103;;;;;;;;;;;;;:::i;:::-;;60239:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61009:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60351:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13805:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61123:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35681:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60199:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62133:449;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37734:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38604:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35856:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61475:618;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60797:90;;;;;;;;;;;;;:::i;:::-;;38113:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14714:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60150:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29865:615;29950:4;30265:10;30250:25;;:11;:25;;;;:102;;;;30342:10;30327:25;;:11;:25;;;;30250:102;:179;;;;30419:10;30404:25;;:11;:25;;;;30250:179;30230:199;;29865:615;;;:::o;35512:100::-;35566:13;35599:5;35592:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35512:100;:::o;37458:204::-;37526:7;37551:16;37559:7;37551;:16::i;:::-;37546:64;;37576:34;;;;;;;;;;;;;;37546:64;37630:15;:24;37646:7;37630:24;;;;;;;;;;;;;;;;;;;;;37623:31;;37458:204;;;:::o;37006:386::-;37079:13;37095:16;37103:7;37095;:16::i;:::-;37079:32;;37151:5;37128:28;;:19;:17;:19::i;:::-;:28;;;37124:175;;37176:44;37193:5;37200:19;:17;:19::i;:::-;37176:16;:44::i;:::-;37171:128;;37248:35;;;;;;;;;;;;;;37171:128;37124:175;37338:2;37311:15;:24;37327:7;37311:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;37376:7;37372:2;37356:28;;37365:5;37356:28;;;;;;;;;;;;37068:324;37006:386;;:::o;28919:315::-;28972:7;29200:15;:13;:15::i;:::-;29185:12;;29169:13;;:28;:46;29162:53;;28919:315;:::o;46723:2800::-;46857:27;46887;46906:7;46887:18;:27::i;:::-;46857:57;;46972:4;46931:45;;46947:19;46931:45;;;46927:86;;46985:28;;;;;;;;;;;;;;46927:86;47027:27;47056:23;47083:28;47103:7;47083:19;:28::i;:::-;47026:85;;;;47211:62;47230:15;47247:4;47253:19;:17;:19::i;:::-;47211:18;:62::i;:::-;47206:174;;47293:43;47310:4;47316:19;:17;:19::i;:::-;47293:16;:43::i;:::-;47288:92;;47345:35;;;;;;;;;;;;;;47288:92;47206:174;47411:1;47397:16;;:2;:16;;;47393:52;;;47422:23;;;;;;;;;;;;;;47393:52;47458:43;47480:4;47486:2;47490:7;47499:1;47458:21;:43::i;:::-;47594:15;47591:160;;;47734:1;47713:19;47706:30;47591:160;48129:18;:24;48148:4;48129:24;;;;;;;;;;;;;;;;48127:26;;;;;;;;;;;;48198:18;:22;48217:2;48198:22;;;;;;;;;;;;;;;;48196:24;;;;;;;;;;;48520:145;48557:2;48605:45;48620:4;48626:2;48630:19;48605:14;:45::i;:::-;26147:8;48578:72;48520:18;:145::i;:::-;48491:17;:26;48509:7;48491:26;;;;;;;;;;;:174;;;;48835:1;26147:8;48785:19;:46;:51;48781:626;;;48857:19;48889:1;48879:7;:11;48857:33;;49046:1;49012:17;:30;49030:11;49012:30;;;;;;;;;;;;:35;49008:384;;;49150:13;;49135:11;:28;49131:242;;49330:19;49297:17;:30;49315:11;49297:30;;;;;;;;;;;:52;;;;49131:242;49008:384;48838:569;48781:626;49454:7;49450:2;49435:27;;49444:4;49435:27;;;;;;;;;;;;49473:42;49494:4;49500:2;49504:7;49513:1;49473:20;:42::i;:::-;46846:2677;;;46723:2800;;;:::o;60526:94::-;;;;:::o;60309:33::-;;;;;;;;;;;;;:::o;60272:30::-;;;;;;;;;;;;;:::o;62930:145::-;14036:12;:10;:12::i;:::-;14025:23;;:7;:5;:7::i;:::-;:23;;;14017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62979:7:::1;63000;:5;:7::i;:::-;62992:21;;63021;62992:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62978:69;;;63066:2;63058:11;;;::::0;::::1;;62967:108;62930:145::o:0;38348:185::-;38486:39;38503:4;38509:2;38513:7;38486:39;;;;;;;;;;;;:16;:39::i;:::-;38348:185;;;:::o;62663:259::-;14036:12;:10;:12::i;:::-;14025:23;;:7;:5;:7::i;:::-;:23;;;14017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60187:3:::1;62764:6;62748:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;62740:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;62848:1;62839:6;:10;62831:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;62893:21;62903:2;62907:6;62893:9;:21::i;:::-;62663:259:::0;;:::o;61347:100::-;14036:12;:10;:12::i;:::-;14025:23;;:7;:5;:7::i;:::-;:23;;;14017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61428:11:::1;61418:7;:21;;;;61347:100:::0;:::o;60895:106::-;14036:12;:10;:12::i;:::-;14025:23;;:7;:5;:7::i;:::-;:23;;;14017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60982:11:::1;60972:7;:21;;;;;;;;;;;;:::i;:::-;;60895:106:::0;:::o;60690:99::-;14036:12;:10;:12::i;:::-;14025:23;;:7;:5;:7::i;:::-;:23;;;14017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60768:13:::1;;;;;;;;;;;60767:14;60751:13;;:30;;;;;;;;;;;;;;;;;;60690:99::o:0;35301:144::-;35365:7;35408:27;35427:7;35408:18;:27::i;:::-;35385:52;;35301:144;;;:::o;60412:107::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30544:224::-;30608:7;30649:1;30632:19;;:5;:19;;;30628:60;;;30660:28;;;;;;;;;;;;;;30628:60;25099:13;30706:18;:25;30725:5;30706:25;;;;;;;;;;;;;;;;:54;30699:61;;30544:224;;;:::o;14456:103::-;14036:12;:10;:12::i;:::-;14025:23;;:7;:5;:7::i;:::-;:23;;;14017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14521:30:::1;14548:1;14521:18;:30::i;:::-;14456:103::o:0;60239:26::-;;;;:::o;61009:106::-;14036:12;:10;:12::i;:::-;14025:23;;:7;:5;:7::i;:::-;:23;;;14017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61096:11:::1;61083:10;:24;;;;61009:106:::0;:::o;60351:52::-;;;;;;;;;;;;;;;;;:::o;13805:87::-;13851:7;13878:6;;;;;;;;;;;13871:13;;13805:87;:::o;61123:84::-;14036:12;:10;:12::i;:::-;14025:23;;:7;:5;:7::i;:::-;:23;;;14017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61193:6:::1;61185:5;:14;;;;61123:84:::0;:::o;35681:104::-;35737:13;35770:7;35763:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35681:104;:::o;60199:33::-;;;;:::o;62133:449::-;62199:10;;;;;;;;;;;62191:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;62270:7;;62260:6;:17;;62252:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;60187:3;62366:6;62350:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;62342:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;62434:1;62425:6;:10;62417:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;62504:9;62494:6;62486:5;;:14;;;;:::i;:::-;:27;62478:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;62543:31;62553:12;:10;:12::i;:::-;62567:6;62543:9;:31::i;:::-;62133:449;:::o;37734:308::-;37845:19;:17;:19::i;:::-;37833:31;;:8;:31;;;37829:61;;;37873:17;;;;;;;;;;;;;;37829:61;37955:8;37903:18;:39;37922:19;:17;:19::i;:::-;37903:39;;;;;;;;;;;;;;;:49;37943:8;37903:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;38015:8;37979:55;;37994:19;:17;:19::i;:::-;37979:55;;;38025:8;37979:55;;;;;;:::i;:::-;;;;;;;;37734:308;;:::o;38604:399::-;38771:31;38784:4;38790:2;38794:7;38771:12;:31::i;:::-;38835:1;38817:2;:14;;;:19;38813:183;;38856:56;38887:4;38893:2;38897:7;38906:5;38856:30;:56::i;:::-;38851:145;;38940:40;;;;;;;;;;;;;;38851:145;38813:183;38604:399;;;;:::o;35856:318::-;35929:13;35960:16;35968:7;35960;:16::i;:::-;35955:59;;35985:29;;;;;;;;;;;;;;35955:59;36027:21;36051:10;:8;:10::i;:::-;36027:34;;36104:1;36085:7;36079:21;:26;;:87;;;;;;;;;;;;;;;;;36132:7;36141:18;36151:7;36141:9;:18::i;:::-;36115:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36079:87;36072:94;;;35856:318;;;:::o;61475:618::-;61582:13;;;;;;;;;;;61574:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;61645:84;61664:11;;61645:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61677:10;;61716;61699:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;61689:39;;;;;;61645:18;:84::i;:::-;61637:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;61825:7;;61815:6;61781:17;:31;61799:12;:10;:12::i;:::-;61781:31;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;:51;;61773:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;61891:1;61882:6;:10;61874:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;61961:9;61951:6;61943:5;;:14;;;;:::i;:::-;:27;61935:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;62002:31;62012:12;:10;:12::i;:::-;62026:6;62002:9;:31::i;:::-;62079:6;62044:17;:31;62062:12;:10;:12::i;:::-;62044:31;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;61475:618;;;:::o;60797:90::-;14036:12;:10;:12::i;:::-;14025:23;;:7;:5;:7::i;:::-;:23;;;14017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60869:10:::1;;;;;;;;;;;60868:11;60855:10;;:24;;;;;;;;;;;;;;;;;;60797:90::o:0;38113:164::-;38210:4;38234:18;:25;38253:5;38234:25;;;;;;;;;;;;;;;:35;38260:8;38234:35;;;;;;;;;;;;;;;;;;;;;;;;;38227:42;;38113:164;;;;:::o;14714:201::-;14036:12;:10;:12::i;:::-;14025:23;;:7;:5;:7::i;:::-;:23;;;14017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14823:1:::1;14803:22;;:8;:22;;;;14795:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14879:28;14898:8;14879:18;:28::i;:::-;14714:201:::0;:::o;60150:40::-;60187:3;60150:40;:::o;39258:273::-;39315:4;39371:7;39352:15;:13;:15::i;:::-;:26;;:66;;;;;39405:13;;39395:7;:23;39352:66;:152;;;;;39503:1;25869:8;39456:17;:26;39474:7;39456:26;;;;;;;;;;;;:43;:48;39352:152;39332:172;;39258:273;;;:::o;57819:105::-;57879:7;57906:10;57899:17;;57819:105;:::o;28443:92::-;28499:7;28443:92;:::o;32218:1129::-;32285:7;32305:12;32320:7;32305:22;;32388:4;32369:15;:13;:15::i;:::-;:23;32365:915;;32422:13;;32415:4;:20;32411:869;;;32460:14;32477:17;:23;32495:4;32477:23;;;;;;;;;;;;32460:40;;32593:1;25869:8;32566:6;:23;:28;32562:699;;;33085:113;33102:1;33092:6;:11;33085:113;;;33145:17;:25;33163:6;;;;;;;33145:25;;;;;;;;;;;;33136:34;;33085:113;;;33231:6;33224:13;;;;;;32562:699;32437:843;32411:869;32365:915;33308:31;;;;;;;;;;;;;;32218:1129;;;;:::o;45059:652::-;45154:27;45183:23;45224:53;45280:15;45224:71;;45466:7;45460:4;45453:21;45501:22;45495:4;45488:36;45577:4;45571;45561:21;45538:44;;45673:19;45667:26;45648:45;;45404:300;45059:652;;;:::o;45824:645::-;45966:11;46128:15;46122:4;46118:26;46110:34;;46287:15;46276:9;46272:31;46259:44;;46434:15;46423:9;46420:30;46413:4;46402:9;46399:19;46396:55;46386:65;;45824:645;;;;;:::o;56652:159::-;;;;;:::o;54964:309::-;55099:7;55119:16;26270:3;55145:19;:40;;55119:67;;26270:3;55212:31;55223:4;55229:2;55233:9;55212:10;:31::i;:::-;55204:40;;:61;;55197:68;;;54964:309;;;;;:::o;34792:447::-;34872:14;35040:15;35033:5;35029:27;35020:36;;35214:5;35200:11;35176:22;35172:40;35169:51;35162:5;35159:62;35149:72;;34792:447;;;;:::o;57470:158::-;;;;;:::o;12529:98::-;12582:7;12609:10;12602:17;;12529:98;:::o;39615:104::-;39684:27;39694:2;39698:8;39684:27;;;;;;;;;;;;:9;:27::i;:::-;39615:104;;:::o;15075:191::-;15149:16;15168:6;;;;;;;;;;;15149:25;;15194:8;15185:6;;:17;;;;;;;;;;;;;;;;;;15249:8;15218:40;;15239:8;15218:40;;;;;;;;;;;;15138:128;15075:191;:::o;53474:716::-;53637:4;53683:2;53658:45;;;53704:19;:17;:19::i;:::-;53725:4;53731:7;53740:5;53658:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53654:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53958:1;53941:6;:13;:18;53937:235;;;53987:40;;;;;;;;;;;;;;53937:235;54130:6;54124:13;54115:6;54111:2;54107:15;54100:38;53654:529;53827:54;;;53817:64;;;:6;:64;;;;53810:71;;;53474:716;;;;;;:::o;61215:100::-;61267:13;61300:7;61293:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61215:100;:::o;58030:1960::-;58087:17;58506:3;58499:4;58493:11;58489:21;58482:28;;58597:3;58591:4;58584:17;58703:3;59159:5;59289:1;59284:3;59280:11;59273:18;;59426:2;59420:4;59416:13;59412:2;59408:22;59403:3;59395:36;59467:2;59461:4;59457:13;59449:21;;59051:697;59486:4;59051:697;;;59677:1;59672:3;59668:11;59661:18;;59728:2;59722:4;59718:13;59714:2;59710:22;59705:3;59697:36;59581:2;59575:4;59571:13;59563:21;;59051:697;;;59055:430;59787:3;59782;59778:13;59902:2;59897:3;59893:12;59886:19;;59965:6;59960:3;59953:19;58126:1857;;58030:1960;;;:::o;1220:190::-;1345:4;1398;1369:25;1382:5;1389:4;1369:12;:25::i;:::-;:33;1362:40;;1220:190;;;;;:::o;55849:147::-;55986:6;55849:147;;;;;:::o;40135:681::-;40258:19;40264:2;40268:8;40258:5;:19::i;:::-;40337:1;40319:2;:14;;;:19;40315:483;;40359:11;40373:13;;40359:27;;40405:13;40427:8;40421:3;:14;40405:30;;40454:233;40485:62;40524:1;40528:2;40532:7;;;;;;40541:5;40485:30;:62::i;:::-;40480:167;;40583:40;;;;;;;;;;;;;;40480:167;40682:3;40674:5;:11;40454:233;;40769:3;40752:13;;:20;40748:34;;40774:8;;;40748:34;40340:458;;40315:483;40135:681;;;:::o;1771:675::-;1854:7;1874:20;1897:4;1874:27;;1917:9;1912:497;1936:5;:12;1932:1;:16;1912:497;;;1970:20;1993:5;1999:1;1993:8;;;;;;;;:::i;:::-;;;;;;;;1970:31;;2036:12;2020;:28;2016:382;;2163:42;2178:12;2192;2163:14;:42::i;:::-;2148:57;;2016:382;;;2340:42;2355:12;2369;2340:14;:42::i;:::-;2325:57;;2016:382;1955:454;1950:3;;;;;:::i;:::-;;;;1912:497;;;;2426:12;2419:19;;;1771:675;;;;:::o;41089:1529::-;41154:20;41177:13;;41154:36;;41219:1;41205:16;;:2;:16;;;41201:48;;;41230:19;;;;;;;;;;;;;;41201:48;41276:1;41264:8;:13;41260:44;;;41286:18;;;;;;;;;;;;;;41260:44;41317:61;41347:1;41351:2;41355:12;41369:8;41317:21;:61::i;:::-;41860:1;25236:2;41831:1;:25;;41830:31;41818:8;:44;41792:18;:22;41811:2;41792:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;42139:139;42176:2;42230:33;42253:1;42257:2;42261:1;42230:14;:33::i;:::-;42197:30;42218:8;42197:20;:30::i;:::-;:66;42139:18;:139::i;:::-;42105:17;:31;42123:12;42105:31;;;;;;;;;;;:173;;;;42295:15;42313:12;42295:30;;42340:11;42369:8;42354:12;:23;42340:37;;42392:101;42444:9;;;;;;42440:2;42419:35;;42436:1;42419:35;;;;;;;;;;;;42488:3;42478:7;:13;42392:101;;42525:3;42509:13;:19;;;;41566:974;;42550:60;42579:1;42583:2;42587:12;42601:8;42550:20;:60::i;:::-;41143:1475;41089:1529;;:::o;2454:224::-;2522:13;2585:1;2579:4;2572:15;2614:1;2608:4;2601:15;2655:4;2649;2639:21;2630:30;;2454:224;;;;:::o;36622:322::-;36692:14;36923:1;36913:8;36910:15;36885:23;36881:45;36871:55;;36622: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:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::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:77::-;5952:7;5981:5;5970:16;;5915:77;;;:::o;5998:118::-;6085:24;6103:5;6085:24;:::i;:::-;6080:3;6073:37;5998:118;;:::o;6122:222::-;6215:4;6253:2;6242:9;6238:18;6230:26;;6266:71;6334:1;6323:9;6319:17;6310:6;6266:71;:::i;:::-;6122:222;;;;:::o;6350:117::-;6459:1;6456;6449:12;6473:117;6582:1;6579;6572:12;6596:180;6644:77;6641:1;6634:88;6741:4;6738:1;6731:15;6765:4;6762:1;6755:15;6782:281;6865:27;6887:4;6865:27;:::i;:::-;6857:6;6853:40;6995:6;6983:10;6980:22;6959:18;6947:10;6944:34;6941:62;6938:88;;;7006:18;;:::i;:::-;6938:88;7046:10;7042:2;7035:22;6825:238;6782:281;;:::o;7069:129::-;7103:6;7130:20;;:::i;:::-;7120:30;;7159:33;7187:4;7179:6;7159:33;:::i;:::-;7069:129;;;:::o;7204:308::-;7266:4;7356:18;7348:6;7345:30;7342:56;;;7378:18;;:::i;:::-;7342:56;7416:29;7438:6;7416:29;:::i;:::-;7408:37;;7500:4;7494;7490:15;7482:23;;7204:308;;;:::o;7518:154::-;7602:6;7597:3;7592;7579:30;7664:1;7655:6;7650:3;7646:16;7639:27;7518:154;;;:::o;7678:412::-;7756:5;7781:66;7797:49;7839:6;7797:49;:::i;:::-;7781:66;:::i;:::-;7772:75;;7870:6;7863:5;7856:21;7908:4;7901:5;7897:16;7946:3;7937:6;7932:3;7928:16;7925:25;7922:112;;;7953:79;;:::i;:::-;7922:112;8043:41;8077:6;8072:3;8067;8043:41;:::i;:::-;7762:328;7678:412;;;;;:::o;8110:340::-;8166:5;8215:3;8208:4;8200:6;8196:17;8192:27;8182:122;;8223:79;;:::i;:::-;8182:122;8340:6;8327:20;8365:79;8440:3;8432:6;8425:4;8417:6;8413:17;8365:79;:::i;:::-;8356:88;;8172:278;8110:340;;;;:::o;8456:509::-;8525:6;8574:2;8562:9;8553:7;8549:23;8545:32;8542:119;;;8580:79;;:::i;:::-;8542:119;8728:1;8717:9;8713:17;8700:31;8758:18;8750:6;8747:30;8744:117;;;8780:79;;:::i;:::-;8744:117;8885:63;8940:7;8931:6;8920:9;8916:22;8885:63;:::i;:::-;8875:73;;8671:287;8456:509;;;;:::o;8971:329::-;9030:6;9079:2;9067:9;9058:7;9054:23;9050:32;9047:119;;;9085:79;;:::i;:::-;9047:119;9205:1;9230:53;9275:7;9266:6;9255:9;9251:22;9230:53;:::i;:::-;9220:63;;9176:117;8971:329;;;;:::o;9306:122::-;9379:24;9397:5;9379:24;:::i;:::-;9372:5;9369:35;9359:63;;9418:1;9415;9408:12;9359:63;9306:122;:::o;9434:139::-;9480:5;9518:6;9505:20;9496:29;;9534:33;9561:5;9534:33;:::i;:::-;9434:139;;;;:::o;9579:329::-;9638:6;9687:2;9675:9;9666:7;9662:23;9658:32;9655:119;;;9693:79;;:::i;:::-;9655:119;9813:1;9838:53;9883:7;9874:6;9863:9;9859:22;9838:53;:::i;:::-;9828:63;;9784:117;9579:329;;;;:::o;9914:116::-;9984:21;9999:5;9984:21;:::i;:::-;9977:5;9974:32;9964:60;;10020:1;10017;10010:12;9964:60;9914:116;:::o;10036:133::-;10079:5;10117:6;10104:20;10095:29;;10133:30;10157:5;10133:30;:::i;:::-;10036:133;;;;:::o;10175:468::-;10240:6;10248;10297:2;10285:9;10276:7;10272:23;10268:32;10265:119;;;10303:79;;:::i;:::-;10265:119;10423:1;10448:53;10493:7;10484:6;10473:9;10469:22;10448:53;:::i;:::-;10438:63;;10394:117;10550:2;10576:50;10618:7;10609:6;10598:9;10594:22;10576:50;:::i;:::-;10566:60;;10521:115;10175:468;;;;;:::o;10649:307::-;10710:4;10800:18;10792:6;10789:30;10786:56;;;10822:18;;:::i;:::-;10786:56;10860:29;10882:6;10860:29;:::i;:::-;10852:37;;10944:4;10938;10934:15;10926:23;;10649:307;;;:::o;10962:410::-;11039:5;11064:65;11080:48;11121:6;11080:48;:::i;:::-;11064:65;:::i;:::-;11055:74;;11152:6;11145:5;11138:21;11190:4;11183:5;11179:16;11228:3;11219:6;11214:3;11210:16;11207:25;11204:112;;;11235:79;;:::i;:::-;11204:112;11325:41;11359:6;11354:3;11349;11325:41;:::i;:::-;11045:327;10962:410;;;;;:::o;11391:338::-;11446:5;11495:3;11488:4;11480:6;11476:17;11472:27;11462:122;;11503:79;;:::i;:::-;11462:122;11620:6;11607:20;11645:78;11719:3;11711:6;11704:4;11696:6;11692:17;11645:78;:::i;:::-;11636:87;;11452:277;11391:338;;;;:::o;11735:943::-;11830:6;11838;11846;11854;11903:3;11891:9;11882:7;11878:23;11874:33;11871:120;;;11910:79;;:::i;:::-;11871:120;12030:1;12055:53;12100:7;12091:6;12080:9;12076:22;12055:53;:::i;:::-;12045:63;;12001:117;12157:2;12183:53;12228:7;12219:6;12208:9;12204:22;12183:53;:::i;:::-;12173:63;;12128:118;12285:2;12311:53;12356:7;12347:6;12336:9;12332:22;12311:53;:::i;:::-;12301:63;;12256:118;12441:2;12430:9;12426:18;12413:32;12472:18;12464:6;12461:30;12458:117;;;12494:79;;:::i;:::-;12458:117;12599:62;12653:7;12644:6;12633:9;12629:22;12599:62;:::i;:::-;12589:72;;12384:287;11735:943;;;;;;;:::o;12684:117::-;12793:1;12790;12783:12;12807:117;12916:1;12913;12906:12;12947:568;13020:8;13030:6;13080:3;13073:4;13065:6;13061:17;13057:27;13047:122;;13088:79;;:::i;:::-;13047:122;13201:6;13188:20;13178:30;;13231:18;13223:6;13220:30;13217:117;;;13253:79;;:::i;:::-;13217:117;13367:4;13359:6;13355:17;13343:29;;13421:3;13413:4;13405:6;13401:17;13391:8;13387:32;13384:41;13381:128;;;13428:79;;:::i;:::-;13381:128;12947:568;;;;;:::o;13521:704::-;13616:6;13624;13632;13681:2;13669:9;13660:7;13656:23;13652:32;13649:119;;;13687:79;;:::i;:::-;13649:119;13807:1;13832:53;13877:7;13868:6;13857:9;13853:22;13832:53;:::i;:::-;13822:63;;13778:117;13962:2;13951:9;13947:18;13934:32;13993:18;13985:6;13982:30;13979:117;;;14015:79;;:::i;:::-;13979:117;14128:80;14200:7;14191:6;14180:9;14176:22;14128:80;:::i;:::-;14110:98;;;;13905:313;13521:704;;;;;:::o;14231:474::-;14299:6;14307;14356:2;14344:9;14335:7;14331:23;14327:32;14324:119;;;14362:79;;:::i;:::-;14324:119;14482:1;14507:53;14552:7;14543:6;14532:9;14528:22;14507:53;:::i;:::-;14497:63;;14453:117;14609:2;14635:53;14680:7;14671:6;14660:9;14656:22;14635:53;:::i;:::-;14625:63;;14580:118;14231:474;;;;;:::o;14711:180::-;14759:77;14756:1;14749:88;14856:4;14853:1;14846:15;14880:4;14877:1;14870:15;14897:320;14941:6;14978:1;14972:4;14968:12;14958:22;;15025:1;15019:4;15015:12;15046:18;15036:81;;15102:4;15094:6;15090:17;15080:27;;15036:81;15164:2;15156:6;15153:14;15133:18;15130:38;15127:84;;;15183:18;;:::i;:::-;15127:84;14948:269;14897:320;;;:::o;15223:182::-;15363:34;15359:1;15351:6;15347:14;15340:58;15223:182;:::o;15411:366::-;15553:3;15574:67;15638:2;15633:3;15574:67;:::i;:::-;15567:74;;15650:93;15739:3;15650:93;:::i;:::-;15768:2;15763:3;15759:12;15752:19;;15411:366;;;:::o;15783:419::-;15949:4;15987:2;15976:9;15972:18;15964:26;;16036:9;16030:4;16026:20;16022:1;16011:9;16007:17;16000:47;16064:131;16190:4;16064:131;:::i;:::-;16056:139;;15783:419;;;:::o;16208:147::-;16309:11;16346:3;16331:18;;16208:147;;;;:::o;16361:114::-;;:::o;16481:398::-;16640:3;16661:83;16742:1;16737:3;16661:83;:::i;:::-;16654:90;;16753:93;16842:3;16753:93;:::i;:::-;16871:1;16866:3;16862:11;16855:18;;16481:398;;;:::o;16885:379::-;17069:3;17091:147;17234:3;17091:147;:::i;:::-;17084:154;;17255:3;17248:10;;16885:379;;;:::o;17270:180::-;17318:77;17315:1;17308:88;17415:4;17412:1;17405:15;17439:4;17436:1;17429:15;17456:305;17496:3;17515:20;17533:1;17515:20;:::i;:::-;17510:25;;17549:20;17567:1;17549:20;:::i;:::-;17544:25;;17703:1;17635:66;17631:74;17628:1;17625:81;17622:107;;;17709:18;;:::i;:::-;17622:107;17753:1;17750;17746:9;17739:16;;17456:305;;;;:::o;17767:181::-;17907:33;17903:1;17895:6;17891:14;17884:57;17767:181;:::o;17954:366::-;18096:3;18117:67;18181:2;18176:3;18117:67;:::i;:::-;18110:74;;18193:93;18282:3;18193:93;:::i;:::-;18311:2;18306:3;18302:12;18295:19;;17954:366;;;:::o;18326:419::-;18492:4;18530:2;18519:9;18515:18;18507:26;;18579:9;18573:4;18569:20;18565:1;18554:9;18550:17;18543:47;18607:131;18733:4;18607:131;:::i;:::-;18599:139;;18326:419;;;:::o;18751:178::-;18891:30;18887:1;18879:6;18875:14;18868:54;18751:178;:::o;18935:366::-;19077:3;19098:67;19162:2;19157:3;19098:67;:::i;:::-;19091:74;;19174:93;19263:3;19174:93;:::i;:::-;19292:2;19287:3;19283:12;19276:19;;18935:366;;;:::o;19307:419::-;19473:4;19511:2;19500:9;19496:18;19488:26;;19560:9;19554:4;19550:20;19546:1;19535:9;19531:17;19524:47;19588:131;19714:4;19588:131;:::i;:::-;19580:139;;19307:419;;;:::o;19732:177::-;19872:29;19868:1;19860:6;19856:14;19849:53;19732:177;:::o;19915:366::-;20057:3;20078:67;20142:2;20137:3;20078:67;:::i;:::-;20071:74;;20154:93;20243:3;20154:93;:::i;:::-;20272:2;20267:3;20263:12;20256:19;;19915:366;;;:::o;20287:419::-;20453:4;20491:2;20480:9;20476:18;20468:26;;20540:9;20534:4;20530:20;20526:1;20515:9;20511:17;20504:47;20568:131;20694:4;20568:131;:::i;:::-;20560:139;;20287:419;;;:::o;20712:236::-;20852:34;20848:1;20840:6;20836:14;20829:58;20921:19;20916:2;20908:6;20904:15;20897:44;20712:236;:::o;20954:366::-;21096:3;21117:67;21181:2;21176:3;21117:67;:::i;:::-;21110:74;;21193:93;21282:3;21193:93;:::i;:::-;21311:2;21306:3;21302:12;21295:19;;20954:366;;;:::o;21326:419::-;21492:4;21530:2;21519:9;21515:18;21507:26;;21579:9;21573:4;21569:20;21565:1;21554:9;21550:17;21543:47;21607:131;21733:4;21607:131;:::i;:::-;21599:139;;21326:419;;;:::o;21751:165::-;21891:17;21887:1;21879:6;21875:14;21868:41;21751:165;:::o;21922:366::-;22064:3;22085:67;22149:2;22144:3;22085:67;:::i;:::-;22078:74;;22161:93;22250:3;22161:93;:::i;:::-;22279:2;22274:3;22270:12;22263:19;;21922:366;;;:::o;22294:419::-;22460:4;22498:2;22487:9;22483:18;22475:26;;22547:9;22541:4;22537:20;22533:1;22522:9;22518:17;22511:47;22575:131;22701:4;22575:131;:::i;:::-;22567:139;;22294:419;;;:::o;22719:177::-;22859:29;22855:1;22847:6;22843:14;22836:53;22719:177;:::o;22902:366::-;23044:3;23065:67;23129:2;23124:3;23065:67;:::i;:::-;23058:74;;23141:93;23230:3;23141:93;:::i;:::-;23259:2;23254:3;23250:12;23243:19;;22902:366;;;:::o;23274:419::-;23440:4;23478:2;23467:9;23463:18;23455:26;;23527:9;23521:4;23517:20;23513:1;23502:9;23498:17;23491:47;23555:131;23681:4;23555:131;:::i;:::-;23547:139;;23274:419;;;:::o;23699:348::-;23739:7;23762:20;23780:1;23762:20;:::i;:::-;23757:25;;23796:20;23814:1;23796:20;:::i;:::-;23791:25;;23984:1;23916:66;23912:74;23909:1;23906:81;23901:1;23894:9;23887:17;23883:105;23880:131;;;23991:18;;:::i;:::-;23880:131;24039:1;24036;24032:9;24021:20;;23699:348;;;;:::o;24053:164::-;24193:16;24189:1;24181:6;24177:14;24170:40;24053:164;:::o;24223:366::-;24365:3;24386:67;24450:2;24445:3;24386:67;:::i;:::-;24379:74;;24462:93;24551:3;24462:93;:::i;:::-;24580:2;24575:3;24571:12;24564:19;;24223:366;;;:::o;24595:419::-;24761:4;24799:2;24788:9;24784:18;24776:26;;24848:9;24842:4;24838:20;24834:1;24823:9;24819:17;24812:47;24876:131;25002:4;24876:131;:::i;:::-;24868:139;;24595:419;;;:::o;25020:148::-;25122:11;25159:3;25144:18;;25020:148;;;;:::o;25174:377::-;25280:3;25308:39;25341:5;25308:39;:::i;:::-;25363:89;25445:6;25440:3;25363:89;:::i;:::-;25356:96;;25461:52;25506:6;25501:3;25494:4;25487:5;25483:16;25461:52;:::i;:::-;25538:6;25533:3;25529:16;25522:23;;25284:267;25174:377;;;;:::o;25557:435::-;25737:3;25759:95;25850:3;25841:6;25759:95;:::i;:::-;25752:102;;25871:95;25962:3;25953:6;25871:95;:::i;:::-;25864:102;;25983:3;25976:10;;25557:435;;;;;:::o;25998:176::-;26138:28;26134:1;26126:6;26122:14;26115:52;25998:176;:::o;26180:366::-;26322:3;26343:67;26407:2;26402:3;26343:67;:::i;:::-;26336:74;;26419:93;26508:3;26419:93;:::i;:::-;26537:2;26532:3;26528:12;26521:19;;26180:366;;;:::o;26552:419::-;26718:4;26756:2;26745:9;26741:18;26733:26;;26805:9;26799:4;26795:20;26791:1;26780:9;26776:17;26769:47;26833:131;26959:4;26833:131;:::i;:::-;26825:139;;26552:419;;;:::o;26977:94::-;27010:8;27058:5;27054:2;27050:14;27029:35;;26977:94;;;:::o;27077:::-;27116:7;27145:20;27159:5;27145:20;:::i;:::-;27134:31;;27077:94;;;:::o;27177:100::-;27216:7;27245:26;27265:5;27245:26;:::i;:::-;27234:37;;27177:100;;;:::o;27283:157::-;27388:45;27408:24;27426:5;27408:24;:::i;:::-;27388:45;:::i;:::-;27383:3;27376:58;27283:157;;:::o;27446:256::-;27558:3;27573:75;27644:3;27635:6;27573:75;:::i;:::-;27673:2;27668:3;27664:12;27657:19;;27693:3;27686:10;;27446:256;;;;:::o;27708:178::-;27848:30;27844:1;27836:6;27832:14;27825:54;27708:178;:::o;27892:366::-;28034:3;28055:67;28119:2;28114:3;28055:67;:::i;:::-;28048:74;;28131:93;28220:3;28131:93;:::i;:::-;28249:2;28244:3;28240:12;28233:19;;27892:366;;;:::o;28264:419::-;28430:4;28468:2;28457:9;28453:18;28445:26;;28517:9;28511:4;28507:20;28503:1;28492:9;28488:17;28481:47;28545:131;28671:4;28545:131;:::i;:::-;28537:139;;28264:419;;;:::o;28689:176::-;28829:28;28825:1;28817:6;28813:14;28806:52;28689:176;:::o;28871:366::-;29013:3;29034:67;29098:2;29093:3;29034:67;:::i;:::-;29027:74;;29110:93;29199:3;29110:93;:::i;:::-;29228:2;29223:3;29219:12;29212:19;;28871:366;;;:::o;29243:419::-;29409:4;29447:2;29436:9;29432:18;29424:26;;29496:9;29490:4;29486:20;29482:1;29471:9;29467:17;29460:47;29524:131;29650:4;29524:131;:::i;:::-;29516:139;;29243:419;;;:::o;29668:177::-;29808:29;29804:1;29796:6;29792:14;29785:53;29668:177;:::o;29851:366::-;29993:3;30014:67;30078:2;30073:3;30014:67;:::i;:::-;30007:74;;30090:93;30179:3;30090:93;:::i;:::-;30208:2;30203:3;30199:12;30192:19;;29851:366;;;:::o;30223:419::-;30389:4;30427:2;30416:9;30412:18;30404:26;;30476:9;30470:4;30466:20;30462:1;30451:9;30447:17;30440:47;30504:131;30630:4;30504:131;:::i;:::-;30496:139;;30223:419;;;:::o;30648:225::-;30788:34;30784:1;30776:6;30772:14;30765:58;30857:8;30852:2;30844:6;30840:15;30833:33;30648:225;:::o;30879:366::-;31021:3;31042:67;31106:2;31101:3;31042:67;:::i;:::-;31035:74;;31118:93;31207:3;31118:93;:::i;:::-;31236:2;31231:3;31227:12;31220:19;;30879:366;;;:::o;31251:419::-;31417:4;31455:2;31444:9;31440:18;31432:26;;31504:9;31498:4;31494:20;31490:1;31479:9;31475:17;31468:47;31532:131;31658:4;31532:131;:::i;:::-;31524:139;;31251:419;;;:::o;31676:98::-;31727:6;31761:5;31755:12;31745:22;;31676:98;;;:::o;31780:168::-;31863:11;31897:6;31892:3;31885:19;31937:4;31932:3;31928:14;31913:29;;31780:168;;;;:::o;31954:360::-;32040:3;32068:38;32100:5;32068:38;:::i;:::-;32122:70;32185:6;32180:3;32122:70;:::i;:::-;32115:77;;32201:52;32246:6;32241:3;32234:4;32227:5;32223:16;32201:52;:::i;:::-;32278:29;32300:6;32278:29;:::i;:::-;32273:3;32269:39;32262:46;;32044:270;31954:360;;;;:::o;32320:640::-;32515:4;32553:3;32542:9;32538:19;32530:27;;32567:71;32635:1;32624:9;32620:17;32611:6;32567:71;:::i;:::-;32648:72;32716:2;32705:9;32701:18;32692:6;32648:72;:::i;:::-;32730;32798:2;32787:9;32783:18;32774:6;32730:72;:::i;:::-;32849:9;32843:4;32839:20;32834:2;32823:9;32819:18;32812:48;32877:76;32948:4;32939:6;32877:76;:::i;:::-;32869:84;;32320:640;;;;;;;:::o;32966:141::-;33022:5;33053:6;33047:13;33038:22;;33069:32;33095:5;33069:32;:::i;:::-;32966:141;;;;:::o;33113:349::-;33182:6;33231:2;33219:9;33210:7;33206:23;33202:32;33199:119;;;33237:79;;:::i;:::-;33199:119;33357:1;33382:63;33437:7;33428:6;33417:9;33413:22;33382:63;:::i;:::-;33372:73;;33328:127;33113:349;;;;:::o;33468:180::-;33516:77;33513:1;33506:88;33613:4;33610:1;33603:15;33637:4;33634:1;33627:15;33654:233;33693:3;33716:24;33734:5;33716:24;:::i;:::-;33707:33;;33762:66;33755:5;33752:77;33749:103;;;33832:18;;:::i;:::-;33749:103;33879:1;33872:5;33868:13;33861:20;;33654:233;;;:::o

Swarm Source

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