ETH Price: $3,025.22 (+2.22%)
Gas: 2 Gwei

Token

PenguinKnight (PK)
 

Overview

Max Total Supply

888 PK

Holders

152

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
7 PK
0x6713b26Cc0962Fe0d50F22cA061010723a89882F
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:
PenguinKnight

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: node_modules\erc721a\contracts\IERC721A.sol

// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a\contracts\ERC721A.sol

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree 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 Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(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++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// File: contracts\PenguinKnight.sol


pragma solidity ^0.8.4;
contract PenguinKnight is ERC721A, Ownable  {

    //static variables
    uint256 public pk_max_supply;

    uint256 public pk_wl_mint_price;
    uint256 public pk_og_mint_price;
    uint256 public pk_ep_mint_price;
    uint256 public pk_public_mint_price;

    uint256 public pk_wl_max_per_wallet;
    uint256 public pk_og_max_per_wallet;
    uint256 public pk_ep_max_per_wallet;
    uint256 public pk_public_max_per_wallet;

    uint256 public pk_wl_max_per_txn;
    uint256 public pk_og_max_per_txn;
    uint256 public pk_ep_max_per_txn;
    uint256 public pk_public_max_per_txn;

    //state variables
    uint256 public pk_wl_start_timestamp;
    uint256 public pk_og_start_timestamp;
    uint256 public pk_ep_start_timestamp;
    uint256 public pk_public_start_timestamp;

    mapping(address => uint256) public pk_wl_minted_amounts;
    mapping(address => uint256) public pk_og_minted_amounts;
    mapping(address => uint256) public pk_ep_minted_amounts;
    mapping(address => uint256) public pk_public_minted_amounts;

    //whitelisting variables
    bytes32 public pk_wl_merkle_root;
    bytes32 public pk_og_merkle_root;
    bytes32 public pk_ep_merkle_root;

    //owner variables
    address payable public pk_withdraw_to;

    //contract variables
    string public pk_base_token_uri;

    constructor() ERC721A("PenguinKnight", "PK") {
        pk_max_supply = 5555;

        pk_wl_max_per_wallet = 2;
        pk_og_max_per_wallet = 3;
        pk_ep_max_per_wallet = 5;
        pk_public_max_per_wallet = 100;

        pk_wl_max_per_txn = 2;
        pk_og_max_per_txn = 3;
        pk_ep_max_per_txn = 5;
        pk_public_max_per_txn = 5;

        pk_wl_start_timestamp = 1665230400;
        pk_og_start_timestamp = 1665230400;
        pk_ep_start_timestamp = 1665230400;
        pk_public_start_timestamp = 1665241200;

        pk_wl_mint_price = 0.032 ether;
        pk_og_mint_price = 0.032 ether;
        pk_ep_mint_price = 0.032 ether;
        pk_public_mint_price = 0.04 ether;

        // pk_withdraw_to = '';

        pk_base_token_uri = "https://storage.penguinknights.io/placeholder-metadata/";
    }

    //set contract vars
    function setMaxSupply(uint256 value) onlyOwner public {pk_max_supply = value;}

    function setWLMaxPerWallet(uint256 value) onlyOwner public {pk_wl_max_per_wallet = value;}
    function setOGMaxPerWallet(uint256 value) onlyOwner public {pk_og_max_per_wallet = value;}
    function setEPMaxPerWallet(uint256 value) onlyOwner public {pk_ep_max_per_wallet = value;}
    function setPublicMaxPerWallet(uint256 value) onlyOwner public {pk_public_max_per_wallet = value;}

    function setWLMaxPerTransaction(uint256 value) onlyOwner public {pk_wl_max_per_txn = value;}
    function setOGMaxPerTransaction(uint256 value) onlyOwner public {pk_og_max_per_txn = value;}
    function setEPMaxPerTransaction(uint256 value) onlyOwner public {pk_ep_max_per_txn = value;}
    function setPublicMaxPerTransaction(uint256 value) onlyOwner public {pk_public_max_per_txn = value;}

    function setWLStartTimestamp(uint256 value) onlyOwner public {pk_wl_start_timestamp = value;}
    function setOGStartTimestamp(uint256 value) onlyOwner public {pk_og_start_timestamp = value;}
    function setEPStartTimestamp(uint256 value) onlyOwner public {pk_ep_start_timestamp = value;}
    function setPublicStartTimestamp(uint256 value) onlyOwner public {pk_public_start_timestamp = value;}

    function setWLMerkleRoot(bytes32 value) onlyOwner public {pk_wl_merkle_root = value;}
    function setOGMerkleRoot(bytes32 value) onlyOwner public {pk_og_merkle_root = value;}
    function setEPMerkleRoot(bytes32 value) onlyOwner public {pk_ep_merkle_root = value;}

    function setWLMintPrice(uint256 value) onlyOwner public {pk_wl_mint_price = value;}
    function setOGMintPrice(uint256 value) onlyOwner public {pk_og_mint_price = value;}
    function setEPMintPrice(uint256 value) onlyOwner public {pk_ep_mint_price = value;}
    function setPublicMintPrice(uint256 value) onlyOwner public {pk_public_mint_price = value;}
    
    function setWithdrawTo(address _address) onlyOwner public { pk_withdraw_to = payable(_address);}

    function setBaseTokenURI(string memory uri) onlyOwner public {pk_base_token_uri = uri;}
    function baseTokenURI() public view returns (string memory) {return pk_base_token_uri;}
    function _baseURI() override internal view virtual returns (string memory) {return baseTokenURI();}

    //helpers
    function isContract(address _address) private view returns (bool){
        uint32 size;
        assembly {
            size := extcodesize(_address)
        }
        return (size > 0);
    }

    //minting
    function mintMany(address _address, uint256 quantity) private {
        _safeMint(_address, quantity);
    }

    function wlMint(uint quantity, bytes32[] memory proof) public payable
    {
        //contract check
        require(isContract(msg.sender) == false, "Cannot mint from a contract");

        //whitelisting check
        require(wlVerify(proof, getLeaf(msg.sender)), "Invalid merkle proof");

        //quantity check
        require(totalSupply() < pk_max_supply, "Sold out");
        require(totalSupply() + quantity <= pk_max_supply, "Quantity exceeds max supply");
        require(quantity <= pk_wl_max_per_txn, "Quantity exceeds max per transaction");
        require(pk_wl_minted_amounts[msg.sender] + quantity <= pk_wl_max_per_wallet,"Quantity exceeds max mints per wallet");
        
        //time check
        require(pk_wl_start_timestamp > 0 && block.timestamp - pk_wl_start_timestamp > 0, "Minting is not yet started");

        //price check
        require(msg.value == pk_wl_mint_price * quantity, "Not enough ethers sent");

        pk_wl_minted_amounts[msg.sender] += quantity;
        mintMany(msg.sender, quantity);
    }

    function ogMint(uint quantity, bytes32[] memory proof) public payable
    {
        //contract check
        require(isContract(msg.sender) == false, "Cannot mint from a contract");

        //whitelisting check
        require(ogVerify(proof, getLeaf(msg.sender)), "Invalid merkle proof");

        //quantity check
        require(totalSupply() < pk_max_supply, "Sold out");
        require(totalSupply() + quantity <= pk_max_supply, "Quantity exceeds max supply");
        require(quantity <= pk_og_max_per_txn, "Quantity exceeds max per transaction");
        require(pk_og_minted_amounts[msg.sender] + quantity <= pk_og_max_per_wallet,"Quantity exceeds max mints per wallet");
        
        //time check
        require(pk_og_start_timestamp > 0 && block.timestamp - pk_og_start_timestamp > 0, "Minting is not yet started");

        //price check
        require(msg.value == pk_og_mint_price * quantity, "Not enough ethers sent");

        pk_og_minted_amounts[msg.sender] += quantity;
        mintMany(msg.sender, quantity);
    }

    function epMint(uint quantity, bytes32[] memory proof) public payable
    {
        //contract check
        require(isContract(msg.sender) == false, "Cannot mint from a contract");

        //whitelisting check
        require(epVerify(proof, getLeaf(msg.sender)), "Invalid merkle proof");

        //quantity check
        require(totalSupply() < pk_max_supply, "Sold out");
        require(totalSupply() + quantity <= pk_max_supply, "Quantity exceeds max supply");
        require(quantity <= pk_ep_max_per_txn, "Quantity exceeds max per transaction");
        require(pk_ep_minted_amounts[msg.sender] + quantity <= pk_ep_max_per_wallet,"Quantity exceeds max mints per wallet");
        
        //time check
        require(pk_ep_start_timestamp > 0 && block.timestamp - pk_ep_start_timestamp > 0, "Minting is not yet started");

        //price check
        require(msg.value == pk_ep_mint_price * quantity, "Not enough ethers sent");

        pk_ep_minted_amounts[msg.sender] += quantity;
        mintMany(msg.sender, quantity);
    }

    function publicMint(uint quantity) public payable
    {
        //contract check
        require(isContract(msg.sender) == false, "Cannot mint from a contract");

        //quantity check
        require(totalSupply() < pk_max_supply, "Sold out");
        require(totalSupply() + quantity <= pk_max_supply, "Quantity exceeds max supply");
        require(quantity <= pk_public_max_per_txn, "Quantity exceeds max per transaction");
        require(pk_public_minted_amounts[msg.sender] + quantity <= pk_public_max_per_wallet,"Quantity exceeds max mints per wallet");

        //time check
        require(pk_public_start_timestamp > 0 && block.timestamp - pk_public_start_timestamp > 0, "Minting is not yet started");

        //price check
        require(msg.value == pk_public_mint_price * quantity, "Not enough ethers sent");

        pk_public_minted_amounts[msg.sender] += quantity;
        mintMany(msg.sender, quantity);
    }

    function ownerMint(address _address, uint quantity) public payable onlyOwner 
    {
        require(totalSupply() < pk_max_supply, "Sold out");
        require((totalSupply() + quantity) <= pk_max_supply, "Quantity exceeds max supply");

        mintMany(_address, quantity);
    }

    function wlVerify(bytes32[] memory proof, bytes32 leaf) public view returns (bool){return MerkleProof.verify(proof, pk_wl_merkle_root, leaf);}
    function ogVerify(bytes32[] memory proof, bytes32 leaf) public view returns (bool){return MerkleProof.verify(proof, pk_og_merkle_root, leaf);}
    function epVerify(bytes32[] memory proof, bytes32 leaf) public view returns (bool){return MerkleProof.verify(proof, pk_ep_merkle_root, leaf);}

    function getLeaf(address _address) private pure returns (bytes32){return keccak256(abi.encodePacked(_address));}

    //owner functions
    function withdraw() onlyOwner public  {
        uint256 balance = address(this).balance;
        payable(pk_withdraw_to).transfer(balance);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"epMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"epVerify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"ogMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"ogVerify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pk_base_token_uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pk_ep_max_per_txn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pk_ep_max_per_wallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pk_ep_merkle_root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pk_ep_mint_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"pk_ep_minted_amounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pk_ep_start_timestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pk_max_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pk_og_max_per_txn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pk_og_max_per_wallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pk_og_merkle_root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pk_og_mint_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"pk_og_minted_amounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pk_og_start_timestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pk_public_max_per_txn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pk_public_max_per_wallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pk_public_mint_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"pk_public_minted_amounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pk_public_start_timestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pk_withdraw_to","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pk_wl_max_per_txn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pk_wl_max_per_wallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pk_wl_merkle_root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pk_wl_mint_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"pk_wl_minted_amounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pk_wl_start_timestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setEPMaxPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setEPMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"value","type":"bytes32"}],"name":"setEPMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setEPMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setEPStartTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setOGMaxPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setOGMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"value","type":"bytes32"}],"name":"setOGMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setOGMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setOGStartTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setPublicMaxPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setPublicMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setPublicMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setPublicStartTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setWLMaxPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setWLMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"value","type":"bytes32"}],"name":"setWLMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setWLMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setWLStartTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setWithdrawTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"wlMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"wlVerify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600d81526020017f50656e6775696e4b6e69676874000000000000000000000000000000000000008152506040518060400160405280600281526020017f504b000000000000000000000000000000000000000000000000000000000000815250816002908051906020019062000096929190620002a0565b508060039080519060200190620000af929190620002a0565b50620000c0620001cd60201b60201c565b6000819055505050620000e8620000dc620001d260201b60201c565b620001da60201b60201c565b6115b36009819055506002600e819055506003600f8190555060056010819055506064601181905550600260128190555060036013819055506005601481905550600560158190555063634166406016819055506363416640601781905550636341664060188190555063634190706019819055506671afd498d00000600a819055506671afd498d00000600b819055506671afd498d00000600c81905550668e1bc9bf040000600d8190555060405180606001604052806037815260200162004bb46037913960229080519060200190620001c6929190620002a0565b50620003b5565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002ae9062000350565b90600052602060002090601f016020900481019282620002d257600085556200031e565b82601f10620002ed57805160ff19168380011785556200031e565b828001600101855582156200031e579182015b828111156200031d57825182559160200191906001019062000300565b5b5090506200032d919062000331565b5090565b5b808211156200034c57600081600090555060010162000332565b5090565b600060028204905060018216806200036957607f821691505b6020821081141562000380576200037f62000386565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6147ef80620003c56000396000f3fe60806040526004361061043c5760003560e01c806374e6ddf711610234578063afb9c6101161012e578063d547cfb7116100b6578063e81168c61161007a578063e81168c614611002578063e985e9c51461102d578063ed75fbe41461106a578063f2fde38b14611093578063fdca1c19146110bc5761043c565b8063d547cfb714610f1b578063d7fc0cfe14610f46578063ddb91d0f14610f71578063e1e62b0214610f9c578063e649d81414610fc55761043c565b8063be12a9d8116100fd578063be12a9d814610e22578063c0e2218314610e4d578063c87b56dd14610e76578063cca5090514610eb3578063d07001b914610ef05761043c565b8063afb9c61014610d75578063b88d4fde14610d9e578063bd2afdda14610dba578063bdba259214610de55761043c565b80638a2d7b2e116101bc57806395d89b411161018057806395d89b4114610ca2578063a22cb46514610ccd578063a2f033d714610cf6578063a34de63f14610d21578063a50fef1114610d4c5761043c565b80638a2d7b2e14610bbd5780638a3e8c8514610be85780638d5b00c014610c115780638da5cb5b14610c3a57806392b2e44d14610c655761043c565b80637b2d383a116102035780637b2d383a14610ada5780637bc29ea714610b035780637d44fd1114610b405780637daf07a414610b6957806380afb30614610b945761043c565b806374e6ddf714610a305780637635002b14610a5957806378d2369514610a845780637acce19314610aaf5761043c565b806330176e13116103455780635696417c116102cd5780636b33e45d116102915780636b33e45d146109615780636f8b44b01461098a57806370a08231146109b3578063715018a6146109f05780637382c64a14610a075761043c565b80635696417c1461088b5780635d82cf6e146108b45780636098c867146108dd5780636352211e146108f957806369e1b912146109365761043c565b80633ef0d36d116103145780633ef0d36d146107cf57806342842e0e146107eb578063484b973c1461080757806348a3f9e3146108235780634d8a608b1461084e5761043c565b806330176e131461073b5780633a1a55c4146107645780633c6006ab1461078d5780633ccfd60b146107b85761043c565b806318160ddd116103c857806325c2c0201161039757806325c2c0201461068457806326f7b324146106ad5780632b314dc6146106d85780632db11544146106f45780632ea1e858146107105761043c565b806318160ddd146105eb5780631c303ccc146106165780632087abfc1461063f57806323b872dd146106685761043c565b8063095ea7b31161040f578063095ea7b3146105115780630e17d6e31461052d57806310f2b8761461055857806312c53fab146105835780631707e6ce146105ae5761043c565b806301ffc9a71461044157806306ee43a41461047e57806306fdde03146104a9578063081812fc146104d4575b600080fd5b34801561044d57600080fd5b5061046860048036038101906104639190613b2c565b6110e5565b6040516104759190613f60565b60405180910390f35b34801561048a57600080fd5b50610493611177565b6040516104a09190613ef9565b60405180910390f35b3480156104b557600080fd5b506104be61119d565b6040516104cb9190613f96565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f69190613bbf565b61122f565b6040516105089190613ede565b60405180910390f35b61052b60048036038101906105269190613a73565b6112ae565b005b34801561053957600080fd5b506105426113f2565b60405161054f9190613f7b565b60405180910390f35b34801561056457600080fd5b5061056d6113f8565b60405161057a91906140f8565b60405180910390f35b34801561058f57600080fd5b506105986113fe565b6040516105a591906140f8565b60405180910390f35b3480156105ba57600080fd5b506105d560048036038101906105d09190613aaf565b611404565b6040516105e29190613f60565b60405180910390f35b3480156105f757600080fd5b5061060061141b565b60405161060d91906140f8565b60405180910390f35b34801561062257600080fd5b5061063d60048036038101906106389190613bbf565b611432565b005b34801561064b57600080fd5b5061066660048036038101906106619190613bbf565b611444565b005b610682600480360381019061067d919061396d565b611456565b005b34801561069057600080fd5b506106ab60048036038101906106a69190613b03565b61177b565b005b3480156106b957600080fd5b506106c261178d565b6040516106cf91906140f8565b60405180910390f35b6106f260048036038101906106ed9190613be8565b611793565b005b61070e60048036038101906107099190613bbf565b611aba565b005b34801561071c57600080fd5b50610725611d8f565b60405161073291906140f8565b60405180910390f35b34801561074757600080fd5b50610762600480360381019061075d9190613b7e565b611d95565b005b34801561077057600080fd5b5061078b60048036038101906107869190613bbf565b611db7565b005b34801561079957600080fd5b506107a2611dc9565b6040516107af91906140f8565b60405180910390f35b3480156107c457600080fd5b506107cd611dcf565b005b6107e960048036038101906107e49190613be8565b611e48565b005b6108056004803603810190610800919061396d565b61216f565b005b610821600480360381019061081c9190613a73565b61218f565b005b34801561082f57600080fd5b50610838612247565b60405161084591906140f8565b60405180910390f35b34801561085a57600080fd5b5061087560048036038101906108709190613aaf565b61224d565b6040516108829190613f60565b60405180910390f35b34801561089757600080fd5b506108b260048036038101906108ad9190613bbf565b612264565b005b3480156108c057600080fd5b506108db60048036038101906108d69190613bbf565b612276565b005b6108f760048036038101906108f29190613be8565b612288565b005b34801561090557600080fd5b50610920600480360381019061091b9190613bbf565b6125af565b60405161092d9190613ede565b60405180910390f35b34801561094257600080fd5b5061094b6125c1565b60405161095891906140f8565b60405180910390f35b34801561096d57600080fd5b5061098860048036038101906109839190613908565b6125c7565b005b34801561099657600080fd5b506109b160048036038101906109ac9190613bbf565b612613565b005b3480156109bf57600080fd5b506109da60048036038101906109d59190613908565b612625565b6040516109e791906140f8565b60405180910390f35b3480156109fc57600080fd5b50610a056126de565b005b348015610a1357600080fd5b50610a2e6004803603810190610a299190613b03565b6126f2565b005b348015610a3c57600080fd5b50610a576004803603810190610a529190613bbf565b612704565b005b348015610a6557600080fd5b50610a6e612716565b604051610a7b9190613f7b565b60405180910390f35b348015610a9057600080fd5b50610a9961271c565b604051610aa691906140f8565b60405180910390f35b348015610abb57600080fd5b50610ac4612722565b604051610ad191906140f8565b60405180910390f35b348015610ae657600080fd5b50610b016004803603810190610afc9190613bbf565b612728565b005b348015610b0f57600080fd5b50610b2a6004803603810190610b259190613aaf565b61273a565b604051610b379190613f60565b60405180910390f35b348015610b4c57600080fd5b50610b676004803603810190610b629190613b03565b612751565b005b348015610b7557600080fd5b50610b7e612763565b604051610b8b91906140f8565b60405180910390f35b348015610ba057600080fd5b50610bbb6004803603810190610bb69190613bbf565b612769565b005b348015610bc957600080fd5b50610bd261277b565b604051610bdf9190613f96565b60405180910390f35b348015610bf457600080fd5b50610c0f6004803603810190610c0a9190613bbf565b612809565b005b348015610c1d57600080fd5b50610c386004803603810190610c339190613bbf565b61281b565b005b348015610c4657600080fd5b50610c4f61282d565b604051610c5c9190613ede565b60405180910390f35b348015610c7157600080fd5b50610c8c6004803603810190610c879190613908565b612857565b604051610c9991906140f8565b60405180910390f35b348015610cae57600080fd5b50610cb761286f565b604051610cc49190613f96565b60405180910390f35b348015610cd957600080fd5b50610cf46004803603810190610cef9190613a37565b612901565b005b348015610d0257600080fd5b50610d0b612a0c565b604051610d1891906140f8565b60405180910390f35b348015610d2d57600080fd5b50610d36612a12565b604051610d4391906140f8565b60405180910390f35b348015610d5857600080fd5b50610d736004803603810190610d6e9190613bbf565b612a18565b005b348015610d8157600080fd5b50610d9c6004803603810190610d979190613bbf565b612a2a565b005b610db86004803603810190610db391906139bc565b612a3c565b005b348015610dc657600080fd5b50610dcf612aaf565b604051610ddc9190613f7b565b60405180910390f35b348015610df157600080fd5b50610e0c6004803603810190610e079190613908565b612ab5565b604051610e1991906140f8565b60405180910390f35b348015610e2e57600080fd5b50610e37612acd565b604051610e4491906140f8565b60405180910390f35b348015610e5957600080fd5b50610e746004803603810190610e6f9190613bbf565b612ad3565b005b348015610e8257600080fd5b50610e9d6004803603810190610e989190613bbf565b612ae5565b604051610eaa9190613f96565b60405180910390f35b348015610ebf57600080fd5b50610eda6004803603810190610ed59190613908565b612b84565b604051610ee791906140f8565b60405180910390f35b348015610efc57600080fd5b50610f05612b9c565b604051610f1291906140f8565b60405180910390f35b348015610f2757600080fd5b50610f30612ba2565b604051610f3d9190613f96565b60405180910390f35b348015610f5257600080fd5b50610f5b612c34565b604051610f6891906140f8565b60405180910390f35b348015610f7d57600080fd5b50610f86612c3a565b604051610f9391906140f8565b60405180910390f35b348015610fa857600080fd5b50610fc36004803603810190610fbe9190613bbf565b612c40565b005b348015610fd157600080fd5b50610fec6004803603810190610fe79190613908565b612c52565b604051610ff991906140f8565b60405180910390f35b34801561100e57600080fd5b50611017612c6a565b60405161102491906140f8565b60405180910390f35b34801561103957600080fd5b50611054600480360381019061104f9190613931565b612c70565b6040516110619190613f60565b60405180910390f35b34801561107657600080fd5b50611091600480360381019061108c9190613bbf565b612d04565b005b34801561109f57600080fd5b506110ba60048036038101906110b59190613908565b612d16565b005b3480156110c857600080fd5b506110e360048036038101906110de9190613bbf565b612d9a565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061114057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806111705750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600280546111ac906143bf565b80601f01602080910402602001604051908101604052809291908181526020018280546111d8906143bf565b80156112255780601f106111fa57610100808354040283529160200191611225565b820191906000526020600020905b81548152906001019060200180831161120857829003601f168201915b5050505050905090565b600061123a82612dac565b611270576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006112b9826125af565b90508073ffffffffffffffffffffffffffffffffffffffff166112da612e0b565b73ffffffffffffffffffffffffffffffffffffffff161461133d5761130681611301612e0b565b612c70565b61133c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601f5481565b60165481565b60175481565b60006114138360205484612e13565b905092915050565b6000611425612e2a565b6001546000540303905090565b61143a612e2f565b8060188190555050565b61144c612e2f565b8060138190555050565b600061146182612ead565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146114c8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806114d484612f7b565b915091506114ea81876114e5612e0b565b612fa2565b611536576114ff866114fa612e0b565b612c70565b611535576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561159d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115aa8686866001612fe6565b80156115b557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506116838561165f888887612fec565b7c020000000000000000000000000000000000000000000000000000000017613014565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561170b576000600185019050600060046000838152602001908152602001600020541415611709576000548114611708578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611773868686600161303f565b505050505050565b611783612e2f565b80601f8190555050565b60195481565b600015156117a033613045565b1515146117e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d990614078565b60405180910390fd5b6117f4816117ef3361305e565b61273a565b611833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182a90614058565b60405180910390fd5b60095461183e61141b565b1061187e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187590614098565b60405180910390fd5b6009548261188a61141b565b6118949190614209565b11156118d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cc90613ff8565b60405180910390fd5b60135482111561191a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611911906140b8565b60405180910390fd5b600f5482601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119689190614209565b11156119a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a0906140d8565b60405180910390fd5b60006017541180156119c857506000601754426119c691906142b9565b115b611a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fe90614018565b60405180910390fd5b81600b54611a15919061425f565b3414611a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4d90613fb8565b60405180910390fd5b81601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611aa59190614209565b92505081905550611ab6338361308e565b5050565b60001515611ac733613045565b151514611b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0090614078565b60405180910390fd5b600954611b1461141b565b10611b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4b90614098565b60405180910390fd5b60095481611b6061141b565b611b6a9190614209565b1115611bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba290613ff8565b60405180910390fd5b601554811115611bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be7906140b8565b60405180910390fd5b60115481601d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c3e9190614209565b1115611c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c76906140d8565b60405180910390fd5b6000601954118015611c9e5750600060195442611c9c91906142b9565b115b611cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd490614018565b60405180910390fd5b80600d54611ceb919061425f565b3414611d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2390613fb8565b60405180910390fd5b80601d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d7b9190614209565b92505081905550611d8c338261308e565b50565b600b5481565b611d9d612e2f565b8060229080519060200190611db3929190613681565b5050565b611dbf612e2f565b80600c8190555050565b60145481565b611dd7612e2f565b6000479050602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611e44573d6000803e3d6000fd5b5050565b60001515611e5533613045565b151514611e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8e90614078565b60405180910390fd5b611ea981611ea43361305e565b61224d565b611ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edf90614058565b60405180910390fd5b600954611ef361141b565b10611f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2a90614098565b60405180910390fd5b60095482611f3f61141b565b611f499190614209565b1115611f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8190613ff8565b60405180910390fd5b601254821115611fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc6906140b8565b60405180910390fd5b600e5482601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461201d9190614209565b111561205e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612055906140d8565b60405180910390fd5b600060165411801561207d575060006016544261207b91906142b9565b115b6120bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b390614018565b60405180910390fd5b81600a546120ca919061425f565b341461210b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210290613fb8565b60405180910390fd5b81601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461215a9190614209565b9250508190555061216b338361308e565b5050565b61218a83838360405180602001604052806000815250612a3c565b505050565b612197612e2f565b6009546121a261141b565b106121e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d990614098565b60405180910390fd5b600954816121ee61141b565b6121f89190614209565b1115612239576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223090613ff8565b60405180910390fd5b612243828261308e565b5050565b60105481565b600061225c83601e5484612e13565b905092915050565b61226c612e2f565b8060198190555050565b61227e612e2f565b80600d8190555050565b6000151561229533613045565b1515146122d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ce90614078565b60405180910390fd5b6122e9816122e43361305e565b611404565b612328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231f90614058565b60405180910390fd5b60095461233361141b565b10612373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236a90614098565b60405180910390fd5b6009548261237f61141b565b6123899190614209565b11156123ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c190613ff8565b60405180910390fd5b60145482111561240f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612406906140b8565b60405180910390fd5b60105482601c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461245d9190614209565b111561249e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612495906140d8565b60405180910390fd5b60006018541180156124bd57506000601854426124bb91906142b9565b115b6124fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f390614018565b60405180910390fd5b81600c5461250a919061425f565b341461254b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254290613fb8565b60405180910390fd5b81601c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461259a9190614209565b925050819055506125ab338361308e565b5050565b60006125ba82612ead565b9050919050565b60185481565b6125cf612e2f565b80602160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61261b612e2f565b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561268d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6126e6612e2f565b6126f0600061309c565b565b6126fa612e2f565b8060208190555050565b61270c612e2f565b80600b8190555050565b60205481565b60155481565b60135481565b612730612e2f565b8060128190555050565b600061274983601f5484612e13565b905092915050565b612759612e2f565b80601e8190555050565b60125481565b612771612e2f565b80600f8190555050565b60228054612788906143bf565b80601f01602080910402602001604051908101604052809291908181526020018280546127b4906143bf565b80156128015780601f106127d657610100808354040283529160200191612801565b820191906000526020600020905b8154815290600101906020018083116127e457829003601f168201915b505050505081565b612811612e2f565b80600e8190555050565b612823612e2f565b8060108190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601b6020528060005260406000206000915090505481565b60606003805461287e906143bf565b80601f01602080910402602001604051908101604052809291908181526020018280546128aa906143bf565b80156128f75780601f106128cc576101008083540402835291602001916128f7565b820191906000526020600020905b8154815290600101906020018083116128da57829003601f168201915b5050505050905090565b806007600061290e612e0b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166129bb612e0b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612a009190613f60565b60405180910390a35050565b60095481565b60115481565b612a20612e2f565b8060168190555050565b612a32612e2f565b8060158190555050565b612a47848484611456565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612aa957612a7284848484613162565b612aa8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b601e5481565b601d6020528060005260406000206000915090505481565b600d5481565b612adb612e2f565b8060178190555050565b6060612af082612dac565b612b26576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612b306132c2565b9050600081511415612b515760405180602001604052806000815250612b7c565b80612b5b846132d1565b604051602001612b6c929190613eba565b6040516020818303038152906040525b915050919050565b601a6020528060005260406000206000915090505481565b600a5481565b606060228054612bb1906143bf565b80601f0160208091040260200160405190810160405280929190818152602001828054612bdd906143bf565b8015612c2a5780601f10612bff57610100808354040283529160200191612c2a565b820191906000526020600020905b815481529060010190602001808311612c0d57829003601f168201915b5050505050905090565b600c5481565b600e5481565b612c48612e2f565b80600a8190555050565b601c6020528060005260406000206000915090505481565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612d0c612e2f565b8060118190555050565b612d1e612e2f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8590613fd8565b60405180910390fd5b612d978161309c565b50565b612da2612e2f565b8060148190555050565b600081612db7612e2a565b11158015612dc6575060005482105b8015612e04575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600082612e20858461332a565b1490509392505050565b600090565b612e376133a6565b73ffffffffffffffffffffffffffffffffffffffff16612e5561282d565b73ffffffffffffffffffffffffffffffffffffffff1614612eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea290614038565b60405180910390fd5b565b60008082905080612ebc612e2a565b11612f4457600054811015612f435760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612f41575b6000811415612f37576004600083600190039350838152602001908152602001600020549050612f0c565b8092505050612f76565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86130038686846133ae565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600080823b905060008163ffffffff1611915050919050565b6000816040516020016130719190613e9f565b604051602081830303815290604052805190602001209050919050565b61309882826133b7565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613188612e0b565b8786866040518563ffffffff1660e01b81526004016131aa9493929190613f14565b602060405180830381600087803b1580156131c457600080fd5b505af19250505080156131f557506040513d601f19601f820116820180604052508101906131f29190613b55565b60015b61326f573d8060008114613225576040519150601f19603f3d011682016040523d82523d6000602084013e61322a565b606091505b50600081511415613267576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606132cc612ba2565b905090565b606060a060405101806040526020810391506000825281835b60011561331557600184039350600a81066030018453600a810490508061331057613315565b6132ea565b50828103602084039350808452505050919050565b60008082905060005b845181101561339b5761338682868381518110613379577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516133d5565b9150808061339390614422565b915050613333565b508091505092915050565b600033905090565b60009392505050565b6133d1828260405180602001604052806000815250613400565b5050565b60008183106133ed576133e8828461349d565b6133f8565b6133f7838361349d565b5b905092915050565b61340a83836134b4565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461349857600080549050600083820390505b61344a6000868380600101945086613162565b613480576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061343757816000541461349557600080fd5b50505b505050565b600082600052816020526040600020905092915050565b60008054905060008214156134f5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6135026000848385612fe6565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506135798361356a6000866000612fec565b61357385613671565b17613014565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461361a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506135df565b506000821415613656576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061366c600084838561303f565b505050565b60006001821460e11b9050919050565b82805461368d906143bf565b90600052602060002090601f0160209004810192826136af57600085556136f6565b82601f106136c857805160ff19168380011785556136f6565b828001600101855582156136f6579182015b828111156136f55782518255916020019190600101906136da565b5b5090506137039190613707565b5090565b5b80821115613720576000816000905550600101613708565b5090565b600061373761373284614138565b614113565b9050808382526020820190508285602086028201111561375657600080fd5b60005b85811015613786578161376c8882613860565b845260208401935060208301925050600181019050613759565b5050509392505050565b60006137a361379e84614164565b614113565b9050828152602081018484840111156137bb57600080fd5b6137c684828561437d565b509392505050565b60006137e16137dc84614195565b614113565b9050828152602081018484840111156137f957600080fd5b61380484828561437d565b509392505050565b60008135905061381b81614746565b92915050565b600082601f83011261383257600080fd5b8135613842848260208601613724565b91505092915050565b60008135905061385a8161475d565b92915050565b60008135905061386f81614774565b92915050565b6000813590506138848161478b565b92915050565b6000815190506138998161478b565b92915050565b600082601f8301126138b057600080fd5b81356138c0848260208601613790565b91505092915050565b600082601f8301126138da57600080fd5b81356138ea8482602086016137ce565b91505092915050565b600081359050613902816147a2565b92915050565b60006020828403121561391a57600080fd5b60006139288482850161380c565b91505092915050565b6000806040838503121561394457600080fd5b60006139528582860161380c565b92505060206139638582860161380c565b9150509250929050565b60008060006060848603121561398257600080fd5b60006139908682870161380c565b93505060206139a18682870161380c565b92505060406139b2868287016138f3565b9150509250925092565b600080600080608085870312156139d257600080fd5b60006139e08782880161380c565b94505060206139f18782880161380c565b9350506040613a02878288016138f3565b925050606085013567ffffffffffffffff811115613a1f57600080fd5b613a2b8782880161389f565b91505092959194509250565b60008060408385031215613a4a57600080fd5b6000613a588582860161380c565b9250506020613a698582860161384b565b9150509250929050565b60008060408385031215613a8657600080fd5b6000613a948582860161380c565b9250506020613aa5858286016138f3565b9150509250929050565b60008060408385031215613ac257600080fd5b600083013567ffffffffffffffff811115613adc57600080fd5b613ae885828601613821565b9250506020613af985828601613860565b9150509250929050565b600060208284031215613b1557600080fd5b6000613b2384828501613860565b91505092915050565b600060208284031215613b3e57600080fd5b6000613b4c84828501613875565b91505092915050565b600060208284031215613b6757600080fd5b6000613b758482850161388a565b91505092915050565b600060208284031215613b9057600080fd5b600082013567ffffffffffffffff811115613baa57600080fd5b613bb6848285016138c9565b91505092915050565b600060208284031215613bd157600080fd5b6000613bdf848285016138f3565b91505092915050565b60008060408385031215613bfb57600080fd5b6000613c09858286016138f3565b925050602083013567ffffffffffffffff811115613c2657600080fd5b613c3285828601613821565b9150509250929050565b613c45816142ff565b82525050565b613c54816142ed565b82525050565b613c6b613c66826142ed565b61446b565b82525050565b613c7a81614311565b82525050565b613c898161431d565b82525050565b6000613c9a826141c6565b613ca481856141dc565b9350613cb481856020860161438c565b613cbd8161451c565b840191505092915050565b6000613cd3826141d1565b613cdd81856141ed565b9350613ced81856020860161438c565b613cf68161451c565b840191505092915050565b6000613d0c826141d1565b613d1681856141fe565b9350613d2681856020860161438c565b80840191505092915050565b6000613d3f6016836141ed565b9150613d4a8261453a565b602082019050919050565b6000613d626026836141ed565b9150613d6d82614563565b604082019050919050565b6000613d85601b836141ed565b9150613d90826145b2565b602082019050919050565b6000613da8601a836141ed565b9150613db3826145db565b602082019050919050565b6000613dcb6020836141ed565b9150613dd682614604565b602082019050919050565b6000613dee6014836141ed565b9150613df98261462d565b602082019050919050565b6000613e11601b836141ed565b9150613e1c82614656565b602082019050919050565b6000613e346008836141ed565b9150613e3f8261467f565b602082019050919050565b6000613e576024836141ed565b9150613e62826146a8565b604082019050919050565b6000613e7a6025836141ed565b9150613e85826146f7565b604082019050919050565b613e9981614373565b82525050565b6000613eab8284613c5a565b60148201915081905092915050565b6000613ec68285613d01565b9150613ed28284613d01565b91508190509392505050565b6000602082019050613ef36000830184613c4b565b92915050565b6000602082019050613f0e6000830184613c3c565b92915050565b6000608082019050613f296000830187613c4b565b613f366020830186613c4b565b613f436040830185613e90565b8181036060830152613f558184613c8f565b905095945050505050565b6000602082019050613f756000830184613c71565b92915050565b6000602082019050613f906000830184613c80565b92915050565b60006020820190508181036000830152613fb08184613cc8565b905092915050565b60006020820190508181036000830152613fd181613d32565b9050919050565b60006020820190508181036000830152613ff181613d55565b9050919050565b6000602082019050818103600083015261401181613d78565b9050919050565b6000602082019050818103600083015261403181613d9b565b9050919050565b6000602082019050818103600083015261405181613dbe565b9050919050565b6000602082019050818103600083015261407181613de1565b9050919050565b6000602082019050818103600083015261409181613e04565b9050919050565b600060208201905081810360008301526140b181613e27565b9050919050565b600060208201905081810360008301526140d181613e4a565b9050919050565b600060208201905081810360008301526140f181613e6d565b9050919050565b600060208201905061410d6000830184613e90565b92915050565b600061411d61412e565b905061412982826143f1565b919050565b6000604051905090565b600067ffffffffffffffff821115614153576141526144ed565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561417f5761417e6144ed565b5b6141888261451c565b9050602081019050919050565b600067ffffffffffffffff8211156141b0576141af6144ed565b5b6141b98261451c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061421482614373565b915061421f83614373565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142545761425361448f565b5b828201905092915050565b600061426a82614373565b915061427583614373565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142ae576142ad61448f565b5b828202905092915050565b60006142c482614373565b91506142cf83614373565b9250828210156142e2576142e161448f565b5b828203905092915050565b60006142f882614353565b9050919050565b600061430a82614353565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156143aa57808201518184015260208101905061438f565b838111156143b9576000848401525b50505050565b600060028204905060018216806143d757607f821691505b602082108114156143eb576143ea6144be565b5b50919050565b6143fa8261451c565b810181811067ffffffffffffffff82111715614419576144186144ed565b5b80604052505050565b600061442d82614373565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156144605761445f61448f565b5b600182019050919050565b60006144768261447d565b9050919050565b60006144888261452d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4e6f7420656e6f756768206574686572732073656e7400000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5175616e746974792065786365656473206d617820737570706c790000000000600082015250565b7f4d696e74696e67206973206e6f74207965742073746172746564000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c6964206d65726b6c652070726f6f66000000000000000000000000600082015250565b7f43616e6e6f74206d696e742066726f6d206120636f6e74726163740000000000600082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f5175616e746974792065786365656473206d617820706572207472616e73616360008201527f74696f6e00000000000000000000000000000000000000000000000000000000602082015250565b7f5175616e746974792065786365656473206d6178206d696e747320706572207760008201527f616c6c6574000000000000000000000000000000000000000000000000000000602082015250565b61474f816142ed565b811461475a57600080fd5b50565b61476681614311565b811461477157600080fd5b50565b61477d8161431d565b811461478857600080fd5b50565b61479481614327565b811461479f57600080fd5b50565b6147ab81614373565b81146147b657600080fd5b5056fea26469706673582212202ede72d89e52086fadf612fbf757c853695e68121d4cd3587cf1343737e89f8364736f6c6343000804003368747470733a2f2f73746f726167652e70656e6775696e6b6e69676874732e696f2f706c616365686f6c6465722d6d657461646174612f

