ETH Price: $2,732.32 (-3.47%)

Token

The Blinkless: Halo (BHALO)
 

Overview

Max Total Supply

25 BHALO

Holders

17

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BHALO
0x2ea7c0c28527c7007d354f5b92eb3e7cf7cefe83
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:
Halo

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 2023-04-01
*/

// File: contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721AQueryable.
 */
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`
     * - `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) 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 collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}
// File: contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.4;



/**
 * @title ERC721AQueryable.
 *
 * @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 virtual 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[] calldata tokenIds)
        external
        view
        virtual
        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 virtual 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 collections should be fine).
     */
    function tokensOfOwner(address owner) external view virtual 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: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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: contracts/Halo.sol


pragma solidity ^0.8.4;






contract Halo is ERC721AQueryable, Ownable {

    string public metadataPath = "https://theblinkless.s3.amazonaws.com/halo/metadata/";
    address public payoutWallet = 0xeD2faa60373eC70E57B39152aeE5Ce4ed7C333c7; //wallet for payouts
    address public projectWallet = 0xB818B1BbF47fC499B621f6807d61a61046C6478f; //project wallet


    constructor() ERC721A("The Blinkless: Halo", "BHALO") {

        _mint(address(projectWallet),25);
    }

    
     /**
    * Return metadata path
    */
    function tokenURI(uint tokenId) override(ERC721A)  public view returns(string memory _uri){
        return string(abi.encodePacked(metadataPath,Strings.toString(tokenId),".json"));
    } 
    

     /**
    * Update the metadata path
    */
    function updateMetadataPath(string memory _path) public onlyOwner{
        metadataPath = _path;
    }

    /**
    * Update the project wallet address
    */
    function updateProjectWallet(address _projectWallet) public onlyOwner{
        projectWallet = _projectWallet;
    }


    /**
    * Update the payout wallet address
    */
    function updatePayoutWallet(address _payoutWallet) public onlyOwner{
        payoutWallet = _payoutWallet;
    }

     /*
    * Withdraw by owner
    */
    function withdraw() external onlyOwner {
        (bool success, ) = payable(payoutWallet).call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

    /*
    * Override default token #0 to start with 1 instead
    */
    function _startTokenId() internal pure override returns (uint256) {
        return 1;
    }


    /*
    * These are here to receive ETH sent to the contract address
    */
    receive() external payable {}

    fallback() external payable {}


}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataPath","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"payoutWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projectWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"_uri","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_path","type":"string"}],"name":"updateMetadataPath","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_payoutWallet","type":"address"}],"name":"updatePayoutWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_projectWallet","type":"address"}],"name":"updateProjectWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052604051806060016040528060348152602001620037956034913960099080519060200190620000359291906200053f565b5073ed2faa60373ec70e57b39152aee5ce4ed7c333c7600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073b818b1bbf47fc499b621f6807d61a61046c6478f600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000ed57600080fd5b506040518060400160405280601381526020017f54686520426c696e6b6c6573733a2048616c6f000000000000000000000000008152506040518060400160405280600581526020017f4248414c4f0000000000000000000000000000000000000000000000000000008152508160029080519060200190620001729291906200053f565b5080600390805190602001906200018b9291906200053f565b506200019c620001ff60201b60201c565b6000819055505050620001c4620001b86200020860201b60201c565b6200021060201b60201c565b620001f9600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166019620002d660201b60201c565b62000654565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080549050600082141562000318576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200032d6000848385620004bf60201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550620003bc836200039e6000866000620004c560201b60201c565b620003af85620004f560201b60201c565b176200050560201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146200045f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905062000422565b5060008214156200049c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050620004ba60008483856200053060201b60201c565b505050565b50505050565b60008060e883901c905060e8620004e48686846200053660201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60009392505050565b8280546200054d90620005ef565b90600052602060002090601f016020900481019282620005715760008555620005bd565b82601f106200058c57805160ff1916838001178555620005bd565b82800160010185558215620005bd579182015b82811115620005bc5782518255916020019190600101906200059f565b5b509050620005cc9190620005d0565b5090565b5b80821115620005eb576000816000905550600101620005d1565b5090565b600060028204905060018216806200060857607f821691505b602082108114156200061f576200061e62000625565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61313180620006646000396000f3fe6080604052600436106101bb5760003560e01c806371927628116100ec578063b88d4fde1161008a578063c87b56dd11610064578063c87b56dd146105f0578063e985e9c51461062d578063f2fde38b1461066a578063fb28a54014610693576101c2565b8063b88d4fde1461056c578063beb08ab914610588578063c23dc68f146105b3576101c2565b80638da5cb5b116100c65780638da5cb5b146104b057806395d89b41146104db57806399a2557a14610506578063a22cb46514610543576101c2565b8063719276281461041f5780638462151c146104485780638488bb4e14610485576101c2565b806342842e0e116101595780635c3d25ca116101335780635c3d25ca146103655780636352211e1461038e57806370a08231146103cb578063715018a614610408576101c2565b806342842e0e146102e357806355d5204c146102ff5780635bbb217714610328576101c2565b8063095ea7b311610195578063095ea7b31461026957806318160ddd1461028557806323b872dd146102b05780633ccfd60b146102cc576101c2565b806301ffc9a7146101c457806306fdde0314610201578063081812fc1461022c576101c2565b366101c257005b005b3480156101d057600080fd5b506101eb60048036038101906101e6919061247a565b6106be565b6040516101f89190612a18565b60405180910390f35b34801561020d57600080fd5b50610216610750565b6040516102239190612a33565b60405180910390f35b34801561023857600080fd5b50610253600480360381019061024e919061251d565b6107e2565b604051610260919061296d565b60405180910390f35b610283600480360381019061027e919061239a565b610861565b005b34801561029157600080fd5b5061029a6109a5565b6040516102a79190612ad0565b60405180910390f35b6102ca60048036038101906102c59190612284565b6109bc565b005b3480156102d857600080fd5b506102e1610ce1565b005b6102fd60048036038101906102f89190612284565b610dba565b005b34801561030b57600080fd5b50610326600480360381019061032191906124d4565b610dda565b005b34801561033457600080fd5b5061034f600480360381019061034a919061242d565b610dfc565b60405161035c91906129d4565b60405180910390f35b34801561037157600080fd5b5061038c60048036038101906103879190612217565b610ebf565b005b34801561039a57600080fd5b506103b560048036038101906103b0919061251d565b610f0b565b6040516103c2919061296d565b60405180910390f35b3480156103d757600080fd5b506103f260048036038101906103ed9190612217565b610f1d565b6040516103ff9190612ad0565b60405180910390f35b34801561041457600080fd5b5061041d610fd6565b005b34801561042b57600080fd5b5061044660048036038101906104419190612217565b610fea565b005b34801561045457600080fd5b5061046f600480360381019061046a9190612217565b611036565b60405161047c91906129f6565b60405180910390f35b34801561049157600080fd5b5061049a611180565b6040516104a7919061296d565b60405180910390f35b3480156104bc57600080fd5b506104c56111a6565b6040516104d2919061296d565b60405180910390f35b3480156104e757600080fd5b506104f06111d0565b6040516104fd9190612a33565b60405180910390f35b34801561051257600080fd5b5061052d600480360381019061052891906123da565b611262565b60405161053a91906129f6565b60405180910390f35b34801561054f57600080fd5b5061056a6004803603810190610565919061235a565b611476565b005b610586600480360381019061058191906122d7565b611581565b005b34801561059457600080fd5b5061059d6115f4565b6040516105aa919061296d565b60405180910390f35b3480156105bf57600080fd5b506105da60048036038101906105d5919061251d565b61161a565b6040516105e79190612ab5565b60405180910390f35b3480156105fc57600080fd5b506106176004803603810190610612919061251d565b611684565b6040516106249190612a33565b60405180910390f35b34801561063957600080fd5b50610654600480360381019061064f9190612244565b6116b8565b6040516106619190612a18565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c9190612217565b61174c565b005b34801561069f57600080fd5b506106a86117d0565b6040516106b59190612a33565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107495750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461075f90612ddb565b80601f016020809104026020016040519081016040528092919081815260200182805461078b90612ddb565b80156107d85780601f106107ad576101008083540402835291602001916107d8565b820191906000526020600020905b8154815290600101906020018083116107bb57829003601f168201915b5050505050905090565b60006107ed8261185e565b610823576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086c82610f0b565b90508073ffffffffffffffffffffffffffffffffffffffff1661088d6118bd565b73ffffffffffffffffffffffffffffffffffffffff16146108f0576108b9816108b46118bd565b6116b8565b6108ef576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109af6118c5565b6001546000540303905090565b60006109c7826118ce565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a2e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a3a8461199c565b91509150610a508187610a4b6118bd565b6119c3565b610a9c57610a6586610a606118bd565b6116b8565b610a9b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b03576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b108686866001611a07565b8015610b1b57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610be985610bc5888887611a0d565b7c020000000000000000000000000000000000000000000000000000000017611a35565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c71576000600185019050600060046000838152602001908152602001600020541415610c6f576000548114610c6e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cd98686866001611a60565b505050505050565b610ce9611a66565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610d3190612958565b60006040518083038185875af1925050503d8060008114610d6e576040519150601f19603f3d011682016040523d82523d6000602084013e610d73565b606091505b5050905080610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae90612a95565b60405180910390fd5b50565b610dd583838360405180602001604052806000815250611581565b505050565b610de2611a66565b8060099080519060200190610df8929190611f86565b5050565b6060600083839050905060008167ffffffffffffffff811115610e2257610e21612f74565b5b604051908082528060200260200182016040528015610e5b57816020015b610e4861200c565b815260200190600190039081610e405790505b50905060005b828114610eb357610e8a868683818110610e7e57610e7d612f45565b5b9050602002013561161a565b828281518110610e9d57610e9c612f45565b5b6020026020010181905250806001019050610e61565b50809250505092915050565b610ec7611a66565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610f16826118ce565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f85576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610fde611a66565b610fe86000611ae4565b565b610ff2611a66565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060600080600061104685610f1d565b905060008167ffffffffffffffff81111561106457611063612f74565b5b6040519080825280602002602001820160405280156110925781602001602082028036833780820191505090505b50905061109d61200c565b60006110a76118c5565b90505b838614611172576110ba81611baa565b91508160400151156110cb57611167565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461110b57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611166578083878060010198508151811061115957611158612f45565b5b6020026020010181815250505b5b8060010190506110aa565b508195505050505050919050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546111df90612ddb565b80601f016020809104026020016040519081016040528092919081815260200182805461120b90612ddb565b80156112585780601f1061122d57610100808354040283529160200191611258565b820191906000526020600020905b81548152906001019060200180831161123b57829003601f168201915b5050505050905090565b606081831061129d576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806112a8611bd5565b90506112b26118c5565b8510156112c4576112c16118c5565b94505b808411156112d0578093505b60006112db87610f1d565b9050848610156112fe5760008686039050818110156112f8578091505b50611303565b600090505b60008167ffffffffffffffff81111561131f5761131e612f74565b5b60405190808252806020026020018201604052801561134d5781602001602082028036833780820191505090505b5090506000821415611365578094505050505061146f565b60006113708861161a565b90506000816040015161138557816000015190505b60008990505b88811415801561139b5750848714155b15611461576113a981611baa565b92508260400151156113ba57611456565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff16146113fa57826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611455578084888060010199508151811061144857611447612f45565b5b6020026020010181815250505b5b80600101905061138b565b508583528296505050505050505b9392505050565b80600760006114836118bd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115306118bd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115759190612a18565b60405180910390a35050565b61158c8484846109bc565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115ee576115b784848484611bde565b6115ed576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61162261200c565b61162a61200c565b6116326118c5565b8310806116465750611642611bd5565b8310155b15611654578091505061167f565b61165d83611baa565b9050806040015115611672578091505061167f565b61167b83611d3e565b9150505b919050565b6060600961169183611d5e565b6040516020016116a2929190612929565b6040516020818303038152906040529050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611754611a66565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bb90612a55565b60405180910390fd5b6117cd81611ae4565b50565b600980546117dd90612ddb565b80601f016020809104026020016040519081016040528092919081815260200182805461180990612ddb565b80156118565780601f1061182b57610100808354040283529160200191611856565b820191906000526020600020905b81548152906001019060200180831161183957829003601f168201915b505050505081565b6000816118696118c5565b11158015611878575060005482105b80156118b6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806118dd6118c5565b11611965576000548110156119645760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611962575b600081141561195857600460008360019003935083815260200190815260200160002054905061192d565b8092505050611997565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611a24868684611ebf565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611a6e611ec8565b73ffffffffffffffffffffffffffffffffffffffff16611a8c6111a6565b73ffffffffffffffffffffffffffffffffffffffff1614611ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad990612a75565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611bb261200c565b611bce6004600084815260200190815260200160002054611ed0565b9050919050565b60008054905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c046118bd565b8786866040518563ffffffff1660e01b8152600401611c269493929190612988565b602060405180830381600087803b158015611c4057600080fd5b505af1925050508015611c7157506040513d601f19601f82011682018060405250810190611c6e91906124a7565b60015b611ceb573d8060008114611ca1576040519150601f19603f3d011682016040523d82523d6000602084013e611ca6565b606091505b50600081511415611ce3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b611d4661200c565b611d57611d52836118ce565b611ed0565b9050919050565b60606000821415611da6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611eba565b600082905060005b60008214611dd8578080611dc190612e3e565b915050600a82611dd19190612c9d565b9150611dae565b60008167ffffffffffffffff811115611df457611df3612f74565b5b6040519080825280601f01601f191660200182016040528015611e265781602001600182028036833780820191505090505b5090505b60008514611eb357600182611e3f9190612cce565b9150600a85611e4e9190612e87565b6030611e5a9190612c47565b60f81b818381518110611e7057611e6f612f45565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611eac9190612c9d565b9450611e2a565b8093505050505b919050565b60009392505050565b600033905090565b611ed861200c565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b828054611f9290612ddb565b90600052602060002090601f016020900481019282611fb45760008555611ffb565b82601f10611fcd57805160ff1916838001178555611ffb565b82800160010185558215611ffb579182015b82811115611ffa578251825591602001919060010190611fdf565b5b509050612008919061205b565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b8082111561207457600081600090555060010161205c565b5090565b600061208b61208684612b10565b612aeb565b9050828152602081018484840111156120a7576120a6612fb2565b5b6120b2848285612d99565b509392505050565b60006120cd6120c884612b41565b612aeb565b9050828152602081018484840111156120e9576120e8612fb2565b5b6120f4848285612d99565b509392505050565b60008135905061210b8161309f565b92915050565b60008083601f84011261212757612126612fa8565b5b8235905067ffffffffffffffff81111561214457612143612fa3565b5b6020830191508360208202830111156121605761215f612fad565b5b9250929050565b600081359050612176816130b6565b92915050565b60008135905061218b816130cd565b92915050565b6000815190506121a0816130cd565b92915050565b600082601f8301126121bb576121ba612fa8565b5b81356121cb848260208601612078565b91505092915050565b600082601f8301126121e9576121e8612fa8565b5b81356121f98482602086016120ba565b91505092915050565b600081359050612211816130e4565b92915050565b60006020828403121561222d5761222c612fbc565b5b600061223b848285016120fc565b91505092915050565b6000806040838503121561225b5761225a612fbc565b5b6000612269858286016120fc565b925050602061227a858286016120fc565b9150509250929050565b60008060006060848603121561229d5761229c612fbc565b5b60006122ab868287016120fc565b93505060206122bc868287016120fc565b92505060406122cd86828701612202565b9150509250925092565b600080600080608085870312156122f1576122f0612fbc565b5b60006122ff878288016120fc565b9450506020612310878288016120fc565b935050604061232187828801612202565b925050606085013567ffffffffffffffff81111561234257612341612fb7565b5b61234e878288016121a6565b91505092959194509250565b6000806040838503121561237157612370612fbc565b5b600061237f858286016120fc565b925050602061239085828601612167565b9150509250929050565b600080604083850312156123b1576123b0612fbc565b5b60006123bf858286016120fc565b92505060206123d085828601612202565b9150509250929050565b6000806000606084860312156123f3576123f2612fbc565b5b6000612401868287016120fc565b935050602061241286828701612202565b925050604061242386828701612202565b9150509250925092565b6000806020838503121561244457612443612fbc565b5b600083013567ffffffffffffffff81111561246257612461612fb7565b5b61246e85828601612111565b92509250509250929050565b6000602082840312156124905761248f612fbc565b5b600061249e8482850161217c565b91505092915050565b6000602082840312156124bd576124bc612fbc565b5b60006124cb84828501612191565b91505092915050565b6000602082840312156124ea576124e9612fbc565b5b600082013567ffffffffffffffff81111561250857612507612fb7565b5b612514848285016121d4565b91505092915050565b60006020828403121561253357612532612fbc565b5b600061254184828501612202565b91505092915050565b60006125568383612843565b60808301905092915050565b600061256e83836128fc565b60208301905092915050565b61258381612d02565b82525050565b61259281612d02565b82525050565b60006125a382612ba7565b6125ad8185612bed565b93506125b883612b72565b8060005b838110156125e95781516125d0888261254a565b97506125db83612bd3565b9250506001810190506125bc565b5085935050505092915050565b600061260182612bb2565b61260b8185612bfe565b935061261683612b82565b8060005b8381101561264757815161262e8882612562565b975061263983612be0565b92505060018101905061261a565b5085935050505092915050565b61265d81612d14565b82525050565b61266c81612d14565b82525050565b600061267d82612bbd565b6126878185612c0f565b9350612697818560208601612da8565b6126a081612fc1565b840191505092915050565b60006126b682612bc8565b6126c08185612c2b565b93506126d0818560208601612da8565b6126d981612fc1565b840191505092915050565b60006126ef82612bc8565b6126f98185612c3c565b9350612709818560208601612da8565b80840191505092915050565b6000815461272281612ddb565b61272c8186612c3c565b9450600182166000811461274757600181146127585761278b565b60ff1983168652818601935061278b565b61276185612b92565b60005b8381101561278357815481890152600182019150602081019050612764565b838801955050505b50505092915050565b60006127a1602683612c2b565b91506127ac82612fd2565b604082019050919050565b60006127c4600583612c3c565b91506127cf82613021565b600582019050919050565b60006127e7602083612c2b565b91506127f28261304a565b602082019050919050565b600061280a600083612c20565b915061281582613073565b600082019050919050565b600061282d601083612c2b565b915061283882613076565b602082019050919050565b608082016000820151612859600085018261257a565b50602082015161286c602085018261291a565b50604082015161287f6040850182612654565b50606082015161289260608501826128ed565b50505050565b6080820160008201516128ae600085018261257a565b5060208201516128c1602085018261291a565b5060408201516128d46040850182612654565b5060608201516128e760608501826128ed565b50505050565b6128f681612d6c565b82525050565b61290581612d7b565b82525050565b61291481612d7b565b82525050565b61292381612d85565b82525050565b60006129358285612715565b915061294182846126e4565b915061294c826127b7565b91508190509392505050565b6000612963826127fd565b9150819050919050565b60006020820190506129826000830184612589565b92915050565b600060808201905061299d6000830187612589565b6129aa6020830186612589565b6129b7604083018561290b565b81810360608301526129c98184612672565b905095945050505050565b600060208201905081810360008301526129ee8184612598565b905092915050565b60006020820190508181036000830152612a1081846125f6565b905092915050565b6000602082019050612a2d6000830184612663565b92915050565b60006020820190508181036000830152612a4d81846126ab565b905092915050565b60006020820190508181036000830152612a6e81612794565b9050919050565b60006020820190508181036000830152612a8e816127da565b9050919050565b60006020820190508181036000830152612aae81612820565b9050919050565b6000608082019050612aca6000830184612898565b92915050565b6000602082019050612ae5600083018461290b565b92915050565b6000612af5612b06565b9050612b018282612e0d565b919050565b6000604051905090565b600067ffffffffffffffff821115612b2b57612b2a612f74565b5b612b3482612fc1565b9050602081019050919050565b600067ffffffffffffffff821115612b5c57612b5b612f74565b5b612b6582612fc1565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c5282612d7b565b9150612c5d83612d7b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c9257612c91612eb8565b5b828201905092915050565b6000612ca882612d7b565b9150612cb383612d7b565b925082612cc357612cc2612ee7565b5b828204905092915050565b6000612cd982612d7b565b9150612ce483612d7b565b925082821015612cf757612cf6612eb8565b5b828203905092915050565b6000612d0d82612d4c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015612dc6578082015181840152602081019050612dab565b83811115612dd5576000848401525b50505050565b60006002820490506001821680612df357607f821691505b60208210811415612e0757612e06612f16565b5b50919050565b612e1682612fc1565b810181811067ffffffffffffffff82111715612e3557612e34612f74565b5b80604052505050565b6000612e4982612d7b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612e7c57612e7b612eb8565b5b600182019050919050565b6000612e9282612d7b565b9150612e9d83612d7b565b925082612ead57612eac612ee7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6130a881612d02565b81146130b357600080fd5b50565b6130bf81612d14565b81146130ca57600080fd5b50565b6130d681612d20565b81146130e157600080fd5b50565b6130ed81612d7b565b81146130f857600080fd5b5056fea264697066735822122075d87145f14d62d104307ccd50d4c047d524795d2b0096f09668bbd7bf0ceeb964736f6c6343000807003368747470733a2f2f746865626c696e6b6c6573732e73332e616d617a6f6e6177732e636f6d2f68616c6f2f6d657461646174612f

Deployed Bytecode

0x6080604052600436106101bb5760003560e01c806371927628116100ec578063b88d4fde1161008a578063c87b56dd11610064578063c87b56dd146105f0578063e985e9c51461062d578063f2fde38b1461066a578063fb28a54014610693576101c2565b8063b88d4fde1461056c578063beb08ab914610588578063c23dc68f146105b3576101c2565b80638da5cb5b116100c65780638da5cb5b146104b057806395d89b41146104db57806399a2557a14610506578063a22cb46514610543576101c2565b8063719276281461041f5780638462151c146104485780638488bb4e14610485576101c2565b806342842e0e116101595780635c3d25ca116101335780635c3d25ca146103655780636352211e1461038e57806370a08231146103cb578063715018a614610408576101c2565b806342842e0e146102e357806355d5204c146102ff5780635bbb217714610328576101c2565b8063095ea7b311610195578063095ea7b31461026957806318160ddd1461028557806323b872dd146102b05780633ccfd60b146102cc576101c2565b806301ffc9a7146101c457806306fdde0314610201578063081812fc1461022c576101c2565b366101c257005b005b3480156101d057600080fd5b506101eb60048036038101906101e6919061247a565b6106be565b6040516101f89190612a18565b60405180910390f35b34801561020d57600080fd5b50610216610750565b6040516102239190612a33565b60405180910390f35b34801561023857600080fd5b50610253600480360381019061024e919061251d565b6107e2565b604051610260919061296d565b60405180910390f35b610283600480360381019061027e919061239a565b610861565b005b34801561029157600080fd5b5061029a6109a5565b6040516102a79190612ad0565b60405180910390f35b6102ca60048036038101906102c59190612284565b6109bc565b005b3480156102d857600080fd5b506102e1610ce1565b005b6102fd60048036038101906102f89190612284565b610dba565b005b34801561030b57600080fd5b50610326600480360381019061032191906124d4565b610dda565b005b34801561033457600080fd5b5061034f600480360381019061034a919061242d565b610dfc565b60405161035c91906129d4565b60405180910390f35b34801561037157600080fd5b5061038c60048036038101906103879190612217565b610ebf565b005b34801561039a57600080fd5b506103b560048036038101906103b0919061251d565b610f0b565b6040516103c2919061296d565b60405180910390f35b3480156103d757600080fd5b506103f260048036038101906103ed9190612217565b610f1d565b6040516103ff9190612ad0565b60405180910390f35b34801561041457600080fd5b5061041d610fd6565b005b34801561042b57600080fd5b5061044660048036038101906104419190612217565b610fea565b005b34801561045457600080fd5b5061046f600480360381019061046a9190612217565b611036565b60405161047c91906129f6565b60405180910390f35b34801561049157600080fd5b5061049a611180565b6040516104a7919061296d565b60405180910390f35b3480156104bc57600080fd5b506104c56111a6565b6040516104d2919061296d565b60405180910390f35b3480156104e757600080fd5b506104f06111d0565b6040516104fd9190612a33565b60405180910390f35b34801561051257600080fd5b5061052d600480360381019061052891906123da565b611262565b60405161053a91906129f6565b60405180910390f35b34801561054f57600080fd5b5061056a6004803603810190610565919061235a565b611476565b005b610586600480360381019061058191906122d7565b611581565b005b34801561059457600080fd5b5061059d6115f4565b6040516105aa919061296d565b60405180910390f35b3480156105bf57600080fd5b506105da60048036038101906105d5919061251d565b61161a565b6040516105e79190612ab5565b60405180910390f35b3480156105fc57600080fd5b506106176004803603810190610612919061251d565b611684565b6040516106249190612a33565b60405180910390f35b34801561063957600080fd5b50610654600480360381019061064f9190612244565b6116b8565b6040516106619190612a18565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c9190612217565b61174c565b005b34801561069f57600080fd5b506106a86117d0565b6040516106b59190612a33565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107495750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461075f90612ddb565b80601f016020809104026020016040519081016040528092919081815260200182805461078b90612ddb565b80156107d85780601f106107ad576101008083540402835291602001916107d8565b820191906000526020600020905b8154815290600101906020018083116107bb57829003601f168201915b5050505050905090565b60006107ed8261185e565b610823576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086c82610f0b565b90508073ffffffffffffffffffffffffffffffffffffffff1661088d6118bd565b73ffffffffffffffffffffffffffffffffffffffff16146108f0576108b9816108b46118bd565b6116b8565b6108ef576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109af6118c5565b6001546000540303905090565b60006109c7826118ce565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a2e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a3a8461199c565b91509150610a508187610a4b6118bd565b6119c3565b610a9c57610a6586610a606118bd565b6116b8565b610a9b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b03576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b108686866001611a07565b8015610b1b57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610be985610bc5888887611a0d565b7c020000000000000000000000000000000000000000000000000000000017611a35565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c71576000600185019050600060046000838152602001908152602001600020541415610c6f576000548114610c6e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cd98686866001611a60565b505050505050565b610ce9611a66565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610d3190612958565b60006040518083038185875af1925050503d8060008114610d6e576040519150601f19603f3d011682016040523d82523d6000602084013e610d73565b606091505b5050905080610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae90612a95565b60405180910390fd5b50565b610dd583838360405180602001604052806000815250611581565b505050565b610de2611a66565b8060099080519060200190610df8929190611f86565b5050565b6060600083839050905060008167ffffffffffffffff811115610e2257610e21612f74565b5b604051908082528060200260200182016040528015610e5b57816020015b610e4861200c565b815260200190600190039081610e405790505b50905060005b828114610eb357610e8a868683818110610e7e57610e7d612f45565b5b9050602002013561161a565b828281518110610e9d57610e9c612f45565b5b6020026020010181905250806001019050610e61565b50809250505092915050565b610ec7611a66565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610f16826118ce565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f85576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610fde611a66565b610fe86000611ae4565b565b610ff2611a66565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060600080600061104685610f1d565b905060008167ffffffffffffffff81111561106457611063612f74565b5b6040519080825280602002602001820160405280156110925781602001602082028036833780820191505090505b50905061109d61200c565b60006110a76118c5565b90505b838614611172576110ba81611baa565b91508160400151156110cb57611167565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461110b57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611166578083878060010198508151811061115957611158612f45565b5b6020026020010181815250505b5b8060010190506110aa565b508195505050505050919050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546111df90612ddb565b80601f016020809104026020016040519081016040528092919081815260200182805461120b90612ddb565b80156112585780601f1061122d57610100808354040283529160200191611258565b820191906000526020600020905b81548152906001019060200180831161123b57829003601f168201915b5050505050905090565b606081831061129d576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806112a8611bd5565b90506112b26118c5565b8510156112c4576112c16118c5565b94505b808411156112d0578093505b60006112db87610f1d565b9050848610156112fe5760008686039050818110156112f8578091505b50611303565b600090505b60008167ffffffffffffffff81111561131f5761131e612f74565b5b60405190808252806020026020018201604052801561134d5781602001602082028036833780820191505090505b5090506000821415611365578094505050505061146f565b60006113708861161a565b90506000816040015161138557816000015190505b60008990505b88811415801561139b5750848714155b15611461576113a981611baa565b92508260400151156113ba57611456565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff16146113fa57826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611455578084888060010199508151811061144857611447612f45565b5b6020026020010181815250505b5b80600101905061138b565b508583528296505050505050505b9392505050565b80600760006114836118bd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115306118bd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115759190612a18565b60405180910390a35050565b61158c8484846109bc565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115ee576115b784848484611bde565b6115ed576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61162261200c565b61162a61200c565b6116326118c5565b8310806116465750611642611bd5565b8310155b15611654578091505061167f565b61165d83611baa565b9050806040015115611672578091505061167f565b61167b83611d3e565b9150505b919050565b6060600961169183611d5e565b6040516020016116a2929190612929565b6040516020818303038152906040529050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611754611a66565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bb90612a55565b60405180910390fd5b6117cd81611ae4565b50565b600980546117dd90612ddb565b80601f016020809104026020016040519081016040528092919081815260200182805461180990612ddb565b80156118565780601f1061182b57610100808354040283529160200191611856565b820191906000526020600020905b81548152906001019060200180831161183957829003601f168201915b505050505081565b6000816118696118c5565b11158015611878575060005482105b80156118b6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806118dd6118c5565b11611965576000548110156119645760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611962575b600081141561195857600460008360019003935083815260200190815260200160002054905061192d565b8092505050611997565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611a24868684611ebf565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611a6e611ec8565b73ffffffffffffffffffffffffffffffffffffffff16611a8c6111a6565b73ffffffffffffffffffffffffffffffffffffffff1614611ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad990612a75565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611bb261200c565b611bce6004600084815260200190815260200160002054611ed0565b9050919050565b60008054905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c046118bd565b8786866040518563ffffffff1660e01b8152600401611c269493929190612988565b602060405180830381600087803b158015611c4057600080fd5b505af1925050508015611c7157506040513d601f19601f82011682018060405250810190611c6e91906124a7565b60015b611ceb573d8060008114611ca1576040519150601f19603f3d011682016040523d82523d6000602084013e611ca6565b606091505b50600081511415611ce3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b611d4661200c565b611d57611d52836118ce565b611ed0565b9050919050565b60606000821415611da6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611eba565b600082905060005b60008214611dd8578080611dc190612e3e565b915050600a82611dd19190612c9d565b9150611dae565b60008167ffffffffffffffff811115611df457611df3612f74565b5b6040519080825280601f01601f191660200182016040528015611e265781602001600182028036833780820191505090505b5090505b60008514611eb357600182611e3f9190612cce565b9150600a85611e4e9190612e87565b6030611e5a9190612c47565b60f81b818381518110611e7057611e6f612f45565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611eac9190612c9d565b9450611e2a565b8093505050505b919050565b60009392505050565b600033905090565b611ed861200c565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b828054611f9290612ddb565b90600052602060002090601f016020900481019282611fb45760008555611ffb565b82601f10611fcd57805160ff1916838001178555611ffb565b82800160010185558215611ffb579182015b82811115611ffa578251825591602001919060010190611fdf565b5b509050612008919061205b565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b8082111561207457600081600090555060010161205c565b5090565b600061208b61208684612b10565b612aeb565b9050828152602081018484840111156120a7576120a6612fb2565b5b6120b2848285612d99565b509392505050565b60006120cd6120c884612b41565b612aeb565b9050828152602081018484840111156120e9576120e8612fb2565b5b6120f4848285612d99565b509392505050565b60008135905061210b8161309f565b92915050565b60008083601f84011261212757612126612fa8565b5b8235905067ffffffffffffffff81111561214457612143612fa3565b5b6020830191508360208202830111156121605761215f612fad565b5b9250929050565b600081359050612176816130b6565b92915050565b60008135905061218b816130cd565b92915050565b6000815190506121a0816130cd565b92915050565b600082601f8301126121bb576121ba612fa8565b5b81356121cb848260208601612078565b91505092915050565b600082601f8301126121e9576121e8612fa8565b5b81356121f98482602086016120ba565b91505092915050565b600081359050612211816130e4565b92915050565b60006020828403121561222d5761222c612fbc565b5b600061223b848285016120fc565b91505092915050565b6000806040838503121561225b5761225a612fbc565b5b6000612269858286016120fc565b925050602061227a858286016120fc565b9150509250929050565b60008060006060848603121561229d5761229c612fbc565b5b60006122ab868287016120fc565b93505060206122bc868287016120fc565b92505060406122cd86828701612202565b9150509250925092565b600080600080608085870312156122f1576122f0612fbc565b5b60006122ff878288016120fc565b9450506020612310878288016120fc565b935050604061232187828801612202565b925050606085013567ffffffffffffffff81111561234257612341612fb7565b5b61234e878288016121a6565b91505092959194509250565b6000806040838503121561237157612370612fbc565b5b600061237f858286016120fc565b925050602061239085828601612167565b9150509250929050565b600080604083850312156123b1576123b0612fbc565b5b60006123bf858286016120fc565b92505060206123d085828601612202565b9150509250929050565b6000806000606084860312156123f3576123f2612fbc565b5b6000612401868287016120fc565b935050602061241286828701612202565b925050604061242386828701612202565b9150509250925092565b6000806020838503121561244457612443612fbc565b5b600083013567ffffffffffffffff81111561246257612461612fb7565b5b61246e85828601612111565b92509250509250929050565b6000602082840312156124905761248f612fbc565b5b600061249e8482850161217c565b91505092915050565b6000602082840312156124bd576124bc612fbc565b5b60006124cb84828501612191565b91505092915050565b6000602082840312156124ea576124e9612fbc565b5b600082013567ffffffffffffffff81111561250857612507612fb7565b5b612514848285016121d4565b91505092915050565b60006020828403121561253357612532612fbc565b5b600061254184828501612202565b91505092915050565b60006125568383612843565b60808301905092915050565b600061256e83836128fc565b60208301905092915050565b61258381612d02565b82525050565b61259281612d02565b82525050565b60006125a382612ba7565b6125ad8185612bed565b93506125b883612b72565b8060005b838110156125e95781516125d0888261254a565b97506125db83612bd3565b9250506001810190506125bc565b5085935050505092915050565b600061260182612bb2565b61260b8185612bfe565b935061261683612b82565b8060005b8381101561264757815161262e8882612562565b975061263983612be0565b92505060018101905061261a565b5085935050505092915050565b61265d81612d14565b82525050565b61266c81612d14565b82525050565b600061267d82612bbd565b6126878185612c0f565b9350612697818560208601612da8565b6126a081612fc1565b840191505092915050565b60006126b682612bc8565b6126c08185612c2b565b93506126d0818560208601612da8565b6126d981612fc1565b840191505092915050565b60006126ef82612bc8565b6126f98185612c3c565b9350612709818560208601612da8565b80840191505092915050565b6000815461272281612ddb565b61272c8186612c3c565b9450600182166000811461274757600181146127585761278b565b60ff1983168652818601935061278b565b61276185612b92565b60005b8381101561278357815481890152600182019150602081019050612764565b838801955050505b50505092915050565b60006127a1602683612c2b565b91506127ac82612fd2565b604082019050919050565b60006127c4600583612c3c565b91506127cf82613021565b600582019050919050565b60006127e7602083612c2b565b91506127f28261304a565b602082019050919050565b600061280a600083612c20565b915061281582613073565b600082019050919050565b600061282d601083612c2b565b915061283882613076565b602082019050919050565b608082016000820151612859600085018261257a565b50602082015161286c602085018261291a565b50604082015161287f6040850182612654565b50606082015161289260608501826128ed565b50505050565b6080820160008201516128ae600085018261257a565b5060208201516128c1602085018261291a565b5060408201516128d46040850182612654565b5060608201516128e760608501826128ed565b50505050565b6128f681612d6c565b82525050565b61290581612d7b565b82525050565b61291481612d7b565b82525050565b61292381612d85565b82525050565b60006129358285612715565b915061294182846126e4565b915061294c826127b7565b91508190509392505050565b6000612963826127fd565b9150819050919050565b60006020820190506129826000830184612589565b92915050565b600060808201905061299d6000830187612589565b6129aa6020830186612589565b6129b7604083018561290b565b81810360608301526129c98184612672565b905095945050505050565b600060208201905081810360008301526129ee8184612598565b905092915050565b60006020820190508181036000830152612a1081846125f6565b905092915050565b6000602082019050612a2d6000830184612663565b92915050565b60006020820190508181036000830152612a4d81846126ab565b905092915050565b60006020820190508181036000830152612a6e81612794565b9050919050565b60006020820190508181036000830152612a8e816127da565b9050919050565b60006020820190508181036000830152612aae81612820565b9050919050565b6000608082019050612aca6000830184612898565b92915050565b6000602082019050612ae5600083018461290b565b92915050565b6000612af5612b06565b9050612b018282612e0d565b919050565b6000604051905090565b600067ffffffffffffffff821115612b2b57612b2a612f74565b5b612b3482612fc1565b9050602081019050919050565b600067ffffffffffffffff821115612b5c57612b5b612f74565b5b612b6582612fc1565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c5282612d7b565b9150612c5d83612d7b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c9257612c91612eb8565b5b828201905092915050565b6000612ca882612d7b565b9150612cb383612d7b565b925082612cc357612cc2612ee7565b5b828204905092915050565b6000612cd982612d7b565b9150612ce483612d7b565b925082821015612cf757612cf6612eb8565b5b828203905092915050565b6000612d0d82612d4c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015612dc6578082015181840152602081019050612dab565b83811115612dd5576000848401525b50505050565b60006002820490506001821680612df357607f821691505b60208210811415612e0757612e06612f16565b5b50919050565b612e1682612fc1565b810181811067ffffffffffffffff82111715612e3557612e34612f74565b5b80604052505050565b6000612e4982612d7b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612e7c57612e7b612eb8565b5b600182019050919050565b6000612e9282612d7b565b9150612e9d83612d7b565b925082612ead57612eac612ee7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6130a881612d02565b81146130b357600080fd5b50565b6130bf81612d14565b81146130ca57600080fd5b50565b6130d681612d20565b81146130e157600080fd5b50565b6130ed81612d7b565b81146130f857600080fd5b5056fea264697066735822122075d87145f14d62d104307ccd50d4c047d524795d2b0096f09668bbd7bf0ceeb964736f6c63430008070033

Deployed Bytecode Sourcemap

66508:1806:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20889:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21791:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28282:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27715:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17542:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31921:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67790:184;;;;;;;;;;;;;:::i;:::-;;34842:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67271:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55567:528;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67626:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23184:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18726:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65621:103;;;;;;;;;;;;;:::i;:::-;;67441:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59443:900;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66650:72;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64973:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21967:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56483:2513;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28840:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35633:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66750:73;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54980:428;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67018:188;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29231:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65879:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66560:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20889:639;20974:4;21313:10;21298:25;;:11;:25;;;;:102;;;;21390:10;21375:25;;:11;:25;;;;21298:102;:179;;;;21467:10;21452:25;;:11;:25;;;;21298:179;21278:199;;20889:639;;;:::o;21791:100::-;21845:13;21878:5;21871:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21791:100;:::o;28282:218::-;28358:7;28383:16;28391:7;28383;:16::i;:::-;28378:64;;28408:34;;;;;;;;;;;;;;28378:64;28462:15;:24;28478:7;28462:24;;;;;;;;;;;:30;;;;;;;;;;;;28455:37;;28282:218;;;:::o;27715:408::-;27804:13;27820:16;27828:7;27820;:16::i;:::-;27804:32;;27876:5;27853:28;;:19;:17;:19::i;:::-;:28;;;27849:175;;27901:44;27918:5;27925:19;:17;:19::i;:::-;27901:16;:44::i;:::-;27896:128;;27973:35;;;;;;;;;;;;;;27896:128;27849:175;28069:2;28036:15;:24;28052:7;28036:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;28107:7;28103:2;28087:28;;28096:5;28087:28;;;;;;;;;;;;27793:330;27715:408;;:::o;17542:323::-;17603:7;17831:15;:13;:15::i;:::-;17816:12;;17800:13;;:28;:46;17793:53;;17542:323;:::o;31921:2825::-;32063:27;32093;32112:7;32093:18;:27::i;:::-;32063:57;;32178:4;32137:45;;32153:19;32137:45;;;32133:86;;32191:28;;;;;;;;;;;;;;32133:86;32233:27;32262:23;32289:35;32316:7;32289:26;:35::i;:::-;32232:92;;;;32424:68;32449:15;32466:4;32472:19;:17;:19::i;:::-;32424:24;:68::i;:::-;32419:180;;32512:43;32529:4;32535:19;:17;:19::i;:::-;32512:16;:43::i;:::-;32507:92;;32564:35;;;;;;;;;;;;;;32507:92;32419:180;32630:1;32616:16;;:2;:16;;;32612:52;;;32641:23;;;;;;;;;;;;;;32612:52;32677:43;32699:4;32705:2;32709:7;32718:1;32677:21;:43::i;:::-;32813:15;32810:160;;;32953:1;32932:19;32925:30;32810:160;33350:18;:24;33369:4;33350:24;;;;;;;;;;;;;;;;33348:26;;;;;;;;;;;;33419:18;:22;33438:2;33419:22;;;;;;;;;;;;;;;;33417:24;;;;;;;;;;;33741:146;33778:2;33827:45;33842:4;33848:2;33852:19;33827:14;:45::i;:::-;13941:8;33799:73;33741:18;:146::i;:::-;33712:17;:26;33730:7;33712:26;;;;;;;;;;;:175;;;;34058:1;13941:8;34007:19;:47;:52;34003:627;;;34080:19;34112:1;34102:7;:11;34080:33;;34269:1;34235:17;:30;34253:11;34235:30;;;;;;;;;;;;:35;34231:384;;;34373:13;;34358:11;:28;34354:242;;34553:19;34520:17;:30;34538:11;34520:30;;;;;;;;;;;:52;;;;34354:242;34231:384;34061:569;34003:627;34677:7;34673:2;34658:27;;34667:4;34658:27;;;;;;;;;;;;34696:42;34717:4;34723:2;34727:7;34736:1;34696:20;:42::i;:::-;32052:2694;;;31921:2825;;;:::o;67790:184::-;64859:13;:11;:13::i;:::-;67841:12:::1;67867;;;;;;;;;;;67859:26;;67893:21;67859:60;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67840:79;;;67938:7;67930:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;67829:145;67790:184::o:0;34842:193::-;34988:39;35005:4;35011:2;35015:7;34988:39;;;;;;;;;;;;:16;:39::i;:::-;34842:193;;;:::o;67271:104::-;64859:13;:11;:13::i;:::-;67362:5:::1;67347:12;:20;;;;;;;;;;;;:::i;:::-;;67271:104:::0;:::o;55567:528::-;55711:23;55777:22;55802:8;;:15;;55777:40;;55832:34;55890:14;55869:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;55832:73;;55925:9;55920:125;55941:14;55936:1;:19;55920:125;;55997:32;56017:8;;56026:1;56017:11;;;;;;;:::i;:::-;;;;;;;;55997:19;:32::i;:::-;55981:10;55992:1;55981:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;55957:3;;;;;55920:125;;;;56066:10;56059:17;;;;55567:528;;;;:::o;67626:114::-;64859:13;:11;:13::i;:::-;67719::::1;67704:12;;:28;;;;;;;;;;;;;;;;;;67626:114:::0;:::o;23184:152::-;23256:7;23299:27;23318:7;23299:18;:27::i;:::-;23276:52;;23184:152;;;:::o;18726:233::-;18798:7;18839:1;18822:19;;:5;:19;;;18818:60;;;18850:28;;;;;;;;;;;;;;18818:60;12885:13;18896:18;:25;18915:5;18896:25;;;;;;;;;;;;;;;;:55;18889:62;;18726:233;;;:::o;65621:103::-;64859:13;:11;:13::i;:::-;65686:30:::1;65713:1;65686:18;:30::i;:::-;65621:103::o:0;67441:118::-;64859:13;:11;:13::i;:::-;67537:14:::1;67521:13;;:30;;;;;;;;;;;;;;;;;;67441:118:::0;:::o;59443:900::-;59521:16;59575:19;59609:25;59649:22;59674:16;59684:5;59674:9;:16::i;:::-;59649:41;;59705:25;59747:14;59733:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59705:57;;59777:31;;:::i;:::-;59828:9;59840:15;:13;:15::i;:::-;59828:27;;59823:472;59872:14;59857:11;:29;59823:472;;59924:15;59937:1;59924:12;:15::i;:::-;59912:27;;59962:9;:16;;;59958:73;;;60003:8;;59958:73;60079:1;60053:28;;:9;:14;;;:28;;;60049:111;;60126:9;:14;;;60106:34;;60049:111;60203:5;60182:26;;:17;:26;;;60178:102;;;60259:1;60233:8;60242:13;;;;;;60233:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;60178:102;59823:472;59888:3;;;;;59823:472;;;;60316:8;60309:15;;;;;;;59443:900;;;:::o;66650:72::-;;;;;;;;;;;;;:::o;64973:87::-;65019:7;65046:6;;;;;;;;;;;65039:13;;64973:87;:::o;21967:104::-;22023:13;22056:7;22049:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21967:104;:::o;56483:2513::-;56626:16;56693:4;56684:5;:13;56680:45;;56706:19;;;;;;;;;;;;;;56680:45;56740:19;56774:17;56794:14;:12;:14::i;:::-;56774:34;;56894:15;:13;:15::i;:::-;56886:5;:23;56882:87;;;56938:15;:13;:15::i;:::-;56930:23;;56882:87;57045:9;57038:4;:16;57034:73;;;57082:9;57075:16;;57034:73;57121:25;57149:16;57159:5;57149:9;:16::i;:::-;57121:44;;57343:4;57335:5;:12;57331:278;;;57368:19;57397:5;57390:4;:12;57368:34;;57439:17;57425:11;:31;57421:111;;;57501:11;57481:31;;57421:111;57349:198;57331:278;;;57592:1;57572:21;;57331:278;57623:25;57665:17;57651:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57623:60;;57723:1;57702:17;:22;57698:78;;;57752:8;57745:15;;;;;;;;57698:78;57920:31;57954:26;57974:5;57954:19;:26::i;:::-;57920:60;;57995:25;58240:9;:16;;;58235:92;;58297:9;:14;;;58277:34;;58235:92;58346:9;58358:5;58346:17;;58341:478;58370:4;58365:1;:9;;:45;;;;;58393:17;58378:11;:32;;58365:45;58341:478;;;58448:15;58461:1;58448:12;:15::i;:::-;58436:27;;58486:9;:16;;;58482:73;;;58527:8;;58482:73;58603:1;58577:28;;:9;:14;;;:28;;;58573:111;;58650:9;:14;;;58630:34;;58573:111;58727:5;58706:26;;:17;:26;;;58702:102;;;58783:1;58757:8;58766:13;;;;;;58757:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;58702:102;58341:478;58412:3;;;;;58341:478;;;;58921:11;58911:8;58904:29;58969:8;58962:15;;;;;;;;56483:2513;;;;;;:::o;28840:234::-;28987:8;28935:18;:39;28954:19;:17;:19::i;:::-;28935:39;;;;;;;;;;;;;;;:49;28975:8;28935:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;29047:8;29011:55;;29026:19;:17;:19::i;:::-;29011:55;;;29057:8;29011:55;;;;;;:::i;:::-;;;;;;;;28840:234;;:::o;35633:407::-;35808:31;35821:4;35827:2;35831:7;35808:12;:31::i;:::-;35872:1;35854:2;:14;;;:19;35850:183;;35893:56;35924:4;35930:2;35934:7;35943:5;35893:30;:56::i;:::-;35888:145;;35977:40;;;;;;;;;;;;;;35888:145;35850:183;35633:407;;;;:::o;66750:73::-;;;;;;;;;;;;;:::o;54980:428::-;55064:21;;:::i;:::-;55098:31;;:::i;:::-;55154:15;:13;:15::i;:::-;55144:7;:25;:54;;;;55184:14;:12;:14::i;:::-;55173:7;:25;;55144:54;55140:103;;;55222:9;55215:16;;;;;55140:103;55265:21;55278:7;55265:12;:21::i;:::-;55253:33;;55301:9;:16;;;55297:65;;;55341:9;55334:16;;;;;55297:65;55379:21;55392:7;55379:12;:21::i;:::-;55372:28;;;54980:428;;;;:::o;67018:188::-;67089:18;67150:12;67163:25;67180:7;67163:16;:25::i;:::-;67133:64;;;;;;;;;:::i;:::-;;;;;;;;;;;;;67119:79;;67018:188;;;:::o;29231:164::-;29328:4;29352:18;:25;29371:5;29352:25;;;;;;;;;;;;;;;:35;29378:8;29352:35;;;;;;;;;;;;;;;;;;;;;;;;;29345:42;;29231:164;;;;:::o;65879:201::-;64859:13;:11;:13::i;:::-;65988:1:::1;65968:22;;:8;:22;;;;65960:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;66044:28;66063:8;66044:18;:28::i;:::-;65879:201:::0;:::o;66560:83::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29653:282::-;29718:4;29774:7;29755:15;:13;:15::i;:::-;:26;;:66;;;;;29808:13;;29798:7;:23;29755:66;:153;;;;;29907:1;13661:8;29859:17;:26;29877:7;29859:26;;;;;;;;;;;;:44;:49;29755:153;29735:173;;29653:282;;;:::o;51961:105::-;52021:7;52048:10;52041:17;;51961:105;:::o;68055:93::-;68112:7;68139:1;68132:8;;68055:93;:::o;24339:1275::-;24406:7;24426:12;24441:7;24426:22;;24509:4;24490:15;:13;:15::i;:::-;:23;24486:1061;;24543:13;;24536:4;:20;24532:1015;;;24581:14;24598:17;:23;24616:4;24598:23;;;;;;;;;;;;24581:40;;24715:1;13661:8;24687:6;:24;:29;24683:845;;;25352:113;25369:1;25359:6;:11;25352:113;;;25412:17;:25;25430:6;;;;;;;25412:25;;;;;;;;;;;;25403:34;;25352:113;;;25498:6;25491:13;;;;;;24683:845;24558:989;24532:1015;24486:1061;25575:31;;;;;;;;;;;;;;24339:1275;;;;:::o;30816:485::-;30918:27;30947:23;30988:38;31029:15;:24;31045:7;31029:24;;;;;;;;;;;30988:65;;31206:18;31183:41;;31263:19;31257:26;31238:45;;31168:126;30816:485;;;:::o;30044:659::-;30193:11;30358:16;30351:5;30347:28;30338:37;;30518:16;30507:9;30503:32;30490:45;;30668:15;30657:9;30654:30;30646:5;30635:9;30632:20;30629:56;30619:66;;30044:659;;;;;:::o;36702:159::-;;;;;:::o;51270:311::-;51405:7;51425:16;14065:3;51451:19;:41;;51425:68;;14065:3;51519:31;51530:4;51536:2;51540:9;51519:10;:31::i;:::-;51511:40;;:62;;51504:69;;;51270:311;;;;;:::o;26162:450::-;26242:14;26410:16;26403:5;26399:28;26390:37;;26587:5;26573:11;26548:23;26544:41;26541:52;26534:5;26531:63;26521:73;;26162:450;;;;:::o;37526:158::-;;;;;:::o;65138:132::-;65213:12;:10;:12::i;:::-;65202:23;;:7;:5;:7::i;:::-;:23;;;65194:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;65138:132::o;66240:191::-;66314:16;66333:6;;;;;;;;;;;66314:25;;66359:8;66350:6;;:17;;;;;;;;;;;;;;;;;;66414:8;66383:40;;66404:8;66383:40;;;;;;;;;;;;66303:128;66240:191;:::o;23787:161::-;23855:21;;:::i;:::-;23896:44;23915:17;:24;23933:5;23915:24;;;;;;;;;;;;23896:18;:44::i;:::-;23889:51;;23787:161;;;:::o;17229:103::-;17284:7;17311:13;;17304:20;;17229:103;:::o;38124:716::-;38287:4;38333:2;38308:45;;;38354:19;:17;:19::i;:::-;38375:4;38381:7;38390:5;38308:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38304:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38608:1;38591:6;:13;:18;38587:235;;;38637:40;;;;;;;;;;;;;;38587:235;38780:6;38774:13;38765:6;38761:2;38757:15;38750:38;38304:529;38477:54;;;38467:64;;;:6;:64;;;;38460:71;;;38124:716;;;;;;:::o;23525:166::-;23595:21;;:::i;:::-;23636:47;23655:27;23674:7;23655:18;:27::i;:::-;23636:18;:47::i;:::-;23629:54;;23525:166;;;:::o;60778:723::-;60834:13;61064:1;61055:5;:10;61051:53;;;61082:10;;;;;;;;;;;;;;;;;;;;;61051:53;61114:12;61129:5;61114:20;;61145:14;61170:78;61185:1;61177:4;:9;61170:78;;61203:8;;;;;:::i;:::-;;;;61234:2;61226:10;;;;;:::i;:::-;;;61170:78;;;61258:19;61290:6;61280:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61258:39;;61308:154;61324:1;61315:5;:10;61308:154;;61352:1;61342:11;;;;;:::i;:::-;;;61419:2;61411:5;:10;;;;:::i;:::-;61398:2;:24;;;;:::i;:::-;61385:39;;61368:6;61375;61368:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;61448:2;61439:11;;;;;:::i;:::-;;;61308:154;;;61486:6;61472:21;;;;;60778:723;;;;:::o;50971:147::-;51108:6;50971:147;;;;;:::o;63524:98::-;63577:7;63604:10;63597:17;;63524:98;:::o;25713:366::-;25779:31;;:::i;:::-;25856:6;25823:9;:14;;:41;;;;;;;;;;;13544:3;25909:6;:33;;25875:9;:24;;:68;;;;;;;;;;;26001:1;13661:8;25973:6;:24;:29;;25954:9;:16;;:48;;;;;;;;;;;14065:3;26042:6;:28;;26013:9;:19;;:58;;;;;;;;;;;25713:366;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:619::-;6288:6;6296;6304;6353:2;6341:9;6332:7;6328:23;6324:32;6321:119;;;6359:79;;:::i;:::-;6321:119;6479:1;6504:53;6549:7;6540:6;6529:9;6525:22;6504:53;:::i;:::-;6494:63;;6450:117;6606:2;6632:53;6677:7;6668:6;6657:9;6653:22;6632:53;:::i;:::-;6622:63;;6577:118;6734:2;6760:53;6805:7;6796:6;6785:9;6781:22;6760:53;:::i;:::-;6750:63;;6705:118;6211:619;;;;;:::o;6836:559::-;6922:6;6930;6979:2;6967:9;6958:7;6954:23;6950:32;6947:119;;;6985:79;;:::i;:::-;6947:119;7133:1;7122:9;7118:17;7105:31;7163:18;7155:6;7152:30;7149:117;;;7185:79;;:::i;:::-;7149:117;7298:80;7370:7;7361:6;7350:9;7346:22;7298:80;:::i;:::-;7280:98;;;;7076:312;6836:559;;;;;:::o;7401:327::-;7459:6;7508:2;7496:9;7487:7;7483:23;7479:32;7476:119;;;7514:79;;:::i;:::-;7476:119;7634:1;7659:52;7703:7;7694:6;7683:9;7679:22;7659:52;:::i;:::-;7649:62;;7605:116;7401:327;;;;:::o;7734:349::-;7803:6;7852:2;7840:9;7831:7;7827:23;7823:32;7820:119;;;7858:79;;:::i;:::-;7820:119;7978:1;8003:63;8058:7;8049:6;8038:9;8034:22;8003:63;:::i;:::-;7993:73;;7949:127;7734:349;;;;:::o;8089:509::-;8158:6;8207:2;8195:9;8186:7;8182:23;8178:32;8175:119;;;8213:79;;:::i;:::-;8175:119;8361:1;8350:9;8346:17;8333:31;8391:18;8383:6;8380:30;8377:117;;;8413:79;;:::i;:::-;8377:117;8518:63;8573:7;8564:6;8553:9;8549:22;8518:63;:::i;:::-;8508:73;;8304:287;8089:509;;;;:::o;8604:329::-;8663:6;8712:2;8700:9;8691:7;8687:23;8683:32;8680:119;;;8718:79;;:::i;:::-;8680:119;8838:1;8863:53;8908:7;8899:6;8888:9;8884:22;8863:53;:::i;:::-;8853:63;;8809:117;8604:329;;;;:::o;8939:299::-;9068:10;9089:106;9191:3;9183:6;9089:106;:::i;:::-;9227:4;9222:3;9218:14;9204:28;;8939:299;;;;:::o;9244:179::-;9313:10;9334:46;9376:3;9368:6;9334:46;:::i;:::-;9412:4;9407:3;9403:14;9389:28;;9244:179;;;;:::o;9429:108::-;9506:24;9524:5;9506:24;:::i;:::-;9501:3;9494:37;9429:108;;:::o;9543:118::-;9630:24;9648:5;9630:24;:::i;:::-;9625:3;9618:37;9543:118;;:::o;9743:972::-;9922:3;9951:84;10029:5;9951:84;:::i;:::-;10051:116;10160:6;10155:3;10051:116;:::i;:::-;10044:123;;10191:86;10271:5;10191:86;:::i;:::-;10300:7;10331:1;10316:374;10341:6;10338:1;10335:13;10316:374;;;10417:6;10411:13;10444:123;10563:3;10548:13;10444:123;:::i;:::-;10437:130;;10590:90;10673:6;10590:90;:::i;:::-;10580:100;;10376:314;10363:1;10360;10356:9;10351:14;;10316:374;;;10320:14;10706:3;10699:10;;9927:788;;;9743:972;;;;:::o;10751:732::-;10870:3;10899:54;10947:5;10899:54;:::i;:::-;10969:86;11048:6;11043:3;10969:86;:::i;:::-;10962:93;;11079:56;11129:5;11079:56;:::i;:::-;11158:7;11189:1;11174:284;11199:6;11196:1;11193:13;11174:284;;;11275:6;11269:13;11302:63;11361:3;11346:13;11302:63;:::i;:::-;11295:70;;11388:60;11441:6;11388:60;:::i;:::-;11378:70;;11234:224;11221:1;11218;11214:9;11209:14;;11174:284;;;11178:14;11474:3;11467:10;;10875:608;;;10751:732;;;;:::o;11489:99::-;11560:21;11575:5;11560:21;:::i;:::-;11555:3;11548:34;11489:99;;:::o;11594:109::-;11675:21;11690:5;11675:21;:::i;:::-;11670:3;11663:34;11594:109;;:::o;11709:360::-;11795:3;11823:38;11855:5;11823:38;:::i;:::-;11877:70;11940:6;11935:3;11877:70;:::i;:::-;11870:77;;11956:52;12001:6;11996:3;11989:4;11982:5;11978:16;11956:52;:::i;:::-;12033:29;12055:6;12033:29;:::i;:::-;12028:3;12024:39;12017:46;;11799:270;11709:360;;;;:::o;12075:364::-;12163:3;12191:39;12224:5;12191:39;:::i;:::-;12246:71;12310:6;12305:3;12246:71;:::i;:::-;12239:78;;12326:52;12371:6;12366:3;12359:4;12352:5;12348:16;12326:52;:::i;:::-;12403:29;12425:6;12403:29;:::i;:::-;12398:3;12394:39;12387:46;;12167:272;12075:364;;;;:::o;12445:377::-;12551:3;12579:39;12612:5;12579:39;:::i;:::-;12634:89;12716:6;12711:3;12634:89;:::i;:::-;12627:96;;12732:52;12777:6;12772:3;12765:4;12758:5;12754:16;12732:52;:::i;:::-;12809:6;12804:3;12800:16;12793:23;;12555:267;12445:377;;;;:::o;12852:845::-;12955:3;12992:5;12986:12;13021:36;13047:9;13021:36;:::i;:::-;13073:89;13155:6;13150:3;13073:89;:::i;:::-;13066:96;;13193:1;13182:9;13178:17;13209:1;13204:137;;;;13355:1;13350:341;;;;13171:520;;13204:137;13288:4;13284:9;13273;13269:25;13264:3;13257:38;13324:6;13319:3;13315:16;13308:23;;13204:137;;13350:341;13417:38;13449:5;13417:38;:::i;:::-;13477:1;13491:154;13505:6;13502:1;13499:13;13491:154;;;13579:7;13573:14;13569:1;13564:3;13560:11;13553:35;13629:1;13620:7;13616:15;13605:26;;13527:4;13524:1;13520:12;13515:17;;13491:154;;;13674:6;13669:3;13665:16;13658:23;;13357:334;;13171:520;;12959:738;;12852:845;;;;:::o;13703:366::-;13845:3;13866:67;13930:2;13925:3;13866:67;:::i;:::-;13859:74;;13942:93;14031:3;13942:93;:::i;:::-;14060:2;14055:3;14051:12;14044:19;;13703:366;;;:::o;14075:400::-;14235:3;14256:84;14338:1;14333:3;14256:84;:::i;:::-;14249:91;;14349:93;14438:3;14349:93;:::i;:::-;14467:1;14462:3;14458:11;14451:18;;14075:400;;;:::o;14481:366::-;14623:3;14644:67;14708:2;14703:3;14644:67;:::i;:::-;14637:74;;14720:93;14809:3;14720:93;:::i;:::-;14838:2;14833:3;14829:12;14822:19;;14481:366;;;:::o;14853:398::-;15012:3;15033:83;15114:1;15109:3;15033:83;:::i;:::-;15026:90;;15125:93;15214:3;15125:93;:::i;:::-;15243:1;15238:3;15234:11;15227:18;;14853:398;;;:::o;15257:366::-;15399:3;15420:67;15484:2;15479:3;15420:67;:::i;:::-;15413:74;;15496:93;15585:3;15496:93;:::i;:::-;15614:2;15609:3;15605:12;15598:19;;15257:366;;;:::o;15701:862::-;15848:4;15843:3;15839:14;15935:4;15928:5;15924:16;15918:23;15954:63;16011:4;16006:3;16002:14;15988:12;15954:63;:::i;:::-;15863:164;16119:4;16112:5;16108:16;16102:23;16138:61;16193:4;16188:3;16184:14;16170:12;16138:61;:::i;:::-;16037:172;16293:4;16286:5;16282:16;16276:23;16312:57;16363:4;16358:3;16354:14;16340:12;16312:57;:::i;:::-;16219:160;16466:4;16459:5;16455:16;16449:23;16485:61;16540:4;16535:3;16531:14;16517:12;16485:61;:::i;:::-;16389:167;15817:746;15701:862;;:::o;16641:872::-;16798:4;16793:3;16789:14;16885:4;16878:5;16874:16;16868:23;16904:63;16961:4;16956:3;16952:14;16938:12;16904:63;:::i;:::-;16813:164;17069:4;17062:5;17058:16;17052:23;17088:61;17143:4;17138:3;17134:14;17120:12;17088:61;:::i;:::-;16987:172;17243:4;17236:5;17232:16;17226:23;17262:57;17313:4;17308:3;17304:14;17290:12;17262:57;:::i;:::-;17169:160;17416:4;17409:5;17405:16;17399:23;17435:61;17490:4;17485:3;17481:14;17467:12;17435:61;:::i;:::-;17339:167;16767:746;16641:872;;:::o;17519:105::-;17594:23;17611:5;17594:23;:::i;:::-;17589:3;17582:36;17519:105;;:::o;17630:108::-;17707:24;17725:5;17707:24;:::i;:::-;17702:3;17695:37;17630:108;;:::o;17744:118::-;17831:24;17849:5;17831:24;:::i;:::-;17826:3;17819:37;17744:118;;:::o;17868:105::-;17943:23;17960:5;17943:23;:::i;:::-;17938:3;17931:36;17868:105;;:::o;17979:695::-;18257:3;18279:92;18367:3;18358:6;18279:92;:::i;:::-;18272:99;;18388:95;18479:3;18470:6;18388:95;:::i;:::-;18381:102;;18500:148;18644:3;18500:148;:::i;:::-;18493:155;;18665:3;18658:10;;17979:695;;;;;:::o;18680:379::-;18864:3;18886:147;19029:3;18886:147;:::i;:::-;18879:154;;19050:3;19043:10;;18680:379;;;:::o;19065:222::-;19158:4;19196:2;19185:9;19181:18;19173:26;;19209:71;19277:1;19266:9;19262:17;19253:6;19209:71;:::i;:::-;19065:222;;;;:::o;19293:640::-;19488:4;19526:3;19515:9;19511:19;19503:27;;19540:71;19608:1;19597:9;19593:17;19584:6;19540:71;:::i;:::-;19621:72;19689:2;19678:9;19674:18;19665:6;19621:72;:::i;:::-;19703;19771:2;19760:9;19756:18;19747:6;19703:72;:::i;:::-;19822:9;19816:4;19812:20;19807:2;19796:9;19792:18;19785:48;19850:76;19921:4;19912:6;19850:76;:::i;:::-;19842:84;;19293:640;;;;;;;:::o;19939:493::-;20142:4;20180:2;20169:9;20165:18;20157:26;;20229:9;20223:4;20219:20;20215:1;20204:9;20200:17;20193:47;20257:168;20420:4;20411:6;20257:168;:::i;:::-;20249:176;;19939:493;;;;:::o;20438:373::-;20581:4;20619:2;20608:9;20604:18;20596:26;;20668:9;20662:4;20658:20;20654:1;20643:9;20639:17;20632:47;20696:108;20799:4;20790:6;20696:108;:::i;:::-;20688:116;;20438:373;;;;:::o;20817:210::-;20904:4;20942:2;20931:9;20927:18;20919:26;;20955:65;21017:1;21006:9;21002:17;20993:6;20955:65;:::i;:::-;20817:210;;;;:::o;21033:313::-;21146:4;21184:2;21173:9;21169:18;21161:26;;21233:9;21227:4;21223:20;21219:1;21208:9;21204:17;21197:47;21261:78;21334:4;21325:6;21261:78;:::i;:::-;21253:86;;21033:313;;;;:::o;21352:419::-;21518:4;21556:2;21545:9;21541:18;21533:26;;21605:9;21599:4;21595:20;21591:1;21580:9;21576:17;21569:47;21633:131;21759:4;21633:131;:::i;:::-;21625:139;;21352:419;;;:::o;21777:::-;21943:4;21981:2;21970:9;21966:18;21958:26;;22030:9;22024:4;22020:20;22016:1;22005:9;22001:17;21994:47;22058:131;22184:4;22058:131;:::i;:::-;22050:139;;21777:419;;;:::o;22202:::-;22368:4;22406:2;22395:9;22391:18;22383:26;;22455:9;22449:4;22445:20;22441:1;22430:9;22426:17;22419:47;22483:131;22609:4;22483:131;:::i;:::-;22475:139;;22202:419;;;:::o;22627:343::-;22780:4;22818:3;22807:9;22803:19;22795:27;;22832:131;22960:1;22949:9;22945:17;22936:6;22832:131;:::i;:::-;22627:343;;;;:::o;22976:222::-;23069:4;23107:2;23096:9;23092:18;23084:26;;23120:71;23188:1;23177:9;23173:17;23164:6;23120:71;:::i;:::-;22976:222;;;;:::o;23204:129::-;23238:6;23265:20;;:::i;:::-;23255:30;;23294:33;23322:4;23314:6;23294:33;:::i;:::-;23204:129;;;:::o;23339:75::-;23372:6;23405:2;23399:9;23389:19;;23339:75;:::o;23420:307::-;23481:4;23571:18;23563:6;23560:30;23557:56;;;23593:18;;:::i;:::-;23557:56;23631:29;23653:6;23631:29;:::i;:::-;23623:37;;23715:4;23709;23705:15;23697:23;;23420:307;;;:::o;23733:308::-;23795:4;23885:18;23877:6;23874:30;23871:56;;;23907:18;;:::i;:::-;23871:56;23945:29;23967:6;23945:29;:::i;:::-;23937:37;;24029:4;24023;24019:15;24011:23;;23733:308;;;:::o;24047:162::-;24144:4;24167:3;24159:11;;24197:4;24192:3;24188:14;24180:22;;24047:162;;;:::o;24215:132::-;24282:4;24305:3;24297:11;;24335:4;24330:3;24326:14;24318:22;;24215:132;;;:::o;24353:141::-;24402:4;24425:3;24417:11;;24448:3;24445:1;24438:14;24482:4;24479:1;24469:18;24461:26;;24353:141;;;:::o;24500:144::-;24597:6;24631:5;24625:12;24615:22;;24500:144;;;:::o;24650:114::-;24717:6;24751:5;24745:12;24735:22;;24650:114;;;:::o;24770:98::-;24821:6;24855:5;24849:12;24839:22;;24770:98;;;:::o;24874:99::-;24926:6;24960:5;24954:12;24944:22;;24874:99;;;:::o;24979:143::-;25079:4;25111;25106:3;25102:14;25094:22;;24979:143;;;:::o;25128:113::-;25198:4;25230;25225:3;25221:14;25213:22;;25128:113;;;:::o;25247:214::-;25376:11;25410:6;25405:3;25398:19;25450:4;25445:3;25441:14;25426:29;;25247:214;;;;:::o;25467:184::-;25566:11;25600:6;25595:3;25588:19;25640:4;25635:3;25631:14;25616:29;;25467:184;;;;:::o;25657:168::-;25740:11;25774:6;25769:3;25762:19;25814:4;25809:3;25805:14;25790:29;;25657:168;;;;:::o;25831:147::-;25932:11;25969:3;25954:18;;25831:147;;;;:::o;25984:169::-;26068:11;26102:6;26097:3;26090:19;26142:4;26137:3;26133:14;26118:29;;25984:169;;;;:::o;26159:148::-;26261:11;26298:3;26283:18;;26159:148;;;;:::o;26313:305::-;26353:3;26372:20;26390:1;26372:20;:::i;:::-;26367:25;;26406:20;26424:1;26406:20;:::i;:::-;26401:25;;26560:1;26492:66;26488:74;26485:1;26482:81;26479:107;;;26566:18;;:::i;:::-;26479:107;26610:1;26607;26603:9;26596:16;;26313:305;;;;:::o;26624:185::-;26664:1;26681:20;26699:1;26681:20;:::i;:::-;26676:25;;26715:20;26733:1;26715:20;:::i;:::-;26710:25;;26754:1;26744:35;;26759:18;;:::i;:::-;26744:35;26801:1;26798;26794:9;26789:14;;26624:185;;;;:::o;26815:191::-;26855:4;26875:20;26893:1;26875:20;:::i;:::-;26870:25;;26909:20;26927:1;26909:20;:::i;:::-;26904:25;;26948:1;26945;26942:8;26939:34;;;26953:18;;:::i;:::-;26939:34;26998:1;26995;26991:9;26983:17;;26815:191;;;;:::o;27012:96::-;27049:7;27078:24;27096:5;27078:24;:::i;:::-;27067:35;;27012:96;;;:::o;27114:90::-;27148:7;27191:5;27184:13;27177:21;27166:32;;27114:90;;;:::o;27210:149::-;27246:7;27286:66;27279:5;27275:78;27264:89;;27210:149;;;:::o;27365:126::-;27402:7;27442:42;27435:5;27431:54;27420:65;;27365:126;;;:::o;27497:91::-;27533:7;27573:8;27566:5;27562:20;27551:31;;27497:91;;;:::o;27594:77::-;27631:7;27660:5;27649:16;;27594:77;;;:::o;27677:101::-;27713:7;27753:18;27746:5;27742:30;27731:41;;27677:101;;;:::o;27784:154::-;27868:6;27863:3;27858;27845:30;27930:1;27921:6;27916:3;27912:16;27905:27;27784:154;;;:::o;27944:307::-;28012:1;28022:113;28036:6;28033:1;28030:13;28022:113;;;28121:1;28116:3;28112:11;28106:18;28102:1;28097:3;28093:11;28086:39;28058:2;28055:1;28051:10;28046:15;;28022:113;;;28153:6;28150:1;28147:13;28144:101;;;28233:1;28224:6;28219:3;28215:16;28208:27;28144:101;27993:258;27944:307;;;:::o;28257:320::-;28301:6;28338:1;28332:4;28328:12;28318:22;;28385:1;28379:4;28375:12;28406:18;28396:81;;28462:4;28454:6;28450:17;28440:27;;28396:81;28524:2;28516:6;28513:14;28493:18;28490:38;28487:84;;;28543:18;;:::i;:::-;28487:84;28308:269;28257:320;;;:::o;28583:281::-;28666:27;28688:4;28666:27;:::i;:::-;28658:6;28654:40;28796:6;28784:10;28781:22;28760:18;28748:10;28745:34;28742:62;28739:88;;;28807:18;;:::i;:::-;28739:88;28847:10;28843:2;28836:22;28626:238;28583:281;;:::o;28870:233::-;28909:3;28932:24;28950:5;28932:24;:::i;:::-;28923:33;;28978:66;28971:5;28968:77;28965:103;;;29048:18;;:::i;:::-;28965:103;29095:1;29088:5;29084:13;29077:20;;28870:233;;;:::o;29109:176::-;29141:1;29158:20;29176:1;29158:20;:::i;:::-;29153:25;;29192:20;29210:1;29192:20;:::i;:::-;29187:25;;29231:1;29221:35;;29236:18;;:::i;:::-;29221:35;29277:1;29274;29270:9;29265:14;;29109:176;;;;:::o;29291:180::-;29339:77;29336:1;29329:88;29436:4;29433:1;29426:15;29460:4;29457:1;29450:15;29477:180;29525:77;29522:1;29515:88;29622:4;29619:1;29612:15;29646:4;29643:1;29636:15;29663:180;29711:77;29708:1;29701:88;29808:4;29805:1;29798:15;29832:4;29829:1;29822:15;29849:180;29897:77;29894:1;29887:88;29994:4;29991:1;29984:15;30018:4;30015:1;30008:15;30035:180;30083:77;30080:1;30073:88;30180:4;30177:1;30170:15;30204:4;30201:1;30194:15;30221:117;30330:1;30327;30320:12;30344:117;30453:1;30450;30443:12;30467:117;30576:1;30573;30566:12;30590:117;30699:1;30696;30689:12;30713:117;30822:1;30819;30812:12;30836:117;30945:1;30942;30935:12;30959:102;31000:6;31051:2;31047:7;31042:2;31035:5;31031:14;31027:28;31017:38;;30959:102;;;:::o;31067:225::-;31207:34;31203:1;31195:6;31191:14;31184:58;31276:8;31271:2;31263:6;31259:15;31252:33;31067:225;:::o;31298:155::-;31438:7;31434:1;31426:6;31422:14;31415:31;31298:155;:::o;31459:182::-;31599:34;31595:1;31587:6;31583:14;31576:58;31459:182;:::o;31647:114::-;;:::o;31767:166::-;31907:18;31903:1;31895:6;31891:14;31884:42;31767:166;:::o;31939:122::-;32012:24;32030:5;32012:24;:::i;:::-;32005:5;32002:35;31992:63;;32051:1;32048;32041:12;31992:63;31939:122;:::o;32067:116::-;32137:21;32152:5;32137:21;:::i;:::-;32130:5;32127:32;32117:60;;32173:1;32170;32163:12;32117:60;32067:116;:::o;32189:120::-;32261:23;32278:5;32261:23;:::i;:::-;32254:5;32251:34;32241:62;;32299:1;32296;32289:12;32241:62;32189:120;:::o;32315:122::-;32388:24;32406:5;32388:24;:::i;:::-;32381:5;32378:35;32368:63;;32427:1;32424;32417:12;32368:63;32315:122;:::o

Swarm Source

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