ETH Price: $3,128.80 (+1.59%)
Gas: 3 Gwei

Token

The Feline Experiment (TFE)
 

Overview

Max Total Supply

3,000 TFE

Holders

1,175

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TFE
0x22cba5b7ebcfde13b1ca0ccbae1c92d9098e6c2a
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:
TheFelineExperiment

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-30
*/

// SPDX-License-Identifier: MIT


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}





/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
        _;
    }
}

// File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/529cceeda9f5f8e28812c20042cc57626f784718/src/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

// File: erc721a/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: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: contracts/TheFelineExperiment.sol



pragma solidity ^0.8.15;








contract TheFelineExperiment is ERC721A, DefaultOperatorFilterer, Ownable {

    mapping (address => bool) public minterAddress;
    bool public flipMint;
    string public baseURI;  
    uint256 public price = 0;
    uint256 public boxSupply = 3000;
    uint256 public mintMax = 10;
    mapping (address => uint256) public walletPublic;


    constructor () ERC721A("The Feline Experiment", "TFE") {
        flipMint = false;
    }

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

    // Mint
    function publicMint(uint256 qty) external payable
    {
        require(flipMint , "Mint has not begun.");
        require(qty <= mintMax, "Reached Max!");
        require(totalSupply() + qty <= boxSupply,"Boxes Sold Out!");
        require(msg.value >= qty * price,"Missing ETH!");
        walletPublic[msg.sender] += qty;
        _safeMint(msg.sender, qty);
    }


    /////////////////////////////
    // CONTRACT MANAGEMENT 
    /////////////////////////////

    function toggleMint() public onlyOwner {
        flipMint = !flipMint;
    }

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

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

    function withdrawFunds() public onlyOwner {
		payable(msg.sender).transfer(address(this).balance);
        
	}
        function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
        
    }

        function setMaxMints(uint256 newMax) public onlyOwner {
        mintMax = newMax;

    }




    /////////////////////////////
    // OPENSEA FILTER REGISTRY 
    /////////////////////////////

    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        payable
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"boxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minterAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600c55610bb8600d55600a600e553480156200002157600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601581526020017f5468652046656c696e65204578706572696d656e7400000000000000000000008152506040518060400160405280600381526020017f54464500000000000000000000000000000000000000000000000000000000008152508160029081620000b691906200066a565b508060039081620000c891906200066a565b50620000d96200031960201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620002d65780156200019c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200016292919062000796565b600060405180830381600087803b1580156200017d57600080fd5b505af115801562000192573d6000803e3d6000fd5b50505050620002d5565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000256576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200021c92919062000796565b600060405180830381600087803b1580156200023757600080fd5b505af11580156200024c573d6000803e3d6000fd5b50505050620002d4565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200029f9190620007c3565b600060405180830381600087803b158015620002ba57600080fd5b505af1158015620002cf573d6000803e3d6000fd5b505050505b5b5b5050620002f8620002ec6200032260201b60201c565b6200032a60201b60201c565b6000600a60006101000a81548160ff021916908315150217905550620007e0565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200047257607f821691505b6020821081036200048857620004876200042a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004f27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004b3565b620004fe8683620004b3565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200054b620005456200053f8462000516565b62000520565b62000516565b9050919050565b6000819050919050565b62000567836200052a565b6200057f620005768262000552565b848454620004c0565b825550505050565b600090565b6200059662000587565b620005a38184846200055c565b505050565b5b81811015620005cb57620005bf6000826200058c565b600181019050620005a9565b5050565b601f8211156200061a57620005e4816200048e565b620005ef84620004a3565b81016020851015620005ff578190505b620006176200060e85620004a3565b830182620005a8565b50505b505050565b600082821c905092915050565b60006200063f600019846008026200061f565b1980831691505092915050565b60006200065a83836200062c565b9150826002028217905092915050565b6200067582620003f0565b67ffffffffffffffff811115620006915762000690620003fb565b5b6200069d825462000459565b620006aa828285620005cf565b600060209050601f831160018114620006e25760008415620006cd578287015190505b620006d985826200064c565b86555062000749565b601f198416620006f2866200048e565b60005b828110156200071c57848901518255600182019150602085019450602081019050620006f5565b868310156200073c578489015162000738601f8916826200062c565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200077e8262000751565b9050919050565b620007908162000771565b82525050565b6000604082019050620007ad600083018562000785565b620007bc602083018462000785565b9392505050565b6000602082019050620007da600083018462000785565b92915050565b6132c080620007f06000396000f3fe6080604052600436106101d85760003560e01c80636c0360eb11610102578063a035b1fe11610095578063d2ed5c5911610064578063d2ed5c5914610669578063d3dd5fe014610694578063e985e9c5146106ab578063f2fde38b146106e8576101d8565b8063a035b1fe146105bc578063a22cb465146105e7578063b88d4fde14610610578063c87b56dd1461062c576101d8565b80638da5cb5b116100d15780638da5cb5b1461051257806391b7f5ed1461053d57806395d89b41146105665780639cd59aea14610591576101d8565b80636c0360eb1461046a57806370a0823114610495578063715018a6146104d257806379c9cb7b146104e9576101d8565b806324600fc31161017a57806342842e0e1161014957806342842e0e146103bd5780634d155561146103d957806355f804b3146104045780636352211e1461042d576101d8565b806324600fc3146103225780632be905ba146103395780632db115441461037657806341f4343414610392576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd1461029e57806322ae7f7b146102c957806323b872dd14610306576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612403565b610711565b604051610211919061244b565b60405180910390f35b34801561022657600080fd5b5061022f6107a3565b60405161023c91906124f6565b60405180910390f35b34801561025157600080fd5b5061026c6004803603810190610267919061254e565b610835565b60405161027991906125bc565b60405180910390f35b61029c60048036038101906102979190612603565b6108b4565b005b3480156102aa57600080fd5b506102b36109be565b6040516102c09190612652565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb919061266d565b6109d5565b6040516102fd919061244b565b60405180910390f35b610320600480360381019061031b919061269a565b6109f5565b005b34801561032e57600080fd5b50610337610b45565b005b34801561034557600080fd5b50610360600480360381019061035b919061266d565b610b96565b60405161036d9190612652565b60405180910390f35b610390600480360381019061038b919061254e565b610bae565b005b34801561039e57600080fd5b506103a7610d4c565b6040516103b4919061274c565b60405180910390f35b6103d760048036038101906103d2919061269a565b610d5e565b005b3480156103e557600080fd5b506103ee610eae565b6040516103fb9190612652565b60405180910390f35b34801561041057600080fd5b5061042b6004803603810190610426919061289c565b610eb4565b005b34801561043957600080fd5b50610454600480360381019061044f919061254e565b610ecf565b60405161046191906125bc565b60405180910390f35b34801561047657600080fd5b5061047f610ee1565b60405161048c91906124f6565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b7919061266d565b610f6f565b6040516104c99190612652565b60405180910390f35b3480156104de57600080fd5b506104e7611027565b005b3480156104f557600080fd5b50610510600480360381019061050b919061254e565b61103b565b005b34801561051e57600080fd5b5061052761104d565b60405161053491906125bc565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f919061254e565b611077565b005b34801561057257600080fd5b5061057b611089565b60405161058891906124f6565b60405180910390f35b34801561059d57600080fd5b506105a661111b565b6040516105b39190612652565b60405180910390f35b3480156105c857600080fd5b506105d1611121565b6040516105de9190612652565b60405180910390f35b3480156105f357600080fd5b5061060e60048036038101906106099190612911565b611127565b005b61062a600480360381019061062591906129f2565b611231565b005b34801561063857600080fd5b50610653600480360381019061064e919061254e565b611384565b60405161066091906124f6565b60405180910390f35b34801561067557600080fd5b5061067e611422565b60405161068b919061244b565b60405180910390f35b3480156106a057600080fd5b506106a9611435565b005b3480156106b757600080fd5b506106d260048036038101906106cd9190612a75565b611469565b6040516106df919061244b565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a919061266d565b6114fd565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061079c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107b290612ae4565b80601f01602080910402602001604051908101604052809291908181526020018280546107de90612ae4565b801561082b5780601f106108005761010080835404028352916020019161082b565b820191906000526020600020905b81548152906001019060200180831161080e57829003601f168201915b5050505050905090565b600061084082611580565b610876576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156109af576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161092c929190612b15565b602060405180830381865afa158015610949573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061096d9190612b53565b6109ae57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016109a591906125bc565b60405180910390fd5b5b6109b983836115df565b505050565b60006109c8611723565b6001546000540303905090565b60096020528060005260406000206000915054906101000a900460ff1681565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610b33573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a6757610a6284848461172c565b610b3f565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ab0929190612b15565b602060405180830381865afa158015610acd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610af19190612b53565b610b3257336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610b2991906125bc565b60405180910390fd5b5b610b3e84848461172c565b5b50505050565b610b4d611a4e565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b93573d6000803e3d6000fd5b50565b600f6020528060005260406000206000915090505481565b600a60009054906101000a900460ff16610bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf490612bcc565b60405180910390fd5b600e54811115610c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3990612c38565b60405180910390fd5b600d5481610c4e6109be565b610c589190612c87565b1115610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9090612d07565b60405180910390fd5b600c5481610ca79190612d27565b341015610ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce090612db5565b60405180910390fd5b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d389190612c87565b92505081905550610d493382611acc565b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e9c573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dd057610dcb848484611aea565b610ea8565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610e19929190612b15565b602060405180830381865afa158015610e36573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e5a9190612b53565b610e9b57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e9291906125bc565b60405180910390fd5b5b610ea7848484611aea565b5b50505050565b600e5481565b610ebc611a4e565b80600b9081610ecb9190612f77565b5050565b6000610eda82611b0a565b9050919050565b600b8054610eee90612ae4565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1a90612ae4565b8015610f675780601f10610f3c57610100808354040283529160200191610f67565b820191906000526020600020905b815481529060010190602001808311610f4a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fd6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61102f611a4e565b6110396000611bd6565b565b611043611a4e565b80600e8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61107f611a4e565b80600c8190555050565b60606003805461109890612ae4565b80601f01602080910402602001604051908101604052809291908181526020018280546110c490612ae4565b80156111115780601f106110e657610100808354040283529160200191611111565b820191906000526020600020905b8154815290600101906020018083116110f457829003601f168201915b5050505050905090565b600d5481565b600c5481565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611222576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161119f929190612b15565b602060405180830381865afa1580156111bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111e09190612b53565b61122157806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161121891906125bc565b60405180910390fd5b5b61122c8383611c9c565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611370573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112a45761129f85858585611da7565b61137d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016112ed929190612b15565b602060405180830381865afa15801561130a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061132e9190612b53565b61136f57336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161136691906125bc565b60405180910390fd5b5b61137c85858585611da7565b5b5050505050565b606061138f82611580565b6113c5576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006113cf611e1a565b905060008151036113ef576040518060200160405280600081525061141a565b806113f984611eac565b60405160200161140a929190613085565b6040516020818303038152906040525b915050919050565b600a60009054906101000a900460ff1681565b61143d611a4e565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611505611a4e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156b9061311b565b60405180910390fd5b61157d81611bd6565b50565b60008161158b611723565b1115801561159a575060005482105b80156115d8575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006115ea82610ecf565b90508073ffffffffffffffffffffffffffffffffffffffff1661160b611efc565b73ffffffffffffffffffffffffffffffffffffffff161461166e5761163781611632611efc565b611469565b61166d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061173782611b0a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461179e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806117aa84611f04565b915091506117c081876117bb611efc565b611f2b565b61180c576117d5866117d0611efc565b611469565b61180b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611872576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61187f8686866001611f6f565b801561188a57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061195885611934888887611f75565b7c020000000000000000000000000000000000000000000000000000000017611f9d565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036119de57600060018501905060006004600083815260200190815260200160002054036119dc5760005481146119db578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a468686866001611fc8565b505050505050565b611a56611fce565b73ffffffffffffffffffffffffffffffffffffffff16611a7461104d565b73ffffffffffffffffffffffffffffffffffffffff1614611aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac190613187565b60405180910390fd5b565b611ae6828260405180602001604052806000815250611fd6565b5050565b611b0583838360405180602001604052806000815250611231565b505050565b60008082905080611b19611723565b11611b9f57600054811015611b9e5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611b9c575b60008103611b92576004600083600190039350838152602001908152602001600020549050611b68565b8092505050611bd1565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611ca9611efc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d56611efc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d9b919061244b565b60405180910390a35050565b611db28484846109f5565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e1457611ddd84848484612073565b611e13576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600b8054611e2990612ae4565b80601f0160208091040260200160405190810160405280929190818152602001828054611e5590612ae4565b8015611ea25780601f10611e7757610100808354040283529160200191611ea2565b820191906000526020600020905b815481529060010190602001808311611e8557829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611ee757600184039350600a81066030018453600a8104905080611ec5575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f8c8686846121c3565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b611fe083836121cc565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461206e57600080549050600083820390505b6120206000868380600101945086612073565b612056576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061200d57816000541461206b57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612099611efc565b8786866040518563ffffffff1660e01b81526004016120bb94939291906131fc565b6020604051808303816000875af19250505080156120f757506040513d601f19601f820116820180604052508101906120f4919061325d565b60015b612170573d8060008114612127576040519150601f19603f3d011682016040523d82523d6000602084013e61212c565b606091505b506000815103612168576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000805490506000820361220c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122196000848385611f6f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612290836122816000866000611f75565b61228a85612387565b17611f9d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461233157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506122f6565b506000820361236c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506123826000848385611fc8565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123e0816123ab565b81146123eb57600080fd5b50565b6000813590506123fd816123d7565b92915050565b600060208284031215612419576124186123a1565b5b6000612427848285016123ee565b91505092915050565b60008115159050919050565b61244581612430565b82525050565b6000602082019050612460600083018461243c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156124a0578082015181840152602081019050612485565b60008484015250505050565b6000601f19601f8301169050919050565b60006124c882612466565b6124d28185612471565b93506124e2818560208601612482565b6124eb816124ac565b840191505092915050565b6000602082019050818103600083015261251081846124bd565b905092915050565b6000819050919050565b61252b81612518565b811461253657600080fd5b50565b60008135905061254881612522565b92915050565b600060208284031215612564576125636123a1565b5b600061257284828501612539565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125a68261257b565b9050919050565b6125b68161259b565b82525050565b60006020820190506125d160008301846125ad565b92915050565b6125e08161259b565b81146125eb57600080fd5b50565b6000813590506125fd816125d7565b92915050565b6000806040838503121561261a576126196123a1565b5b6000612628858286016125ee565b925050602061263985828601612539565b9150509250929050565b61264c81612518565b82525050565b60006020820190506126676000830184612643565b92915050565b600060208284031215612683576126826123a1565b5b6000612691848285016125ee565b91505092915050565b6000806000606084860312156126b3576126b26123a1565b5b60006126c1868287016125ee565b93505060206126d2868287016125ee565b92505060406126e386828701612539565b9150509250925092565b6000819050919050565b600061271261270d6127088461257b565b6126ed565b61257b565b9050919050565b6000612724826126f7565b9050919050565b600061273682612719565b9050919050565b6127468161272b565b82525050565b6000602082019050612761600083018461273d565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6127a9826124ac565b810181811067ffffffffffffffff821117156127c8576127c7612771565b5b80604052505050565b60006127db612397565b90506127e782826127a0565b919050565b600067ffffffffffffffff82111561280757612806612771565b5b612810826124ac565b9050602081019050919050565b82818337600083830152505050565b600061283f61283a846127ec565b6127d1565b90508281526020810184848401111561285b5761285a61276c565b5b61286684828561281d565b509392505050565b600082601f83011261288357612882612767565b5b813561289384826020860161282c565b91505092915050565b6000602082840312156128b2576128b16123a1565b5b600082013567ffffffffffffffff8111156128d0576128cf6123a6565b5b6128dc8482850161286e565b91505092915050565b6128ee81612430565b81146128f957600080fd5b50565b60008135905061290b816128e5565b92915050565b60008060408385031215612928576129276123a1565b5b6000612936858286016125ee565b9250506020612947858286016128fc565b9150509250929050565b600067ffffffffffffffff82111561296c5761296b612771565b5b612975826124ac565b9050602081019050919050565b600061299561299084612951565b6127d1565b9050828152602081018484840111156129b1576129b061276c565b5b6129bc84828561281d565b509392505050565b600082601f8301126129d9576129d8612767565b5b81356129e9848260208601612982565b91505092915050565b60008060008060808587031215612a0c57612a0b6123a1565b5b6000612a1a878288016125ee565b9450506020612a2b878288016125ee565b9350506040612a3c87828801612539565b925050606085013567ffffffffffffffff811115612a5d57612a5c6123a6565b5b612a69878288016129c4565b91505092959194509250565b60008060408385031215612a8c57612a8b6123a1565b5b6000612a9a858286016125ee565b9250506020612aab858286016125ee565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612afc57607f821691505b602082108103612b0f57612b0e612ab5565b5b50919050565b6000604082019050612b2a60008301856125ad565b612b3760208301846125ad565b9392505050565b600081519050612b4d816128e5565b92915050565b600060208284031215612b6957612b686123a1565b5b6000612b7784828501612b3e565b91505092915050565b7f4d696e7420686173206e6f7420626567756e2e00000000000000000000000000600082015250565b6000612bb6601383612471565b9150612bc182612b80565b602082019050919050565b60006020820190508181036000830152612be581612ba9565b9050919050565b7f52656163686564204d6178210000000000000000000000000000000000000000600082015250565b6000612c22600c83612471565b9150612c2d82612bec565b602082019050919050565b60006020820190508181036000830152612c5181612c15565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c9282612518565b9150612c9d83612518565b9250828201905080821115612cb557612cb4612c58565b5b92915050565b7f426f78657320536f6c64204f7574210000000000000000000000000000000000600082015250565b6000612cf1600f83612471565b9150612cfc82612cbb565b602082019050919050565b60006020820190508181036000830152612d2081612ce4565b9050919050565b6000612d3282612518565b9150612d3d83612518565b9250828202612d4b81612518565b91508282048414831517612d6257612d61612c58565b5b5092915050565b7f4d697373696e6720455448210000000000000000000000000000000000000000600082015250565b6000612d9f600c83612471565b9150612daa82612d69565b602082019050919050565b60006020820190508181036000830152612dce81612d92565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612e377fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612dfa565b612e418683612dfa565b95508019841693508086168417925050509392505050565b6000612e74612e6f612e6a84612518565b6126ed565b612518565b9050919050565b6000819050919050565b612e8e83612e59565b612ea2612e9a82612e7b565b848454612e07565b825550505050565b600090565b612eb7612eaa565b612ec2818484612e85565b505050565b5b81811015612ee657612edb600082612eaf565b600181019050612ec8565b5050565b601f821115612f2b57612efc81612dd5565b612f0584612dea565b81016020851015612f14578190505b612f28612f2085612dea565b830182612ec7565b50505b505050565b600082821c905092915050565b6000612f4e60001984600802612f30565b1980831691505092915050565b6000612f678383612f3d565b9150826002028217905092915050565b612f8082612466565b67ffffffffffffffff811115612f9957612f98612771565b5b612fa38254612ae4565b612fae828285612eea565b600060209050601f831160018114612fe15760008415612fcf578287015190505b612fd98582612f5b565b865550613041565b601f198416612fef86612dd5565b60005b8281101561301757848901518255600182019150602085019450602081019050612ff2565b868310156130345784890151613030601f891682612f3d565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b600061305f82612466565b6130698185613049565b9350613079818560208601612482565b80840191505092915050565b60006130918285613054565b915061309d8284613054565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613105602683612471565b9150613110826130a9565b604082019050919050565b60006020820190508181036000830152613134816130f8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613171602083612471565b915061317c8261313b565b602082019050919050565b600060208201905081810360008301526131a081613164565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006131ce826131a7565b6131d881856131b2565b93506131e8818560208601612482565b6131f1816124ac565b840191505092915050565b600060808201905061321160008301876125ad565b61321e60208301866125ad565b61322b6040830185612643565b818103606083015261323d81846131c3565b905095945050505050565b600081519050613257816123d7565b92915050565b600060208284031215613273576132726123a1565b5b600061328184828501613248565b9150509291505056fea26469706673582212206c9c9aa9a711d01c35c66a78bbe3361f3e2ada0f9956a0a015d5706c2c88ae2564736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80636c0360eb11610102578063a035b1fe11610095578063d2ed5c5911610064578063d2ed5c5914610669578063d3dd5fe014610694578063e985e9c5146106ab578063f2fde38b146106e8576101d8565b8063a035b1fe146105bc578063a22cb465146105e7578063b88d4fde14610610578063c87b56dd1461062c576101d8565b80638da5cb5b116100d15780638da5cb5b1461051257806391b7f5ed1461053d57806395d89b41146105665780639cd59aea14610591576101d8565b80636c0360eb1461046a57806370a0823114610495578063715018a6146104d257806379c9cb7b146104e9576101d8565b806324600fc31161017a57806342842e0e1161014957806342842e0e146103bd5780634d155561146103d957806355f804b3146104045780636352211e1461042d576101d8565b806324600fc3146103225780632be905ba146103395780632db115441461037657806341f4343414610392576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd1461029e57806322ae7f7b146102c957806323b872dd14610306576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612403565b610711565b604051610211919061244b565b60405180910390f35b34801561022657600080fd5b5061022f6107a3565b60405161023c91906124f6565b60405180910390f35b34801561025157600080fd5b5061026c6004803603810190610267919061254e565b610835565b60405161027991906125bc565b60405180910390f35b61029c60048036038101906102979190612603565b6108b4565b005b3480156102aa57600080fd5b506102b36109be565b6040516102c09190612652565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb919061266d565b6109d5565b6040516102fd919061244b565b60405180910390f35b610320600480360381019061031b919061269a565b6109f5565b005b34801561032e57600080fd5b50610337610b45565b005b34801561034557600080fd5b50610360600480360381019061035b919061266d565b610b96565b60405161036d9190612652565b60405180910390f35b610390600480360381019061038b919061254e565b610bae565b005b34801561039e57600080fd5b506103a7610d4c565b6040516103b4919061274c565b60405180910390f35b6103d760048036038101906103d2919061269a565b610d5e565b005b3480156103e557600080fd5b506103ee610eae565b6040516103fb9190612652565b60405180910390f35b34801561041057600080fd5b5061042b6004803603810190610426919061289c565b610eb4565b005b34801561043957600080fd5b50610454600480360381019061044f919061254e565b610ecf565b60405161046191906125bc565b60405180910390f35b34801561047657600080fd5b5061047f610ee1565b60405161048c91906124f6565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b7919061266d565b610f6f565b6040516104c99190612652565b60405180910390f35b3480156104de57600080fd5b506104e7611027565b005b3480156104f557600080fd5b50610510600480360381019061050b919061254e565b61103b565b005b34801561051e57600080fd5b5061052761104d565b60405161053491906125bc565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f919061254e565b611077565b005b34801561057257600080fd5b5061057b611089565b60405161058891906124f6565b60405180910390f35b34801561059d57600080fd5b506105a661111b565b6040516105b39190612652565b60405180910390f35b3480156105c857600080fd5b506105d1611121565b6040516105de9190612652565b60405180910390f35b3480156105f357600080fd5b5061060e60048036038101906106099190612911565b611127565b005b61062a600480360381019061062591906129f2565b611231565b005b34801561063857600080fd5b50610653600480360381019061064e919061254e565b611384565b60405161066091906124f6565b60405180910390f35b34801561067557600080fd5b5061067e611422565b60405161068b919061244b565b60405180910390f35b3480156106a057600080fd5b506106a9611435565b005b3480156106b757600080fd5b506106d260048036038101906106cd9190612a75565b611469565b6040516106df919061244b565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a919061266d565b6114fd565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061079c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107b290612ae4565b80601f01602080910402602001604051908101604052809291908181526020018280546107de90612ae4565b801561082b5780601f106108005761010080835404028352916020019161082b565b820191906000526020600020905b81548152906001019060200180831161080e57829003601f168201915b5050505050905090565b600061084082611580565b610876576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156109af576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161092c929190612b15565b602060405180830381865afa158015610949573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061096d9190612b53565b6109ae57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016109a591906125bc565b60405180910390fd5b5b6109b983836115df565b505050565b60006109c8611723565b6001546000540303905090565b60096020528060005260406000206000915054906101000a900460ff1681565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610b33573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a6757610a6284848461172c565b610b3f565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ab0929190612b15565b602060405180830381865afa158015610acd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610af19190612b53565b610b3257336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610b2991906125bc565b60405180910390fd5b5b610b3e84848461172c565b5b50505050565b610b4d611a4e565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b93573d6000803e3d6000fd5b50565b600f6020528060005260406000206000915090505481565b600a60009054906101000a900460ff16610bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf490612bcc565b60405180910390fd5b600e54811115610c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3990612c38565b60405180910390fd5b600d5481610c4e6109be565b610c589190612c87565b1115610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9090612d07565b60405180910390fd5b600c5481610ca79190612d27565b341015610ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce090612db5565b60405180910390fd5b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d389190612c87565b92505081905550610d493382611acc565b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e9c573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dd057610dcb848484611aea565b610ea8565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610e19929190612b15565b602060405180830381865afa158015610e36573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e5a9190612b53565b610e9b57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e9291906125bc565b60405180910390fd5b5b610ea7848484611aea565b5b50505050565b600e5481565b610ebc611a4e565b80600b9081610ecb9190612f77565b5050565b6000610eda82611b0a565b9050919050565b600b8054610eee90612ae4565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1a90612ae4565b8015610f675780601f10610f3c57610100808354040283529160200191610f67565b820191906000526020600020905b815481529060010190602001808311610f4a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fd6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61102f611a4e565b6110396000611bd6565b565b611043611a4e565b80600e8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61107f611a4e565b80600c8190555050565b60606003805461109890612ae4565b80601f01602080910402602001604051908101604052809291908181526020018280546110c490612ae4565b80156111115780601f106110e657610100808354040283529160200191611111565b820191906000526020600020905b8154815290600101906020018083116110f457829003601f168201915b5050505050905090565b600d5481565b600c5481565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611222576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161119f929190612b15565b602060405180830381865afa1580156111bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111e09190612b53565b61122157806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161121891906125bc565b60405180910390fd5b5b61122c8383611c9c565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611370573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112a45761129f85858585611da7565b61137d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016112ed929190612b15565b602060405180830381865afa15801561130a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061132e9190612b53565b61136f57336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161136691906125bc565b60405180910390fd5b5b61137c85858585611da7565b5b5050505050565b606061138f82611580565b6113c5576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006113cf611e1a565b905060008151036113ef576040518060200160405280600081525061141a565b806113f984611eac565b60405160200161140a929190613085565b6040516020818303038152906040525b915050919050565b600a60009054906101000a900460ff1681565b61143d611a4e565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611505611a4e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156b9061311b565b60405180910390fd5b61157d81611bd6565b50565b60008161158b611723565b1115801561159a575060005482105b80156115d8575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006115ea82610ecf565b90508073ffffffffffffffffffffffffffffffffffffffff1661160b611efc565b73ffffffffffffffffffffffffffffffffffffffff161461166e5761163781611632611efc565b611469565b61166d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061173782611b0a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461179e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806117aa84611f04565b915091506117c081876117bb611efc565b611f2b565b61180c576117d5866117d0611efc565b611469565b61180b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611872576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61187f8686866001611f6f565b801561188a57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061195885611934888887611f75565b7c020000000000000000000000000000000000000000000000000000000017611f9d565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036119de57600060018501905060006004600083815260200190815260200160002054036119dc5760005481146119db578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a468686866001611fc8565b505050505050565b611a56611fce565b73ffffffffffffffffffffffffffffffffffffffff16611a7461104d565b73ffffffffffffffffffffffffffffffffffffffff1614611aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac190613187565b60405180910390fd5b565b611ae6828260405180602001604052806000815250611fd6565b5050565b611b0583838360405180602001604052806000815250611231565b505050565b60008082905080611b19611723565b11611b9f57600054811015611b9e5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611b9c575b60008103611b92576004600083600190039350838152602001908152602001600020549050611b68565b8092505050611bd1565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611ca9611efc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d56611efc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d9b919061244b565b60405180910390a35050565b611db28484846109f5565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e1457611ddd84848484612073565b611e13576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600b8054611e2990612ae4565b80601f0160208091040260200160405190810160405280929190818152602001828054611e5590612ae4565b8015611ea25780601f10611e7757610100808354040283529160200191611ea2565b820191906000526020600020905b815481529060010190602001808311611e8557829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611ee757600184039350600a81066030018453600a8104905080611ec5575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f8c8686846121c3565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b611fe083836121cc565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461206e57600080549050600083820390505b6120206000868380600101945086612073565b612056576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061200d57816000541461206b57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612099611efc565b8786866040518563ffffffff1660e01b81526004016120bb94939291906131fc565b6020604051808303816000875af19250505080156120f757506040513d601f19601f820116820180604052508101906120f4919061325d565b60015b612170573d8060008114612127576040519150601f19603f3d011682016040523d82523d6000602084013e61212c565b606091505b506000815103612168576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000805490506000820361220c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122196000848385611f6f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612290836122816000866000611f75565b61228a85612387565b17611f9d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461233157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506122f6565b506000820361236c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506123826000848385611fc8565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123e0816123ab565b81146123eb57600080fd5b50565b6000813590506123fd816123d7565b92915050565b600060208284031215612419576124186123a1565b5b6000612427848285016123ee565b91505092915050565b60008115159050919050565b61244581612430565b82525050565b6000602082019050612460600083018461243c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156124a0578082015181840152602081019050612485565b60008484015250505050565b6000601f19601f8301169050919050565b60006124c882612466565b6124d28185612471565b93506124e2818560208601612482565b6124eb816124ac565b840191505092915050565b6000602082019050818103600083015261251081846124bd565b905092915050565b6000819050919050565b61252b81612518565b811461253657600080fd5b50565b60008135905061254881612522565b92915050565b600060208284031215612564576125636123a1565b5b600061257284828501612539565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125a68261257b565b9050919050565b6125b68161259b565b82525050565b60006020820190506125d160008301846125ad565b92915050565b6125e08161259b565b81146125eb57600080fd5b50565b6000813590506125fd816125d7565b92915050565b6000806040838503121561261a576126196123a1565b5b6000612628858286016125ee565b925050602061263985828601612539565b9150509250929050565b61264c81612518565b82525050565b60006020820190506126676000830184612643565b92915050565b600060208284031215612683576126826123a1565b5b6000612691848285016125ee565b91505092915050565b6000806000606084860312156126b3576126b26123a1565b5b60006126c1868287016125ee565b93505060206126d2868287016125ee565b92505060406126e386828701612539565b9150509250925092565b6000819050919050565b600061271261270d6127088461257b565b6126ed565b61257b565b9050919050565b6000612724826126f7565b9050919050565b600061273682612719565b9050919050565b6127468161272b565b82525050565b6000602082019050612761600083018461273d565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6127a9826124ac565b810181811067ffffffffffffffff821117156127c8576127c7612771565b5b80604052505050565b60006127db612397565b90506127e782826127a0565b919050565b600067ffffffffffffffff82111561280757612806612771565b5b612810826124ac565b9050602081019050919050565b82818337600083830152505050565b600061283f61283a846127ec565b6127d1565b90508281526020810184848401111561285b5761285a61276c565b5b61286684828561281d565b509392505050565b600082601f83011261288357612882612767565b5b813561289384826020860161282c565b91505092915050565b6000602082840312156128b2576128b16123a1565b5b600082013567ffffffffffffffff8111156128d0576128cf6123a6565b5b6128dc8482850161286e565b91505092915050565b6128ee81612430565b81146128f957600080fd5b50565b60008135905061290b816128e5565b92915050565b60008060408385031215612928576129276123a1565b5b6000612936858286016125ee565b9250506020612947858286016128fc565b9150509250929050565b600067ffffffffffffffff82111561296c5761296b612771565b5b612975826124ac565b9050602081019050919050565b600061299561299084612951565b6127d1565b9050828152602081018484840111156129b1576129b061276c565b5b6129bc84828561281d565b509392505050565b600082601f8301126129d9576129d8612767565b5b81356129e9848260208601612982565b91505092915050565b60008060008060808587031215612a0c57612a0b6123a1565b5b6000612a1a878288016125ee565b9450506020612a2b878288016125ee565b9350506040612a3c87828801612539565b925050606085013567ffffffffffffffff811115612a5d57612a5c6123a6565b5b612a69878288016129c4565b91505092959194509250565b60008060408385031215612a8c57612a8b6123a1565b5b6000612a9a858286016125ee565b9250506020612aab858286016125ee565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612afc57607f821691505b602082108103612b0f57612b0e612ab5565b5b50919050565b6000604082019050612b2a60008301856125ad565b612b3760208301846125ad565b9392505050565b600081519050612b4d816128e5565b92915050565b600060208284031215612b6957612b686123a1565b5b6000612b7784828501612b3e565b91505092915050565b7f4d696e7420686173206e6f7420626567756e2e00000000000000000000000000600082015250565b6000612bb6601383612471565b9150612bc182612b80565b602082019050919050565b60006020820190508181036000830152612be581612ba9565b9050919050565b7f52656163686564204d6178210000000000000000000000000000000000000000600082015250565b6000612c22600c83612471565b9150612c2d82612bec565b602082019050919050565b60006020820190508181036000830152612c5181612c15565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c9282612518565b9150612c9d83612518565b9250828201905080821115612cb557612cb4612c58565b5b92915050565b7f426f78657320536f6c64204f7574210000000000000000000000000000000000600082015250565b6000612cf1600f83612471565b9150612cfc82612cbb565b602082019050919050565b60006020820190508181036000830152612d2081612ce4565b9050919050565b6000612d3282612518565b9150612d3d83612518565b9250828202612d4b81612518565b91508282048414831517612d6257612d61612c58565b5b5092915050565b7f4d697373696e6720455448210000000000000000000000000000000000000000600082015250565b6000612d9f600c83612471565b9150612daa82612d69565b602082019050919050565b60006020820190508181036000830152612dce81612d92565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612e377fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612dfa565b612e418683612dfa565b95508019841693508086168417925050509392505050565b6000612e74612e6f612e6a84612518565b6126ed565b612518565b9050919050565b6000819050919050565b612e8e83612e59565b612ea2612e9a82612e7b565b848454612e07565b825550505050565b600090565b612eb7612eaa565b612ec2818484612e85565b505050565b5b81811015612ee657612edb600082612eaf565b600181019050612ec8565b5050565b601f821115612f2b57612efc81612dd5565b612f0584612dea565b81016020851015612f14578190505b612f28612f2085612dea565b830182612ec7565b50505b505050565b600082821c905092915050565b6000612f4e60001984600802612f30565b1980831691505092915050565b6000612f678383612f3d565b9150826002028217905092915050565b612f8082612466565b67ffffffffffffffff811115612f9957612f98612771565b5b612fa38254612ae4565b612fae828285612eea565b600060209050601f831160018114612fe15760008415612fcf578287015190505b612fd98582612f5b565b865550613041565b601f198416612fef86612dd5565b60005b8281101561301757848901518255600182019150602085019450602081019050612ff2565b868310156130345784890151613030601f891682612f3d565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b600061305f82612466565b6130698185613049565b9350613079818560208601612482565b80840191505092915050565b60006130918285613054565b915061309d8284613054565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613105602683612471565b9150613110826130a9565b604082019050919050565b60006020820190508181036000830152613134816130f8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613171602083612471565b915061317c8261313b565b602082019050919050565b600060208201905081810360008301526131a081613164565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006131ce826131a7565b6131d881856131b2565b93506131e8818560208601612482565b6131f1816124ac565b840191505092915050565b600060808201905061321160008301876125ad565b61321e60208301866125ad565b61322b6040830185612643565b818103606083015261323d81846131c3565b905095945050505050565b600081519050613257816123d7565b92915050565b600060208284031215613273576132726123a1565b5b600061328184828501613248565b9150509291505056fea26469706673582212206c9c9aa9a711d01c35c66a78bbe3361f3e2ada0f9956a0a015d5706c2c88ae2564736f6c63430008110033