Deployed Bytecode

0x60806040526004361061043c5760003560e01c806374e6ddf711610234578063afb9c6101161012e578063d547cfb7116100b6578063e81168c61161007a578063e81168c614611002578063e985e9c51461102d578063ed75fbe41461106a578063f2fde38b14611093578063fdca1c19146110bc5761043c565b8063d547cfb714610f1b578063d7fc0cfe14610f46578063ddb91d0f14610f71578063e1e62b0214610f9c578063e649d81414610fc55761043c565b8063be12a9d8116100fd578063be12a9d814610e22578063c0e2218314610e4d578063c87b56dd14610e76578063cca5090514610eb3578063d07001b914610ef05761043c565b8063afb9c61014610d75578063b88d4fde14610d9e578063bd2afdda14610dba578063bdba259214610de55761043c565b80638a2d7b2e116101bc57806395d89b411161018057806395d89b4114610ca2578063a22cb46514610ccd578063a2f033d714610cf6578063a34de63f14610d21578063a50fef1114610d4c5761043c565b80638a2d7b2e14610bbd5780638a3e8c8514610be85780638d5b00c014610c115780638da5cb5b14610c3a57806392b2e44d14610c655761043c565b80637b2d383a116102035780637b2d383a14610ada5780637bc29ea714610b035780637d44fd1114610b405780637daf07a414610b6957806380afb30614610b945761043c565b806374e6ddf714610a305780637635002b14610a5957806378d2369514610a845780637acce19314610aaf5761043c565b806330176e13116103455780635696417c116102cd5780636b33e45d116102915780636b33e45d146109615780636f8b44b01461098a57806370a08231146109b3578063715018a6146109f05780637382c64a14610a075761043c565b80635696417c1461088b5780635d82cf6e146108b45780636098c867146108dd5780636352211e146108f957806369e1b912146109365761043c565b80633ef0d36d116103145780633ef0d36d146107cf57806342842e0e146107eb578063484b973c1461080757806348a3f9e3146108235780634d8a608b1461084e5761043c565b806330176e131461073b5780633a1a55c4146107645780633c6006ab1461078d5780633ccfd60b146107b85761043c565b806318160ddd116103c857806325c2c0201161039757806325c2c0201461068457806326f7b324146106ad5780632b314dc6146106d85780632db11544146106f45780632ea1e858146107105761043c565b806318160ddd146105eb5780631c303ccc146106165780632087abfc1461063f57806323b872dd146106685761043c565b8063095ea7b31161040f578063095ea7b3146105115780630e17d6e31461052d57806310f2b8761461055857806312c53fab146105835780631707e6ce146105ae5761043c565b806301ffc9a71461044157806306ee43a41461047e57806306fdde03146104a9578063081812fc146104d4575b600080fd5b34801561044d57600080fd5b5061046860048036038101906104639190613b2c565b6110e5565b6040516104759190613f60565b60405180910390f35b34801561048a57600080fd5b50610493611177565b6040516104a09190613ef9565b60405180910390f35b3480156104b557600080fd5b506104be61119d565b6040516104cb9190613f96565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f69190613bbf565b61122f565b6040516105089190613ede565b60405180910390f35b61052b60048036038101906105269190613a73565b6112ae565b005b34801561053957600080fd5b506105426113f2565b60405161054f9190613f7b565b60405180910390f35b34801561056457600080fd5b5061056d6113f8565b60405161057a91906140f8565b60405180910390f35b34801561058f57600080fd5b506105986113fe565b6040516105a591906140f8565b60405180910390f35b3480156105ba57600080fd5b506105d560048036038101906105d09190613aaf565b611404565b6040516105e29190613f60565b60405180910390f35b3480156105f757600080fd5b5061060061141b565b60405161060d91906140f8565b60405180910390f35b34801561062257600080fd5b5061063d60048036038101906106389190613bbf565b611432565b005b34801561064b57600080fd5b5061066660048036038101906106619190613bbf565b611444565b005b610682600480360381019061067d919061396d565b611456565b005b34801561069057600080fd5b506106ab60048036038101906106a69190613b03565b61177b565b005b3480156106b957600080fd5b506106c261178d565b6040516106cf91906140f8565b60405180910390f35b6106f260048036038101906106ed9190613be8565b611793565b005b61070e60048036038101906107099190613bbf565b611aba565b005b34801561071c57600080fd5b50610725611d8f565b60405161073291906140f8565b60405180910390f35b34801561074757600080fd5b50610762600480360381019061075d9190613b7e565b611d95565b005b34801561077057600080fd5b5061078b60048036038101906107869190613bbf565b611db7565b005b34801561079957600080fd5b506107a2611dc9565b6040516107af91906140f8565b60405180910390f35b3480156107c457600080fd5b506107cd611dcf565b005b6107e960048036038101906107e49190613be8565b611e48565b005b6108056004803603810190610800919061396d565b61216f565b005b610821600480360381019061081c9190613a73565b61218f565b005b34801561082f57600080fd5b50610838612247565b60405161084591906140f8565b60405180910390f35b34801561085a57600080fd5b5061087560048036038101906108709190613aaf565b61224d565b6040516108829190613f60565b60405180910390f35b34801561089757600080fd5b506108b260048036038101906108ad9190613bbf565b612264565b005b3480156108c057600080fd5b506108db60048036038101906108d69190613bbf565b612276565b005b6108f760048036038101906108f29190613be8565b612288565b005b34801561090557600080fd5b50610920600480360381019061091b9190613bbf565b6125af565b60405161092d9190613ede565b60405180910390f35b34801561094257600080fd5b5061094b6125c1565b60405161095891906140f8565b60405180910390f35b34801561096d57600080fd5b5061098860048036038101906109839190613908565b6125c7565b005b34801561099657600080fd5b506109b160048036038101906109ac9190613bbf565b612613565b005b3480156109bf57600080fd5b506109da60048036038101906109d59190613908565b612625565b6040516109e791906140f8565b60405180910390f35b3480156109fc57600080fd5b50610a056126de565b005b348015610a1357600080fd5b50610a2e6004803603810190610a299190613b03565b6126f2565b005b348015610a3c57600080fd5b50610a576004803603810190610a529190613bbf565b612704565b005b348015610a6557600080fd5b50610a6e612716565b604051610a7b9190613f7b565b60405180910390f35b348015610a9057600080fd5b50610a9961271c565b604051610aa691906140f8565b60405180910390f35b348015610abb57600080fd5b50610ac4612722565b604051610ad191906140f8565b60405180910390f35b348015610ae657600080fd5b50610b016004803603810190610afc9190613bbf565b612728565b005b348015610b0f57600080fd5b50610b2a6004803603810190610b259190613aaf565b61273a565b604051610b379190613f60565b60405180910390f35b348015610b4c57600080fd5b50610b676004803603810190610b629190613b03565b612751565b005b348015610b7557600080fd5b50610b7e612763565b604051610b8b91906140f8565b60405180910390f35b348015610ba057600080fd5b50610bbb6004803603810190610bb69190613bbf565b612769565b005b348015610bc957600080fd5b50610bd261277b565b604051610bdf9190613f96565b60405180910390f35b348015610bf457600080fd5b50610c0f6004803603810190610c0a9190613bbf565b612809565b005b348015610c1d57600080fd5b50610c386004803603810190610c339190613bbf565b61281b565b005b348015610c4657600080fd5b50610c4f61282d565b604051610c5c9190613ede565b60405180910390f35b348015610c7157600080fd5b50610c8c6004803603810190610c879190613908565b612857565b604051610c9991906140f8565b60405180910390f35b348015610cae57600080fd5b50610cb761286f565b604051610cc49190613f96565b60405180910390f35b348015610cd957600080fd5b50610cf46004803603810190610cef9190613a37565b612901565b005b348015610d0257600080fd5b50610d0b612a0c565b604051610d1891906140f8565b60405180910390f35b348015610d2d57600080fd5b50610d36612a12565b604051610d4391906140f8565b60405180910390f35b348015610d5857600080fd5b50610d736004803603810190610d6e9190613bbf565b612a18565b005b348015610d8157600080fd5b50610d9c6004803603810190610d979190613bbf565b612a2a565b005b610db86004803603810190610db391906139bc565b612a3c565b005b348015610dc657600080fd5b50610dcf612aaf565b604051610ddc9190613f7b565b60405180910390f35b348015610df157600080fd5b50610e0c6004803603810190610e079190613908565b612ab5565b604051610e1991906140f8565b60405180910390f35b348015610e2e57600080fd5b50610e37612acd565b604051610e4491906140f8565b60405180910390f35b348015610e5957600080fd5b50610e746004803603810190610e6f9190613bbf565b612ad3565b005b348015610e8257600080fd5b50610e9d6004803603810190610e989190613bbf565b612ae5565b604051610eaa9190613f96565b60405180910390f35b348015610ebf57600080fd5b50610eda6004803603810190610ed59190613908565b612b84565b604051610ee791906140f8565b60405180910390f35b348015610efc57600080fd5b50610f05612b9c565b604051610f1291906140f8565b60405180910390f35b348015610f2757600080fd5b50610f30612ba2565b604051610f3d9190613f96565b60405180910390f35b348015610f5257600080fd5b50610f5b612c34565b604051610f6891906140f8565b60405180910390f35b348015610f7d57600080fd5b50610f86612c3a565b604051610f9391906140f8565b60405180910390f35b348015610fa857600080fd5b50610fc36004803603810190610fbe9190613bbf565b612c40565b005b348015610fd157600080fd5b50610fec6004803603810190610fe79190613908565b612c52565b604051610ff991906140f8565b60405180910390f35b34801561100e57600080fd5b50611017612c6a565b60405161102491906140f8565b60405180910390f35b34801561103957600080fd5b50611054600480360381019061104f9190613931565b612c70565b6040516110619190613f60565b60405180910390f35b34801561107657600080fd5b50611091600480360381019061108c9190613bbf565b612d04565b005b34801561109f57600080fd5b506110ba60048036038101906110b59190613908565b612d16565b005b3480156110c857600080fd5b506110e360048036038101906110de9190613bbf565b612d9a565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061114057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806111705750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600280546111ac906143bf565b80601f01602080910402602001604051908101604052809291908181526020018280546111d8906143bf565b80156112255780601f106111fa57610100808354040283529160200191611225565b820191906000526020600020905b81548152906001019060200180831161120857829003601f168201915b5050505050905090565b600061123a82612dac565b611270576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006112b9826125af565b90508073ffffffffffffffffffffffffffffffffffffffff166112da612e0b565b73ffffffffffffffffffffffffffffffffffffffff161461133d5761130681611301612e0b565b612c70565b61133c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601f5481565b60165481565b60175481565b60006114138360205484612e13565b905092915050565b6000611425612e2a565b6001546000540303905090565b61143a612e2f565b8060188190555050565b61144c612e2f565b8060138190555050565b600061146182612ead565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146114c8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806114d484612f7b565b915091506114ea81876114e5612e0b565b612fa2565b611536576114ff866114fa612e0b565b612c70565b611535576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561159d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115aa8686866001612fe6565b80156115b557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506116838561165f888887612fec565b7c020000000000000000000000000000000000000000000000000000000017613014565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561170b576000600185019050600060046000838152602001908152602001600020541415611709576000548114611708578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611773868686600161303f565b505050505050565b611783612e2f565b80601f8190555050565b60195481565b600015156117a033613045565b1515146117e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d990614078565b60405180910390fd5b6117f4816117ef3361305e565b61273a565b611833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182a90614058565b60405180910390fd5b60095461183e61141b565b1061187e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187590614098565b60405180910390fd5b6009548261188a61141b565b6118949190614209565b11156118d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cc90613ff8565b60405180910390fd5b60135482111561191a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611911906140b8565b60405180910390fd5b600f5482601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119689190614209565b11156119a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a0906140d8565b60405180910390fd5b60006017541180156119c857506000601754426119c691906142b9565b115b611a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fe90614018565b60405180910390fd5b81600b54611a15919061425f565b3414611a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4d90613fb8565b60405180910390fd5b81601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611aa59190614209565b92505081905550611ab6338361308e565b5050565b60001515611ac733613045565b151514611b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0090614078565b60405180910390fd5b600954611b1461141b565b10611b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4b90614098565b60405180910390fd5b60095481611b6061141b565b611b6a9190614209565b1115611bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba290613ff8565b60405180910390fd5b601554811115611bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be7906140b8565b60405180910390fd5b60115481601d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c3e9190614209565b1115611c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c76906140d8565b60405180910390fd5b6000601954118015611c9e5750600060195442611c9c91906142b9565b115b611cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd490614018565b60405180910390fd5b80600d54611ceb919061425f565b3414611d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2390613fb8565b60405180910390fd5b80601d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d7b9190614209565b92505081905550611d8c338261308e565b50565b600b5481565b611d9d612e2f565b8060229080519060200190611db3929190613681565b5050565b611dbf612e2f565b80600c8190555050565b60145481565b611dd7612e2f565b6000479050602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611e44573d6000803e3d6000fd5b5050565b60001515611e5533613045565b151514611e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8e90614078565b60405180910390fd5b611ea981611ea43361305e565b61224d565b611ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edf90614058565b60405180910390fd5b600954611ef361141b565b10611f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2a90614098565b60405180910390fd5b60095482611f3f61141b565b611f499190614209565b1115611f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8190613ff8565b60405180910390fd5b601254821115611fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc6906140b8565b60405180910390fd5b600e5482601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461201d9190614209565b111561205e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612055906140d8565b60405180910390fd5b600060165411801561207d575060006016544261207b91906142b9565b115b6120bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b390614018565b60405180910390fd5b81600a546120ca919061425f565b341461210b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210290613fb8565b60405180910390fd5b81601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461215a9190614209565b9250508190555061216b338361308e565b5050565b61218a83838360405180602001604052806000815250612a3c565b505050565b612197612e2f565b6009546121a261141b565b106121e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d990614098565b60405180910390fd5b600954816121ee61141b565b6121f89190614209565b1115612239576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223090613ff8565b60405180910390fd5b612243828261308e565b5050565b60105481565b600061225c83601e5484612e13565b905092915050565b61226c612e2f565b8060198190555050565b61227e612e2f565b80600d8190555050565b6000151561229533613045565b1515146122d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ce90614078565b60405180910390fd5b6122e9816122e43361305e565b611404565b612328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231f90614058565b60405180910390fd5b60095461233361141b565b10612373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236a90614098565b60405180910390fd5b6009548261237f61141b565b6123899190614209565b11156123ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c190613ff8565b60405180910390fd5b60145482111561240f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612406906140b8565b60405180910390fd5b60105482601c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461245d9190614209565b111561249e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612495906140d8565b60405180910390fd5b60006018541180156124bd57506000601854426124bb91906142b9565b115b6124fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f390614018565b60405180910390fd5b81600c5461250a919061425f565b341461254b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254290613fb8565b60405180910390fd5b81601c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461259a9190614209565b925050819055506125ab338361308e565b5050565b60006125ba82612ead565b9050919050565b60185481565b6125cf612e2f565b80602160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61261b612e2f565b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561268d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6126e6612e2f565b6126f0600061309c565b565b6126fa612e2f565b8060208190555050565b61270c612e2f565b80600b8190555050565b60205481565b60155481565b60135481565b612730612e2f565b8060128190555050565b600061274983601f5484612e13565b905092915050565b612759612e2f565b80601e8190555050565b60125481565b612771612e2f565b80600f8190555050565b60228054612788906143bf565b80601f01602080910402602001604051908101604052809291908181526020018280546127b4906143bf565b80156128015780601f106127d657610100808354040283529160200191612801565b820191906000526020600020905b8154815290600101906020018083116127e457829003601f168201915b505050505081565b612811612e2f565b80600e8190555050565b612823612e2f565b8060108190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601b6020528060005260406000206000915090505481565b60606003805461287e906143bf565b80601f01602080910402602001604051908101604052809291908181526020018280546128aa906143bf565b80156128f75780601f106128cc576101008083540402835291602001916128f7565b820191906000526020600020905b8154815290600101906020018083116128da57829003601f168201915b5050505050905090565b806007600061290e612e0b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166129bb612e0b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612a009190613f60565b60405180910390a35050565b60095481565b60115481565b612a20612e2f565b8060168190555050565b612a32612e2f565b8060158190555050565b612a47848484611456565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612aa957612a7284848484613162565b612aa8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b601e5481565b601d6020528060005260406000206000915090505481565b600d5481565b612adb612e2f565b8060178190555050565b6060612af082612dac565b612b26576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612b306132c2565b9050600081511415612b515760405180602001604052806000815250612b7c565b80612b5b846132d1565b604051602001612b6c929190613eba565b6040516020818303038152906040525b915050919050565b601a6020528060005260406000206000915090505481565b600a5481565b606060228054612bb1906143bf565b80601f0160208091040260200160405190810160405280929190818152602001828054612bdd906143bf565b8015612c2a5780601f10612bff57610100808354040283529160200191612c2a565b820191906000526020600020905b815481529060010190602001808311612c0d57829003601f168201915b5050505050905090565b600c5481565b600e5481565b612c48612e2f565b80600a8190555050565b601c6020528060005260406000206000915090505481565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612d0c612e2f565b8060118190555050565b612d1e612e2f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8590613fd8565b60405180910390fd5b612d978161309c565b50565b612da2612e2f565b8060148190555050565b600081612db7612e2a565b11158015612dc6575060005482105b8015612e04575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600082612e20858461332a565b1490509392505050565b600090565b612e376133a6565b73ffffffffffffffffffffffffffffffffffffffff16612e5561282d565b73ffffffffffffffffffffffffffffffffffffffff1614612eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea290614038565b60405180910390fd5b565b60008082905080612ebc612e2a565b11612f4457600054811015612f435760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612f41575b6000811415612f37576004600083600190039350838152602001908152602001600020549050612f0c565b8092505050612f76565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86130038686846133ae565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600080823b905060008163ffffffff1611915050919050565b6000816040516020016130719190613e9f565b604051602081830303815290604052805190602001209050919050565b61309882826133b7565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613188612e0b565b8786866040518563ffffffff1660e01b81526004016131aa9493929190613f14565b602060405180830381600087803b1580156131c457600080fd5b505af19250505080156131f557506040513d601f19601f820116820180604052508101906131f29190613b55565b60015b61326f573d8060008114613225576040519150601f19603f3d011682016040523d82523d6000602084013e61322a565b606091505b50600081511415613267576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606132cc612ba2565b905090565b606060a060405101806040526020810391506000825281835b60011561331557600184039350600a81066030018453600a810490508061331057613315565b6132ea565b50828103602084039350808452505050919050565b60008082905060005b845181101561339b5761338682868381518110613379577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516133d5565b9150808061339390614422565b915050613333565b508091505092915050565b600033905090565b60009392505050565b6133d1828260405180602001604052806000815250613400565b5050565b60008183106133ed576133e8828461349d565b6133f8565b6133f7838361349d565b5b905092915050565b61340a83836134b4565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461349857600080549050600083820390505b61344a6000868380600101945086613162565b613480576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061343757816000541461349557600080fd5b50505b505050565b600082600052816020526040600020905092915050565b60008054905060008214156134f5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6135026000848385612fe6565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506135798361356a6000866000612fec565b61357385613671565b17613014565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461361a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506135df565b506000821415613656576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061366c600084838561303f565b505050565b60006001821460e11b9050919050565b82805461368d906143bf565b90600052602060002090601f0160209004810192826136af57600085556136f6565b82601f106136c857805160ff19168380011785556136f6565b828001600101855582156136f6579182015b828111156136f55782518255916020019190600101906136da565b5b5090506137039190613707565b5090565b5b80821115613720576000816000905550600101613708565b5090565b600061373761373284614138565b614113565b9050808382526020820190508285602086028201111561375657600080fd5b60005b85811015613786578161376c8882613860565b845260208401935060208301925050600181019050613759565b5050509392505050565b60006137a361379e84614164565b614113565b9050828152602081018484840111156137bb57600080fd5b6137c684828561437d565b509392505050565b60006137e16137dc84614195565b614113565b9050828152602081018484840111156137f957600080fd5b61380484828561437d565b509392505050565b60008135905061381b81614746565b92915050565b600082601f83011261383257600080fd5b8135613842848260208601613724565b91505092915050565b60008135905061385a8161475d565b92915050565b60008135905061386f81614774565b92915050565b6000813590506138848161478b565b92915050565b6000815190506138998161478b565b92915050565b600082601f8301126138b057600080fd5b81356138c0848260208601613790565b91505092915050565b600082601f8301126138da57600080fd5b81356138ea8482602086016137ce565b91505092915050565b600081359050613902816147a2565b92915050565b60006020828403121561391a57600080fd5b60006139288482850161380c565b91505092915050565b6000806040838503121561394457600080fd5b60006139528582860161380c565b92505060206139638582860161380c565b9150509250929050565b60008060006060848603121561398257600080fd5b60006139908682870161380c565b93505060206139a18682870161380c565b92505060406139b2868287016138f3565b9150509250925092565b600080600080608085870312156139d257600080fd5b60006139e08782880161380c565b94505060206139f18782880161380c565b9350506040613a02878288016138f3565b925050606085013567ffffffffffffffff811115613a1f57600080fd5b613a2b8782880161389f565b91505092959194509250565b60008060408385031215613a4a57600080fd5b6000613a588582860161380c565b9250506020613a698582860161384b565b9150509250929050565b60008060408385031215613a8657600080fd5b6000613a948582860161380c565b9250506020613aa5858286016138f3565b9150509250929050565b60008060408385031215613ac257600080fd5b600083013567ffffffffffffffff811115613adc57600080fd5b613ae885828601613821565b9250506020613af985828601613860565b9150509250929050565b600060208284031215613b1557600080fd5b6000613b2384828501613860565b91505092915050565b600060208284031215613b3e57600080fd5b6000613b4c84828501613875565b91505092915050565b600060208284031215613b6757600080fd5b6000613b758482850161388a565b91505092915050565b600060208284031215613b9057600080fd5b600082013567ffffffffffffffff811115613baa57600080fd5b613bb6848285016138c9565b91505092915050565b600060208284031215613bd157600080fd5b6000613bdf848285016138f3565b91505092915050565b60008060408385031215613bfb57600080fd5b6000613c09858286016138f3565b925050602083013567ffffffffffffffff811115613c2657600080fd5b613c3285828601613821565b9150509250929050565b613c45816142ff565b82525050565b613c54816142ed565b82525050565b613c6b613c66826142ed565b61446b565b82525050565b613c7a81614311565b82525050565b613c898161431d565b82525050565b6000613c9a826141c6565b613ca481856141dc565b9350613cb481856020860161438c565b613cbd8161451c565b840191505092915050565b6000613cd3826141d1565b613cdd81856141ed565b9350613ced81856020860161438c565b613cf68161451c565b840191505092915050565b6000613d0c826141d1565b613d1681856141fe565b9350613d2681856020860161438c565b80840191505092915050565b6000613d3f6016836141ed565b9150613d4a8261453a565b602082019050919050565b6000613d626026836141ed565b9150613d6d82614563565b604082019050919050565b6000613d85601b836141ed565b9150613d90826145b2565b602082019050919050565b6000613da8601a836141ed565b9150613db3826145db565b602082019050919050565b6000613dcb6020836141ed565b9150613dd682614604565b602082019050919050565b6000613dee6014836141ed565b9150613df98261462d565b602082019050919050565b6000613e11601b836141ed565b9150613e1c82614656565b602082019050919050565b6000613e346008836141ed565b9150613e3f8261467f565b602082019050919050565b6000613e576024836141ed565b9150613e62826146a8565b604082019050919050565b6000613e7a6025836141ed565b9150613e85826146f7565b604082019050919050565b613e9981614373565b82525050565b6000613eab8284613c5a565b60148201915081905092915050565b6000613ec68285613d01565b9150613ed28284613d01565b91508190509392505050565b6000602082019050613ef36000830184613c4b565b92915050565b6000602082019050613f0e6000830184613c3c565b92915050565b6000608082019050613f296000830187613c4b565b613f366020830186613c4b565b613f436040830185613e90565b8181036060830152613f558184613c8f565b905095945050505050565b6000602082019050613f756000830184613c71565b92915050565b6000602082019050613f906000830184613c80565b92915050565b60006020820190508181036000830152613fb08184613cc8565b905092915050565b60006020820190508181036000830152613fd181613d32565b9050919050565b60006020820190508181036000830152613ff181613d55565b9050919050565b6000602082019050818103600083015261401181613d78565b9050919050565b6000602082019050818103600083015261403181613d9b565b9050919050565b6000602082019050818103600083015261405181613dbe565b9050919050565b6000602082019050818103600083015261407181613de1565b9050919050565b6000602082019050818103600083015261409181613e04565b9050919050565b600060208201905081810360008301526140b181613e27565b9050919050565b600060208201905081810360008301526140d181613e4a565b9050919050565b600060208201905081810360008301526140f181613e6d565b9050919050565b600060208201905061410d6000830184613e90565b92915050565b600061411d61412e565b905061412982826143f1565b919050565b6000604051905090565b600067ffffffffffffffff821115614153576141526144ed565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561417f5761417e6144ed565b5b6141888261451c565b9050602081019050919050565b600067ffffffffffffffff8211156141b0576141af6144ed565b5b6141b98261451c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061421482614373565b915061421f83614373565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142545761425361448f565b5b828201905092915050565b600061426a82614373565b915061427583614373565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142ae576142ad61448f565b5b828202905092915050565b60006142c482614373565b91506142cf83614373565b9250828210156142e2576142e161448f565b5b828203905092915050565b60006142f882614353565b9050919050565b600061430a82614353565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156143aa57808201518184015260208101905061438f565b838111156143b9576000848401525b50505050565b600060028204905060018216806143d757607f821691505b602082108114156143eb576143ea6144be565b5b50919050565b6143fa8261451c565b810181811067ffffffffffffffff82111715614419576144186144ed565b5b80604052505050565b600061442d82614373565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156144605761445f61448f565b5b600182019050919050565b60006144768261447d565b9050919050565b60006144888261452d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4e6f7420656e6f756768206574686572732073656e7400000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5175616e746974792065786365656473206d617820737570706c790000000000600082015250565b7f4d696e74696e67206973206e6f74207965742073746172746564000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c6964206d65726b6c652070726f6f66000000000000000000000000600082015250565b7f43616e6e6f74206d696e742066726f6d206120636f6e74726163740000000000600082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f5175616e746974792065786365656473206d617820706572207472616e73616360008201527f74696f6e00000000000000000000000000000000000000000000000000000000602082015250565b7f5175616e746974792065786365656473206d6178206d696e747320706572207760008201527f616c6c6574000000000000000000000000000000000000000000000000000000602082015250565b61474f816142ed565b811461475a57600080fd5b50565b61476681614311565b811461477157600080fd5b50565b61477d8161431d565b811461478857600080fd5b50565b61479481614327565b811461479f57600080fd5b50565b6147ab81614373565b81146147b657600080fd5b5056fea26469706673582212202ede72d89e52086fadf612fbf757c853695e68121d4cd3587cf1343737e89f8364736f6c63430008040033

