ETH Price: $2,896.80 (-4.98%)
Gas: 3 Gwei

Token

Seisdalo by Dela De Artes (SD)
 

Overview

Max Total Supply

666 SD

Holders

460

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SD
0x99095809091f53f0521fd16f3fe6fb8593501cfd
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:
Seisdalo

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-19
*/

// Seisdalo by Dalo De Artes
// File: @openzeppelin/contracts/utils/Strings.sol
// SPDX-License-Identifier: MIT


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/extensions/IERC721AQueryable.sol


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

pragma solidity ^0.8.4;


/**
 * @dev Interface of an ERC721AQueryable compliant contract.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

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

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

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

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

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

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

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

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

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

// File: erc721a/contracts/extensions/ERC721AQueryable.sol


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

pragma solidity ^0.8.4;



/**
 * @title ERC721A Queryable
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *   - `extraData` = `0`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *   - `extraData` = `<Extra data when token was burned>`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     *   - `extraData` = `<Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

// File: contracts/Seisdalo.sol



pragma solidity ^0.8.4;





contract Seisdalo is ERC721A, ERC721AQueryable, Ownable {

  using Strings for uint256;
  
  uint256 MAX_SUPPLY = 666;
  uint256 MAX_FREE_PER_WALLET = 1;
  uint256 MAX_PER_TRANSACTION = 5;
  uint256 MINT_PRICE = 0 ether;
  uint256 EXTRA_MINT_PRICE = 0.005 ether;

  string tokenBaseUri = "ipfs://bafybeiatgdf2m6xaghjax6nqbp6jvcsytlnolcsj6wn5al3lnqbvudejme/";

  bool public paused = false;

  mapping(address => uint256) private _freeMintedCount;

  constructor() ERC721A("Seisdalo by Dela De Artes", "SD") {}

  function mint(uint256 _quantity) external payable {
    unchecked {
      require(!paused, "Minting paused");

      uint256 _totalSupply = totalSupply();

      require(_totalSupply + _quantity < MAX_SUPPLY + 1, "No more Seisdela");
      require(_quantity < MAX_PER_TRANSACTION + 1, "Max per transaction is 5");
      require(tx.origin == msg.sender, "No contracts allowed");

      uint256 payCount = _quantity;
      uint256 freeMintCount = _freeMintedCount[msg.sender];

      if (freeMintCount < 1) {
        if (_quantity > 1) {
          payCount = _quantity - 1;
        } else {
          payCount = 0;
        }

        _freeMintedCount[msg.sender] = 1;
      }

      require(
        msg.value == payCount * EXTRA_MINT_PRICE,
        "INCORRECT ETH AMOUNT"
      );

      _mint(msg.sender, _quantity);
    }
  }

  function freeMintedCount(address owner) external view returns (uint256) {
    return _freeMintedCount[owner];
  }

  function _startTokenId() internal pure override returns (uint256) {
    return 1;
  }

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

  function setBaseURI(string calldata _newBaseUri) external onlyOwner {
    tokenBaseUri = _newBaseUri;
  }

  function flipSale() external onlyOwner {
    paused = !paused;
  }

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token');

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), ".json"))
        : '';
  }


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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"freeMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261029a6009556001600a556005600b556000600c556611c37937e08000600d5560405180608001604052806043815260200162003aab60439139600e90805190602001906200005592919062000232565b506000600f60006101000a81548160ff0219169083151502179055503480156200007e57600080fd5b506040518060400160405280601981526020017f5365697364616c6f2062792044656c61204465204172746573000000000000008152506040518060400160405280600281526020017f534400000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200010392919062000232565b5080600390805190602001906200011c92919062000232565b506200012d6200015b60201b60201c565b600081905550505062000155620001496200016460201b60201c565b6200016c60201b60201c565b62000347565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024090620002e2565b90600052602060002090601f016020900481019282620002645760008555620002b0565b82601f106200027f57805160ff1916838001178555620002b0565b82800160010185558215620002b0579182015b82811115620002af57825182559160200191906001019062000292565b5b509050620002bf9190620002c3565b5090565b5b80821115620002de576000816000905550600101620002c4565b5090565b60006002820490506001821680620002fb57607f821691505b6020821081141562000312576200031162000318565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61375480620003576000396000f3fe60806040526004361061019c5760003560e01c8063715018a6116100ec578063a0712d681161008a578063c23dc68f11610064578063c23dc68f146105b7578063c87b56dd146105f4578063e985e9c514610631578063f2fde38b1461066e5761019c565b8063a0712d6814610549578063a22cb46514610565578063b88d4fde1461058e5761019c565b80638da5cb5b116100c65780638da5cb5b1461047957806395d89b41146104a457806398133235146104cf57806399a2557a1461050c5761019c565b8063715018a61461040e5780637ba5e621146104255780638462151c1461043c5761019c565b80633ccfd60b116101595780635bbb2177116101335780635bbb21771461032c5780635c975abb146103695780636352211e1461039457806370a08231146103d15761019c565b80633ccfd60b146102c357806342842e0e146102da57806355f804b3146103035761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd1461026f57806323b872dd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c391906128f0565b610697565b6040516101d59190612ec2565b60405180910390f35b3480156101ea57600080fd5b506101f3610729565b6040516102009190612edd565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612997565b6107bb565b60405161023d9190612e17565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612814565b610837565b005b34801561027b57600080fd5b50610284610978565b604051610291919061301a565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc91906126fe565b61098f565b005b3480156102cf57600080fd5b506102d8610cb4565b005b3480156102e657600080fd5b5061030160048036038101906102fc91906126fe565b610d3c565b005b34801561030f57600080fd5b5061032a6004803603810190610325919061294a565b610d5c565b005b34801561033857600080fd5b50610353600480360381019061034e91906128a7565b610d7a565b6040516103609190612e7e565b60405180910390f35b34801561037557600080fd5b5061037e610e3b565b60405161038b9190612ec2565b60405180910390f35b3480156103a057600080fd5b506103bb60048036038101906103b69190612997565b610e4e565b6040516103c89190612e17565b60405180910390f35b3480156103dd57600080fd5b506103f860048036038101906103f39190612691565b610e60565b604051610405919061301a565b60405180910390f35b34801561041a57600080fd5b50610423610f19565b005b34801561043157600080fd5b5061043a610f2d565b005b34801561044857600080fd5b50610463600480360381019061045e9190612691565b610f61565b6040516104709190612ea0565b60405180910390f35b34801561048557600080fd5b5061048e6110ab565b60405161049b9190612e17565b60405180910390f35b3480156104b057600080fd5b506104b96110d5565b6040516104c69190612edd565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f19190612691565b611167565b604051610503919061301a565b60405180910390f35b34801561051857600080fd5b50610533600480360381019061052e9190612854565b6111b0565b6040516105409190612ea0565b60405180910390f35b610563600480360381019061055e9190612997565b6113c4565b005b34801561057157600080fd5b5061058c600480360381019061058791906127d4565b611625565b005b34801561059a57600080fd5b506105b560048036038101906105b09190612751565b61179d565b005b3480156105c357600080fd5b506105de60048036038101906105d99190612997565b611810565b6040516105eb9190612fff565b60405180910390f35b34801561060057600080fd5b5061061b60048036038101906106169190612997565b61187a565b6040516106289190612edd565b60405180910390f35b34801561063d57600080fd5b50610658600480360381019061065391906126be565b611921565b6040516106659190612ec2565b60405180910390f35b34801561067a57600080fd5b5061069560048036038101906106909190612691565b6119b5565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106f257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107225750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107389061330b565b80601f01602080910402602001604051908101604052809291908181526020018280546107649061330b565b80156107b15780601f10610786576101008083540402835291602001916107b1565b820191906000526020600020905b81548152906001019060200180831161079457829003601f168201915b5050505050905090565b60006107c682611a39565b6107fc576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061084282610e4e565b90508073ffffffffffffffffffffffffffffffffffffffff16610863611a98565b73ffffffffffffffffffffffffffffffffffffffff16146108c65761088f8161088a611a98565b611921565b6108c5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610982611aa0565b6001546000540303905090565b600061099a82611aa9565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a01576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a0d84611b77565b91509150610a238187610a1e611a98565b611b99565b610a6f57610a3886610a33611a98565b611921565b610a6e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ad6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ae38686866001611bdd565b8015610aee57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bbc85610b98888887611be3565b7c020000000000000000000000000000000000000000000000000000000017611c0b565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c44576000600185019050600060046000838152602001908152602001600020541415610c42576000548114610c41578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cac8686866001611c36565b505050505050565b610cbc611c3c565b6000610cc66110ab565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ce990612e02565b60006040518083038185875af1925050503d8060008114610d26576040519150601f19603f3d011682016040523d82523d6000602084013e610d2b565b606091505b5050905080610d3957600080fd5b50565b610d578383836040518060200160405280600081525061179d565b505050565b610d64611c3c565b8181600e9190610d759291906123d2565b505050565b606060008251905060008167ffffffffffffffff811115610d9e57610d9d6134a4565b5b604051908082528060200260200182016040528015610dd757816020015b610dc4612458565b815260200190600190039081610dbc5790505b50905060005b828114610e3057610e07858281518110610dfa57610df9613475565b5b6020026020010151611810565b828281518110610e1a57610e19613475565b5b6020026020010181905250806001019050610ddd565b508092505050919050565b600f60009054906101000a900460ff1681565b6000610e5982611aa9565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ec8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f21611c3c565b610f2b6000611cba565b565b610f35611c3c565b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b60606000806000610f7185610e60565b905060008167ffffffffffffffff811115610f8f57610f8e6134a4565b5b604051908082528060200260200182016040528015610fbd5781602001602082028036833780820191505090505b509050610fc8612458565b6000610fd2611aa0565b90505b83861461109d57610fe581611d80565b9150816040015115610ff657611092565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461103657816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611091578083878060010198508151811061108457611083613475565b5b6020026020010181815250505b5b806001019050610fd5565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110e49061330b565b80601f01602080910402602001604051908101604052809291908181526020018280546111109061330b565b801561115d5780601f106111325761010080835404028352916020019161115d565b820191906000526020600020905b81548152906001019060200180831161114057829003601f168201915b5050505050905090565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60608183106111eb576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806111f6611dab565b9050611200611aa0565b8510156112125761120f611aa0565b94505b8084111561121e578093505b600061122987610e60565b90508486101561124c576000868603905081811015611246578091505b50611251565b600090505b60008167ffffffffffffffff81111561126d5761126c6134a4565b5b60405190808252806020026020018201604052801561129b5781602001602082028036833780820191505090505b50905060008214156112b357809450505050506113bd565b60006112be88611810565b9050600081604001516112d357816000015190505b60008990505b8881141580156112e95750848714155b156113af576112f781611d80565b9250826040015115611308576113a4565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461134857826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113a3578084888060010199508151811061139657611395613475565b5b6020026020010181815250505b5b8060010190506112d9565b508583528296505050505050505b9392505050565b600f60009054906101000a900460ff1615611414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140b90612eff565b60405180910390fd5b600061141e610978565b905060016009540182820110611469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146090612f9f565b60405180910390fd5b6001600b540182106114b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a790612f3f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461151e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151590612fdf565b60405180910390fd5b60008290506000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060018110156115cf57600184111561158457600184039150611589565b600091505b6001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600d5482023414611615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160c90612fbf565b60405180910390fd5b61161f3385611db4565b50505050565b61162d611a98565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611692576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061169f611a98565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661174c611a98565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117919190612ec2565b60405180910390a35050565b6117a884848461098f565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461180a576117d384848484611f88565b611809576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611818612458565b611820612458565b611828611aa0565b83108061183c5750611838611dab565b8310155b1561184a5780915050611875565b61185383611d80565b90508060400151156118685780915050611875565b611871836120e8565b9150505b919050565b606061188582611a39565b6118c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bb90612f7f565b60405180910390fd5b60006118ce612108565b905060008151116118ee5760405180602001604052806000815250611919565b806118f88461219a565b604051602001611909929190612dd3565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119bd611c3c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2490612f1f565b60405180910390fd5b611a3681611cba565b50565b600081611a44611aa0565b11158015611a53575060005482105b8015611a91575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611ab8611aa0565b11611b4057600054811015611b3f5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611b3d575b6000811415611b33576004600083600190039350838152602001908152602001600020549050611b08565b8092505050611b72565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611bfa8686846122fb565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611c44612304565b73ffffffffffffffffffffffffffffffffffffffff16611c626110ab565b73ffffffffffffffffffffffffffffffffffffffff1614611cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caf90612f5f565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d88612458565b611da4600460008481526020019081526020016000205461230c565b9050919050565b60008054905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e21576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415611e5c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e696000848385611bdd565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611ee083611ed16000866000611be3565b611eda856123c2565b17611c0b565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611f0457806000819055505050611f836000848385611c36565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fae611a98565b8786866040518563ffffffff1660e01b8152600401611fd09493929190612e32565b602060405180830381600087803b158015611fea57600080fd5b505af192505050801561201b57506040513d601f19601f82011682018060405250810190612018919061291d565b60015b612095573d806000811461204b576040519150601f19603f3d011682016040523d82523d6000602084013e612050565b606091505b5060008151141561208d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6120f0612458565b6121016120fc83611aa9565b61230c565b9050919050565b6060600e80546121179061330b565b80601f01602080910402602001604051908101604052809291908181526020018280546121439061330b565b80156121905780601f1061216557610100808354040283529160200191612190565b820191906000526020600020905b81548152906001019060200180831161217357829003601f168201915b5050505050905090565b606060008214156121e2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122f6565b600082905060005b600082146122145780806121fd9061336e565b915050600a8261220d91906131cd565b91506121ea565b60008167ffffffffffffffff8111156122305761222f6134a4565b5b6040519080825280601f01601f1916602001820160405280156122625781602001600182028036833780820191505090505b5090505b600085146122ef5760018261227b91906131fe565b9150600a8561228a91906133b7565b60306122969190613177565b60f81b8183815181106122ac576122ab613475565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122e891906131cd565b9450612266565b8093505050505b919050565b60009392505050565b600033905090565b612314612458565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60006001821460e11b9050919050565b8280546123de9061330b565b90600052602060002090601f0160209004810192826124005760008555612447565b82601f1061241957803560ff1916838001178555612447565b82800160010185558215612447579182015b8281111561244657823582559160200191906001019061242b565b5b50905061245491906124a7565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b808211156124c05760008160009055506001016124a8565b5090565b60006124d76124d28461305a565b613035565b905080838252602082019050828560208602820111156124fa576124f96134dd565b5b60005b8581101561252a5781612510888261267c565b8452602084019350602083019250506001810190506124fd565b5050509392505050565b600061254761254284613086565b613035565b905082815260208101848484011115612563576125626134e2565b5b61256e8482856132c9565b509392505050565b600081359050612585816136c2565b92915050565b600082601f8301126125a05761259f6134d8565b5b81356125b08482602086016124c4565b91505092915050565b6000813590506125c8816136d9565b92915050565b6000813590506125dd816136f0565b92915050565b6000815190506125f2816136f0565b92915050565b600082601f83011261260d5761260c6134d8565b5b813561261d848260208601612534565b91505092915050565b60008083601f84011261263c5761263b6134d8565b5b8235905067ffffffffffffffff811115612659576126586134d3565b5b602083019150836001820283011115612675576126746134dd565b5b9250929050565b60008135905061268b81613707565b92915050565b6000602082840312156126a7576126a66134ec565b5b60006126b584828501612576565b91505092915050565b600080604083850312156126d5576126d46134ec565b5b60006126e385828601612576565b92505060206126f485828601612576565b9150509250929050565b600080600060608486031215612717576127166134ec565b5b600061272586828701612576565b935050602061273686828701612576565b92505060406127478682870161267c565b9150509250925092565b6000806000806080858703121561276b5761276a6134ec565b5b600061277987828801612576565b945050602061278a87828801612576565b935050604061279b8782880161267c565b925050606085013567ffffffffffffffff8111156127bc576127bb6134e7565b5b6127c8878288016125f8565b91505092959194509250565b600080604083850312156127eb576127ea6134ec565b5b60006127f985828601612576565b925050602061280a858286016125b9565b9150509250929050565b6000806040838503121561282b5761282a6134ec565b5b600061283985828601612576565b925050602061284a8582860161267c565b9150509250929050565b60008060006060848603121561286d5761286c6134ec565b5b600061287b86828701612576565b935050602061288c8682870161267c565b925050604061289d8682870161267c565b9150509250925092565b6000602082840312156128bd576128bc6134ec565b5b600082013567ffffffffffffffff8111156128db576128da6134e7565b5b6128e78482850161258b565b91505092915050565b600060208284031215612906576129056134ec565b5b6000612914848285016125ce565b91505092915050565b600060208284031215612933576129326134ec565b5b6000612941848285016125e3565b91505092915050565b60008060208385031215612961576129606134ec565b5b600083013567ffffffffffffffff81111561297f5761297e6134e7565b5b61298b85828601612626565b92509250509250929050565b6000602082840312156129ad576129ac6134ec565b5b60006129bb8482850161267c565b91505092915050565b60006129d08383612ced565b60808301905092915050565b60006129e88383612da6565b60208301905092915050565b6129fd81613232565b82525050565b612a0c81613232565b82525050565b6000612a1d826130d7565b612a27818561311d565b9350612a32836130b7565b8060005b83811015612a63578151612a4a88826129c4565b9750612a5583613103565b925050600181019050612a36565b5085935050505092915050565b6000612a7b826130e2565b612a85818561312e565b9350612a90836130c7565b8060005b83811015612ac1578151612aa888826129dc565b9750612ab383613110565b925050600181019050612a94565b5085935050505092915050565b612ad781613244565b82525050565b612ae681613244565b82525050565b6000612af7826130ed565b612b01818561313f565b9350612b118185602086016132d8565b612b1a816134f1565b840191505092915050565b6000612b30826130f8565b612b3a818561315b565b9350612b4a8185602086016132d8565b612b53816134f1565b840191505092915050565b6000612b69826130f8565b612b73818561316c565b9350612b838185602086016132d8565b80840191505092915050565b6000612b9c600e8361315b565b9150612ba782613502565b602082019050919050565b6000612bbf60268361315b565b9150612bca8261352b565b604082019050919050565b6000612be260188361315b565b9150612bed8261357a565b602082019050919050565b6000612c0560058361316c565b9150612c10826135a3565b600582019050919050565b6000612c2860208361315b565b9150612c33826135cc565b602082019050919050565b6000612c4b602f8361315b565b9150612c56826135f5565b604082019050919050565b6000612c6e60108361315b565b9150612c7982613644565b602082019050919050565b6000612c91600083613150565b9150612c9c8261366d565b600082019050919050565b6000612cb460148361315b565b9150612cbf82613670565b602082019050919050565b6000612cd760148361315b565b9150612ce282613699565b602082019050919050565b608082016000820151612d0360008501826129f4565b506020820151612d166020850182612dc4565b506040820151612d296040850182612ace565b506060820151612d3c6060850182612d97565b50505050565b608082016000820151612d5860008501826129f4565b506020820151612d6b6020850182612dc4565b506040820151612d7e6040850182612ace565b506060820151612d916060850182612d97565b50505050565b612da08161329c565b82525050565b612daf816132ab565b82525050565b612dbe816132ab565b82525050565b612dcd816132b5565b82525050565b6000612ddf8285612b5e565b9150612deb8284612b5e565b9150612df682612bf8565b91508190509392505050565b6000612e0d82612c84565b9150819050919050565b6000602082019050612e2c6000830184612a03565b92915050565b6000608082019050612e476000830187612a03565b612e546020830186612a03565b612e616040830185612db5565b8181036060830152612e738184612aec565b905095945050505050565b60006020820190508181036000830152612e988184612a12565b905092915050565b60006020820190508181036000830152612eba8184612a70565b905092915050565b6000602082019050612ed76000830184612add565b92915050565b60006020820190508181036000830152612ef78184612b25565b905092915050565b60006020820190508181036000830152612f1881612b8f565b9050919050565b60006020820190508181036000830152612f3881612bb2565b9050919050565b60006020820190508181036000830152612f5881612bd5565b9050919050565b60006020820190508181036000830152612f7881612c1b565b9050919050565b60006020820190508181036000830152612f9881612c3e565b9050919050565b60006020820190508181036000830152612fb881612c61565b9050919050565b60006020820190508181036000830152612fd881612ca7565b9050919050565b60006020820190508181036000830152612ff881612cca565b9050919050565b60006080820190506130146000830184612d42565b92915050565b600060208201905061302f6000830184612db5565b92915050565b600061303f613050565b905061304b828261333d565b919050565b6000604051905090565b600067ffffffffffffffff821115613075576130746134a4565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156130a1576130a06134a4565b5b6130aa826134f1565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613182826132ab565b915061318d836132ab565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131c2576131c16133e8565b5b828201905092915050565b60006131d8826132ab565b91506131e3836132ab565b9250826131f3576131f2613417565b5b828204905092915050565b6000613209826132ab565b9150613214836132ab565b925082821015613227576132266133e8565b5b828203905092915050565b600061323d8261327c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156132f65780820151818401526020810190506132db565b83811115613305576000848401525b50505050565b6000600282049050600182168061332357607f821691505b6020821081141561333757613336613446565b5b50919050565b613346826134f1565b810181811067ffffffffffffffff82111715613365576133646134a4565b5b80604052505050565b6000613379826132ab565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133ac576133ab6133e8565b5b600182019050919050565b60006133c2826132ab565b91506133cd836132ab565b9250826133dd576133dc613417565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e74696e6720706175736564000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d617820706572207472616e73616374696f6e20697320350000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f206d6f7265205365697364656c6100000000000000000000000000000000600082015250565b50565b7f494e434f52524543542045544820414d4f554e54000000000000000000000000600082015250565b7f4e6f20636f6e74726163747320616c6c6f776564000000000000000000000000600082015250565b6136cb81613232565b81146136d657600080fd5b50565b6136e281613244565b81146136ed57600080fd5b50565b6136f981613250565b811461370457600080fd5b50565b613710816132ab565b811461371b57600080fd5b5056fea26469706673582212203c22faca4bbc2a759894d72239e5e74356ffebd6f23d39ca1625b478c97bc3ec64736f6c63430008070033697066733a2f2f626166796265696174676466326d36786167686a6178366e716270366a76637379746c6e6f6c63736a36776e35616c336c6e7162767564656a6d652f

Deployed Bytecode

0x60806040526004361061019c5760003560e01c8063715018a6116100ec578063a0712d681161008a578063c23dc68f11610064578063c23dc68f146105b7578063c87b56dd146105f4578063e985e9c514610631578063f2fde38b1461066e5761019c565b8063a0712d6814610549578063a22cb46514610565578063b88d4fde1461058e5761019c565b80638da5cb5b116100c65780638da5cb5b1461047957806395d89b41146104a457806398133235146104cf57806399a2557a1461050c5761019c565b8063715018a61461040e5780637ba5e621146104255780638462151c1461043c5761019c565b80633ccfd60b116101595780635bbb2177116101335780635bbb21771461032c5780635c975abb146103695780636352211e1461039457806370a08231146103d15761019c565b80633ccfd60b146102c357806342842e0e146102da57806355f804b3146103035761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd1461026f57806323b872dd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c391906128f0565b610697565b6040516101d59190612ec2565b60405180910390f35b3480156101ea57600080fd5b506101f3610729565b6040516102009190612edd565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612997565b6107bb565b60405161023d9190612e17565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612814565b610837565b005b34801561027b57600080fd5b50610284610978565b604051610291919061301a565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc91906126fe565b61098f565b005b3480156102cf57600080fd5b506102d8610cb4565b005b3480156102e657600080fd5b5061030160048036038101906102fc91906126fe565b610d3c565b005b34801561030f57600080fd5b5061032a6004803603810190610325919061294a565b610d5c565b005b34801561033857600080fd5b50610353600480360381019061034e91906128a7565b610d7a565b6040516103609190612e7e565b60405180910390f35b34801561037557600080fd5b5061037e610e3b565b60405161038b9190612ec2565b60405180910390f35b3480156103a057600080fd5b506103bb60048036038101906103b69190612997565b610e4e565b6040516103c89190612e17565b60405180910390f35b3480156103dd57600080fd5b506103f860048036038101906103f39190612691565b610e60565b604051610405919061301a565b60405180910390f35b34801561041a57600080fd5b50610423610f19565b005b34801561043157600080fd5b5061043a610f2d565b005b34801561044857600080fd5b50610463600480360381019061045e9190612691565b610f61565b6040516104709190612ea0565b60405180910390f35b34801561048557600080fd5b5061048e6110ab565b60405161049b9190612e17565b60405180910390f35b3480156104b057600080fd5b506104b96110d5565b6040516104c69190612edd565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f19190612691565b611167565b604051610503919061301a565b60405180910390f35b34801561051857600080fd5b50610533600480360381019061052e9190612854565b6111b0565b6040516105409190612ea0565b60405180910390f35b610563600480360381019061055e9190612997565b6113c4565b005b34801561057157600080fd5b5061058c600480360381019061058791906127d4565b611625565b005b34801561059a57600080fd5b506105b560048036038101906105b09190612751565b61179d565b005b3480156105c357600080fd5b506105de60048036038101906105d99190612997565b611810565b6040516105eb9190612fff565b60405180910390f35b34801561060057600080fd5b5061061b60048036038101906106169190612997565b61187a565b6040516106289190612edd565b60405180910390f35b34801561063d57600080fd5b50610658600480360381019061065391906126be565b611921565b6040516106659190612ec2565b60405180910390f35b34801561067a57600080fd5b5061069560048036038101906106909190612691565b6119b5565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106f257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107225750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107389061330b565b80601f01602080910402602001604051908101604052809291908181526020018280546107649061330b565b80156107b15780601f10610786576101008083540402835291602001916107b1565b820191906000526020600020905b81548152906001019060200180831161079457829003601f168201915b5050505050905090565b60006107c682611a39565b6107fc576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061084282610e4e565b90508073ffffffffffffffffffffffffffffffffffffffff16610863611a98565b73ffffffffffffffffffffffffffffffffffffffff16146108c65761088f8161088a611a98565b611921565b6108c5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610982611aa0565b6001546000540303905090565b600061099a82611aa9565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a01576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a0d84611b77565b91509150610a238187610a1e611a98565b611b99565b610a6f57610a3886610a33611a98565b611921565b610a6e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ad6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ae38686866001611bdd565b8015610aee57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bbc85610b98888887611be3565b7c020000000000000000000000000000000000000000000000000000000017611c0b565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c44576000600185019050600060046000838152602001908152602001600020541415610c42576000548114610c41578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cac8686866001611c36565b505050505050565b610cbc611c3c565b6000610cc66110ab565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ce990612e02565b60006040518083038185875af1925050503d8060008114610d26576040519150601f19603f3d011682016040523d82523d6000602084013e610d2b565b606091505b5050905080610d3957600080fd5b50565b610d578383836040518060200160405280600081525061179d565b505050565b610d64611c3c565b8181600e9190610d759291906123d2565b505050565b606060008251905060008167ffffffffffffffff811115610d9e57610d9d6134a4565b5b604051908082528060200260200182016040528015610dd757816020015b610dc4612458565b815260200190600190039081610dbc5790505b50905060005b828114610e3057610e07858281518110610dfa57610df9613475565b5b6020026020010151611810565b828281518110610e1a57610e19613475565b5b6020026020010181905250806001019050610ddd565b508092505050919050565b600f60009054906101000a900460ff1681565b6000610e5982611aa9565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ec8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f21611c3c565b610f2b6000611cba565b565b610f35611c3c565b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b60606000806000610f7185610e60565b905060008167ffffffffffffffff811115610f8f57610f8e6134a4565b5b604051908082528060200260200182016040528015610fbd5781602001602082028036833780820191505090505b509050610fc8612458565b6000610fd2611aa0565b90505b83861461109d57610fe581611d80565b9150816040015115610ff657611092565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461103657816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611091578083878060010198508151811061108457611083613475565b5b6020026020010181815250505b5b806001019050610fd5565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110e49061330b565b80601f01602080910402602001604051908101604052809291908181526020018280546111109061330b565b801561115d5780601f106111325761010080835404028352916020019161115d565b820191906000526020600020905b81548152906001019060200180831161114057829003601f168201915b5050505050905090565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60608183106111eb576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806111f6611dab565b9050611200611aa0565b8510156112125761120f611aa0565b94505b8084111561121e578093505b600061122987610e60565b90508486101561124c576000868603905081811015611246578091505b50611251565b600090505b60008167ffffffffffffffff81111561126d5761126c6134a4565b5b60405190808252806020026020018201604052801561129b5781602001602082028036833780820191505090505b50905060008214156112b357809450505050506113bd565b60006112be88611810565b9050600081604001516112d357816000015190505b60008990505b8881141580156112e95750848714155b156113af576112f781611d80565b9250826040015115611308576113a4565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461134857826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113a3578084888060010199508151811061139657611395613475565b5b6020026020010181815250505b5b8060010190506112d9565b508583528296505050505050505b9392505050565b600f60009054906101000a900460ff1615611414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140b90612eff565b60405180910390fd5b600061141e610978565b905060016009540182820110611469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146090612f9f565b60405180910390fd5b6001600b540182106114b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a790612f3f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461151e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151590612fdf565b60405180910390fd5b60008290506000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060018110156115cf57600184111561158457600184039150611589565b600091505b6001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600d5482023414611615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160c90612fbf565b60405180910390fd5b61161f3385611db4565b50505050565b61162d611a98565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611692576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061169f611a98565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661174c611a98565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117919190612ec2565b60405180910390a35050565b6117a884848461098f565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461180a576117d384848484611f88565b611809576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611818612458565b611820612458565b611828611aa0565b83108061183c5750611838611dab565b8310155b1561184a5780915050611875565b61185383611d80565b90508060400151156118685780915050611875565b611871836120e8565b9150505b919050565b606061188582611a39565b6118c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bb90612f7f565b60405180910390fd5b60006118ce612108565b905060008151116118ee5760405180602001604052806000815250611919565b806118f88461219a565b604051602001611909929190612dd3565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119bd611c3c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2490612f1f565b60405180910390fd5b611a3681611cba565b50565b600081611a44611aa0565b11158015611a53575060005482105b8015611a91575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611ab8611aa0565b11611b4057600054811015611b3f5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611b3d575b6000811415611b33576004600083600190039350838152602001908152602001600020549050611b08565b8092505050611b72565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611bfa8686846122fb565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611c44612304565b73ffffffffffffffffffffffffffffffffffffffff16611c626110ab565b73ffffffffffffffffffffffffffffffffffffffff1614611cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caf90612f5f565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d88612458565b611da4600460008481526020019081526020016000205461230c565b9050919050565b60008054905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e21576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415611e5c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e696000848385611bdd565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611ee083611ed16000866000611be3565b611eda856123c2565b17611c0b565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611f0457806000819055505050611f836000848385611c36565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fae611a98565b8786866040518563ffffffff1660e01b8152600401611fd09493929190612e32565b602060405180830381600087803b158015611fea57600080fd5b505af192505050801561201b57506040513d601f19601f82011682018060405250810190612018919061291d565b60015b612095573d806000811461204b576040519150601f19603f3d011682016040523d82523d6000602084013e612050565b606091505b5060008151141561208d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6120f0612458565b6121016120fc83611aa9565b61230c565b9050919050565b6060600e80546121179061330b565b80601f01602080910402602001604051908101604052809291908181526020018280546121439061330b565b80156121905780601f1061216557610100808354040283529160200191612190565b820191906000526020600020905b81548152906001019060200180831161217357829003601f168201915b5050505050905090565b606060008214156121e2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122f6565b600082905060005b600082146122145780806121fd9061336e565b915050600a8261220d91906131cd565b91506121ea565b60008167ffffffffffffffff8111156122305761222f6134a4565b5b6040519080825280601f01601f1916602001820160405280156122625781602001600182028036833780820191505090505b5090505b600085146122ef5760018261227b91906131fe565b9150600a8561228a91906133b7565b60306122969190613177565b60f81b8183815181106122ac576122ab613475565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122e891906131cd565b9450612266565b8093505050505b919050565b60009392505050565b600033905090565b612314612458565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60006001821460e11b9050919050565b8280546123de9061330b565b90600052602060002090601f0160209004810192826124005760008555612447565b82601f1061241957803560ff1916838001178555612447565b82800160010185558215612447579182015b8281111561244657823582559160200191906001019061242b565b5b50905061245491906124a7565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b808211156124c05760008160009055506001016124a8565b5090565b60006124d76124d28461305a565b613035565b905080838252602082019050828560208602820111156124fa576124f96134dd565b5b60005b8581101561252a5781612510888261267c565b8452602084019350602083019250506001810190506124fd565b5050509392505050565b600061254761254284613086565b613035565b905082815260208101848484011115612563576125626134e2565b5b61256e8482856132c9565b509392505050565b600081359050612585816136c2565b92915050565b600082601f8301126125a05761259f6134d8565b5b81356125b08482602086016124c4565b91505092915050565b6000813590506125c8816136d9565b92915050565b6000813590506125dd816136f0565b92915050565b6000815190506125f2816136f0565b92915050565b600082601f83011261260d5761260c6134d8565b5b813561261d848260208601612534565b91505092915050565b60008083601f84011261263c5761263b6134d8565b5b8235905067ffffffffffffffff811115612659576126586134d3565b5b602083019150836001820283011115612675576126746134dd565b5b9250929050565b60008135905061268b81613707565b92915050565b6000602082840312156126a7576126a66134ec565b5b60006126b584828501612576565b91505092915050565b600080604083850312156126d5576126d46134ec565b5b60006126e385828601612576565b92505060206126f485828601612576565b9150509250929050565b600080600060608486031215612717576127166134ec565b5b600061272586828701612576565b935050602061273686828701612576565b92505060406127478682870161267c565b9150509250925092565b6000806000806080858703121561276b5761276a6134ec565b5b600061277987828801612576565b945050602061278a87828801612576565b935050604061279b8782880161267c565b925050606085013567ffffffffffffffff8111156127bc576127bb6134e7565b5b6127c8878288016125f8565b91505092959194509250565b600080604083850312156127eb576127ea6134ec565b5b60006127f985828601612576565b925050602061280a858286016125b9565b9150509250929050565b6000806040838503121561282b5761282a6134ec565b5b600061283985828601612576565b925050602061284a8582860161267c565b9150509250929050565b60008060006060848603121561286d5761286c6134ec565b5b600061287b86828701612576565b935050602061288c8682870161267c565b925050604061289d8682870161267c565b9150509250925092565b6000602082840312156128bd576128bc6134ec565b5b600082013567ffffffffffffffff8111156128db576128da6134e7565b5b6128e78482850161258b565b91505092915050565b600060208284031215612906576129056134ec565b5b6000612914848285016125ce565b91505092915050565b600060208284031215612933576129326134ec565b5b6000612941848285016125e3565b91505092915050565b60008060208385031215612961576129606134ec565b5b600083013567ffffffffffffffff81111561297f5761297e6134e7565b5b61298b85828601612626565b92509250509250929050565b6000602082840312156129ad576129ac6134ec565b5b60006129bb8482850161267c565b91505092915050565b60006129d08383612ced565b60808301905092915050565b60006129e88383612da6565b60208301905092915050565b6129fd81613232565b82525050565b612a0c81613232565b82525050565b6000612a1d826130d7565b612a27818561311d565b9350612a32836130b7565b8060005b83811015612a63578151612a4a88826129c4565b9750612a5583613103565b925050600181019050612a36565b5085935050505092915050565b6000612a7b826130e2565b612a85818561312e565b9350612a90836130c7565b8060005b83811015612ac1578151612aa888826129dc565b9750612ab383613110565b925050600181019050612a94565b5085935050505092915050565b612ad781613244565b82525050565b612ae681613244565b82525050565b6000612af7826130ed565b612b01818561313f565b9350612b118185602086016132d8565b612b1a816134f1565b840191505092915050565b6000612b30826130f8565b612b3a818561315b565b9350612b4a8185602086016132d8565b612b53816134f1565b840191505092915050565b6000612b69826130f8565b612b73818561316c565b9350612b838185602086016132d8565b80840191505092915050565b6000612b9c600e8361315b565b9150612ba782613502565b602082019050919050565b6000612bbf60268361315b565b9150612bca8261352b565b604082019050919050565b6000612be260188361315b565b9150612bed8261357a565b602082019050919050565b6000612c0560058361316c565b9150612c10826135a3565b600582019050919050565b6000612c2860208361315b565b9150612c33826135cc565b602082019050919050565b6000612c4b602f8361315b565b9150612c56826135f5565b604082019050919050565b6000612c6e60108361315b565b9150612c7982613644565b602082019050919050565b6000612c91600083613150565b9150612c9c8261366d565b600082019050919050565b6000612cb460148361315b565b9150612cbf82613670565b602082019050919050565b6000612cd760148361315b565b9150612ce282613699565b602082019050919050565b608082016000820151612d0360008501826129f4565b506020820151612d166020850182612dc4565b506040820151612d296040850182612ace565b506060820151612d3c6060850182612d97565b50505050565b608082016000820151612d5860008501826129f4565b506020820151612d6b6020850182612dc4565b506040820151612d7e6040850182612ace565b506060820151612d916060850182612d97565b50505050565b612da08161329c565b82525050565b612daf816132ab565b82525050565b612dbe816132ab565b82525050565b612dcd816132b5565b82525050565b6000612ddf8285612b5e565b9150612deb8284612b5e565b9150612df682612bf8565b91508190509392505050565b6000612e0d82612c84565b9150819050919050565b6000602082019050612e2c6000830184612a03565b92915050565b6000608082019050612e476000830187612a03565b612e546020830186612a03565b612e616040830185612db5565b8181036060830152612e738184612aec565b905095945050505050565b60006020820190508181036000830152612e988184612a12565b905092915050565b60006020820190508181036000830152612eba8184612a70565b905092915050565b6000602082019050612ed76000830184612add565b92915050565b60006020820190508181036000830152612ef78184612b25565b905092915050565b60006020820190508181036000830152612f1881612b8f565b9050919050565b60006020820190508181036000830152612f3881612bb2565b9050919050565b60006020820190508181036000830152612f5881612bd5565b9050919050565b60006020820190508181036000830152612f7881612c1b565b9050919050565b60006020820190508181036000830152612f9881612c3e565b9050919050565b60006020820190508181036000830152612fb881612c61565b9050919050565b60006020820190508181036000830152612fd881612ca7565b9050919050565b60006020820190508181036000830152612ff881612cca565b9050919050565b60006080820190506130146000830184612d42565b92915050565b600060208201905061302f6000830184612db5565b92915050565b600061303f613050565b905061304b828261333d565b919050565b6000604051905090565b600067ffffffffffffffff821115613075576130746134a4565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156130a1576130a06134a4565b5b6130aa826134f1565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613182826132ab565b915061318d836132ab565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131c2576131c16133e8565b5b828201905092915050565b60006131d8826132ab565b91506131e3836132ab565b9250826131f3576131f2613417565b5b828204905092915050565b6000613209826132ab565b9150613214836132ab565b925082821015613227576132266133e8565b5b828203905092915050565b600061323d8261327c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156132f65780820151818401526020810190506132db565b83811115613305576000848401525b50505050565b6000600282049050600182168061332357607f821691505b6020821081141561333757613336613446565b5b50919050565b613346826134f1565b810181811067ffffffffffffffff82111715613365576133646134a4565b5b80604052505050565b6000613379826132ab565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133ac576133ab6133e8565b5b600182019050919050565b60006133c2826132ab565b91506133cd836132ab565b9250826133dd576133dc613417565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e74696e6720706175736564000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d617820706572207472616e73616374696f6e20697320350000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f206d6f7265205365697364656c6100000000000000000000000000000000600082015250565b50565b7f494e434f52524543542045544820414d4f554e54000000000000000000000000600082015250565b7f4e6f20636f6e74726163747320616c6c6f776564000000000000000000000000600082015250565b6136cb81613232565b81146136d657600080fd5b50565b6136e281613244565b81146136ed57600080fd5b50565b6136f981613250565b811461370457600080fd5b50565b613710816132ab565b811461371b57600080fd5b5056fea26469706673582212203c22faca4bbc2a759894d72239e5e74356ffebd6f23d39ca1625b478c97bc3ec64736f6c63430008070033

Deployed Bytecode Sourcemap

59756:2418:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23161:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28808:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30754:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30302:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22215:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40019:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62034:137;;;;;;;;;;;;;:::i;:::-;;31644:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61468:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54971:468;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60130:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28597:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23840:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5336:103;;;;;;;;;;;;;:::i;:::-;;61581:68;;;;;;;;;;;;;:::i;:::-;;58783:892;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4688:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28977:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61149:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55829:2505;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60287:856;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31030:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31900:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54392:420;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61655:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31409:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5594:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23161:615;23246:4;23561:10;23546:25;;:11;:25;;;;:102;;;;23638:10;23623:25;;:11;:25;;;;23546:102;:179;;;;23715:10;23700:25;;:11;:25;;;;23546:179;23526:199;;23161:615;;;:::o;28808:100::-;28862:13;28895:5;28888:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28808:100;:::o;30754:204::-;30822:7;30847:16;30855:7;30847;:16::i;:::-;30842:64;;30872:34;;;;;;;;;;;;;;30842:64;30926:15;:24;30942:7;30926:24;;;;;;;;;;;;;;;;;;;;;30919:31;;30754:204;;;:::o;30302:386::-;30375:13;30391:16;30399:7;30391;:16::i;:::-;30375:32;;30447:5;30424:28;;:19;:17;:19::i;:::-;:28;;;30420:175;;30472:44;30489:5;30496:19;:17;:19::i;:::-;30472:16;:44::i;:::-;30467:128;;30544:35;;;;;;;;;;;;;;30467:128;30420:175;30634:2;30607:15;:24;30623:7;30607:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30672:7;30668:2;30652:28;;30661:5;30652:28;;;;;;;;;;;;30364:324;30302:386;;:::o;22215:315::-;22268:7;22496:15;:13;:15::i;:::-;22481:12;;22465:13;;:28;:46;22458:53;;22215:315;:::o;40019:2800::-;40153:27;40183;40202:7;40183:18;:27::i;:::-;40153:57;;40268:4;40227:45;;40243:19;40227:45;;;40223:86;;40281:28;;;;;;;;;;;;;;40223:86;40323:27;40352:23;40379:28;40399:7;40379:19;:28::i;:::-;40322:85;;;;40507:62;40526:15;40543:4;40549:19;:17;:19::i;:::-;40507:18;:62::i;:::-;40502:174;;40589:43;40606:4;40612:19;:17;:19::i;:::-;40589:16;:43::i;:::-;40584:92;;40641:35;;;;;;;;;;;;;;40584:92;40502:174;40707:1;40693:16;;:2;:16;;;40689:52;;;40718:23;;;;;;;;;;;;;;40689:52;40754:43;40776:4;40782:2;40786:7;40795:1;40754:21;:43::i;:::-;40890:15;40887:160;;;41030:1;41009:19;41002:30;40887:160;41425:18;:24;41444:4;41425:24;;;;;;;;;;;;;;;;41423:26;;;;;;;;;;;;41494:18;:22;41513:2;41494:22;;;;;;;;;;;;;;;;41492:24;;;;;;;;;;;41816:145;41853:2;41901:45;41916:4;41922:2;41926:19;41901:14;:45::i;:::-;19443:8;41874:72;41816:18;:145::i;:::-;41787:17;:26;41805:7;41787:26;;;;;;;;;;;:174;;;;42131:1;19443:8;42081:19;:46;:51;42077:626;;;42153:19;42185:1;42175:7;:11;42153:33;;42342:1;42308:17;:30;42326:11;42308:30;;;;;;;;;;;;:35;42304:384;;;42446:13;;42431:11;:28;42427:242;;42626:19;42593:17;:30;42611:11;42593:30;;;;;;;;;;;:52;;;;42427:242;42304:384;42134:569;42077:626;42750:7;42746:2;42731:27;;42740:4;42731:27;;;;;;;;;;;;42769:42;42790:4;42796:2;42800:7;42809:1;42769:20;:42::i;:::-;40142:2677;;;40019:2800;;;:::o;62034:137::-;4574:13;:11;:13::i;:::-;62079:7:::1;62100;:5;:7::i;:::-;62092:21;;62121;62092:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62078:69;;;62162:2;62154:11;;;::::0;::::1;;62071:100;62034:137::o:0;31644:185::-;31782:39;31799:4;31805:2;31809:7;31782:39;;;;;;;;;;;;:16;:39::i;:::-;31644:185;;;:::o;61468:107::-;4574:13;:11;:13::i;:::-;61558:11:::1;;61543:12;:26;;;;;;;:::i;:::-;;61468:107:::0;;:::o;54971:468::-;55060:23;55121:22;55146:8;:15;55121:40;;55176:34;55234:14;55213:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;55176:73;;55269:9;55264:125;55285:14;55280:1;:19;55264:125;;55341:32;55361:8;55370:1;55361:11;;;;;;;;:::i;:::-;;;;;;;;55341:19;:32::i;:::-;55325:10;55336:1;55325:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;55301:3;;;;;55264:125;;;;55410:10;55403:17;;;;54971:468;;;:::o;60130:26::-;;;;;;;;;;;;;:::o;28597:144::-;28661:7;28704:27;28723:7;28704:18;:27::i;:::-;28681:52;;28597:144;;;:::o;23840:224::-;23904:7;23945:1;23928:19;;:5;:19;;;23924:60;;;23956:28;;;;;;;;;;;;;;23924:60;18395:13;24002:18;:25;24021:5;24002:25;;;;;;;;;;;;;;;;:54;23995:61;;23840:224;;;:::o;5336:103::-;4574:13;:11;:13::i;:::-;5401:30:::1;5428:1;5401:18;:30::i;:::-;5336:103::o:0;61581:68::-;4574:13;:11;:13::i;:::-;61637:6:::1;;;;;;;;;;;61636:7;61627:6;;:16;;;;;;;;;;;;;;;;;;61581:68::o:0;58783:892::-;58853:16;58907:19;58941:25;58981:22;59006:16;59016:5;59006:9;:16::i;:::-;58981:41;;59037:25;59079:14;59065:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59037:57;;59109:31;;:::i;:::-;59160:9;59172:15;:13;:15::i;:::-;59160:27;;59155:472;59204:14;59189:11;:29;59155:472;;59256:15;59269:1;59256:12;:15::i;:::-;59244:27;;59294:9;:16;;;59290:73;;;59335:8;;59290:73;59411:1;59385:28;;:9;:14;;;:28;;;59381:111;;59458:9;:14;;;59438:34;;59381:111;59535:5;59514:26;;:17;:26;;;59510:102;;;59591:1;59565:8;59574:13;;;;;;59565:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;59510:102;59155:472;59220:3;;;;;59155:472;;;;59648:8;59641:15;;;;;;;58783:892;;;:::o;4688:87::-;4734:7;4761:6;;;;;;;;;;;4754:13;;4688:87;:::o;28977:104::-;29033:13;29066:7;29059:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28977:104;:::o;61149:115::-;61212:7;61235:16;:23;61252:5;61235:23;;;;;;;;;;;;;;;;61228:30;;61149:115;;;:::o;55829:2505::-;55964:16;56031:4;56022:5;:13;56018:45;;56044:19;;;;;;;;;;;;;;56018:45;56078:19;56112:17;56132:14;:12;:14::i;:::-;56112:34;;56232:15;:13;:15::i;:::-;56224:5;:23;56220:87;;;56276:15;:13;:15::i;:::-;56268:23;;56220:87;56383:9;56376:4;:16;56372:73;;;56420:9;56413:16;;56372:73;56459:25;56487:16;56497:5;56487:9;:16::i;:::-;56459:44;;56681:4;56673:5;:12;56669:278;;;56706:19;56735:5;56728:4;:12;56706:34;;56777:17;56763:11;:31;56759:111;;;56839:11;56819:31;;56759:111;56687:198;56669:278;;;56930:1;56910:21;;56669:278;56961:25;57003:17;56989:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56961:60;;57061:1;57040:17;:22;57036:78;;;57090:8;57083:15;;;;;;;;57036:78;57258:31;57292:26;57312:5;57292:19;:26::i;:::-;57258:60;;57333:25;57578:9;:16;;;57573:92;;57635:9;:14;;;57615:34;;57573:92;57684:9;57696:5;57684:17;;57679:478;57708:4;57703:1;:9;;:45;;;;;57731:17;57716:11;:32;;57703:45;57679:478;;;57786:15;57799:1;57786:12;:15::i;:::-;57774:27;;57824:9;:16;;;57820:73;;;57865:8;;57820:73;57941:1;57915:28;;:9;:14;;;:28;;;57911:111;;57988:9;:14;;;57968:34;;57911:111;58065:5;58044:26;;:17;:26;;;58040:102;;;58121:1;58095:8;58104:13;;;;;;58095:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;58040:102;57679:478;57750:3;;;;;57679:478;;;;58259:11;58249:8;58242:29;58307:8;58300:15;;;;;;;;55829:2505;;;;;;:::o;60287:856::-;60372:6;;;;;;;;;;;60371:7;60363:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;60408:20;60431:13;:11;:13::i;:::-;60408:36;;60503:1;60490:10;;:14;60478:9;60463:12;:24;:41;60455:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;60576:1;60554:19;;:23;60542:9;:35;60534:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;60636:10;60623:23;;:9;:23;;;60615:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;60682:16;60701:9;60682:28;;60719:21;60743:16;:28;60760:10;60743:28;;;;;;;;;;;;;;;;60719:52;;60802:1;60786:13;:17;60782:199;;;60832:1;60820:9;:13;60816:111;;;60871:1;60859:9;:13;60848:24;;60816:111;;;60914:1;60903:12;;60816:111;60970:1;60939:16;:28;60956:10;60939:28;;;;;;;;;;;;;;;:32;;;;60782:199;61033:16;;61022:8;:27;61009:9;:40;60991:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;61102:28;61108:10;61120:9;61102:5;:28::i;:::-;60344:794;;;60287:856;:::o;31030:308::-;31141:19;:17;:19::i;:::-;31129:31;;:8;:31;;;31125:61;;;31169:17;;;;;;;;;;;;;;31125:61;31251:8;31199:18;:39;31218:19;:17;:19::i;:::-;31199:39;;;;;;;;;;;;;;;:49;31239:8;31199:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;31311:8;31275:55;;31290:19;:17;:19::i;:::-;31275:55;;;31321:8;31275:55;;;;;;:::i;:::-;;;;;;;;31030:308;;:::o;31900:399::-;32067:31;32080:4;32086:2;32090:7;32067:12;:31::i;:::-;32131:1;32113:2;:14;;;:19;32109:183;;32152:56;32183:4;32189:2;32193:7;32202:5;32152:30;:56::i;:::-;32147:145;;32236:40;;;;;;;;;;;;;;32147:145;32109:183;31900:399;;;;:::o;54392:420::-;54468:21;;:::i;:::-;54502:31;;:::i;:::-;54558:15;:13;:15::i;:::-;54548:7;:25;:54;;;;54588:14;:12;:14::i;:::-;54577:7;:25;;54548:54;54544:103;;;54626:9;54619:16;;;;;54544:103;54669:21;54682:7;54669:12;:21::i;:::-;54657:33;;54705:9;:16;;;54701:65;;;54745:9;54738:16;;;;;54701:65;54783:21;54796:7;54783:12;:21::i;:::-;54776:28;;;54392:420;;;;:::o;61655:371::-;61729:13;61759:17;61767:8;61759:7;:17::i;:::-;61751:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;61837:28;61868:10;:8;:10::i;:::-;61837:41;;61923:1;61898:14;61892:28;:32;:128;;;;;;;;;;;;;;;;;61960:14;61976:19;:8;:17;:19::i;:::-;61943:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61892:128;61885:135;;;61655:371;;;:::o;31409:164::-;31506:4;31530:18;:25;31549:5;31530:25;;;;;;;;;;;;;;;:35;31556:8;31530:35;;;;;;;;;;;;;;;;;;;;;;;;;31523:42;;31409:164;;;;:::o;5594:201::-;4574:13;:11;:13::i;:::-;5703:1:::1;5683:22;;:8;:22;;;;5675:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5759:28;5778:8;5759:18;:28::i;:::-;5594:201:::0;:::o;32554:273::-;32611:4;32667:7;32648:15;:13;:15::i;:::-;:26;;:66;;;;;32701:13;;32691:7;:23;32648:66;:152;;;;;32799:1;19165:8;32752:17;:26;32770:7;32752:26;;;;;;;;;;;;:43;:48;32648:152;32628:172;;32554:273;;;:::o;51115:105::-;51175:7;51202:10;51195:17;;51115:105;:::o;61270:87::-;61327:7;61350:1;61343:8;;61270:87;:::o;25514:1129::-;25581:7;25601:12;25616:7;25601:22;;25684:4;25665:15;:13;:15::i;:::-;:23;25661:915;;25718:13;;25711:4;:20;25707:869;;;25756:14;25773:17;:23;25791:4;25773:23;;;;;;;;;;;;25756:40;;25889:1;19165:8;25862:6;:23;:28;25858:699;;;26381:113;26398:1;26388:6;:11;26381:113;;;26441:17;:25;26459:6;;;;;;;26441:25;;;;;;;;;;;;26432:34;;26381:113;;;26527:6;26520:13;;;;;;25858:699;25733:843;25707:869;25661:915;26604:31;;;;;;;;;;;;;;25514:1129;;;;:::o;38355:652::-;38450:27;38479:23;38520:53;38576:15;38520:71;;38762:7;38756:4;38749:21;38797:22;38791:4;38784:36;38873:4;38867;38857:21;38834:44;;38969:19;38963:26;38944:45;;38700:300;38355:652;;;:::o;39120:645::-;39262:11;39424:15;39418:4;39414:26;39406:34;;39583:15;39572:9;39568:31;39555:44;;39730:15;39719:9;39716:30;39709:4;39698:9;39695:19;39692:55;39682:65;;39120:645;;;;;:::o;49948:159::-;;;;;:::o;48260:309::-;48395:7;48415:16;19566:3;48441:19;:40;;48415:67;;19566:3;48508:31;48519:4;48525:2;48529:9;48508:10;:31::i;:::-;48500:40;;:61;;48493:68;;;48260:309;;;;;:::o;28088:447::-;28168:14;28336:15;28329:5;28325:27;28316:36;;28510:5;28496:11;28472:22;28468:40;28465:51;28458:5;28455:62;28445:72;;28088:447;;;;:::o;50766:158::-;;;;;:::o;4853:132::-;4928:12;:10;:12::i;:::-;4917:23;;:7;:5;:7::i;:::-;:23;;;4909:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4853:132::o;5955:191::-;6029:16;6048:6;;;;;;;;;;;6029:25;;6074:8;6065:6;;:17;;;;;;;;;;;;;;;;;;6129:8;6098:40;;6119:8;6098:40;;;;;;;;;;;;6018:128;5955:191;:::o;27191:153::-;27251:21;;:::i;:::-;27292:44;27311:17;:24;27329:5;27311:24;;;;;;;;;;;;27292:18;:44::i;:::-;27285:51;;27191:153;;;:::o;21910:95::-;21957:7;21984:13;;21977:20;;21910:95;:::o;34385:1529::-;34450:20;34473:13;;34450:36;;34515:1;34501:16;;:2;:16;;;34497:48;;;34526:19;;;;;;;;;;;;;;34497:48;34572:1;34560:8;:13;34556:44;;;34582:18;;;;;;;;;;;;;;34556:44;34613:61;34643:1;34647:2;34651:12;34665:8;34613:21;:61::i;:::-;35156:1;18532:2;35127:1;:25;;35126:31;35114:8;:44;35088:18;:22;35107:2;35088:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;35435:139;35472:2;35526:33;35549:1;35553:2;35557:1;35526:14;:33::i;:::-;35493:30;35514:8;35493:20;:30::i;:::-;:66;35435:18;:139::i;:::-;35401:17;:31;35419:12;35401:31;;;;;;;;;;;:173;;;;35591:15;35609:12;35591:30;;35636:11;35665:8;35650:12;:23;35636:37;;35688:101;35740:9;;;;;;35736:2;35715:35;;35732:1;35715:35;;;;;;;;;;;;35784:3;35774:7;:13;35688:101;;35821:3;35805:13;:19;;;;34862:974;;35846:60;35875:1;35879:2;35883:12;35897:8;35846:20;:60::i;:::-;34439:1475;34385:1529;;:::o;46770:716::-;46933:4;46979:2;46954:45;;;47000:19;:17;:19::i;:::-;47021:4;47027:7;47036:5;46954:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46950:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47254:1;47237:6;:13;:18;47233:235;;;47283:40;;;;;;;;;;;;;;47233:235;47426:6;47420:13;47411:6;47407:2;47403:15;47396:38;46950:529;47123:54;;;47113:64;;;:6;:64;;;;47106:71;;;46770:716;;;;;;:::o;27847:158::-;27909:21;;:::i;:::-;27950:47;27969:27;27988:7;27969:18;:27::i;:::-;27950:18;:47::i;:::-;27943:54;;27847:158;;;:::o;61363:99::-;61415:13;61444:12;61437:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61363:99;:::o;493:723::-;549:13;779:1;770:5;:10;766:53;;;797:10;;;;;;;;;;;;;;;;;;;;;766:53;829:12;844:5;829:20;;860:14;885:78;900:1;892:4;:9;885:78;;918:8;;;;;:::i;:::-;;;;949:2;941:10;;;;;:::i;:::-;;;885:78;;;973:19;1005:6;995:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;973:39;;1023:154;1039:1;1030:5;:10;1023:154;;1067:1;1057:11;;;;;:::i;:::-;;;1134:2;1126:5;:10;;;;:::i;:::-;1113:2;:24;;;;:::i;:::-;1100:39;;1083:6;1090;1083:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1163:2;1154:11;;;;;:::i;:::-;;;1023:154;;;1201:6;1187:21;;;;;493:723;;;;:::o;49145:147::-;49282:6;49145:147;;;;;:::o;3239:98::-;3292:7;3319:10;3312:17;;3239:98;:::o;26737:363::-;26803:31;;:::i;:::-;26880:6;26847:9;:14;;:41;;;;;;;;;;;19049:3;26933:6;:32;;26899:9;:24;;:67;;;;;;;;;;;27023:1;19165:8;26996:6;:23;:28;;26977:9;:16;;:47;;;;;;;;;;;19566:3;27064:6;:27;;27035:9;:19;;:57;;;;;;;;;;;26737:363;;;:::o;29918:322::-;29988:14;30219:1;30209:8;30206:15;30181:23;30177:45;30167:55;;29918:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722: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:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:139::-;1214:5;1252:6;1239:20;1230:29;;1268:33;1295:5;1268:33;:::i;:::-;1168:139;;;;:::o;1330:370::-;1401:5;1450:3;1443:4;1435:6;1431:17;1427:27;1417:122;;1458:79;;:::i;:::-;1417:122;1575:6;1562:20;1600:94;1690:3;1682:6;1675:4;1667:6;1663:17;1600:94;:::i;:::-;1591:103;;1407:293;1330:370;;;;:::o;1706:133::-;1749:5;1787:6;1774:20;1765:29;;1803:30;1827:5;1803:30;:::i;:::-;1706:133;;;;:::o;1845:137::-;1890:5;1928:6;1915:20;1906:29;;1944:32;1970:5;1944:32;:::i;:::-;1845:137;;;;:::o;1988:141::-;2044:5;2075:6;2069:13;2060:22;;2091:32;2117:5;2091:32;:::i;:::-;1988:141;;;;:::o;2148:338::-;2203:5;2252:3;2245:4;2237:6;2233:17;2229:27;2219:122;;2260:79;;:::i;:::-;2219:122;2377:6;2364:20;2402:78;2476:3;2468:6;2461:4;2453:6;2449:17;2402:78;:::i;:::-;2393:87;;2209:277;2148:338;;;;:::o;2506:553::-;2564:8;2574:6;2624:3;2617:4;2609:6;2605:17;2601:27;2591:122;;2632:79;;:::i;:::-;2591:122;2745:6;2732:20;2722:30;;2775:18;2767:6;2764:30;2761:117;;;2797:79;;:::i;:::-;2761:117;2911:4;2903:6;2899:17;2887:29;;2965:3;2957:4;2949:6;2945:17;2935:8;2931:32;2928:41;2925:128;;;2972:79;;:::i;:::-;2925:128;2506:553;;;;;:::o;3065:139::-;3111:5;3149:6;3136:20;3127:29;;3165:33;3192:5;3165:33;:::i;:::-;3065:139;;;;:::o;3210:329::-;3269:6;3318:2;3306:9;3297:7;3293:23;3289:32;3286:119;;;3324:79;;:::i;:::-;3286:119;3444:1;3469:53;3514:7;3505:6;3494:9;3490:22;3469:53;:::i;:::-;3459:63;;3415:117;3210:329;;;;:::o;3545:474::-;3613:6;3621;3670:2;3658:9;3649:7;3645:23;3641:32;3638:119;;;3676:79;;:::i;:::-;3638:119;3796:1;3821:53;3866:7;3857:6;3846:9;3842:22;3821:53;:::i;:::-;3811:63;;3767:117;3923:2;3949:53;3994:7;3985:6;3974:9;3970:22;3949:53;:::i;:::-;3939:63;;3894:118;3545:474;;;;;:::o;4025:619::-;4102:6;4110;4118;4167:2;4155:9;4146:7;4142:23;4138:32;4135:119;;;4173:79;;:::i;:::-;4135:119;4293:1;4318:53;4363:7;4354:6;4343:9;4339:22;4318:53;:::i;:::-;4308:63;;4264:117;4420:2;4446:53;4491:7;4482:6;4471:9;4467:22;4446:53;:::i;:::-;4436:63;;4391:118;4548:2;4574:53;4619:7;4610:6;4599:9;4595:22;4574:53;:::i;:::-;4564:63;;4519:118;4025:619;;;;;:::o;4650:943::-;4745:6;4753;4761;4769;4818:3;4806:9;4797:7;4793:23;4789:33;4786:120;;;4825:79;;:::i;:::-;4786:120;4945:1;4970:53;5015:7;5006:6;4995:9;4991:22;4970:53;:::i;:::-;4960:63;;4916:117;5072:2;5098:53;5143:7;5134:6;5123:9;5119:22;5098:53;:::i;:::-;5088:63;;5043:118;5200:2;5226:53;5271:7;5262:6;5251:9;5247:22;5226:53;:::i;:::-;5216:63;;5171:118;5356:2;5345:9;5341:18;5328:32;5387:18;5379:6;5376:30;5373:117;;;5409:79;;:::i;:::-;5373:117;5514:62;5568:7;5559:6;5548:9;5544:22;5514:62;:::i;:::-;5504:72;;5299:287;4650:943;;;;;;;:::o;5599:468::-;5664:6;5672;5721:2;5709:9;5700:7;5696:23;5692:32;5689:119;;;5727:79;;:::i;:::-;5689:119;5847:1;5872:53;5917:7;5908:6;5897:9;5893:22;5872:53;:::i;:::-;5862:63;;5818:117;5974:2;6000:50;6042:7;6033:6;6022:9;6018:22;6000:50;:::i;:::-;5990:60;;5945:115;5599:468;;;;;:::o;6073:474::-;6141:6;6149;6198:2;6186:9;6177:7;6173:23;6169:32;6166:119;;;6204:79;;:::i;:::-;6166:119;6324:1;6349:53;6394:7;6385:6;6374:9;6370:22;6349:53;:::i;:::-;6339:63;;6295:117;6451:2;6477:53;6522:7;6513:6;6502:9;6498:22;6477:53;:::i;:::-;6467:63;;6422:118;6073:474;;;;;:::o;6553:619::-;6630:6;6638;6646;6695:2;6683:9;6674:7;6670:23;6666:32;6663:119;;;6701:79;;:::i;:::-;6663:119;6821:1;6846:53;6891:7;6882:6;6871:9;6867:22;6846:53;:::i;:::-;6836:63;;6792:117;6948:2;6974:53;7019:7;7010:6;6999:9;6995:22;6974:53;:::i;:::-;6964:63;;6919:118;7076:2;7102:53;7147:7;7138:6;7127:9;7123:22;7102:53;:::i;:::-;7092:63;;7047:118;6553:619;;;;;:::o;7178:539::-;7262:6;7311:2;7299:9;7290:7;7286:23;7282:32;7279:119;;;7317:79;;:::i;:::-;7279:119;7465:1;7454:9;7450:17;7437:31;7495:18;7487:6;7484:30;7481:117;;;7517:79;;:::i;:::-;7481:117;7622:78;7692:7;7683:6;7672:9;7668:22;7622:78;:::i;:::-;7612:88;;7408:302;7178:539;;;;:::o;7723:327::-;7781:6;7830:2;7818:9;7809:7;7805:23;7801:32;7798:119;;;7836:79;;:::i;:::-;7798:119;7956:1;7981:52;8025:7;8016:6;8005:9;8001:22;7981:52;:::i;:::-;7971:62;;7927:116;7723:327;;;;:::o;8056:349::-;8125:6;8174:2;8162:9;8153:7;8149:23;8145:32;8142:119;;;8180:79;;:::i;:::-;8142:119;8300:1;8325:63;8380:7;8371:6;8360:9;8356:22;8325:63;:::i;:::-;8315:73;;8271:127;8056:349;;;;:::o;8411:529::-;8482:6;8490;8539:2;8527:9;8518:7;8514:23;8510:32;8507:119;;;8545:79;;:::i;:::-;8507:119;8693:1;8682:9;8678:17;8665:31;8723:18;8715:6;8712:30;8709:117;;;8745:79;;:::i;:::-;8709:117;8858:65;8915:7;8906:6;8895:9;8891:22;8858:65;:::i;:::-;8840:83;;;;8636:297;8411:529;;;;;:::o;8946:329::-;9005:6;9054:2;9042:9;9033:7;9029:23;9025:32;9022:119;;;9060:79;;:::i;:::-;9022:119;9180:1;9205:53;9250:7;9241:6;9230:9;9226:22;9205:53;:::i;:::-;9195:63;;9151:117;8946:329;;;;:::o;9281:303::-;9412:10;9433:108;9537:3;9529:6;9433:108;:::i;:::-;9573:4;9568:3;9564:14;9550:28;;9281:303;;;;:::o;9590:179::-;9659:10;9680:46;9722:3;9714:6;9680:46;:::i;:::-;9758:4;9753:3;9749:14;9735:28;;9590:179;;;;:::o;9775:108::-;9852:24;9870:5;9852:24;:::i;:::-;9847:3;9840:37;9775:108;;:::o;9889:118::-;9976:24;9994:5;9976:24;:::i;:::-;9971:3;9964:37;9889:118;;:::o;10089:980::-;10270:3;10299:85;10378:5;10299:85;:::i;:::-;10400:117;10510:6;10505:3;10400:117;:::i;:::-;10393:124;;10541:87;10622:5;10541:87;:::i;:::-;10651:7;10682:1;10667:377;10692:6;10689:1;10686:13;10667:377;;;10768:6;10762:13;10795:125;10916:3;10901:13;10795:125;:::i;:::-;10788:132;;10943:91;11027:6;10943:91;:::i;:::-;10933:101;;10727:317;10714:1;10711;10707:9;10702:14;;10667:377;;;10671:14;11060:3;11053:10;;10275:794;;;10089:980;;;;:::o;11105:732::-;11224:3;11253:54;11301:5;11253:54;:::i;:::-;11323:86;11402:6;11397:3;11323:86;:::i;:::-;11316:93;;11433:56;11483:5;11433:56;:::i;:::-;11512:7;11543:1;11528:284;11553:6;11550:1;11547:13;11528:284;;;11629:6;11623:13;11656:63;11715:3;11700:13;11656:63;:::i;:::-;11649:70;;11742:60;11795:6;11742:60;:::i;:::-;11732:70;;11588:224;11575:1;11572;11568:9;11563:14;;11528:284;;;11532:14;11828:3;11821:10;;11229:608;;;11105:732;;;;:::o;11843:99::-;11914:21;11929:5;11914:21;:::i;:::-;11909:3;11902:34;11843:99;;:::o;11948:109::-;12029:21;12044:5;12029:21;:::i;:::-;12024:3;12017:34;11948:109;;:::o;12063:360::-;12149:3;12177:38;12209:5;12177:38;:::i;:::-;12231:70;12294:6;12289:3;12231:70;:::i;:::-;12224:77;;12310:52;12355:6;12350:3;12343:4;12336:5;12332:16;12310:52;:::i;:::-;12387:29;12409:6;12387:29;:::i;:::-;12382:3;12378:39;12371:46;;12153:270;12063:360;;;;:::o;12429:364::-;12517:3;12545:39;12578:5;12545:39;:::i;:::-;12600:71;12664:6;12659:3;12600:71;:::i;:::-;12593:78;;12680:52;12725:6;12720:3;12713:4;12706:5;12702:16;12680:52;:::i;:::-;12757:29;12779:6;12757:29;:::i;:::-;12752:3;12748:39;12741:46;;12521:272;12429:364;;;;:::o;12799:377::-;12905:3;12933:39;12966:5;12933:39;:::i;:::-;12988:89;13070:6;13065:3;12988:89;:::i;:::-;12981:96;;13086:52;13131:6;13126:3;13119:4;13112:5;13108:16;13086:52;:::i;:::-;13163:6;13158:3;13154:16;13147:23;;12909:267;12799:377;;;;:::o;13182:366::-;13324:3;13345:67;13409:2;13404:3;13345:67;:::i;:::-;13338:74;;13421:93;13510:3;13421:93;:::i;:::-;13539:2;13534:3;13530:12;13523:19;;13182:366;;;:::o;13554:::-;13696:3;13717:67;13781:2;13776:3;13717:67;:::i;:::-;13710:74;;13793:93;13882:3;13793:93;:::i;:::-;13911:2;13906:3;13902:12;13895:19;;13554:366;;;:::o;13926:::-;14068:3;14089:67;14153:2;14148:3;14089:67;:::i;:::-;14082:74;;14165:93;14254:3;14165:93;:::i;:::-;14283:2;14278:3;14274:12;14267:19;;13926:366;;;:::o;14298:400::-;14458:3;14479:84;14561:1;14556:3;14479:84;:::i;:::-;14472:91;;14572:93;14661:3;14572:93;:::i;:::-;14690:1;14685:3;14681:11;14674:18;;14298:400;;;:::o;14704:366::-;14846:3;14867:67;14931:2;14926:3;14867:67;:::i;:::-;14860:74;;14943:93;15032:3;14943:93;:::i;:::-;15061:2;15056:3;15052:12;15045:19;;14704:366;;;:::o;15076:::-;15218:3;15239:67;15303:2;15298:3;15239:67;:::i;:::-;15232:74;;15315:93;15404:3;15315:93;:::i;:::-;15433:2;15428:3;15424:12;15417:19;;15076:366;;;:::o;15448:::-;15590:3;15611:67;15675:2;15670:3;15611:67;:::i;:::-;15604:74;;15687:93;15776:3;15687:93;:::i;:::-;15805:2;15800:3;15796:12;15789:19;;15448:366;;;:::o;15820:398::-;15979:3;16000:83;16081:1;16076:3;16000:83;:::i;:::-;15993:90;;16092:93;16181:3;16092:93;:::i;:::-;16210:1;16205:3;16201:11;16194:18;;15820:398;;;:::o;16224:366::-;16366:3;16387:67;16451:2;16446:3;16387:67;:::i;:::-;16380:74;;16463:93;16552:3;16463:93;:::i;:::-;16581:2;16576:3;16572:12;16565:19;;16224:366;;;:::o;16596:::-;16738:3;16759:67;16823:2;16818:3;16759:67;:::i;:::-;16752:74;;16835:93;16924:3;16835:93;:::i;:::-;16953:2;16948:3;16944:12;16937:19;;16596:366;;;:::o;17040:864::-;17189:4;17184:3;17180:14;17276:4;17269:5;17265:16;17259:23;17295:63;17352:4;17347:3;17343:14;17329:12;17295:63;:::i;:::-;17204:164;17460:4;17453:5;17449:16;17443:23;17479:61;17534:4;17529:3;17525:14;17511:12;17479:61;:::i;:::-;17378:172;17634:4;17627:5;17623:16;17617:23;17653:57;17704:4;17699:3;17695:14;17681:12;17653:57;:::i;:::-;17560:160;17807:4;17800:5;17796:16;17790:23;17826:61;17881:4;17876:3;17872:14;17858:12;17826:61;:::i;:::-;17730:167;17158:746;17040:864;;:::o;17982:874::-;18141:4;18136:3;18132:14;18228:4;18221:5;18217:16;18211:23;18247:63;18304:4;18299:3;18295:14;18281:12;18247:63;:::i;:::-;18156:164;18412:4;18405:5;18401:16;18395:23;18431:61;18486:4;18481:3;18477:14;18463:12;18431:61;:::i;:::-;18330:172;18586:4;18579:5;18575:16;18569:23;18605:57;18656:4;18651:3;18647:14;18633:12;18605:57;:::i;:::-;18512:160;18759:4;18752:5;18748:16;18742:23;18778:61;18833:4;18828:3;18824:14;18810:12;18778:61;:::i;:::-;18682:167;18110:746;17982:874;;:::o;18862:105::-;18937:23;18954:5;18937:23;:::i;:::-;18932:3;18925:36;18862:105;;:::o;18973:108::-;19050:24;19068:5;19050:24;:::i;:::-;19045:3;19038:37;18973:108;;:::o;19087:118::-;19174:24;19192:5;19174:24;:::i;:::-;19169:3;19162:37;19087:118;;:::o;19211:105::-;19286:23;19303:5;19286:23;:::i;:::-;19281:3;19274:36;19211:105;;:::o;19322:701::-;19603:3;19625:95;19716:3;19707:6;19625:95;:::i;:::-;19618:102;;19737:95;19828:3;19819:6;19737:95;:::i;:::-;19730:102;;19849:148;19993:3;19849:148;:::i;:::-;19842:155;;20014:3;20007:10;;19322:701;;;;;:::o;20029:379::-;20213:3;20235:147;20378:3;20235:147;:::i;:::-;20228:154;;20399:3;20392:10;;20029:379;;;:::o;20414:222::-;20507:4;20545:2;20534:9;20530:18;20522:26;;20558:71;20626:1;20615:9;20611:17;20602:6;20558:71;:::i;:::-;20414:222;;;;:::o;20642:640::-;20837:4;20875:3;20864:9;20860:19;20852:27;;20889:71;20957:1;20946:9;20942:17;20933:6;20889:71;:::i;:::-;20970:72;21038:2;21027:9;21023:18;21014:6;20970:72;:::i;:::-;21052;21120:2;21109:9;21105:18;21096:6;21052:72;:::i;:::-;21171:9;21165:4;21161:20;21156:2;21145:9;21141:18;21134:48;21199:76;21270:4;21261:6;21199:76;:::i;:::-;21191:84;;20642:640;;;;;;;:::o;21288:497::-;21493:4;21531:2;21520:9;21516:18;21508:26;;21580:9;21574:4;21570:20;21566:1;21555:9;21551:17;21544:47;21608:170;21773:4;21764:6;21608:170;:::i;:::-;21600:178;;21288:497;;;;:::o;21791:373::-;21934:4;21972:2;21961:9;21957:18;21949:26;;22021:9;22015:4;22011:20;22007:1;21996:9;21992:17;21985:47;22049:108;22152:4;22143:6;22049:108;:::i;:::-;22041:116;;21791:373;;;;:::o;22170:210::-;22257:4;22295:2;22284:9;22280:18;22272:26;;22308:65;22370:1;22359:9;22355:17;22346:6;22308:65;:::i;:::-;22170:210;;;;:::o;22386:313::-;22499:4;22537:2;22526:9;22522:18;22514:26;;22586:9;22580:4;22576:20;22572:1;22561:9;22557:17;22550:47;22614:78;22687:4;22678:6;22614:78;:::i;:::-;22606:86;;22386:313;;;;:::o;22705:419::-;22871:4;22909:2;22898:9;22894:18;22886:26;;22958:9;22952:4;22948:20;22944:1;22933:9;22929:17;22922:47;22986:131;23112:4;22986:131;:::i;:::-;22978:139;;22705:419;;;:::o;23130:::-;23296:4;23334:2;23323:9;23319:18;23311:26;;23383:9;23377:4;23373:20;23369:1;23358:9;23354:17;23347:47;23411:131;23537:4;23411:131;:::i;:::-;23403:139;;23130:419;;;:::o;23555:::-;23721:4;23759:2;23748:9;23744:18;23736:26;;23808:9;23802:4;23798:20;23794:1;23783:9;23779:17;23772:47;23836:131;23962:4;23836:131;:::i;:::-;23828:139;;23555:419;;;:::o;23980:::-;24146:4;24184:2;24173:9;24169:18;24161:26;;24233:9;24227:4;24223:20;24219:1;24208:9;24204:17;24197:47;24261:131;24387:4;24261:131;:::i;:::-;24253:139;;23980:419;;;:::o;24405:::-;24571:4;24609:2;24598:9;24594:18;24586:26;;24658:9;24652:4;24648:20;24644:1;24633:9;24629:17;24622:47;24686:131;24812:4;24686:131;:::i;:::-;24678:139;;24405:419;;;:::o;24830:::-;24996:4;25034:2;25023:9;25019:18;25011:26;;25083:9;25077:4;25073:20;25069:1;25058:9;25054:17;25047:47;25111:131;25237:4;25111:131;:::i;:::-;25103:139;;24830:419;;;:::o;25255:::-;25421:4;25459:2;25448:9;25444:18;25436:26;;25508:9;25502:4;25498:20;25494:1;25483:9;25479:17;25472:47;25536:131;25662:4;25536:131;:::i;:::-;25528:139;;25255:419;;;:::o;25680:::-;25846:4;25884:2;25873:9;25869:18;25861:26;;25933:9;25927:4;25923:20;25919:1;25908:9;25904:17;25897:47;25961:131;26087:4;25961:131;:::i;:::-;25953:139;;25680:419;;;:::o;26105:347::-;26260:4;26298:3;26287:9;26283:19;26275:27;;26312:133;26442:1;26431:9;26427:17;26418:6;26312:133;:::i;:::-;26105:347;;;;:::o;26458:222::-;26551:4;26589:2;26578:9;26574:18;26566:26;;26602:71;26670:1;26659:9;26655:17;26646:6;26602:71;:::i;:::-;26458:222;;;;:::o;26686:129::-;26720:6;26747:20;;:::i;:::-;26737:30;;26776:33;26804:4;26796:6;26776:33;:::i;:::-;26686:129;;;:::o;26821:75::-;26854:6;26887:2;26881:9;26871:19;;26821:75;:::o;26902:311::-;26979:4;27069:18;27061:6;27058:30;27055:56;;;27091:18;;:::i;:::-;27055:56;27141:4;27133:6;27129:17;27121:25;;27201:4;27195;27191:15;27183:23;;26902:311;;;:::o;27219:307::-;27280:4;27370:18;27362:6;27359:30;27356:56;;;27392:18;;:::i;:::-;27356:56;27430:29;27452:6;27430:29;:::i;:::-;27422:37;;27514:4;27508;27504:15;27496:23;;27219:307;;;:::o;27532:163::-;27630:4;27653:3;27645:11;;27683:4;27678:3;27674:14;27666:22;;27532:163;;;:::o;27701:132::-;27768:4;27791:3;27783:11;;27821:4;27816:3;27812:14;27804:22;;27701:132;;;:::o;27839:145::-;27937:6;27971:5;27965:12;27955:22;;27839:145;;;:::o;27990:114::-;28057:6;28091:5;28085:12;28075:22;;27990:114;;;:::o;28110:98::-;28161:6;28195:5;28189:12;28179:22;;28110:98;;;:::o;28214:99::-;28266:6;28300:5;28294:12;28284:22;;28214:99;;;:::o;28319:144::-;28420:4;28452;28447:3;28443:14;28435:22;;28319:144;;;:::o;28469:113::-;28539:4;28571;28566:3;28562:14;28554:22;;28469:113;;;:::o;28588:215::-;28718:11;28752:6;28747:3;28740:19;28792:4;28787:3;28783:14;28768:29;;28588:215;;;;:::o;28809:184::-;28908:11;28942:6;28937:3;28930:19;28982:4;28977:3;28973:14;28958:29;;28809:184;;;;:::o;28999:168::-;29082:11;29116:6;29111:3;29104:19;29156:4;29151:3;29147:14;29132:29;;28999:168;;;;:::o;29173:147::-;29274:11;29311:3;29296:18;;29173:147;;;;:::o;29326:169::-;29410:11;29444:6;29439:3;29432:19;29484:4;29479:3;29475:14;29460:29;;29326:169;;;;:::o;29501:148::-;29603:11;29640:3;29625:18;;29501:148;;;;:::o;29655:305::-;29695:3;29714:20;29732:1;29714:20;:::i;:::-;29709:25;;29748:20;29766:1;29748:20;:::i;:::-;29743:25;;29902:1;29834:66;29830:74;29827:1;29824:81;29821:107;;;29908:18;;:::i;:::-;29821:107;29952:1;29949;29945:9;29938:16;;29655:305;;;;:::o;29966:185::-;30006:1;30023:20;30041:1;30023:20;:::i;:::-;30018:25;;30057:20;30075:1;30057:20;:::i;:::-;30052:25;;30096:1;30086:35;;30101:18;;:::i;:::-;30086:35;30143:1;30140;30136:9;30131:14;;29966:185;;;;:::o;30157:191::-;30197:4;30217:20;30235:1;30217:20;:::i;:::-;30212:25;;30251:20;30269:1;30251:20;:::i;:::-;30246:25;;30290:1;30287;30284:8;30281:34;;;30295:18;;:::i;:::-;30281:34;30340:1;30337;30333:9;30325:17;;30157:191;;;;:::o;30354:96::-;30391:7;30420:24;30438:5;30420:24;:::i;:::-;30409:35;;30354:96;;;:::o;30456:90::-;30490:7;30533:5;30526:13;30519:21;30508:32;;30456:90;;;:::o;30552:149::-;30588:7;30628:66;30621:5;30617:78;30606:89;;30552:149;;;:::o;30707:126::-;30744:7;30784:42;30777:5;30773:54;30762:65;;30707:126;;;:::o;30839:91::-;30875:7;30915:8;30908:5;30904:20;30893:31;;30839:91;;;:::o;30936:77::-;30973:7;31002:5;30991:16;;30936:77;;;:::o;31019:101::-;31055:7;31095:18;31088:5;31084:30;31073:41;;31019:101;;;:::o;31126:154::-;31210:6;31205:3;31200;31187:30;31272:1;31263:6;31258:3;31254:16;31247:27;31126:154;;;:::o;31286:307::-;31354:1;31364:113;31378:6;31375:1;31372:13;31364:113;;;31463:1;31458:3;31454:11;31448:18;31444:1;31439:3;31435:11;31428:39;31400:2;31397:1;31393:10;31388:15;;31364:113;;;31495:6;31492:1;31489:13;31486:101;;;31575:1;31566:6;31561:3;31557:16;31550:27;31486:101;31335:258;31286:307;;;:::o;31599:320::-;31643:6;31680:1;31674:4;31670:12;31660:22;;31727:1;31721:4;31717:12;31748:18;31738:81;;31804:4;31796:6;31792:17;31782:27;;31738:81;31866:2;31858:6;31855:14;31835:18;31832:38;31829:84;;;31885:18;;:::i;:::-;31829:84;31650:269;31599:320;;;:::o;31925:281::-;32008:27;32030:4;32008:27;:::i;:::-;32000:6;31996:40;32138:6;32126:10;32123:22;32102:18;32090:10;32087:34;32084:62;32081:88;;;32149:18;;:::i;:::-;32081:88;32189:10;32185:2;32178:22;31968:238;31925:281;;:::o;32212:233::-;32251:3;32274:24;32292:5;32274:24;:::i;:::-;32265:33;;32320:66;32313:5;32310:77;32307:103;;;32390:18;;:::i;:::-;32307:103;32437:1;32430:5;32426:13;32419:20;;32212:233;;;:::o;32451:176::-;32483:1;32500:20;32518:1;32500:20;:::i;:::-;32495:25;;32534:20;32552:1;32534:20;:::i;:::-;32529:25;;32573:1;32563:35;;32578:18;;:::i;:::-;32563:35;32619:1;32616;32612:9;32607:14;;32451:176;;;;:::o;32633:180::-;32681:77;32678:1;32671:88;32778:4;32775:1;32768:15;32802:4;32799:1;32792:15;32819:180;32867:77;32864:1;32857:88;32964:4;32961:1;32954:15;32988:4;32985:1;32978:15;33005:180;33053:77;33050:1;33043:88;33150:4;33147:1;33140:15;33174:4;33171:1;33164:15;33191:180;33239:77;33236:1;33229:88;33336:4;33333:1;33326:15;33360:4;33357:1;33350:15;33377:180;33425:77;33422:1;33415:88;33522:4;33519:1;33512:15;33546:4;33543:1;33536:15;33563:117;33672:1;33669;33662:12;33686:117;33795:1;33792;33785:12;33809:117;33918:1;33915;33908:12;33932:117;34041:1;34038;34031:12;34055:117;34164:1;34161;34154:12;34178:117;34287:1;34284;34277:12;34301:102;34342:6;34393:2;34389:7;34384:2;34377:5;34373:14;34369:28;34359:38;;34301:102;;;:::o;34409:164::-;34549:16;34545:1;34537:6;34533:14;34526:40;34409:164;:::o;34579:225::-;34719:34;34715:1;34707:6;34703:14;34696:58;34788:8;34783:2;34775:6;34771:15;34764:33;34579:225;:::o;34810:174::-;34950:26;34946:1;34938:6;34934:14;34927:50;34810:174;:::o;34990:155::-;35130:7;35126:1;35118:6;35114:14;35107:31;34990:155;:::o;35151:182::-;35291:34;35287:1;35279:6;35275:14;35268:58;35151:182;:::o;35339:234::-;35479:34;35475:1;35467:6;35463:14;35456:58;35548:17;35543:2;35535:6;35531:15;35524:42;35339:234;:::o;35579:166::-;35719:18;35715:1;35707:6;35703:14;35696:42;35579:166;:::o;35751:114::-;;:::o;35871:170::-;36011:22;36007:1;35999:6;35995:14;35988:46;35871:170;:::o;36047:::-;36187:22;36183:1;36175:6;36171:14;36164:46;36047:170;:::o;36223:122::-;36296:24;36314:5;36296:24;:::i;:::-;36289:5;36286:35;36276:63;;36335:1;36332;36325:12;36276:63;36223:122;:::o;36351:116::-;36421:21;36436:5;36421:21;:::i;:::-;36414:5;36411:32;36401:60;;36457:1;36454;36447:12;36401:60;36351:116;:::o;36473:120::-;36545:23;36562:5;36545:23;:::i;:::-;36538:5;36535:34;36525:62;;36583:1;36580;36573:12;36525:62;36473:120;:::o;36599:122::-;36672:24;36690:5;36672:24;:::i;:::-;36665:5;36662:35;36652:63;;36711:1;36708;36701:12;36652:63;36599:122;:::o

Swarm Source

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