Deployed Bytecode Sourcemap

63687:2783:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24025:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24927:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31418:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65683:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20678:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63770:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65856:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65044:113;;;;;;;;;;;;;:::i;:::-;;63983:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64262:373;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2807:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66035:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63949:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65167:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26320:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63850:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21862:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62778:103;;;;;;;;;;;;;:::i;:::-;;65289:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62130:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64832:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25103:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63911:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63880:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65499:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66222:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25313:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63823:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64746:78;;;;;;;;;;;;;:::i;:::-;;32367:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63036:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24025:639;24110:4;24449:10;24434:25;;:11;:25;;;;:102;;;;24526:10;24511:25;;:11;:25;;;;24434:102;:179;;;;24603:10;24588:25;;:11;:25;;;;24434:179;24414:199;;24025:639;;;:::o;24927:100::-;24981:13;25014:5;25007:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24927:100;:::o;31418:218::-;31494:7;31519:16;31527:7;31519;:16::i;:::-;31514:64;;31544:34;;;;;;;;;;;;;;31514:64;31598:15;:24;31614:7;31598:24;;;;;;;;;;;:30;;;;;;;;;;;;31591:37;;31418:218;;;:::o;65683:165::-;65787:8;4849:1;2907:42;4801:45;;;:49;4797:225;;;2907:42;4872;;;4923:4;4930:8;4872:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4867:144;;4986:8;4967:28;;;;;;;;;;;:::i;:::-;;;;;;;;4867:144;4797:225;65808:32:::1;65822:8;65832:7;65808:13;:32::i;:::-;65683:165:::0;;;:::o;20678:323::-;20739:7;20967:15;:13;:15::i;:::-;20952:12;;20936:13;;:28;:46;20929:53;;20678:323;:::o;63770:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;65856:171::-;65965:4;4103:1;2907:42;4055:45;;;:49;4051:539;;;4344:10;4336:18;;:4;:18;;;4332:85;;65982:37:::1;66001:4;66007:2;66011:7;65982:18;:37::i;:::-;4395:7:::0;;4332:85;2907:42;4436;;;4487:4;4494:10;4436:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4431:148;;4552:10;4533:30;;;;;;;;;;;:::i;:::-;;;;;;;;4431:148;4051:539;65982:37:::1;66001:4;66007:2;66011:7;65982:18;:37::i;:::-;65856:171:::0;;;;;:::o;65044:113::-;62016:13;:11;:13::i;:::-;65099:10:::1;65091:28;;:51;65120:21;65091:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;65044:113::o:0;63983:48::-;;;;;;;;;;;;;;;;;:::o;64262:373::-;64336:8;;;;;;;;;;;64328:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;64395:7;;64388:3;:14;;64380:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;64461:9;;64454:3;64438:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;64430:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;64527:5;;64521:3;:11;;;;:::i;:::-;64508:9;:24;;64500:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;64587:3;64559:12;:24;64572:10;64559:24;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;64601:26;64611:10;64623:3;64601:9;:26::i;:::-;64262:373;:::o;2807:143::-;2907:42;2807:143;:::o;66035:179::-;66148:4;4103:1;2907:42;4055:45;;;:49;4051:539;;;4344:10;4336:18;;:4;:18;;;4332:85;;66165:41:::1;66188:4;66194:2;66198:7;66165:22;:41::i;:::-;4395:7:::0;;4332:85;2907:42;4436;;;4487:4;4494:10;4436:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4431:148;;4552:10;4533:30;;;;;;;;;;;:::i;:::-;;;;;;;;4431:148;4051:539;66165:41:::1;66188:4;66194:2;66198:7;66165:22;:41::i;:::-;66035:179:::0;;;;;:::o;63949:27::-;;;;:::o;65167:110::-;62016:13;:11;:13::i;:::-;65251:8:::1;65241:7;:18;;;;;;:::i;:::-;;65167:110:::0;:::o;26320:152::-;26392:7;26435:27;26454:7;26435:18;:27::i;:::-;26412:52;;26320:152;;;:::o;63850:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21862:233::-;21934:7;21975:1;21958:19;;:5;:19;;;21954:60;;21986:28;;;;;;;;;;;;;;21954:60;16021:13;22032:18;:25;22051:5;22032:25;;;;;;;;;;;;;;;;:55;22025:62;;21862:233;;;:::o;62778:103::-;62016:13;:11;:13::i;:::-;62843:30:::1;62870:1;62843:18;:30::i;:::-;62778:103::o:0;65289:91::-;62016:13;:11;:13::i;:::-;65364:6:::1;65354:7;:16;;;;65289:91:::0;:::o;62130:87::-;62176:7;62203:6;;;;;;;;;;;62196:13;;62130:87;:::o;64832:88::-;62016:13;:11;:13::i;:::-;64904:8:::1;64896:5;:16;;;;64832:88:::0;:::o;25103:104::-;25159:13;25192:7;25185:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25103:104;:::o;63911:31::-;;;;:::o;63880:24::-;;;;:::o;65499:176::-;65603:8;4849:1;2907:42;4801:45;;;:49;4797:225;;;2907:42;4872;;;4923:4;4930:8;4872:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4867:144;;4986:8;4967:28;;;;;;;;;;;:::i;:::-;;;;;;;;4867:144;4797:225;65624:43:::1;65648:8;65658;65624:23;:43::i;:::-;65499:176:::0;;;:::o;66222:245::-;66390:4;4103:1;2907:42;4055:45;;;:49;4051:539;;;4344:10;4336:18;;:4;:18;;;4332:85;;66412:47:::1;66435:4;66441:2;66445:7;66454:4;66412:22;:47::i;:::-;4395:7:::0;;4332:85;2907:42;4436;;;4487:4;4494:10;4436:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4431:148;;4552:10;4533:30;;;;;;;;;;;:::i;:::-;;;;;;;;4431:148;4051:539;66412:47:::1;66435:4;66441:2;66445:7;66454:4;66412:22;:47::i;:::-;66222:245:::0;;;;;;:::o;25313:318::-;25386:13;25417:16;25425:7;25417;:16::i;:::-;25412:59;;25442:29;;;;;;;;;;;;;;25412:59;25484:21;25508:10;:8;:10::i;:::-;25484:34;;25561:1;25542:7;25536:21;:26;:87;;;;;;;;;;;;;;;;;25589:7;25598:18;25608:7;25598:9;:18::i;:::-;25572:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25536:87;25529:94;;;25313:318;;;:::o;63823:20::-;;;;;;;;;;;;;:::o;64746:78::-;62016:13;:11;:13::i;:::-;64808:8:::1;;;;;;;;;;;64807:9;64796:8;;:20;;;;;;;;;;;;;;;;;;64746:78::o:0;32367:164::-;32464:4;32488:18;:25;32507:5;32488:25;;;;;;;;;;;;;;;:35;32514:8;32488:35;;;;;;;;;;;;;;;;;;;;;;;;;32481:42;;32367:164;;;;:::o;63036:201::-;62016:13;:11;:13::i;:::-;63145:1:::1;63125:22;;:8;:22;;::::0;63117:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;63201:28;63220:8;63201:18;:28::i;:::-;63036:201:::0;:::o;32789:282::-;32854:4;32910:7;32891:15;:13;:15::i;:::-;:26;;:66;;;;;32944:13;;32934:7;:23;32891:66;:153;;;;;33043:1;16797:8;32995:17;:26;33013:7;32995:26;;;;;;;;;;;;:44;:49;32891:153;32871:173;;32789:282;;;:::o;30851:408::-;30940:13;30956:16;30964:7;30956;:16::i;:::-;30940:32;;31012:5;30989:28;;:19;:17;:19::i;:::-;:28;;;30985:175;;31037:44;31054:5;31061:19;:17;:19::i;:::-;31037:16;:44::i;:::-;31032:128;;31109:35;;;;;;;;;;;;;;31032:128;30985:175;31205:2;31172:15;:24;31188:7;31172:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31243:7;31239:2;31223:28;;31232:5;31223:28;;;;;;;;;;;;30929:330;30851:408;;:::o;64140:101::-;64205:7;64232:1;64225:8;;64140:101;:::o;35057:2825::-;35199:27;35229;35248:7;35229:18;:27::i;:::-;35199:57;;35314:4;35273:45;;35289:19;35273:45;;;35269:86;;35327:28;;;;;;;;;;;;;;35269:86;35369:27;35398:23;35425:35;35452:7;35425:26;:35::i;:::-;35368:92;;;;35560:68;35585:15;35602:4;35608:19;:17;:19::i;:::-;35560:24;:68::i;:::-;35555:180;;35648:43;35665:4;35671:19;:17;:19::i;:::-;35648:16;:43::i;:::-;35643:92;;35700:35;;;;;;;;;;;;;;35643:92;35555:180;35766:1;35752:16;;:2;:16;;;35748:52;;35777:23;;;;;;;;;;;;;;35748:52;35813:43;35835:4;35841:2;35845:7;35854:1;35813:21;:43::i;:::-;35949:15;35946:160;;;36089:1;36068:19;36061:30;35946:160;36486:18;:24;36505:4;36486:24;;;;;;;;;;;;;;;;36484:26;;;;;;;;;;;;36555:18;:22;36574:2;36555:22;;;;;;;;;;;;;;;;36553:24;;;;;;;;;;;36877:146;36914:2;36963:45;36978:4;36984:2;36988:19;36963:14;:45::i;:::-;17077:8;36935:73;36877:18;:146::i;:::-;36848:17;:26;36866:7;36848:26;;;;;;;;;;;:175;;;;37194:1;17077:8;37143:19;:47;:52;37139:627;;37216:19;37248:1;37238:7;:11;37216:33;;37405:1;37371:17;:30;37389:11;37371:30;;;;;;;;;;;;:35;37367:384;;37509:13;;37494:11;:28;37490:242;;37689:19;37656:17;:30;37674:11;37656:30;;;;;;;;;;;:52;;;;37490:242;37367:384;37197:569;37139:627;37813:7;37809:2;37794:27;;37803:4;37794:27;;;;;;;;;;;;37832:42;37853:4;37859:2;37863:7;37872:1;37832:20;:42::i;:::-;35188:2694;;;35057:2825;;;:::o;62295:132::-;62370:12;:10;:12::i;:::-;62359:23;;:7;:5;:7::i;:::-;:23;;;62351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62295:132::o;48929:112::-;49006:27;49016:2;49020:8;49006:27;;;;;;;;;;;;:9;:27::i;:::-;48929:112;;:::o;37978:193::-;38124:39;38141:4;38147:2;38151:7;38124:39;;;;;;;;;;;;:16;:39::i;:::-;37978:193;;;:::o;27475:1275::-;27542:7;27562:12;27577:7;27562:22;;27645:4;27626:15;:13;:15::i;:::-;:23;27622:1061;;27679:13;;27672:4;:20;27668:1015;;;27717:14;27734:17;:23;27752:4;27734:23;;;;;;;;;;;;27717:40;;27851:1;16797:8;27823:6;:24;:29;27819:845;;28488:113;28505:1;28495:6;:11;28488:113;;28548:17;:25;28566:6;;;;;;;28548:25;;;;;;;;;;;;28539:34;;28488:113;;;28634:6;28627:13;;;;;;27819:845;27694:989;27668:1015;27622:1061;28711:31;;;;;;;;;;;;;;27475:1275;;;;:::o;63397:191::-;63471:16;63490:6;;;;;;;;;;;63471:25;;63516:8;63507:6;;:17;;;;;;;;;;;;;;;;;;63571:8;63540:40;;63561:8;63540:40;;;;;;;;;;;;63460:128;63397:191;:::o;31976:234::-;32123:8;32071:18;:39;32090:19;:17;:19::i;:::-;32071:39;;;;;;;;;;;;;;;:49;32111:8;32071:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32183:8;32147:55;;32162:19;:17;:19::i;:::-;32147:55;;;32193:8;32147:55;;;;;;:::i;:::-;;;;;;;;31976:234;;:::o;38769:407::-;38944:31;38957:4;38963:2;38967:7;38944:12;:31::i;:::-;39008:1;38990:2;:14;;;:19;38986:183;;39029:56;39060:4;39066:2;39070:7;39079:5;39029:30;:56::i;:::-;39024:145;;39113:40;;;;;;;;;;;;;;39024:145;38986:183;38769:407;;;;:::o;64928:108::-;64988:13;65021:7;65014:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64928:108;:::o;55304:1745::-;55369:17;55803:4;55796;55790:11;55786:22;55895:1;55889:4;55882:15;55970:4;55967:1;55963:12;55956:19;;56052:1;56047:3;56040:14;56156:3;56395:5;56377:428;56403:1;56377:428;;;56443:1;56438:3;56434:11;56427:18;;56614:2;56608:4;56604:13;56600:2;56596:22;56591:3;56583:36;56708:2;56702:4;56698:13;56690:21;;56775:4;56377:428;56765:25;56377:428;56381:21;56844:3;56839;56835:13;56959:4;56954:3;56950:14;56943:21;;57024:6;57019:3;57012:19;55408:1634;;;55304:1745;;;:::o;55097:105::-;55157:7;55184:10;55177:17;;55097:105;:::o;33952:485::-;34054:27;34083:23;34124:38;34165:15;:24;34181:7;34165:24;;;;;;;;;;;34124:65;;34342:18;34319:41;;34399:19;34393:26;34374:45;;34304:126;33952:485;;;:::o;33180:659::-;33329:11;33494:16;33487:5;33483:28;33474:37;;33654:16;33643:9;33639:32;33626:45;;33804:15;33793:9;33790:30;33782:5;33771:9;33768:20;33765:56;33755:66;;33180:659;;;;;:::o;39838:159::-;;;;;:::o;54406:311::-;54541:7;54561:16;17201:3;54587:19;:41;;54561:68;;17201:3;54655:31;54666:4;54672:2;54676:9;54655:10;:31::i;:::-;54647:40;;:62;;54640:69;;;54406:311;;;;;:::o;29298:450::-;29378:14;29546:16;29539:5;29535:28;29526:37;;29723:5;29709:11;29684:23;29680:41;29677:52;29670:5;29667:63;29657:73;;29298:450;;;;:::o;40662:158::-;;;;;:::o;60681:98::-;60734:7;60761:10;60754:17;;60681:98;:::o;48156:689::-;48287:19;48293:2;48297:8;48287:5;:19::i;:::-;48366:1;48348:2;:14;;;:19;48344:483;;48388:11;48402:13;;48388:27;;48434:13;48456:8;48450:3;:14;48434:30;;48483:233;48514:62;48553:1;48557:2;48561:7;;;;;;48570:5;48514:30;:62::i;:::-;48509:167;;48612:40;;;;;;;;;;;;;;48509:167;48711:3;48703:5;:11;48483:233;;48798:3;48781:13;;:20;48777:34;;48803:8;;;48777:34;48369:458;;48344:483;48156:689;;;:::o;41260:716::-;41423:4;41469:2;41444:45;;;41490:19;:17;:19::i;:::-;41511:4;41517:7;41526:5;41444:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41440:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41744:1;41727:6;:13;:18;41723:235;;41773:40;;;;;;;;;;;;;;41723:235;41916:6;41910:13;41901:6;41897:2;41893:15;41886:38;41440:529;41613:54;;;41603:64;;;:6;:64;;;;41596:71;;;41260:716;;;;;;:::o;54107:147::-;54244:6;54107:147;;;;;:::o;42438:2966::-;42511:20;42534:13;;42511:36;;42574:1;42562:8;:13;42558:44;;42584:18;;;;;;;;;;;;;;42558:44;42615:61;42645:1;42649:2;42653:12;42667:8;42615:21;:61::i;:::-;43159:1;16159:2;43129:1;:26;;43128:32;43116:8;:45;43090:18;:22;43109:2;43090:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43438:139;43475:2;43529:33;43552:1;43556:2;43560:1;43529:14;:33::i;:::-;43496:30;43517:8;43496:20;:30::i;:::-;:66;43438:18;:139::i;:::-;43404:17;:31;43422:12;43404:31;;;;;;;;;;;:173;;;;43594:16;43625:11;43654:8;43639:12;:23;43625:37;;44175:16;44171:2;44167:25;44155:37;;44547:12;44507:8;44466:1;44404:25;44345:1;44284;44257:335;44918:1;44904:12;44900:20;44858:346;44959:3;44950:7;44947:16;44858:346;;45177:7;45167:8;45164:1;45137:25;45134:1;45131;45126:59;45012:1;45003:7;44999:15;44988:26;;44858:346;;;44862:77;45249:1;45237:8;:13;45233:45;;45259:19;;;;;;;;;;;;;;45233:45;45311:3;45295:13;:19;;;;42864:2462;;45336:60;45365:1;45369:2;45373:12;45387:8;45336:20;:60::i;:::-;42500:2904;42438:2966;;:::o;29850:324::-;29920:14;30153:1;30143:8;30140:15;30114:24;30110:46;30100:56;;29850:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:329::-;5301:6;5350:2;5338:9;5329:7;5325:23;5321:32;5318:119;;;5356:79;;:::i;:::-;5318:119;5476:1;5501:53;5546:7;5537:6;5526:9;5522:22;5501:53;:::i;:::-;5491:63;;5447:117;5242:329;;;;:::o;5577:619::-;5654:6;5662;5670;5719:2;5707:9;5698:7;5694:23;5690:32;5687:119;;;5725:79;;:::i;:::-;5687:119;5845:1;5870:53;5915:7;5906:6;5895:9;5891:22;5870:53;:::i;:::-;5860:63;;5816:117;5972:2;5998:53;6043:7;6034:6;6023:9;6019:22;5998:53;:::i;:::-;5988:63;;5943:118;6100:2;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6071:118;5577:619;;;;;:::o;6202:60::-;6230:3;6251:5;6244:12;;6202:60;;;:::o;6268:142::-;6318:9;6351:53;6369:34;6378:24;6396:5;6378:24;:::i;:::-;6369:34;:::i;:::-;6351:53;:::i;:::-;6338:66;;6268:142;;;:::o;6416:126::-;6466:9;6499:37;6530:5;6499:37;:::i;:::-;6486:50;;6416:126;;;:::o;6548:157::-;6629:9;6662:37;6693:5;6662:37;:::i;:::-;6649:50;;6548:157;;;:::o;6711:193::-;6829:68;6891:5;6829:68;:::i;:::-;6824:3;6817:81;6711:193;;:::o;6910:284::-;7034:4;7072:2;7061:9;7057:18;7049:26;;7085:102;7184:1;7173:9;7169:17;7160:6;7085:102;:::i;:::-;6910:284;;;;:::o;7200:117::-;7309:1;7306;7299:12;7323:117;7432:1;7429;7422:12;7446:180;7494:77;7491:1;7484:88;7591:4;7588:1;7581:15;7615:4;7612:1;7605:15;7632:281;7715:27;7737:4;7715:27;:::i;:::-;7707:6;7703:40;7845:6;7833:10;7830:22;7809:18;7797:10;7794:34;7791:62;7788:88;;;7856:18;;:::i;:::-;7788:88;7896:10;7892:2;7885:22;7675:238;7632:281;;:::o;7919:129::-;7953:6;7980:20;;:::i;:::-;7970:30;;8009:33;8037:4;8029:6;8009:33;:::i;:::-;7919:129;;;:::o;8054:308::-;8116:4;8206:18;8198:6;8195:30;8192:56;;;8228:18;;:::i;:::-;8192:56;8266:29;8288:6;8266:29;:::i;:::-;8258:37;;8350:4;8344;8340:15;8332:23;;8054:308;;;:::o;8368:146::-;8465:6;8460:3;8455;8442:30;8506:1;8497:6;8492:3;8488:16;8481:27;8368:146;;;:::o;8520:425::-;8598:5;8623:66;8639:49;8681:6;8639:49;:::i;:::-;8623:66;:::i;:::-;8614:75;;8712:6;8705:5;8698:21;8750:4;8743:5;8739:16;8788:3;8779:6;8774:3;8770:16;8767:25;8764:112;;;8795:79;;:::i;:::-;8764:112;8885:54;8932:6;8927:3;8922;8885:54;:::i;:::-;8604:341;8520:425;;;;;:::o;8965:340::-;9021:5;9070:3;9063:4;9055:6;9051:17;9047:27;9037:122;;9078:79;;:::i;:::-;9037:122;9195:6;9182:20;9220:79;9295:3;9287:6;9280:4;9272:6;9268:17;9220:79;:::i;:::-;9211:88;;9027:278;8965:340;;;;:::o;9311:509::-;9380:6;9429:2;9417:9;9408:7;9404:23;9400:32;9397:119;;;9435:79;;:::i;:::-;9397:119;9583:1;9572:9;9568:17;9555:31;9613:18;9605:6;9602:30;9599:117;;;9635:79;;:::i;:::-;9599:117;9740:63;9795:7;9786:6;9775:9;9771:22;9740:63;:::i;:::-;9730:73;;9526:287;9311:509;;;;:::o;9826:116::-;9896:21;9911:5;9896:21;:::i;:::-;9889:5;9886:32;9876:60;;9932:1;9929;9922:12;9876:60;9826:116;:::o;9948:133::-;9991:5;10029:6;10016:20;10007:29;;10045:30;10069:5;10045:30;:::i;:::-;9948:133;;;;:::o;10087:468::-;10152:6;10160;10209:2;10197:9;10188:7;10184:23;10180:32;10177:119;;;10215:79;;:::i;:::-;10177:119;10335:1;10360:53;10405:7;10396:6;10385:9;10381:22;10360:53;:::i;:::-;10350:63;;10306:117;10462:2;10488:50;10530:7;10521:6;10510:9;10506:22;10488:50;:::i;:::-;10478:60;;10433:115;10087:468;;;;;:::o;10561:307::-;10622:4;10712:18;10704:6;10701:30;10698:56;;;10734:18;;:::i;:::-;10698:56;10772:29;10794:6;10772:29;:::i;:::-;10764:37;;10856:4;10850;10846:15;10838:23;;10561:307;;;:::o;10874:423::-;10951:5;10976:65;10992:48;11033:6;10992:48;:::i;:::-;10976:65;:::i;:::-;10967:74;;11064:6;11057:5;11050:21;11102:4;11095:5;11091:16;11140:3;11131:6;11126:3;11122:16;11119:25;11116:112;;;11147:79;;:::i;:::-;11116:112;11237:54;11284:6;11279:3;11274;11237:54;:::i;:::-;10957:340;10874:423;;;;;:::o;11316:338::-;11371:5;11420:3;11413:4;11405:6;11401:17;11397:27;11387:122;;11428:79;;:::i;:::-;11387:122;11545:6;11532:20;11570:78;11644:3;11636:6;11629:4;11621:6;11617:17;11570:78;:::i;:::-;11561:87;;11377:277;11316:338;;;;:::o;11660:943::-;11755:6;11763;11771;11779;11828:3;11816:9;11807:7;11803:23;11799:33;11796:120;;;11835:79;;:::i;:::-;11796:120;11955:1;11980:53;12025:7;12016:6;12005:9;12001:22;11980:53;:::i;:::-;11970:63;;11926:117;12082:2;12108:53;12153:7;12144:6;12133:9;12129:22;12108:53;:::i;:::-;12098:63;;12053:118;12210:2;12236:53;12281:7;12272:6;12261:9;12257:22;12236:53;:::i;:::-;12226:63;;12181:118;12366:2;12355:9;12351:18;12338:32;12397:18;12389:6;12386:30;12383:117;;;12419:79;;:::i;:::-;12383:117;12524:62;12578:7;12569:6;12558:9;12554:22;12524:62;:::i;:::-;12514:72;;12309:287;11660:943;;;;;;;:::o;12609:474::-;12677:6;12685;12734:2;12722:9;12713:7;12709:23;12705:32;12702:119;;;12740:79;;:::i;:::-;12702:119;12860:1;12885:53;12930:7;12921:6;12910:9;12906:22;12885:53;:::i;:::-;12875:63;;12831:117;12987:2;13013:53;13058:7;13049:6;13038:9;13034:22;13013:53;:::i;:::-;13003:63;;12958:118;12609:474;;;;;:::o;13089:180::-;13137:77;13134:1;13127:88;13234:4;13231:1;13224:15;13258:4;13255:1;13248:15;13275:320;13319:6;13356:1;13350:4;13346:12;13336:22;;13403:1;13397:4;13393:12;13424:18;13414:81;;13480:4;13472:6;13468:17;13458:27;;13414:81;13542:2;13534:6;13531:14;13511:18;13508:38;13505:84;;13561:18;;:::i;:::-;13505:84;13326:269;13275:320;;;:::o;13601:332::-;13722:4;13760:2;13749:9;13745:18;13737:26;;13773:71;13841:1;13830:9;13826:17;13817:6;13773:71;:::i;:::-;13854:72;13922:2;13911:9;13907:18;13898:6;13854:72;:::i;:::-;13601:332;;;;;:::o;13939:137::-;13993:5;14024:6;14018:13;14009:22;;14040:30;14064:5;14040:30;:::i;:::-;13939:137;;;;:::o;14082:345::-;14149:6;14198:2;14186:9;14177:7;14173:23;14169:32;14166:119;;;14204:79;;:::i;:::-;14166:119;14324:1;14349:61;14402:7;14393:6;14382:9;14378:22;14349:61;:::i;:::-;14339:71;;14295:125;14082:345;;;;:::o;14433:169::-;14573:21;14569:1;14561:6;14557:14;14550:45;14433:169;:::o;14608:366::-;14750:3;14771:67;14835:2;14830:3;14771:67;:::i;:::-;14764:74;;14847:93;14936:3;14847:93;:::i;:::-;14965:2;14960:3;14956:12;14949:19;;14608:366;;;:::o;14980:419::-;15146:4;15184:2;15173:9;15169:18;15161:26;;15233:9;15227:4;15223:20;15219:1;15208:9;15204:17;15197:47;15261:131;15387:4;15261:131;:::i;:::-;15253:139;;14980:419;;;:::o;15405:162::-;15545:14;15541:1;15533:6;15529:14;15522:38;15405:162;:::o;15573:366::-;15715:3;15736:67;15800:2;15795:3;15736:67;:::i;:::-;15729:74;;15812:93;15901:3;15812:93;:::i;:::-;15930:2;15925:3;15921:12;15914:19;;15573:366;;;:::o;15945:419::-;16111:4;16149:2;16138:9;16134:18;16126:26;;16198:9;16192:4;16188:20;16184:1;16173:9;16169:17;16162:47;16226:131;16352:4;16226:131;:::i;:::-;16218:139;;15945:419;;;:::o;16370:180::-;16418:77;16415:1;16408:88;16515:4;16512:1;16505:15;16539:4;16536:1;16529:15;16556:191;16596:3;16615:20;16633:1;16615:20;:::i;:::-;16610:25;;16649:20;16667:1;16649:20;:::i;:::-;16644:25;;16692:1;16689;16685:9;16678:16;;16713:3;16710:1;16707:10;16704:36;;;16720:18;;:::i;:::-;16704:36;16556:191;;;;:::o;16753:165::-;16893:17;16889:1;16881:6;16877:14;16870:41;16753:165;:::o;16924:366::-;17066:3;17087:67;17151:2;17146:3;17087:67;:::i;:::-;17080:74;;17163:93;17252:3;17163:93;:::i;:::-;17281:2;17276:3;17272:12;17265:19;;16924:366;;;:::o;17296:419::-;17462:4;17500:2;17489:9;17485:18;17477:26;;17549:9;17543:4;17539:20;17535:1;17524:9;17520:17;17513:47;17577:131;17703:4;17577:131;:::i;:::-;17569:139;;17296:419;;;:::o;17721:410::-;17761:7;17784:20;17802:1;17784:20;:::i;:::-;17779:25;;17818:20;17836:1;17818:20;:::i;:::-;17813:25;;17873:1;17870;17866:9;17895:30;17913:11;17895:30;:::i;:::-;17884:41;;18074:1;18065:7;18061:15;18058:1;18055:22;18035:1;18028:9;18008:83;17985:139;;18104:18;;:::i;:::-;17985:139;17769:362;17721:410;;;;:::o;18137:162::-;18277:14;18273:1;18265:6;18261:14;18254:38;18137:162;:::o;18305:366::-;18447:3;18468:67;18532:2;18527:3;18468:67;:::i;:::-;18461:74;;18544:93;18633:3;18544:93;:::i;:::-;18662:2;18657:3;18653:12;18646:19;;18305:366;;;:::o;18677:419::-;18843:4;18881:2;18870:9;18866:18;18858:26;;18930:9;18924:4;18920:20;18916:1;18905:9;18901:17;18894:47;18958:131;19084:4;18958:131;:::i;:::-;18950:139;;18677:419;;;:::o;19102:141::-;19151:4;19174:3;19166:11;;19197:3;19194:1;19187:14;19231:4;19228:1;19218:18;19210:26;;19102:141;;;:::o;19249:93::-;19286:6;19333:2;19328;19321:5;19317:14;19313:23;19303:33;;19249:93;;;:::o;19348:107::-;19392:8;19442:5;19436:4;19432:16;19411:37;;19348:107;;;;:::o;19461:393::-;19530:6;19580:1;19568:10;19564:18;19603:97;19633:66;19622:9;19603:97;:::i;:::-;19721:39;19751:8;19740:9;19721:39;:::i;:::-;19709:51;;19793:4;19789:9;19782:5;19778:21;19769:30;;19842:4;19832:8;19828:19;19821:5;19818:30;19808:40;;19537:317;;19461:393;;;;;:::o;19860:142::-;19910:9;19943:53;19961:34;19970:24;19988:5;19970:24;:::i;:::-;19961:34;:::i;:::-;19943:53;:::i;:::-;19930:66;;19860:142;;;:::o;20008:75::-;20051:3;20072:5;20065:12;;20008:75;;;:::o;20089:269::-;20199:39;20230:7;20199:39;:::i;:::-;20260:91;20309:41;20333:16;20309:41;:::i;:::-;20301:6;20294:4;20288:11;20260:91;:::i;:::-;20254:4;20247:105;20165:193;20089:269;;;:::o;20364:73::-;20409:3;20364:73;:::o;20443:189::-;20520:32;;:::i;:::-;20561:65;20619:6;20611;20605:4;20561:65;:::i;:::-;20496:136;20443:189;;:::o;20638:186::-;20698:120;20715:3;20708:5;20705:14;20698:120;;;20769:39;20806:1;20799:5;20769:39;:::i;:::-;20742:1;20735:5;20731:13;20722:22;;20698:120;;;20638:186;;:::o;20830:543::-;20931:2;20926:3;20923:11;20920:446;;;20965:38;20997:5;20965:38;:::i;:::-;21049:29;21067:10;21049:29;:::i;:::-;21039:8;21035:44;21232:2;21220:10;21217:18;21214:49;;;21253:8;21238:23;;21214:49;21276:80;21332:22;21350:3;21332:22;:::i;:::-;21322:8;21318:37;21305:11;21276:80;:::i;:::-;20935:431;;20920:446;20830:543;;;:::o;21379:117::-;21433:8;21483:5;21477:4;21473:16;21452:37;;21379:117;;;;:::o;21502:169::-;21546:6;21579:51;21627:1;21623:6;21615:5;21612:1;21608:13;21579:51;:::i;:::-;21575:56;21660:4;21654;21650:15;21640:25;;21553:118;21502:169;;;;:::o;21676:295::-;21752:4;21898:29;21923:3;21917:4;21898:29;:::i;:::-;21890:37;;21960:3;21957:1;21953:11;21947:4;21944:21;21936:29;;21676:295;;;;:::o;21976:1395::-;22093:37;22126:3;22093:37;:::i;:::-;22195:18;22187:6;22184:30;22181:56;;;22217:18;;:::i;:::-;22181:56;22261:38;22293:4;22287:11;22261:38;:::i;:::-;22346:67;22406:6;22398;22392:4;22346:67;:::i;:::-;22440:1;22464:4;22451:17;;22496:2;22488:6;22485:14;22513:1;22508:618;;;;23170:1;23187:6;23184:77;;;23236:9;23231:3;23227:19;23221:26;23212:35;;23184:77;23287:67;23347:6;23340:5;23287:67;:::i;:::-;23281:4;23274:81;23143:222;22478:887;;22508:618;22560:4;22556:9;22548:6;22544:22;22594:37;22626:4;22594:37;:::i;:::-;22653:1;22667:208;22681:7;22678:1;22675:14;22667:208;;;22760:9;22755:3;22751:19;22745:26;22737:6;22730:42;22811:1;22803:6;22799:14;22789:24;;22858:2;22847:9;22843:18;22830:31;;22704:4;22701:1;22697:12;22692:17;;22667:208;;;22903:6;22894:7;22891:19;22888:179;;;22961:9;22956:3;22952:19;22946:26;23004:48;23046:4;23038:6;23034:17;23023:9;23004:48;:::i;:::-;22996:6;22989:64;22911:156;22888:179;23113:1;23109;23101:6;23097:14;23093:22;23087:4;23080:36;22515:611;;;22478:887;;22068:1303;;;21976:1395;;:::o;23377:148::-;23479:11;23516:3;23501:18;;23377:148;;;;:::o;23531:390::-;23637:3;23665:39;23698:5;23665:39;:::i;:::-;23720:89;23802:6;23797:3;23720:89;:::i;:::-;23713:96;;23818:65;23876:6;23871:3;23864:4;23857:5;23853:16;23818:65;:::i;:::-;23908:6;23903:3;23899:16;23892:23;;23641:280;23531:390;;;;:::o;23927:435::-;24107:3;24129:95;24220:3;24211:6;24129:95;:::i;:::-;24122:102;;24241:95;24332:3;24323:6;24241:95;:::i;:::-;24234:102;;24353:3;24346:10;;23927:435;;;;;:::o;24368:225::-;24508:34;24504:1;24496:6;24492:14;24485:58;24577:8;24572:2;24564:6;24560:15;24553:33;24368:225;:::o;24599:366::-;24741:3;24762:67;24826:2;24821:3;24762:67;:::i;:::-;24755:74;;24838:93;24927:3;24838:93;:::i;:::-;24956:2;24951:3;24947:12;24940:19;;24599:366;;;:::o;24971:419::-;25137:4;25175:2;25164:9;25160:18;25152:26;;25224:9;25218:4;25214:20;25210:1;25199:9;25195:17;25188:47;25252:131;25378:4;25252:131;:::i;:::-;25244:139;;24971:419;;;:::o;25396:182::-;25536:34;25532:1;25524:6;25520:14;25513:58;25396:182;:::o;25584:366::-;25726:3;25747:67;25811:2;25806:3;25747:67;:::i;:::-;25740:74;;25823:93;25912:3;25823:93;:::i;:::-;25941:2;25936:3;25932:12;25925:19;;25584:366;;;:::o;25956:419::-;26122:4;26160:2;26149:9;26145:18;26137:26;;26209:9;26203:4;26199:20;26195:1;26184:9;26180:17;26173:47;26237:131;26363:4;26237:131;:::i;:::-;26229:139;;25956:419;;;:::o;26381:98::-;26432:6;26466:5;26460:12;26450:22;;26381:98;;;:::o;26485:168::-;26568:11;26602:6;26597:3;26590:19;26642:4;26637:3;26633:14;26618:29;;26485:168;;;;:::o;26659:373::-;26745:3;26773:38;26805:5;26773:38;:::i;:::-;26827:70;26890:6;26885:3;26827:70;:::i;:::-;26820:77;;26906:65;26964:6;26959:3;26952:4;26945:5;26941:16;26906:65;:::i;:::-;26996:29;27018:6;26996:29;:::i;:::-;26991:3;26987:39;26980:46;;26749:283;26659:373;;;;:::o;27038:640::-;27233:4;27271:3;27260:9;27256:19;27248:27;;27285:71;27353:1;27342:9;27338:17;27329:6;27285:71;:::i;:::-;27366:72;27434:2;27423:9;27419:18;27410:6;27366:72;:::i;:::-;27448;27516:2;27505:9;27501:18;27492:6;27448:72;:::i;:::-;27567:9;27561:4;27557:20;27552:2;27541:9;27537:18;27530:48;27595:76;27666:4;27657:6;27595:76;:::i;:::-;27587:84;;27038:640;;;;;;;:::o;27684:141::-;27740:5;27771:6;27765:13;27756:22;;27787:32;27813:5;27787:32;:::i;:::-;27684:141;;;;:::o;27831:349::-;27900:6;27949:2;27937:9;27928:7;27924:23;27920:32;27917:119;;;27955:79;;:::i;:::-;27917:119;28075:1;28100:63;28155:7;28146:6;28135:9;28131:22;28100:63;:::i;:::-;28090:73;;28046:127;27831:349;;;;:::o

Swarm Source

ipfs://6c9c9aa9a711d01c35c66a78bbe3361f3e2ada0f9956a0a015d5706c2c88ae25
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.