Deployed Bytecode Sourcemap

63852:10118:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18444:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65087:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19346:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25837:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25270:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64984:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64483:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64526;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73524:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15097:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67158:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66656:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29476:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67457:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64612:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69832:1063;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71974:951;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64004:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68115:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67819:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64376:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73817:148;;;;;;;;;;;;;:::i;:::-;;68761:1063;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32397:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72933:287;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64208:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73228:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67257:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67908:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70903:1063;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20739:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64569:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68011:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66078:78;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16281:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54245:103;;;;;;;;;;;;;:::i;:::-;;67548:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67730:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65023:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64415:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64337:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66558:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73376:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67366:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64298:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66260:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65159:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66164:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66356;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53597:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64723:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19522:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26395:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63929:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64250:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66960:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66852:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33188:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64945:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64847:59;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64080:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67059:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19732:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64661:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63966:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68208:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64042:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64124:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67641:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64785:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64166:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26786:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66452:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54503:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66754:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18444:639;18529:4;18868:10;18853:25;;:11;:25;;;;:102;;;;18945:10;18930:25;;:11;:25;;;;18853:102;:179;;;;19022:10;19007:25;;:11;:25;;;;18853:179;18833:199;;18444:639;;;:::o;65087:37::-;;;;;;;;;;;;;:::o;19346:100::-;19400:13;19433:5;19426:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19346:100;:::o;25837:218::-;25913:7;25938:16;25946:7;25938;:16::i;:::-;25933:64;;25963:34;;;;;;;;;;;;;;25933:64;26017:15;:24;26033:7;26017:24;;;;;;;;;;;:30;;;;;;;;;;;;26010:37;;25837:218;;;:::o;25270:408::-;25359:13;25375:16;25383:7;25375;:16::i;:::-;25359:32;;25431:5;25408:28;;:19;:17;:19::i;:::-;:28;;;25404:175;;25456:44;25473:5;25480:19;:17;:19::i;:::-;25456:16;:44::i;:::-;25451:128;;25528:35;;;;;;;;;;;;;;25451:128;25404:175;25624:2;25591:15;:24;25607:7;25591:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25662:7;25658:2;25642:28;;25651:5;25642:28;;;;;;;;;;;;25270:408;;;:::o;64984:32::-;;;;:::o;64483:36::-;;;;:::o;64526:::-;;;;:::o;73524:142::-;73601:4;73614:50;73633:5;73640:17;;73659:4;73614:18;:50::i;:::-;73607:57;;73524:142;;;;:::o;15097:323::-;15158:7;15386:15;:13;:15::i;:::-;15371:12;;15355:13;;:28;:46;15348:53;;15097:323;:::o;67158:93::-;53483:13;:11;:13::i;:::-;67244:5:::1;67220:21;:29;;;;67158:93:::0;:::o;66656:92::-;53483:13;:11;:13::i;:::-;66741:5:::1;66721:17;:25;;;;66656:92:::0;:::o;29476:2825::-;29618:27;29648;29667:7;29648:18;:27::i;:::-;29618:57;;29733:4;29692:45;;29708:19;29692:45;;;29688:86;;29746:28;;;;;;;;;;;;;;29688:86;29788:27;29817:23;29844:35;29871:7;29844:26;:35::i;:::-;29787:92;;;;29979:68;30004:15;30021:4;30027:19;:17;:19::i;:::-;29979:24;:68::i;:::-;29974:180;;30067:43;30084:4;30090:19;:17;:19::i;:::-;30067:16;:43::i;:::-;30062:92;;30119:35;;;;;;;;;;;;;;30062:92;29974:180;30185:1;30171:16;;:2;:16;;;30167:52;;;30196:23;;;;;;;;;;;;;;30167:52;30232:43;30254:4;30260:2;30264:7;30273:1;30232:21;:43::i;:::-;30368:15;30365:2;;;30508:1;30487:19;30480:30;30365:2;30905:18;:24;30924:4;30905:24;;;;;;;;;;;;;;;;30903:26;;;;;;;;;;;;30974:18;:22;30993:2;30974:22;;;;;;;;;;;;;;;;30972:24;;;;;;;;;;;31296:146;31333:2;31382:45;31397:4;31403:2;31407:19;31382:14;:45::i;:::-;11496:8;31354:73;31296:18;:146::i;:::-;31267:17;:26;31285:7;31267:26;;;;;;;;;;;:175;;;;31613:1;11496:8;31562:19;:47;:52;31558:627;;;31635:19;31667:1;31657:7;:11;31635:33;;31824:1;31790:17;:30;31808:11;31790:30;;;;;;;;;;;;:35;31786:384;;;31928:13;;31913:11;:28;31909:242;;32108:19;32075:17;:30;32093:11;32075:30;;;;;;;;;;;:52;;;;31909:242;31786:384;31558:627;;32232:7;32228:2;32213:27;;32222:4;32213:27;;;;;;;;;;;;32251:42;32272:4;32278:2;32282:7;32291:1;32251:20;:42::i;:::-;29476:2825;;;;;;:::o;67457:85::-;53483:13;:11;:13::i;:::-;67535:5:::1;67515:17;:25;;;;67457:85:::0;:::o;64612:40::-;;;;:::o;69832:1063::-;69978:5;69952:31;;:22;69963:10;69952;:22::i;:::-;:31;;;69944:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;70066:36;70075:5;70082:19;70090:10;70082:7;:19::i;:::-;70066:8;:36::i;:::-;70058:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;70190:13;;70174;:11;:13::i;:::-;:29;70166:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;70263:13;;70251:8;70235:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:41;;70227:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;70339:17;;70327:8;:29;;70319:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;70463:20;;70451:8;70416:20;:32;70437:10;70416:32;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;:67;;70408:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;70599:1;70575:21;;:25;:72;;;;;70646:1;70622:21;;70604:15;:39;;;;:::i;:::-;:43;70575:72;70567:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;70754:8;70735:16;;:27;;;;:::i;:::-;70722:9;:40;70714:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;70838:8;70802:20;:32;70823:10;70802:32;;;;;;;;;;;;;;;;:44;;;;;;;:::i;:::-;;;;;;;;70857:30;70866:10;70878:8;70857;:30::i;:::-;69832:1063;;:::o;71974:951::-;72100:5;72074:31;;:22;72085:10;72074;:22::i;:::-;:31;;;72066:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;72200:13;;72184;:11;:13::i;:::-;:29;72176:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;72273:13;;72261:8;72245:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:41;;72237:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;72349:21;;72337:8;:33;;72329:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;72481:24;;72469:8;72430:24;:36;72455:10;72430:36;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;:75;;72422:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;72617:1;72589:25;;:29;:80;;;;;72668:1;72640:25;;72622:15;:43;;;;:::i;:::-;:47;72589:80;72581:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;72780:8;72757:20;;:31;;;;:::i;:::-;72744:9;:44;72736:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;72868:8;72828:24;:36;72853:10;72828:36;;;;;;;;;;;;;;;;:48;;;;;;;:::i;:::-;;;;;;;;72887:30;72896:10;72908:8;72887;:30::i;:::-;71974:951;:::o;64004:31::-;;;;:::o;68115:87::-;53483:13;:11;:13::i;:::-;68197:3:::1;68177:17;:23;;;;;;;;;;;;:::i;:::-;;68115:87:::0;:::o;67819:83::-;53483:13;:11;:13::i;:::-;67895:5:::1;67876:16;:24;;;;67819:83:::0;:::o;64376:32::-;;;;:::o;73817:148::-;53483:13;:11;:13::i;:::-;73866:15:::1;73884:21;73866:39;;73924:14;;;;;;;;;;;73916:32;;:41;73949:7;73916:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;53507:1;73817:148::o:0;68761:1063::-;68907:5;68881:31;;:22;68892:10;68881;:22::i;:::-;:31;;;68873:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;68995:36;69004:5;69011:19;69019:10;69011:7;:19::i;:::-;68995:8;:36::i;:::-;68987:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;69119:13;;69103;:11;:13::i;:::-;:29;69095:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;69192:13;;69180:8;69164:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:41;;69156:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;69268:17;;69256:8;:29;;69248:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;69392:20;;69380:8;69345:20;:32;69366:10;69345:32;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;:67;;69337:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;69528:1;69504:21;;:25;:72;;;;;69575:1;69551:21;;69533:15;:39;;;;:::i;:::-;:43;69504:72;69496:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;69683:8;69664:16;;:27;;;;:::i;:::-;69651:9;:40;69643:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;69767:8;69731:20;:32;69752:10;69731:32;;;;;;;;;;;;;;;;:44;;;;;;;:::i;:::-;;;;;;;;69786:30;69795:10;69807:8;69786;:30::i;:::-;68761:1063;;:::o;32397:193::-;32543:39;32560:4;32566:2;32570:7;32543:39;;;;;;;;;;;;:16;:39::i;:::-;32397:193;;;:::o;72933:287::-;53483:13;:11;:13::i;:::-;73051::::1;;73035;:11;:13::i;:::-;:29;73027:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;73126:13;;73113:8;73097:13;:11;:13::i;:::-;:24;;;;:::i;:::-;73096:43;;73088:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;73184:28;73193:8;73203;73184;:28::i;:::-;72933:287:::0;;:::o;64208:35::-;;;;:::o;73228:142::-;73305:4;73318:50;73337:5;73344:17;;73363:4;73318:18;:50::i;:::-;73311:57;;73228:142;;;;:::o;67257:101::-;53483:13;:11;:13::i;:::-;67351:5:::1;67323:25;:33;;;;67257:101:::0;:::o;67908:91::-;53483:13;:11;:13::i;:::-;67992:5:::1;67969:20;:28;;;;67908:91:::0;:::o;70903:1063::-;71049:5;71023:31;;:22;71034:10;71023;:22::i;:::-;:31;;;71015:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;71137:36;71146:5;71153:19;71161:10;71153:7;:19::i;:::-;71137:8;:36::i;:::-;71129:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;71261:13;;71245;:11;:13::i;:::-;:29;71237:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;71334:13;;71322:8;71306:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:41;;71298:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;71410:17;;71398:8;:29;;71390:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;71534:20;;71522:8;71487:20;:32;71508:10;71487:32;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;:67;;71479:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;71670:1;71646:21;;:25;:72;;;;;71717:1;71693:21;;71675:15;:39;;;;:::i;:::-;:43;71646:72;71638:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;71825:8;71806:16;;:27;;;;:::i;:::-;71793:9;:40;71785:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;71909:8;71873:20;:32;71894:10;71873:32;;;;;;;;;;;;;;;;:44;;;;;;;:::i;:::-;;;;;;;;71928:30;71937:10;71949:8;71928;:30::i;:::-;70903:1063;;:::o;20739:152::-;20811:7;20854:27;20873:7;20854:18;:27::i;:::-;20831:52;;20739:152;;;:::o;64569:36::-;;;;:::o;68011:96::-;53483:13;:11;:13::i;:::-;68096:8:::1;68071:14;;:34;;;;;;;;;;;;;;;;;;68011:96:::0;:::o;66078:78::-;53483:13;:11;:13::i;:::-;66149:5:::1;66133:13;:21;;;;66078:78:::0;:::o;16281:233::-;16353:7;16394:1;16377:19;;:5;:19;;;16373:60;;;16405:28;;;;;;;;;;;;;;16373:60;10440:13;16451:18;:25;16470:5;16451:25;;;;;;;;;;;;;;;;:55;16444:62;;16281:233;;;:::o;54245:103::-;53483:13;:11;:13::i;:::-;54310:30:::1;54337:1;54310:18;:30::i;:::-;54245:103::o:0;67548:85::-;53483:13;:11;:13::i;:::-;67626:5:::1;67606:17;:25;;;;67548:85:::0;:::o;67730:83::-;53483:13;:11;:13::i;:::-;67806:5:::1;67787:16;:24;;;;67730:83:::0;:::o;65023:32::-;;;;:::o;64415:36::-;;;;:::o;64337:32::-;;;;:::o;66558:92::-;53483:13;:11;:13::i;:::-;66643:5:::1;66623:17;:25;;;;66558:92:::0;:::o;73376:142::-;73453:4;73466:50;73485:5;73492:17;;73511:4;73466:18;:50::i;:::-;73459:57;;73376:142;;;;:::o;67366:85::-;53483:13;:11;:13::i;:::-;67444:5:::1;67424:17;:25;;;;67366:85:::0;:::o;64298:32::-;;;;:::o;66260:90::-;53483:13;:11;:13::i;:::-;66343:5:::1;66320:20;:28;;;;66260:90:::0;:::o;65159:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;66164:90::-;53483:13;:11;:13::i;:::-;66247:5:::1;66224:20;:28;;;;66164:90:::0;:::o;66356:::-;53483:13;:11;:13::i;:::-;66439:5:::1;66416:20;:28;;;;66356:90:::0;:::o;53597:87::-;53643:7;53670:6;;;;;;;;;;;53663:13;;53597:87;:::o;64723:55::-;;;;;;;;;;;;;;;;;:::o;19522:104::-;19578:13;19611:7;19604:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19522:104;:::o;26395:234::-;26542:8;26490:18;:39;26509:19;:17;:19::i;:::-;26490:39;;;;;;;;;;;;;;;:49;26530:8;26490:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26602:8;26566:55;;26581:19;:17;:19::i;:::-;26566:55;;;26612:8;26566:55;;;;;;:::i;:::-;;;;;;;;26395:234;;:::o;63929:28::-;;;;:::o;64250:39::-;;;;:::o;66960:93::-;53483:13;:11;:13::i;:::-;67046:5:::1;67022:21;:29;;;;66960:93:::0;:::o;66852:100::-;53483:13;:11;:13::i;:::-;66945:5:::1;66921:21;:29;;;;66852:100:::0;:::o;33188:407::-;33363:31;33376:4;33382:2;33386:7;33363:12;:31::i;:::-;33427:1;33409:2;:14;;;:19;33405:183;;33448:56;33479:4;33485:2;33489:7;33498:5;33448:30;:56::i;:::-;33443:145;;33532:40;;;;;;;;;;;;;;33443:145;33405:183;33188:407;;;;:::o;64945:32::-;;;;:::o;64847:59::-;;;;;;;;;;;;;;;;;:::o;64080:35::-;;;;:::o;67059:93::-;53483:13;:11;:13::i;:::-;67145:5:::1;67121:21;:29;;;;67059:93:::0;:::o;19732:318::-;19805:13;19836:16;19844:7;19836;:16::i;:::-;19831:59;;19861:29;;;;;;;;;;;;;;19831:59;19903:21;19927:10;:8;:10::i;:::-;19903:34;;19980:1;19961:7;19955:21;:26;;:87;;;;;;;;;;;;;;;;;20008:7;20017:18;20027:7;20017:9;:18::i;:::-;19991:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;19955:87;19948:94;;;19732:318;;;:::o;64661:55::-;;;;;;;;;;;;;;;;;:::o;63966:31::-;;;;:::o;68208:87::-;68253:13;68276:17;68269:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68208:87;:::o;64042:31::-;;;;:::o;64124:35::-;;;;:::o;67641:83::-;53483:13;:11;:13::i;:::-;67717:5:::1;67698:16;:24;;;;67641:83:::0;:::o;64785:55::-;;;;;;;;;;;;;;;;;:::o;64166:35::-;;;;:::o;26786:164::-;26883:4;26907:18;:25;26926:5;26907:25;;;;;;;;;;;;;;;:35;26933:8;26907:35;;;;;;;;;;;;;;;;;;;;;;;;;26900:42;;26786:164;;;;:::o;66452:98::-;53483:13;:11;:13::i;:::-;66543:5:::1;66516:24;:32;;;;66452:98:::0;:::o;54503:201::-;53483:13;:11;:13::i;:::-;54612:1:::1;54592:22;;:8;:22;;;;54584:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54668:28;54687:8;54668:18;:28::i;:::-;54503:201:::0;:::o;66754:92::-;53483:13;:11;:13::i;:::-;66839:5:::1;66819:17;:25;;;;66754:92:::0;:::o;27208:282::-;27273:4;27329:7;27310:15;:13;:15::i;:::-;:26;;:66;;;;;27363:13;;27353:7;:23;27310:66;:153;;;;;27462:1;11216:8;27414:17;:26;27432:7;27414:26;;;;;;;;;;;;:44;:49;27310:153;27290:173;;27208:282;;;:::o;49516:105::-;49576:7;49603:10;49596:17;;49516:105;:::o;56279:190::-;56404:4;56457;56428:25;56441:5;56448:4;56428:12;:25::i;:::-;:33;56421:40;;56279:190;;;;;:::o;14613:92::-;14669:7;14613:92;:::o;53762:132::-;53837:12;:10;:12::i;:::-;53826:23;;:7;:5;:7::i;:::-;:23;;;53818:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53762:132::o;21894:1275::-;21961:7;21981:12;21996:7;21981:22;;22064:4;22045:15;:13;:15::i;:::-;:23;22041:1061;;22098:13;;22091:4;:20;22087:1015;;;22136:14;22153:17;:23;22171:4;22153:23;;;;;;;;;;;;22136:40;;22270:1;11216:8;22242:6;:24;:29;22238:845;;;22907:113;22924:1;22914:6;:11;22907:113;;;22967:17;:25;22985:6;;;;;;;22967:25;;;;;;;;;;;;22958:34;;22907:113;;;23053:6;23046:13;;;;;;22238:845;22087:1015;;22041:1061;23130:31;;;;;;;;;;;;;;21894:1275;;;;:::o;28371:485::-;28473:27;28502:23;28543:38;28584:15;:24;28600:7;28584:24;;;;;;;;;;;28543:65;;28761:18;28738:41;;28818:19;28812:26;28793:45;;28723:126;;;;:::o;27599:659::-;27748:11;27913:16;27906:5;27902:28;27893:37;;28073:16;28062:9;28058:32;28045:45;;28223:15;28212:9;28209:30;28201:5;28190:9;28187:20;28184:56;28174:66;;27781:470;;;;;:::o;34257:159::-;;;;;:::o;48825:311::-;48960:7;48980:16;11620:3;49006:19;:41;;48980:68;;11620:3;49074:31;49085:4;49091:2;49095:9;49074:10;:31::i;:::-;49066:40;;:62;;49059:69;;;48825:311;;;;;:::o;23717:450::-;23797:14;23965:16;23958:5;23954:28;23945:37;;24142:5;24128:11;24103:23;24099:41;24096:52;24089:5;24086:63;24076:73;;23833:327;;;;:::o;35081:158::-;;;;;:::o;68423:197::-;68483:4;68499:11;68565:8;68553:21;68545:29;;68610:1;68603:4;:8;;;68595:17;;;68423:197;;;:::o;73674:112::-;73731:7;73774:8;73757:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;73747:37;;;;;;73740:44;;73674:112;;;:::o;68643:110::-;68716:29;68726:8;68736;68716:9;:29::i;:::-;68643:110;;:::o;54864:191::-;54938:16;54957:6;;;;;;;;;;;54938:25;;54983:8;54974:6;;:17;;;;;;;;;;;;;;;;;;55038:8;55007:40;;55028:8;55007:40;;;;;;;;;;;;54864:191;;:::o;35679:716::-;35842:4;35888:2;35863:45;;;35909:19;:17;:19::i;:::-;35930:4;35936:7;35945:5;35863:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35859:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36163:1;36146:6;:13;:18;36142:235;;;36192:40;;;;;;;;;;;;;;36142:235;36335:6;36329:13;36320:6;36316:2;36312:15;36305:38;35859:529;36032:54;;;36022:64;;;:6;:64;;;;36015:71;;;35679:716;;;;;;:::o;68301:99::-;68361:13;68384:14;:12;:14::i;:::-;68377:21;;68301:99;:::o;49723:1745::-;49788:17;50222:4;50215;50209:11;50205:22;50314:1;50308:4;50301:15;50389:4;50386:1;50382:12;50375:19;;50471:1;50466:3;50459:14;50575:3;50814:5;50796:428;50822:1;50796:428;;;50862:1;50857:3;50853:11;50846:18;;51033:2;51027:4;51023:13;51019:2;51015:22;51010:3;51002:36;51127:2;51121:4;51117:13;51109:21;;51194:4;51184:2;;51202:5;;51184:2;50796:428;;;50800:21;51263:3;51258;51254:13;51378:4;51373:3;51369:14;51362:21;;51443:6;51438:3;51431:19;49827:1634;;;;;;:::o;57146:296::-;57229:7;57249:20;57272:4;57249:27;;57292:9;57287:118;57311:5;:12;57307:1;:16;57287:118;;;57360:33;57370:12;57384:5;57390:1;57384:8;;;;;;;;;;;;;;;;;;;;;;57360:9;:33::i;:::-;57345:48;;57325:3;;;;;:::i;:::-;;;;57287:118;;;;57422:12;57415:19;;;57146:296;;;;:::o;52152:98::-;52205:7;52232:10;52225:17;;52152:98;:::o;48526:147::-;48663:6;48526:147;;;;;:::o;43348:112::-;43425:27;43435:2;43439:8;43425:27;;;;;;;;;;;;:9;:27::i;:::-;43348:112;;:::o;63353:149::-;63416:7;63447:1;63443;:5;:51;;63474:20;63489:1;63492;63474:14;:20::i;:::-;63443:51;;;63451:20;63466:1;63469;63451:14;:20::i;:::-;63443:51;63436:58;;63353:149;;;;:::o;42575:689::-;42706:19;42712:2;42716:8;42706:5;:19::i;:::-;42785:1;42767:2;:14;;;:19;42763:483;;42807:11;42821:13;;42807:27;;42853:13;42875:8;42869:3;:14;42853:30;;42902:233;42933:62;42972:1;42976:2;42980:7;;;;;;42989:5;42933:30;:62::i;:::-;42928:167;;43031:40;;;;;;;;;;;;;;42928:167;43130:3;43122:5;:11;42902:233;;43217:3;43200:13;;:20;43196:34;;43222:8;;;43196:34;42763:483;;;42575:689;;;:::o;63510:268::-;63578:13;63685:1;63679:4;63672:15;63714:1;63708:4;63701:15;63755:4;63749;63739:21;63730:30;;63657:114;;;;:::o;36857:2966::-;36930:20;36953:13;;36930:36;;36993:1;36981:8;:13;36977:44;;;37003:18;;;;;;;;;;;;;;36977:44;37034:61;37064:1;37068:2;37072:12;37086:8;37034:21;:61::i;:::-;37578:1;10578:2;37548:1;:26;;37547:32;37535:8;:45;37509:18;:22;37528:2;37509:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37857:139;37894:2;37948:33;37971:1;37975:2;37979:1;37948:14;:33::i;:::-;37915:30;37936:8;37915:20;:30::i;:::-;:66;37857:18;:139::i;:::-;37823:17;:31;37841:12;37823:31;;;;;;;;;;;:173;;;;38013:16;38044:11;38073:8;38058:12;:23;38044:37;;38594:16;38590:2;38586:25;38574:37;;38966:12;38926:8;38885:1;38823:25;38764:1;38703;38676:335;39337:1;39323:12;39319:20;39277:346;39378:3;39369:7;39366:16;39277:346;;39596:7;39586:8;39583:1;39556:25;39553:1;39550;39545:59;39431:1;39422:7;39418:15;39407:26;;39277:346;;;39281:77;39668:1;39656:8;:13;39652:45;;;39678:19;;;;;;;;;;;;;;39652:45;39730:3;39714:13;:19;;;;36857:2966;;39755:60;39784:1;39788:2;39792:12;39806:8;39755:20;:60::i;:::-;36857:2966;;;:::o;24269:324::-;24339:14;24572:1;24562:8;24559:15;24533:24;24529:46;24519:56;;24441:145;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:655:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:2;;;414:1;411;404:12;350:2;450:1;435:238;460:6;457:1;454:13;435:238;;;528:3;557:37;590:3;578:10;557:37;:::i;:::-;552:3;545:50;624:4;619:3;615:14;608:21;;658:4;653:3;649:14;642:21;;495:178;482:1;479;475:9;470:14;;435:238;;;439:14;126:553;;;;;;;:::o;685:343::-;762:5;787:65;803:48;844:6;803:48;:::i;:::-;787:65;:::i;:::-;778:74;;875:6;868:5;861:21;913:4;906:5;902:16;951:3;942:6;937:3;933:16;930:25;927:2;;;968:1;965;958:12;927:2;981:41;1015:6;1010:3;1005;981:41;:::i;:::-;768:260;;;;;;:::o;1034:345::-;1112:5;1137:66;1153:49;1195:6;1153:49;:::i;:::-;1137:66;:::i;:::-;1128:75;;1226:6;1219:5;1212:21;1264:4;1257:5;1253:16;1302:3;1293:6;1288:3;1284:16;1281:25;1278:2;;;1319:1;1316;1309:12;1278:2;1332:41;1366:6;1361:3;1356;1332:41;:::i;:::-;1118:261;;;;;;:::o;1385:139::-;1431:5;1469:6;1456:20;1447:29;;1485:33;1512:5;1485:33;:::i;:::-;1437:87;;;;:::o;1547:303::-;1618:5;1667:3;1660:4;1652:6;1648:17;1644:27;1634:2;;1685:1;1682;1675:12;1634:2;1725:6;1712:20;1750:94;1840:3;1832:6;1825:4;1817:6;1813:17;1750:94;:::i;:::-;1741:103;;1624:226;;;;;:::o;1856:133::-;1899:5;1937:6;1924:20;1915:29;;1953:30;1977:5;1953:30;:::i;:::-;1905:84;;;;:::o;1995:139::-;2041:5;2079:6;2066:20;2057:29;;2095:33;2122:5;2095:33;:::i;:::-;2047:87;;;;:::o;2140:137::-;2185:5;2223:6;2210:20;2201:29;;2239:32;2265:5;2239:32;:::i;:::-;2191:86;;;;:::o;2283:141::-;2339:5;2370:6;2364:13;2355:22;;2386:32;2412:5;2386:32;:::i;:::-;2345:79;;;;:::o;2443:271::-;2498:5;2547:3;2540:4;2532:6;2528:17;2524:27;2514:2;;2565:1;2562;2555:12;2514:2;2605:6;2592:20;2630:78;2704:3;2696:6;2689:4;2681:6;2677:17;2630:78;:::i;:::-;2621:87;;2504:210;;;;;:::o;2734:273::-;2790:5;2839:3;2832:4;2824:6;2820:17;2816:27;2806:2;;2857:1;2854;2847:12;2806:2;2897:6;2884:20;2922:79;2997:3;2989:6;2982:4;2974:6;2970:17;2922:79;:::i;:::-;2913:88;;2796:211;;;;;:::o;3013:139::-;3059:5;3097:6;3084:20;3075:29;;3113:33;3140:5;3113:33;:::i;:::-;3065:87;;;;:::o;3158:262::-;3217:6;3266:2;3254:9;3245:7;3241:23;3237:32;3234:2;;;3282:1;3279;3272:12;3234:2;3325:1;3350:53;3395:7;3386:6;3375:9;3371:22;3350:53;:::i;:::-;3340:63;;3296:117;3224:196;;;;:::o;3426:407::-;3494:6;3502;3551:2;3539:9;3530:7;3526:23;3522:32;3519:2;;;3567:1;3564;3557:12;3519:2;3610:1;3635:53;3680:7;3671:6;3660:9;3656:22;3635:53;:::i;:::-;3625:63;;3581:117;3737:2;3763:53;3808:7;3799:6;3788:9;3784:22;3763:53;:::i;:::-;3753:63;;3708:118;3509:324;;;;;:::o;3839:552::-;3916:6;3924;3932;3981:2;3969:9;3960:7;3956:23;3952:32;3949:2;;;3997:1;3994;3987:12;3949:2;4040:1;4065:53;4110:7;4101:6;4090:9;4086:22;4065:53;:::i;:::-;4055:63;;4011:117;4167:2;4193:53;4238:7;4229:6;4218:9;4214:22;4193:53;:::i;:::-;4183:63;;4138:118;4295:2;4321:53;4366:7;4357:6;4346:9;4342:22;4321:53;:::i;:::-;4311:63;;4266:118;3939:452;;;;;:::o;4397:809::-;4492:6;4500;4508;4516;4565:3;4553:9;4544:7;4540:23;4536:33;4533:2;;;4582:1;4579;4572:12;4533:2;4625:1;4650:53;4695:7;4686:6;4675:9;4671:22;4650:53;:::i;:::-;4640:63;;4596:117;4752:2;4778:53;4823:7;4814:6;4803:9;4799:22;4778:53;:::i;:::-;4768:63;;4723:118;4880:2;4906:53;4951:7;4942:6;4931:9;4927:22;4906:53;:::i;:::-;4896:63;;4851:118;5036:2;5025:9;5021:18;5008:32;5067:18;5059:6;5056:30;5053:2;;;5099:1;5096;5089:12;5053:2;5127:62;5181:7;5172:6;5161:9;5157:22;5127:62;:::i;:::-;5117:72;;4979:220;4523:683;;;;;;;:::o;5212:401::-;5277:6;5285;5334:2;5322:9;5313:7;5309:23;5305:32;5302:2;;;5350:1;5347;5340:12;5302:2;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5520:2;5546:50;5588:7;5579:6;5568:9;5564:22;5546:50;:::i;:::-;5536:60;;5491:115;5292:321;;;;;:::o;5619:407::-;5687:6;5695;5744:2;5732:9;5723:7;5719:23;5715:32;5712:2;;;5760:1;5757;5750:12;5712:2;5803:1;5828:53;5873:7;5864:6;5853:9;5849:22;5828:53;:::i;:::-;5818:63;;5774:117;5930:2;5956:53;6001:7;5992:6;5981:9;5977:22;5956:53;:::i;:::-;5946:63;;5901:118;5702:324;;;;;:::o;6032:550::-;6125:6;6133;6182:2;6170:9;6161:7;6157:23;6153:32;6150:2;;;6198:1;6195;6188:12;6150:2;6269:1;6258:9;6254:17;6241:31;6299:18;6291:6;6288:30;6285:2;;;6331:1;6328;6321:12;6285:2;6359:78;6429:7;6420:6;6409:9;6405:22;6359:78;:::i;:::-;6349:88;;6212:235;6486:2;6512:53;6557:7;6548:6;6537:9;6533:22;6512:53;:::i;:::-;6502:63;;6457:118;6140:442;;;;;:::o;6588:262::-;6647:6;6696:2;6684:9;6675:7;6671:23;6667:32;6664:2;;;6712:1;6709;6702:12;6664:2;6755:1;6780:53;6825:7;6816:6;6805:9;6801:22;6780:53;:::i;:::-;6770:63;;6726:117;6654:196;;;;:::o;6856:260::-;6914:6;6963:2;6951:9;6942:7;6938:23;6934:32;6931:2;;;6979:1;6976;6969:12;6931:2;7022:1;7047:52;7091:7;7082:6;7071:9;7067:22;7047:52;:::i;:::-;7037:62;;6993:116;6921:195;;;;:::o;7122:282::-;7191:6;7240:2;7228:9;7219:7;7215:23;7211:32;7208:2;;;7256:1;7253;7246:12;7208:2;7299:1;7324:63;7379:7;7370:6;7359:9;7355:22;7324:63;:::i;:::-;7314:73;;7270:127;7198:206;;;;:::o;7410:375::-;7479:6;7528:2;7516:9;7507:7;7503:23;7499:32;7496:2;;;7544:1;7541;7534:12;7496:2;7615:1;7604:9;7600:17;7587:31;7645:18;7637:6;7634:30;7631:2;;;7677:1;7674;7667:12;7631:2;7705:63;7760:7;7751:6;7740:9;7736:22;7705:63;:::i;:::-;7695:73;;7558:220;7486:299;;;;:::o;7791:262::-;7850:6;7899:2;7887:9;7878:7;7874:23;7870:32;7867:2;;;7915:1;7912;7905:12;7867:2;7958:1;7983:53;8028:7;8019:6;8008:9;8004:22;7983:53;:::i;:::-;7973:63;;7929:117;7857:196;;;;:::o;8059:550::-;8152:6;8160;8209:2;8197:9;8188:7;8184:23;8180:32;8177:2;;;8225:1;8222;8215:12;8177:2;8268:1;8293:53;8338:7;8329:6;8318:9;8314:22;8293:53;:::i;:::-;8283:63;;8239:117;8423:2;8412:9;8408:18;8395:32;8454:18;8446:6;8443:30;8440:2;;;8486:1;8483;8476:12;8440:2;8514:78;8584:7;8575:6;8564:9;8560:22;8514:78;:::i;:::-;8504:88;;8366:236;8167:442;;;;;:::o;8615:142::-;8718:32;8744:5;8718:32;:::i;:::-;8713:3;8706:45;8696:61;;:::o;8763:118::-;8850:24;8868:5;8850:24;:::i;:::-;8845:3;8838:37;8828:53;;:::o;8887:157::-;8992:45;9012:24;9030:5;9012:24;:::i;:::-;8992:45;:::i;:::-;8987:3;8980:58;8970:74;;:::o;9050:109::-;9131:21;9146:5;9131:21;:::i;:::-;9126:3;9119:34;9109:50;;:::o;9165:118::-;9252:24;9270:5;9252:24;:::i;:::-;9247:3;9240:37;9230:53;;:::o;9289:360::-;9375:3;9403:38;9435:5;9403:38;:::i;:::-;9457:70;9520:6;9515:3;9457:70;:::i;:::-;9450:77;;9536:52;9581:6;9576:3;9569:4;9562:5;9558:16;9536:52;:::i;:::-;9613:29;9635:6;9613:29;:::i;:::-;9608:3;9604:39;9597:46;;9379:270;;;;;:::o;9655:364::-;9743:3;9771:39;9804:5;9771:39;:::i;:::-;9826:71;9890:6;9885:3;9826:71;:::i;:::-;9819:78;;9906:52;9951:6;9946:3;9939:4;9932:5;9928:16;9906:52;:::i;:::-;9983:29;10005:6;9983:29;:::i;:::-;9978:3;9974:39;9967:46;;9747:272;;;;;:::o;10025:377::-;10131:3;10159:39;10192:5;10159:39;:::i;:::-;10214:89;10296:6;10291:3;10214:89;:::i;:::-;10207:96;;10312:52;10357:6;10352:3;10345:4;10338:5;10334:16;10312:52;:::i;:::-;10389:6;10384:3;10380:16;10373:23;;10135:267;;;;;:::o;10408:366::-;10550:3;10571:67;10635:2;10630:3;10571:67;:::i;:::-;10564:74;;10647:93;10736:3;10647:93;:::i;:::-;10765:2;10760:3;10756:12;10749:19;;10554:220;;;:::o;10780:366::-;10922:3;10943:67;11007:2;11002:3;10943:67;:::i;:::-;10936:74;;11019:93;11108:3;11019:93;:::i;:::-;11137:2;11132:3;11128:12;11121:19;;10926:220;;;:::o;11152:366::-;11294:3;11315:67;11379:2;11374:3;11315:67;:::i;:::-;11308:74;;11391:93;11480:3;11391:93;:::i;:::-;11509:2;11504:3;11500:12;11493:19;;11298:220;;;:::o;11524:366::-;11666:3;11687:67;11751:2;11746:3;11687:67;:::i;:::-;11680:74;;11763:93;11852:3;11763:93;:::i;:::-;11881:2;11876:3;11872:12;11865:19;;11670:220;;;:::o;11896:366::-;12038:3;12059:67;12123:2;12118:3;12059:67;:::i;:::-;12052:74;;12135:93;12224:3;12135:93;:::i;:::-;12253:2;12248:3;12244:12;12237:19;;12042:220;;;:::o;12268:366::-;12410:3;12431:67;12495:2;12490:3;12431:67;:::i;:::-;12424:74;;12507:93;12596:3;12507:93;:::i;:::-;12625:2;12620:3;12616:12;12609:19;;12414:220;;;:::o;12640:366::-;12782:3;12803:67;12867:2;12862:3;12803:67;:::i;:::-;12796:74;;12879:93;12968:3;12879:93;:::i;:::-;12997:2;12992:3;12988:12;12981:19;;12786:220;;;:::o;13012:365::-;13154:3;13175:66;13239:1;13234:3;13175:66;:::i;:::-;13168:73;;13250:93;13339:3;13250:93;:::i;:::-;13368:2;13363:3;13359:12;13352:19;;13158:219;;;:::o;13383:366::-;13525:3;13546:67;13610:2;13605:3;13546:67;:::i;:::-;13539:74;;13622:93;13711:3;13622:93;:::i;:::-;13740:2;13735:3;13731:12;13724:19;;13529:220;;;:::o;13755:366::-;13897:3;13918:67;13982:2;13977:3;13918:67;:::i;:::-;13911:74;;13994:93;14083:3;13994:93;:::i;:::-;14112:2;14107:3;14103:12;14096:19;;13901:220;;;:::o;14127:118::-;14214:24;14232:5;14214:24;:::i;:::-;14209:3;14202:37;14192:53;;:::o;14251:256::-;14363:3;14378:75;14449:3;14440:6;14378:75;:::i;:::-;14478:2;14473:3;14469:12;14462:19;;14498:3;14491:10;;14367:140;;;;:::o;14513:435::-;14693:3;14715:95;14806:3;14797:6;14715:95;:::i;:::-;14708:102;;14827:95;14918:3;14909:6;14827:95;:::i;:::-;14820:102;;14939:3;14932:10;;14697:251;;;;;:::o;14954:222::-;15047:4;15085:2;15074:9;15070:18;15062:26;;15098:71;15166:1;15155:9;15151:17;15142:6;15098:71;:::i;:::-;15052:124;;;;:::o;15182:254::-;15291:4;15329:2;15318:9;15314:18;15306:26;;15342:87;15426:1;15415:9;15411:17;15402:6;15342:87;:::i;:::-;15296:140;;;;:::o;15442:640::-;15637:4;15675:3;15664:9;15660:19;15652:27;;15689:71;15757:1;15746:9;15742:17;15733:6;15689:71;:::i;:::-;15770:72;15838:2;15827:9;15823:18;15814:6;15770:72;:::i;:::-;15852;15920:2;15909:9;15905:18;15896:6;15852:72;:::i;:::-;15971:9;15965:4;15961:20;15956:2;15945:9;15941:18;15934:48;15999:76;16070:4;16061:6;15999:76;:::i;:::-;15991:84;;15642:440;;;;;;;:::o;16088:210::-;16175:4;16213:2;16202:9;16198:18;16190:26;;16226:65;16288:1;16277:9;16273:17;16264:6;16226:65;:::i;:::-;16180:118;;;;:::o;16304:222::-;16397:4;16435:2;16424:9;16420:18;16412:26;;16448:71;16516:1;16505:9;16501:17;16492:6;16448:71;:::i;:::-;16402:124;;;;:::o;16532:313::-;16645:4;16683:2;16672:9;16668:18;16660:26;;16732:9;16726:4;16722:20;16718:1;16707:9;16703:17;16696:47;16760:78;16833:4;16824:6;16760:78;:::i;:::-;16752:86;;16650:195;;;;:::o;16851:419::-;17017:4;17055:2;17044:9;17040:18;17032:26;;17104:9;17098:4;17094:20;17090:1;17079:9;17075:17;17068:47;17132:131;17258:4;17132:131;:::i;:::-;17124:139;;17022:248;;;:::o;17276:419::-;17442:4;17480:2;17469:9;17465:18;17457:26;;17529:9;17523:4;17519:20;17515:1;17504:9;17500:17;17493:47;17557:131;17683:4;17557:131;:::i;:::-;17549:139;;17447:248;;;:::o;17701:419::-;17867:4;17905:2;17894:9;17890:18;17882:26;;17954:9;17948:4;17944:20;17940:1;17929:9;17925:17;17918:47;17982:131;18108:4;17982:131;:::i;:::-;17974:139;;17872:248;;;:::o;18126:419::-;18292:4;18330:2;18319:9;18315:18;18307:26;;18379:9;18373:4;18369:20;18365:1;18354:9;18350:17;18343:47;18407:131;18533:4;18407:131;:::i;:::-;18399:139;;18297:248;;;:::o;18551:419::-;18717:4;18755:2;18744:9;18740:18;18732:26;;18804:9;18798:4;18794:20;18790:1;18779:9;18775:17;18768:47;18832:131;18958:4;18832:131;:::i;:::-;18824:139;;18722:248;;;:::o;18976:419::-;19142:4;19180:2;19169:9;19165:18;19157:26;;19229:9;19223:4;19219:20;19215:1;19204:9;19200:17;19193:47;19257:131;19383:4;19257:131;:::i;:::-;19249:139;;19147:248;;;:::o;19401:419::-;19567:4;19605:2;19594:9;19590:18;19582:26;;19654:9;19648:4;19644:20;19640:1;19629:9;19625:17;19618:47;19682:131;19808:4;19682:131;:::i;:::-;19674:139;;19572:248;;;:::o;19826:419::-;19992:4;20030:2;20019:9;20015:18;20007:26;;20079:9;20073:4;20069:20;20065:1;20054:9;20050:17;20043:47;20107:131;20233:4;20107:131;:::i;:::-;20099:139;;19997:248;;;:::o;20251:419::-;20417:4;20455:2;20444:9;20440:18;20432:26;;20504:9;20498:4;20494:20;20490:1;20479:9;20475:17;20468:47;20532:131;20658:4;20532:131;:::i;:::-;20524:139;;20422:248;;;:::o;20676:419::-;20842:4;20880:2;20869:9;20865:18;20857:26;;20929:9;20923:4;20919:20;20915:1;20904:9;20900:17;20893:47;20957:131;21083:4;20957:131;:::i;:::-;20949:139;;20847:248;;;:::o;21101:222::-;21194:4;21232:2;21221:9;21217:18;21209:26;;21245:71;21313:1;21302:9;21298:17;21289:6;21245:71;:::i;:::-;21199:124;;;;:::o;21329:129::-;21363:6;21390:20;;:::i;:::-;21380:30;;21419:33;21447:4;21439:6;21419:33;:::i;:::-;21370:88;;;:::o;21464:75::-;21497:6;21530:2;21524:9;21514:19;;21504:35;:::o;21545:311::-;21622:4;21712:18;21704:6;21701:30;21698:2;;;21734:18;;:::i;:::-;21698:2;21784:4;21776:6;21772:17;21764:25;;21844:4;21838;21834:15;21826:23;;21627:229;;;:::o;21862:307::-;21923:4;22013:18;22005:6;22002:30;21999:2;;;22035:18;;:::i;:::-;21999:2;22073:29;22095:6;22073:29;:::i;:::-;22065:37;;22157:4;22151;22147:15;22139:23;;21928:241;;;:::o;22175:308::-;22237:4;22327:18;22319:6;22316:30;22313:2;;;22349:18;;:::i;:::-;22313:2;22387:29;22409:6;22387:29;:::i;:::-;22379:37;;22471:4;22465;22461:15;22453:23;;22242:241;;;:::o;22489:98::-;22540:6;22574:5;22568:12;22558:22;;22547:40;;;:::o;22593:99::-;22645:6;22679:5;22673:12;22663:22;;22652:40;;;:::o;22698:168::-;22781:11;22815:6;22810:3;22803:19;22855:4;22850:3;22846:14;22831:29;;22793:73;;;;:::o;22872:169::-;22956:11;22990:6;22985:3;22978:19;23030:4;23025:3;23021:14;23006:29;;22968:73;;;;:::o;23047:148::-;23149:11;23186:3;23171:18;;23161:34;;;;:::o;23201:305::-;23241:3;23260:20;23278:1;23260:20;:::i;:::-;23255:25;;23294:20;23312:1;23294:20;:::i;:::-;23289:25;;23448:1;23380:66;23376:74;23373:1;23370:81;23367:2;;;23454:18;;:::i;:::-;23367:2;23498:1;23495;23491:9;23484:16;;23245:261;;;;:::o;23512:348::-;23552:7;23575:20;23593:1;23575:20;:::i;:::-;23570:25;;23609:20;23627:1;23609:20;:::i;:::-;23604:25;;23797:1;23729:66;23725:74;23722:1;23719:81;23714:1;23707:9;23700:17;23696:105;23693:2;;;23804:18;;:::i;:::-;23693:2;23852:1;23849;23845:9;23834:20;;23560:300;;;;:::o;23866:191::-;23906:4;23926:20;23944:1;23926:20;:::i;:::-;23921:25;;23960:20;23978:1;23960:20;:::i;:::-;23955:25;;23999:1;23996;23993:8;23990:2;;;24004:18;;:::i;:::-;23990:2;24049:1;24046;24042:9;24034:17;;23911:146;;;;:::o;24063:96::-;24100:7;24129:24;24147:5;24129:24;:::i;:::-;24118:35;;24108:51;;;:::o;24165:104::-;24210:7;24239:24;24257:5;24239:24;:::i;:::-;24228:35;;24218:51;;;:::o;24275:90::-;24309:7;24352:5;24345:13;24338:21;24327:32;;24317:48;;;:::o;24371:77::-;24408:7;24437:5;24426:16;;24416:32;;;:::o;24454:149::-;24490:7;24530:66;24523:5;24519:78;24508:89;;24498:105;;;:::o;24609:126::-;24646:7;24686:42;24679:5;24675:54;24664:65;;24654:81;;;:::o;24741:77::-;24778:7;24807:5;24796:16;;24786:32;;;:::o;24824:154::-;24908:6;24903:3;24898;24885:30;24970:1;24961:6;24956:3;24952:16;24945:27;24875:103;;;:::o;24984:307::-;25052:1;25062:113;25076:6;25073:1;25070:13;25062:113;;;25161:1;25156:3;25152:11;25146:18;25142:1;25137:3;25133:11;25126:39;25098:2;25095:1;25091:10;25086:15;;25062:113;;;25193:6;25190:1;25187:13;25184:2;;;25273:1;25264:6;25259:3;25255:16;25248:27;25184:2;25033:258;;;;:::o;25297:320::-;25341:6;25378:1;25372:4;25368:12;25358:22;;25425:1;25419:4;25415:12;25446:18;25436:2;;25502:4;25494:6;25490:17;25480:27;;25436:2;25564;25556:6;25553:14;25533:18;25530:38;25527:2;;;25583:18;;:::i;:::-;25527:2;25348:269;;;;:::o;25623:281::-;25706:27;25728:4;25706:27;:::i;:::-;25698:6;25694:40;25836:6;25824:10;25821:22;25800:18;25788:10;25785:34;25782:62;25779:2;;;25847:18;;:::i;:::-;25779:2;25887:10;25883:2;25876:22;25666:238;;;:::o;25910:233::-;25949:3;25972:24;25990:5;25972:24;:::i;:::-;25963:33;;26018:66;26011:5;26008:77;26005:2;;;26088:18;;:::i;:::-;26005:2;26135:1;26128:5;26124:13;26117:20;;25953:190;;;:::o;26149:100::-;26188:7;26217:26;26237:5;26217:26;:::i;:::-;26206:37;;26196:53;;;:::o;26255:94::-;26294:7;26323:20;26337:5;26323:20;:::i;:::-;26312:31;;26302:47;;;:::o;26355:180::-;26403:77;26400:1;26393:88;26500:4;26497:1;26490:15;26524:4;26521:1;26514:15;26541:180;26589:77;26586:1;26579:88;26686:4;26683:1;26676:15;26710:4;26707:1;26700:15;26727:180;26775:77;26772:1;26765:88;26872:4;26869:1;26862:15;26896:4;26893:1;26886:15;26913:102;26954:6;27005:2;27001:7;26996:2;26989:5;26985:14;26981:28;26971:38;;26961:54;;;:::o;27021:94::-;27054:8;27102:5;27098:2;27094:14;27073:35;;27063:52;;;:::o;27121:172::-;27261:24;27257:1;27249:6;27245:14;27238:48;27227:66;:::o;27299:225::-;27439:34;27435:1;27427:6;27423:14;27416:58;27508:8;27503:2;27495:6;27491:15;27484:33;27405:119;:::o;27530:177::-;27670:29;27666:1;27658:6;27654:14;27647:53;27636:71;:::o;27713:176::-;27853:28;27849:1;27841:6;27837:14;27830:52;27819:70;:::o;27895:182::-;28035:34;28031:1;28023:6;28019:14;28012:58;28001:76;:::o;28083:170::-;28223:22;28219:1;28211:6;28207:14;28200:46;28189:64;:::o;28259:177::-;28399:29;28395:1;28387:6;28383:14;28376:53;28365:71;:::o;28442:158::-;28582:10;28578:1;28570:6;28566:14;28559:34;28548:52;:::o;28606:223::-;28746:34;28742:1;28734:6;28730:14;28723:58;28815:6;28810:2;28802:6;28798:15;28791:31;28712:117;:::o;28835:224::-;28975:34;28971:1;28963:6;28959:14;28952:58;29044:7;29039:2;29031:6;29027:15;29020:32;28941:118;:::o;29065:122::-;29138:24;29156:5;29138:24;:::i;:::-;29131:5;29128:35;29118:2;;29177:1;29174;29167:12;29118:2;29108:79;:::o;29193:116::-;29263:21;29278:5;29263:21;:::i;:::-;29256:5;29253:32;29243:2;;29299:1;29296;29289:12;29243:2;29233:76;:::o;29315:122::-;29388:24;29406:5;29388:24;:::i;:::-;29381:5;29378:35;29368:2;;29427:1;29424;29417:12;29368:2;29358:79;:::o;29443:120::-;29515:23;29532:5;29515:23;:::i;:::-;29508:5;29505:34;29495:2;;29553:1;29550;29543:12;29495:2;29485:78;:::o;29569:122::-;29642:24;29660:5;29642:24;:::i;:::-;29635:5;29632:35;29622:2;;29681:1;29678;29671:12;29622:2;29612:79;:::o

Swarm Source

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