ETH Price: $3,194.97 (+2.51%)
Gas: 3 Gwei

Token

FizzHeadz (FIZZ)
 

Overview

Max Total Supply

3,333 FIZZ

Holders

859

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
11 FIZZ
0x22356d20ba3207f930d57aa700e6f4a5b4442520
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:
FizzHeadz

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-03
*/

/**
 ________ ___  ________  ________  ___  ___  _______   ________  ________  ________         
|\  _____\\  \|\_____  \|\_____  \|\  \|\  \|\  ___ \ |\   __  \|\   ___ \|\_____  \        
\ \  \__/\ \  \\|___/  /|\|___/  /\ \  \\\  \ \   __/|\ \  \|\  \ \  \_|\ \\|___/  /|       
 \ \   __\\ \  \   /  / /    /  / /\ \   __  \ \  \_|/_\ \   __  \ \  \ \\ \   /  / /       
  \ \  \_| \ \  \ /  /_/__  /  /_/__\ \  \ \  \ \  \_|\ \ \  \ \  \ \  \_\\ \ /  /_/__      
   \ \__\   \ \__\\________\\________\ \__\ \__\ \_______\ \__\ \__\ \_______\\________\    
    \|__|    \|__|\|_______|\|_______|\|__|\|__|\|_______|\|__|\|__|\|_______|\|_______|
                                                                                                                                                                                                                                                                                                    
 */

// SPDX-License-Identifier: MIT
// File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/529cceeda9f5f8e28812c20042cc57626f784718/src/IOperatorFilterRegistry.sol


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);
}

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


pragma solidity ^0.8.13;


/**
 * @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/The Noan.sol


pragma solidity ^0.8.15;


contract FizzHeadz is ERC721A, DefaultOperatorFilterer, Ownable {

    string public baseURI = "";
    uint256 public price = 0 ether;
    uint256 public maxSupply = 3333;
    uint256 public maxPerTransaction = 3; 

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }
    constructor () ERC721A("FizzHeadz", "FIZZ") {
    }

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

    // Mint
    function freeMint(uint256 amount) public payable callerIsUser{
        require(amount <= maxPerTransaction, "Over Max Per Transaction!");
        require(totalSupply() + amount <= maxSupply, "Sold Out!");

        _safeMint(msg.sender, amount);
    }    

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

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

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

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

    /////////////////////////////
    // 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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","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":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"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":"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051806020016040528060008152506009908162000024919062000670565b506000600a55610d05600b556003600c553480156200004257600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600981526020017f46697a7a486561647a00000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f46495a5a000000000000000000000000000000000000000000000000000000008152508160029081620000d7919062000670565b508060039081620000e9919062000670565b50620000fa6200031f60201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620002f7578015620001bd576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001839291906200079c565b600060405180830381600087803b1580156200019e57600080fd5b505af1158015620001b3573d6000803e3d6000fd5b50505050620002f6565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000277576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200023d9291906200079c565b600060405180830381600087803b1580156200025857600080fd5b505af11580156200026d573d6000803e3d6000fd5b50505050620002f5565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002c09190620007c9565b600060405180830381600087803b158015620002db57600080fd5b505af1158015620002f0573d6000803e3d6000fd5b505050505b5b5b5050620003196200030d6200032860201b60201c565b6200033060201b60201c565b620007e6565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200047857607f821691505b6020821081036200048e576200048d62000430565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004f87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004b9565b620005048683620004b9565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005516200054b62000545846200051c565b62000526565b6200051c565b9050919050565b6000819050919050565b6200056d8362000530565b620005856200057c8262000558565b848454620004c6565b825550505050565b600090565b6200059c6200058d565b620005a981848462000562565b505050565b5b81811015620005d157620005c560008262000592565b600181019050620005af565b5050565b601f8211156200062057620005ea8162000494565b620005f584620004a9565b8101602085101562000605578190505b6200061d6200061485620004a9565b830182620005ae565b50505b505050565b600082821c905092915050565b6000620006456000198460080262000625565b1980831691505092915050565b600062000660838362000632565b9150826002028217905092915050565b6200067b82620003f6565b67ffffffffffffffff81111562000697576200069662000401565b5b620006a382546200045f565b620006b0828285620005d5565b600060209050601f831160018114620006e85760008415620006d3578287015190505b620006df858262000652565b8655506200074f565b601f198416620006f88662000494565b60005b828110156200072257848901518255600182019150602085019450602081019050620006fb565b868310156200074257848901516200073e601f89168262000632565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007848262000757565b9050919050565b620007968162000777565b82525050565b6000604082019050620007b360008301856200078b565b620007c260208301846200078b565b9392505050565b6000602082019050620007e060008301846200078b565b92915050565b612fe980620007f66000396000f3fe6080604052600436106101815760003560e01c806370a08231116100d1578063a035b1fe1161008a578063c87b56dd11610064578063c87b56dd14610507578063d5abeb0114610544578063e985e9c51461056f578063f2fde38b146105ac57610181565b8063a035b1fe14610497578063a22cb465146104c2578063b88d4fde146104eb57610181565b806370a08231146103a8578063715018a6146103e55780637c928fe9146103fc5780638da5cb5b1461041857806391b7f5ed1461044357806395d89b411461046c57610181565b80633ccfd60b1161013e5780634b980d67116101185780634b980d67146102ec57806355f804b3146103175780636352211e146103405780636c0360eb1461037d57610181565b80633ccfd60b1461028e57806341f43434146102a557806342842e0e146102d057610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806318160ddd1461024757806323b872dd14610272575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a891906121af565b6105d5565b6040516101ba91906121f7565b60405180910390f35b3480156101cf57600080fd5b506101d8610667565b6040516101e591906122ab565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612303565b6106f9565b6040516102229190612371565b60405180910390f35b610245600480360381019061024091906123b8565b610778565b005b34801561025357600080fd5b5061025c610882565b6040516102699190612407565b60405180910390f35b61028c60048036038101906102879190612422565b610899565b005b34801561029a57600080fd5b506102a36109e9565b005b3480156102b157600080fd5b506102ba610a3a565b6040516102c791906124d4565b60405180910390f35b6102ea60048036038101906102e59190612422565b610a4c565b005b3480156102f857600080fd5b50610301610b9c565b60405161030e9190612407565b60405180910390f35b34801561032357600080fd5b5061033e60048036038101906103399190612624565b610ba2565b005b34801561034c57600080fd5b5061036760048036038101906103629190612303565b610bbd565b6040516103749190612371565b60405180910390f35b34801561038957600080fd5b50610392610bcf565b60405161039f91906122ab565b60405180910390f35b3480156103b457600080fd5b506103cf60048036038101906103ca919061266d565b610c5d565b6040516103dc9190612407565b60405180910390f35b3480156103f157600080fd5b506103fa610d15565b005b61041660048036038101906104119190612303565b610d29565b005b34801561042457600080fd5b5061042d610e40565b60405161043a9190612371565b60405180910390f35b34801561044f57600080fd5b5061046a60048036038101906104659190612303565b610e6a565b005b34801561047857600080fd5b50610481610e7c565b60405161048e91906122ab565b60405180910390f35b3480156104a357600080fd5b506104ac610f0e565b6040516104b99190612407565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e491906126c6565b610f14565b005b610505600480360381019061050091906127a7565b61101e565b005b34801561051357600080fd5b5061052e60048036038101906105299190612303565b611171565b60405161053b91906122ab565b60405180910390f35b34801561055057600080fd5b5061055961120f565b6040516105669190612407565b60405180910390f35b34801561057b57600080fd5b506105966004803603810190610591919061282a565b611215565b6040516105a391906121f7565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce919061266d565b6112a9565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061063057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106605750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461067690612899565b80601f01602080910402602001604051908101604052809291908181526020018280546106a290612899565b80156106ef5780601f106106c4576101008083540402835291602001916106ef565b820191906000526020600020905b8154815290600101906020018083116106d257829003601f168201915b5050505050905090565b60006107048261132c565b61073a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610873576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016107f09291906128ca565b602060405180830381865afa15801561080d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108319190612908565b61087257806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016108699190612371565b60405180910390fd5b5b61087d838361138b565b505050565b600061088c6114cf565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156109d7573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361090b576109068484846114d8565b6109e3565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016109549291906128ca565b602060405180830381865afa158015610971573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109959190612908565b6109d657336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016109cd9190612371565b60405180910390fd5b5b6109e28484846114d8565b5b50505050565b6109f16117fa565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610a37573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610b8a573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610abe57610ab9848484611878565b610b96565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610b079291906128ca565b602060405180830381865afa158015610b24573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b489190612908565b610b8957336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610b809190612371565b60405180910390fd5b5b610b95848484611878565b5b50505050565b600c5481565b610baa6117fa565b8060099081610bb99190612ad7565b5050565b6000610bc882611898565b9050919050565b60098054610bdc90612899565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0890612899565b8015610c555780601f10610c2a57610100808354040283529160200191610c55565b820191906000526020600020905b815481529060010190602001808311610c3857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cc4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d1d6117fa565b610d276000611964565b565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8e90612bf5565b60405180910390fd5b600c54811115610ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd390612c61565b60405180910390fd5b600b5481610de8610882565b610df29190612cb0565b1115610e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2a90612d52565b60405180910390fd5b610e3d3382611a2a565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e726117fa565b80600a8190555050565b606060038054610e8b90612899565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb790612899565b8015610f045780601f10610ed957610100808354040283529160200191610f04565b820191906000526020600020905b815481529060010190602001808311610ee757829003601f168201915b5050505050905090565b600a5481565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561100f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610f8c9291906128ca565b602060405180830381865afa158015610fa9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fcd9190612908565b61100e57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016110059190612371565b60405180910390fd5b5b6110198383611a48565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561115d573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110915761108c85858585611b53565b61116a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016110da9291906128ca565b602060405180830381865afa1580156110f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061111b9190612908565b61115c57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016111539190612371565b60405180910390fd5b5b61116985858585611b53565b5b5050505050565b606061117c8261132c565b6111b2576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006111bc611bc6565b905060008151036111dc5760405180602001604052806000815250611207565b806111e684611c58565b6040516020016111f7929190612dae565b6040516020818303038152906040525b915050919050565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112b16117fa565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611320576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131790612e44565b60405180910390fd5b61132981611964565b50565b6000816113376114cf565b11158015611346575060005482105b8015611384575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061139682610bbd565b90508073ffffffffffffffffffffffffffffffffffffffff166113b7611ca8565b73ffffffffffffffffffffffffffffffffffffffff161461141a576113e3816113de611ca8565b611215565b611419576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006114e382611898565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461154a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061155684611cb0565b9150915061156c8187611567611ca8565b611cd7565b6115b8576115818661157c611ca8565b611215565b6115b7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361161e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61162b8686866001611d1b565b801561163657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611704856116e0888887611d21565b7c020000000000000000000000000000000000000000000000000000000017611d49565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361178a5760006001850190506000600460008381526020019081526020016000205403611788576000548114611787578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117f28686866001611d74565b505050505050565b611802611d7a565b73ffffffffffffffffffffffffffffffffffffffff16611820610e40565b73ffffffffffffffffffffffffffffffffffffffff1614611876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186d90612eb0565b60405180910390fd5b565b6118938383836040518060200160405280600081525061101e565b505050565b600080829050806118a76114cf565b1161192d5760005481101561192c5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361192a575b600081036119205760046000836001900393508381526020019081526020016000205490506118f6565b809250505061195f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a44828260405180602001604052806000815250611d82565b5050565b8060076000611a55611ca8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b02611ca8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b4791906121f7565b60405180910390a35050565b611b5e848484610899565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bc057611b8984848484611e1f565b611bbf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060098054611bd590612899565b80601f0160208091040260200160405190810160405280929190818152602001828054611c0190612899565b8015611c4e5780601f10611c2357610100808354040283529160200191611c4e565b820191906000526020600020905b815481529060010190602001808311611c3157829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611c9357600184039350600a81066030018453600a8104905080611c71575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d38868684611f6f565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b611d8c8383611f78565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e1a57600080549050600083820390505b611dcc6000868380600101945086611e1f565b611e02576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611db9578160005414611e1757600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e45611ca8565b8786866040518563ffffffff1660e01b8152600401611e679493929190612f25565b6020604051808303816000875af1925050508015611ea357506040513d601f19601f82011682018060405250810190611ea09190612f86565b60015b611f1c573d8060008114611ed3576040519150601f19603f3d011682016040523d82523d6000602084013e611ed8565b606091505b506000815103611f14576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203611fb8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fc56000848385611d1b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061203c8361202d6000866000611d21565b61203685612133565b17611d49565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146120dd57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506120a2565b5060008203612118576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061212e6000848385611d74565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61218c81612157565b811461219757600080fd5b50565b6000813590506121a981612183565b92915050565b6000602082840312156121c5576121c461214d565b5b60006121d38482850161219a565b91505092915050565b60008115159050919050565b6121f1816121dc565b82525050565b600060208201905061220c60008301846121e8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561224c578082015181840152602081019050612231565b8381111561225b576000848401525b50505050565b6000601f19601f8301169050919050565b600061227d82612212565b612287818561221d565b935061229781856020860161222e565b6122a081612261565b840191505092915050565b600060208201905081810360008301526122c58184612272565b905092915050565b6000819050919050565b6122e0816122cd565b81146122eb57600080fd5b50565b6000813590506122fd816122d7565b92915050565b6000602082840312156123195761231861214d565b5b6000612327848285016122ee565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061235b82612330565b9050919050565b61236b81612350565b82525050565b60006020820190506123866000830184612362565b92915050565b61239581612350565b81146123a057600080fd5b50565b6000813590506123b28161238c565b92915050565b600080604083850312156123cf576123ce61214d565b5b60006123dd858286016123a3565b92505060206123ee858286016122ee565b9150509250929050565b612401816122cd565b82525050565b600060208201905061241c60008301846123f8565b92915050565b60008060006060848603121561243b5761243a61214d565b5b6000612449868287016123a3565b935050602061245a868287016123a3565b925050604061246b868287016122ee565b9150509250925092565b6000819050919050565b600061249a61249561249084612330565b612475565b612330565b9050919050565b60006124ac8261247f565b9050919050565b60006124be826124a1565b9050919050565b6124ce816124b3565b82525050565b60006020820190506124e960008301846124c5565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61253182612261565b810181811067ffffffffffffffff821117156125505761254f6124f9565b5b80604052505050565b6000612563612143565b905061256f8282612528565b919050565b600067ffffffffffffffff82111561258f5761258e6124f9565b5b61259882612261565b9050602081019050919050565b82818337600083830152505050565b60006125c76125c284612574565b612559565b9050828152602081018484840111156125e3576125e26124f4565b5b6125ee8482856125a5565b509392505050565b600082601f83011261260b5761260a6124ef565b5b813561261b8482602086016125b4565b91505092915050565b60006020828403121561263a5761263961214d565b5b600082013567ffffffffffffffff81111561265857612657612152565b5b612664848285016125f6565b91505092915050565b6000602082840312156126835761268261214d565b5b6000612691848285016123a3565b91505092915050565b6126a3816121dc565b81146126ae57600080fd5b50565b6000813590506126c08161269a565b92915050565b600080604083850312156126dd576126dc61214d565b5b60006126eb858286016123a3565b92505060206126fc858286016126b1565b9150509250929050565b600067ffffffffffffffff821115612721576127206124f9565b5b61272a82612261565b9050602081019050919050565b600061274a61274584612706565b612559565b905082815260208101848484011115612766576127656124f4565b5b6127718482856125a5565b509392505050565b600082601f83011261278e5761278d6124ef565b5b813561279e848260208601612737565b91505092915050565b600080600080608085870312156127c1576127c061214d565b5b60006127cf878288016123a3565b94505060206127e0878288016123a3565b93505060406127f1878288016122ee565b925050606085013567ffffffffffffffff81111561281257612811612152565b5b61281e87828801612779565b91505092959194509250565b600080604083850312156128415761284061214d565b5b600061284f858286016123a3565b9250506020612860858286016123a3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806128b157607f821691505b6020821081036128c4576128c361286a565b5b50919050565b60006040820190506128df6000830185612362565b6128ec6020830184612362565b9392505050565b6000815190506129028161269a565b92915050565b60006020828403121561291e5761291d61214d565b5b600061292c848285016128f3565b91505092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026129977fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261295a565b6129a1868361295a565b95508019841693508086168417925050509392505050565b60006129d46129cf6129ca846122cd565b612475565b6122cd565b9050919050565b6000819050919050565b6129ee836129b9565b612a026129fa826129db565b848454612967565b825550505050565b600090565b612a17612a0a565b612a228184846129e5565b505050565b5b81811015612a4657612a3b600082612a0f565b600181019050612a28565b5050565b601f821115612a8b57612a5c81612935565b612a658461294a565b81016020851015612a74578190505b612a88612a808561294a565b830182612a27565b50505b505050565b600082821c905092915050565b6000612aae60001984600802612a90565b1980831691505092915050565b6000612ac78383612a9d565b9150826002028217905092915050565b612ae082612212565b67ffffffffffffffff811115612af957612af86124f9565b5b612b038254612899565b612b0e828285612a4a565b600060209050601f831160018114612b415760008415612b2f578287015190505b612b398582612abb565b865550612ba1565b601f198416612b4f86612935565b60005b82811015612b7757848901518255600182019150602085019450602081019050612b52565b86831015612b945784890151612b90601f891682612a9d565b8355505b6001600288020188555050505b505050505050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000612bdf601e8361221d565b9150612bea82612ba9565b602082019050919050565b60006020820190508181036000830152612c0e81612bd2565b9050919050565b7f4f766572204d617820506572205472616e73616374696f6e2100000000000000600082015250565b6000612c4b60198361221d565b9150612c5682612c15565b602082019050919050565b60006020820190508181036000830152612c7a81612c3e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612cbb826122cd565b9150612cc6836122cd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612cfb57612cfa612c81565b5b828201905092915050565b7f536f6c64204f7574210000000000000000000000000000000000000000000000600082015250565b6000612d3c60098361221d565b9150612d4782612d06565b602082019050919050565b60006020820190508181036000830152612d6b81612d2f565b9050919050565b600081905092915050565b6000612d8882612212565b612d928185612d72565b9350612da281856020860161222e565b80840191505092915050565b6000612dba8285612d7d565b9150612dc68284612d7d565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e2e60268361221d565b9150612e3982612dd2565b604082019050919050565b60006020820190508181036000830152612e5d81612e21565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612e9a60208361221d565b9150612ea582612e64565b602082019050919050565b60006020820190508181036000830152612ec981612e8d565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612ef782612ed0565b612f018185612edb565b9350612f1181856020860161222e565b612f1a81612261565b840191505092915050565b6000608082019050612f3a6000830187612362565b612f476020830186612362565b612f5460408301856123f8565b8181036060830152612f668184612eec565b905095945050505050565b600081519050612f8081612183565b92915050565b600060208284031215612f9c57612f9b61214d565b5b6000612faa84828501612f71565b9150509291505056fea2646970667358221220648f00a07e25d30a4a69298e52cc319c8a6b7b2a8e4474bcbbca0a6ea2ced01464736f6c634300080f0033

Deployed Bytecode

0x6080604052600436106101815760003560e01c806370a08231116100d1578063a035b1fe1161008a578063c87b56dd11610064578063c87b56dd14610507578063d5abeb0114610544578063e985e9c51461056f578063f2fde38b146105ac57610181565b8063a035b1fe14610497578063a22cb465146104c2578063b88d4fde146104eb57610181565b806370a08231146103a8578063715018a6146103e55780637c928fe9146103fc5780638da5cb5b1461041857806391b7f5ed1461044357806395d89b411461046c57610181565b80633ccfd60b1161013e5780634b980d67116101185780634b980d67146102ec57806355f804b3146103175780636352211e146103405780636c0360eb1461037d57610181565b80633ccfd60b1461028e57806341f43434146102a557806342842e0e146102d057610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806318160ddd1461024757806323b872dd14610272575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a891906121af565b6105d5565b6040516101ba91906121f7565b60405180910390f35b3480156101cf57600080fd5b506101d8610667565b6040516101e591906122ab565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612303565b6106f9565b6040516102229190612371565b60405180910390f35b610245600480360381019061024091906123b8565b610778565b005b34801561025357600080fd5b5061025c610882565b6040516102699190612407565b60405180910390f35b61028c60048036038101906102879190612422565b610899565b005b34801561029a57600080fd5b506102a36109e9565b005b3480156102b157600080fd5b506102ba610a3a565b6040516102c791906124d4565b60405180910390f35b6102ea60048036038101906102e59190612422565b610a4c565b005b3480156102f857600080fd5b50610301610b9c565b60405161030e9190612407565b60405180910390f35b34801561032357600080fd5b5061033e60048036038101906103399190612624565b610ba2565b005b34801561034c57600080fd5b5061036760048036038101906103629190612303565b610bbd565b6040516103749190612371565b60405180910390f35b34801561038957600080fd5b50610392610bcf565b60405161039f91906122ab565b60405180910390f35b3480156103b457600080fd5b506103cf60048036038101906103ca919061266d565b610c5d565b6040516103dc9190612407565b60405180910390f35b3480156103f157600080fd5b506103fa610d15565b005b61041660048036038101906104119190612303565b610d29565b005b34801561042457600080fd5b5061042d610e40565b60405161043a9190612371565b60405180910390f35b34801561044f57600080fd5b5061046a60048036038101906104659190612303565b610e6a565b005b34801561047857600080fd5b50610481610e7c565b60405161048e91906122ab565b60405180910390f35b3480156104a357600080fd5b506104ac610f0e565b6040516104b99190612407565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e491906126c6565b610f14565b005b610505600480360381019061050091906127a7565b61101e565b005b34801561051357600080fd5b5061052e60048036038101906105299190612303565b611171565b60405161053b91906122ab565b60405180910390f35b34801561055057600080fd5b5061055961120f565b6040516105669190612407565b60405180910390f35b34801561057b57600080fd5b506105966004803603810190610591919061282a565b611215565b6040516105a391906121f7565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce919061266d565b6112a9565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061063057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106605750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461067690612899565b80601f01602080910402602001604051908101604052809291908181526020018280546106a290612899565b80156106ef5780601f106106c4576101008083540402835291602001916106ef565b820191906000526020600020905b8154815290600101906020018083116106d257829003601f168201915b5050505050905090565b60006107048261132c565b61073a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610873576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016107f09291906128ca565b602060405180830381865afa15801561080d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108319190612908565b61087257806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016108699190612371565b60405180910390fd5b5b61087d838361138b565b505050565b600061088c6114cf565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156109d7573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361090b576109068484846114d8565b6109e3565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016109549291906128ca565b602060405180830381865afa158015610971573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109959190612908565b6109d657336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016109cd9190612371565b60405180910390fd5b5b6109e28484846114d8565b5b50505050565b6109f16117fa565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610a37573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610b8a573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610abe57610ab9848484611878565b610b96565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610b079291906128ca565b602060405180830381865afa158015610b24573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b489190612908565b610b8957336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610b809190612371565b60405180910390fd5b5b610b95848484611878565b5b50505050565b600c5481565b610baa6117fa565b8060099081610bb99190612ad7565b5050565b6000610bc882611898565b9050919050565b60098054610bdc90612899565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0890612899565b8015610c555780601f10610c2a57610100808354040283529160200191610c55565b820191906000526020600020905b815481529060010190602001808311610c3857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cc4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d1d6117fa565b610d276000611964565b565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8e90612bf5565b60405180910390fd5b600c54811115610ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd390612c61565b60405180910390fd5b600b5481610de8610882565b610df29190612cb0565b1115610e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2a90612d52565b60405180910390fd5b610e3d3382611a2a565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e726117fa565b80600a8190555050565b606060038054610e8b90612899565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb790612899565b8015610f045780601f10610ed957610100808354040283529160200191610f04565b820191906000526020600020905b815481529060010190602001808311610ee757829003601f168201915b5050505050905090565b600a5481565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561100f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610f8c9291906128ca565b602060405180830381865afa158015610fa9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fcd9190612908565b61100e57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016110059190612371565b60405180910390fd5b5b6110198383611a48565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561115d573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110915761108c85858585611b53565b61116a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016110da9291906128ca565b602060405180830381865afa1580156110f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061111b9190612908565b61115c57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016111539190612371565b60405180910390fd5b5b61116985858585611b53565b5b5050505050565b606061117c8261132c565b6111b2576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006111bc611bc6565b905060008151036111dc5760405180602001604052806000815250611207565b806111e684611c58565b6040516020016111f7929190612dae565b6040516020818303038152906040525b915050919050565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112b16117fa565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611320576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131790612e44565b60405180910390fd5b61132981611964565b50565b6000816113376114cf565b11158015611346575060005482105b8015611384575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061139682610bbd565b90508073ffffffffffffffffffffffffffffffffffffffff166113b7611ca8565b73ffffffffffffffffffffffffffffffffffffffff161461141a576113e3816113de611ca8565b611215565b611419576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006114e382611898565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461154a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061155684611cb0565b9150915061156c8187611567611ca8565b611cd7565b6115b8576115818661157c611ca8565b611215565b6115b7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361161e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61162b8686866001611d1b565b801561163657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611704856116e0888887611d21565b7c020000000000000000000000000000000000000000000000000000000017611d49565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361178a5760006001850190506000600460008381526020019081526020016000205403611788576000548114611787578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117f28686866001611d74565b505050505050565b611802611d7a565b73ffffffffffffffffffffffffffffffffffffffff16611820610e40565b73ffffffffffffffffffffffffffffffffffffffff1614611876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186d90612eb0565b60405180910390fd5b565b6118938383836040518060200160405280600081525061101e565b505050565b600080829050806118a76114cf565b1161192d5760005481101561192c5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361192a575b600081036119205760046000836001900393508381526020019081526020016000205490506118f6565b809250505061195f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a44828260405180602001604052806000815250611d82565b5050565b8060076000611a55611ca8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b02611ca8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b4791906121f7565b60405180910390a35050565b611b5e848484610899565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bc057611b8984848484611e1f565b611bbf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060098054611bd590612899565b80601f0160208091040260200160405190810160405280929190818152602001828054611c0190612899565b8015611c4e5780601f10611c2357610100808354040283529160200191611c4e565b820191906000526020600020905b815481529060010190602001808311611c3157829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611c9357600184039350600a81066030018453600a8104905080611c71575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d38868684611f6f565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b611d8c8383611f78565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e1a57600080549050600083820390505b611dcc6000868380600101945086611e1f565b611e02576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611db9578160005414611e1757600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e45611ca8565b8786866040518563ffffffff1660e01b8152600401611e679493929190612f25565b6020604051808303816000875af1925050508015611ea357506040513d601f19601f82011682018060405250810190611ea09190612f86565b60015b611f1c573d8060008114611ed3576040519150601f19603f3d011682016040523d82523d6000602084013e611ed8565b606091505b506000815103611f14576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203611fb8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fc56000848385611d1b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061203c8361202d6000866000611d21565b61203685612133565b17611d49565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146120dd57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506120a2565b5060008203612118576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061212e6000848385611d74565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61218c81612157565b811461219757600080fd5b50565b6000813590506121a981612183565b92915050565b6000602082840312156121c5576121c461214d565b5b60006121d38482850161219a565b91505092915050565b60008115159050919050565b6121f1816121dc565b82525050565b600060208201905061220c60008301846121e8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561224c578082015181840152602081019050612231565b8381111561225b576000848401525b50505050565b6000601f19601f8301169050919050565b600061227d82612212565b612287818561221d565b935061229781856020860161222e565b6122a081612261565b840191505092915050565b600060208201905081810360008301526122c58184612272565b905092915050565b6000819050919050565b6122e0816122cd565b81146122eb57600080fd5b50565b6000813590506122fd816122d7565b92915050565b6000602082840312156123195761231861214d565b5b6000612327848285016122ee565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061235b82612330565b9050919050565b61236b81612350565b82525050565b60006020820190506123866000830184612362565b92915050565b61239581612350565b81146123a057600080fd5b50565b6000813590506123b28161238c565b92915050565b600080604083850312156123cf576123ce61214d565b5b60006123dd858286016123a3565b92505060206123ee858286016122ee565b9150509250929050565b612401816122cd565b82525050565b600060208201905061241c60008301846123f8565b92915050565b60008060006060848603121561243b5761243a61214d565b5b6000612449868287016123a3565b935050602061245a868287016123a3565b925050604061246b868287016122ee565b9150509250925092565b6000819050919050565b600061249a61249561249084612330565b612475565b612330565b9050919050565b60006124ac8261247f565b9050919050565b60006124be826124a1565b9050919050565b6124ce816124b3565b82525050565b60006020820190506124e960008301846124c5565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61253182612261565b810181811067ffffffffffffffff821117156125505761254f6124f9565b5b80604052505050565b6000612563612143565b905061256f8282612528565b919050565b600067ffffffffffffffff82111561258f5761258e6124f9565b5b61259882612261565b9050602081019050919050565b82818337600083830152505050565b60006125c76125c284612574565b612559565b9050828152602081018484840111156125e3576125e26124f4565b5b6125ee8482856125a5565b509392505050565b600082601f83011261260b5761260a6124ef565b5b813561261b8482602086016125b4565b91505092915050565b60006020828403121561263a5761263961214d565b5b600082013567ffffffffffffffff81111561265857612657612152565b5b612664848285016125f6565b91505092915050565b6000602082840312156126835761268261214d565b5b6000612691848285016123a3565b91505092915050565b6126a3816121dc565b81146126ae57600080fd5b50565b6000813590506126c08161269a565b92915050565b600080604083850312156126dd576126dc61214d565b5b60006126eb858286016123a3565b92505060206126fc858286016126b1565b9150509250929050565b600067ffffffffffffffff821115612721576127206124f9565b5b61272a82612261565b9050602081019050919050565b600061274a61274584612706565b612559565b905082815260208101848484011115612766576127656124f4565b5b6127718482856125a5565b509392505050565b600082601f83011261278e5761278d6124ef565b5b813561279e848260208601612737565b91505092915050565b600080600080608085870312156127c1576127c061214d565b5b60006127cf878288016123a3565b94505060206127e0878288016123a3565b93505060406127f1878288016122ee565b925050606085013567ffffffffffffffff81111561281257612811612152565b5b61281e87828801612779565b91505092959194509250565b600080604083850312156128415761284061214d565b5b600061284f858286016123a3565b9250506020612860858286016123a3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806128b157607f821691505b6020821081036128c4576128c361286a565b5b50919050565b60006040820190506128df6000830185612362565b6128ec6020830184612362565b9392505050565b6000815190506129028161269a565b92915050565b60006020828403121561291e5761291d61214d565b5b600061292c848285016128f3565b91505092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026129977fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261295a565b6129a1868361295a565b95508019841693508086168417925050509392505050565b60006129d46129cf6129ca846122cd565b612475565b6122cd565b9050919050565b6000819050919050565b6129ee836129b9565b612a026129fa826129db565b848454612967565b825550505050565b600090565b612a17612a0a565b612a228184846129e5565b505050565b5b81811015612a4657612a3b600082612a0f565b600181019050612a28565b5050565b601f821115612a8b57612a5c81612935565b612a658461294a565b81016020851015612a74578190505b612a88612a808561294a565b830182612a27565b50505b505050565b600082821c905092915050565b6000612aae60001984600802612a90565b1980831691505092915050565b6000612ac78383612a9d565b9150826002028217905092915050565b612ae082612212565b67ffffffffffffffff811115612af957612af86124f9565b5b612b038254612899565b612b0e828285612a4a565b600060209050601f831160018114612b415760008415612b2f578287015190505b612b398582612abb565b865550612ba1565b601f198416612b4f86612935565b60005b82811015612b7757848901518255600182019150602085019450602081019050612b52565b86831015612b945784890151612b90601f891682612a9d565b8355505b6001600288020188555050505b505050505050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000612bdf601e8361221d565b9150612bea82612ba9565b602082019050919050565b60006020820190508181036000830152612c0e81612bd2565b9050919050565b7f4f766572204d617820506572205472616e73616374696f6e2100000000000000600082015250565b6000612c4b60198361221d565b9150612c5682612c15565b602082019050919050565b60006020820190508181036000830152612c7a81612c3e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612cbb826122cd565b9150612cc6836122cd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612cfb57612cfa612c81565b5b828201905092915050565b7f536f6c64204f7574210000000000000000000000000000000000000000000000600082015250565b6000612d3c60098361221d565b9150612d4782612d06565b602082019050919050565b60006020820190508181036000830152612d6b81612d2f565b9050919050565b600081905092915050565b6000612d8882612212565b612d928185612d72565b9350612da281856020860161222e565b80840191505092915050565b6000612dba8285612d7d565b9150612dc68284612d7d565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e2e60268361221d565b9150612e3982612dd2565b604082019050919050565b60006020820190508181036000830152612e5d81612e21565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612e9a60208361221d565b9150612ea582612e64565b602082019050919050565b60006020820190508181036000830152612ec981612e8d565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612ef782612ed0565b612f018185612edb565b9350612f1181856020860161222e565b612f1a81612261565b840191505092915050565b6000608082019050612f3a6000830187612362565b612f476020830186612362565b612f5460408301856123f8565b8181036060830152612f668184612eec565b905095945050505050565b600081519050612f8081612183565b92915050565b600060208284031215612f9c57612f9b61214d565b5b6000612faa84828501612f71565b9150509291505056fea2646970667358221220648f00a07e25d30a4a69298e52cc319c8a6b7b2a8e4474bcbbca0a6ea2ced01464736f6c634300080f0033

Deployed Bytecode Sourcemap

64935:2421:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25298:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26200:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32691:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66569:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21951:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66742:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66051:108;;;;;;;;;;;;;:::i;:::-;;4080:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66921:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65116:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66171:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27593:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65008:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23135:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64051:103;;;;;;;;;;;;;:::i;:::-;;65471:255;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63403:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65839:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26376:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65041:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66385:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67108:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26586:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65078:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33640:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64309:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25298:639;25383:4;25722:10;25707:25;;:11;:25;;;;:102;;;;25799:10;25784:25;;:11;:25;;;;25707:102;:179;;;;25876:10;25861:25;;:11;:25;;;;25707:179;25687:199;;25298:639;;;:::o;26200:100::-;26254:13;26287:5;26280:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26200:100;:::o;32691:218::-;32767:7;32792:16;32800:7;32792;:16::i;:::-;32787:64;;32817:34;;;;;;;;;;;;;;32787:64;32871:15;:24;32887:7;32871:24;;;;;;;;;;;:30;;;;;;;;;;;;32864:37;;32691:218;;;:::o;66569:165::-;66673:8;6122:1;4180:42;6074:45;;;:49;6070:225;;;4180:42;6145;;;6196:4;6203:8;6145:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6140:144;;6259:8;6240:28;;;;;;;;;;;:::i;:::-;;;;;;;;6140:144;6070:225;66694:32:::1;66708:8;66718:7;66694:13;:32::i;:::-;66569:165:::0;;;:::o;21951:323::-;22012:7;22240:15;:13;:15::i;:::-;22225:12;;22209:13;;:28;:46;22202:53;;21951:323;:::o;66742:171::-;66851:4;5376:1;4180:42;5328:45;;;:49;5324:539;;;5617:10;5609:18;;:4;:18;;;5605:85;;66868:37:::1;66887:4;66893:2;66897:7;66868:18;:37::i;:::-;5668:7:::0;;5605:85;4180:42;5709;;;5760:4;5767:10;5709:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5704:148;;5825:10;5806:30;;;;;;;;;;;:::i;:::-;;;;;;;;5704:148;5324:539;66868:37:::1;66887:4;66893:2;66897:7;66868:18;:37::i;:::-;66742:171:::0;;;;;:::o;66051:108::-;63289:13;:11;:13::i;:::-;66101:10:::1;66093:28;;:51;66122:21;66093:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;66051:108::o:0;4080:143::-;4180:42;4080:143;:::o;66921:179::-;67034:4;5376:1;4180:42;5328:45;;;:49;5324:539;;;5617:10;5609:18;;:4;:18;;;5605:85;;67051:41:::1;67074:4;67080:2;67084:7;67051:22;:41::i;:::-;5668:7:::0;;5605:85;4180:42;5709;;;5760:4;5767:10;5709:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5704:148;;5825:10;5806:30;;;;;;;;;;;:::i;:::-;;;;;;;;5704:148;5324:539;67051:41:::1;67074:4;67080:2;67084:7;67051:22;:41::i;:::-;66921:179:::0;;;;;:::o;65116:36::-;;;;:::o;66171:100::-;63289:13;:11;:13::i;:::-;66255:8:::1;66245:7;:18;;;;;;:::i;:::-;;66171:100:::0;:::o;27593:152::-;27665:7;27708:27;27727:7;27708:18;:27::i;:::-;27685:52;;27593:152;;;:::o;65008:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23135:233::-;23207:7;23248:1;23231:19;;:5;:19;;;23227:60;;23259:28;;;;;;;;;;;;;;23227:60;17294:13;23305:18;:25;23324:5;23305:25;;;;;;;;;;;;;;;;:55;23298:62;;23135:233;;;:::o;64051:103::-;63289:13;:11;:13::i;:::-;64116:30:::1;64143:1;64116:18;:30::i;:::-;64051:103::o:0;65471:255::-;65218:10;65205:23;;:9;:23;;;65197:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;65561:17:::1;;65551:6;:27;;65543:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;65653:9;;65643:6;65627:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;65619:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;65689:29;65699:10;65711:6;65689:9;:29::i;:::-;65471:255:::0;:::o;63403:87::-;63449:7;63476:6;;;;;;;;;;;63469:13;;63403:87;:::o;65839:88::-;63289:13;:11;:13::i;:::-;65911:8:::1;65903:5;:16;;;;65839:88:::0;:::o;26376:104::-;26432:13;26465:7;26458:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26376:104;:::o;65041:30::-;;;;:::o;66385:176::-;66489:8;6122:1;4180:42;6074:45;;;:49;6070:225;;;4180:42;6145;;;6196:4;6203:8;6145:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6140:144;;6259:8;6240:28;;;;;;;;;;;:::i;:::-;;;;;;;;6140:144;6070:225;66510:43:::1;66534:8;66544;66510:23;:43::i;:::-;66385:176:::0;;;:::o;67108:245::-;67276:4;5376:1;4180:42;5328:45;;;:49;5324:539;;;5617:10;5609:18;;:4;:18;;;5605:85;;67298:47:::1;67321:4;67327:2;67331:7;67340:4;67298:22;:47::i;:::-;5668:7:::0;;5605:85;4180:42;5709;;;5760:4;5767:10;5709:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5704:148;;5825:10;5806:30;;;;;;;;;;;:::i;:::-;;;;;;;;5704:148;5324:539;67298:47:::1;67321:4;67327:2;67331:7;67340:4;67298:22;:47::i;:::-;67108:245:::0;;;;;;:::o;26586:318::-;26659:13;26690:16;26698:7;26690;:16::i;:::-;26685:59;;26715:29;;;;;;;;;;;;;;26685:59;26757:21;26781:10;:8;:10::i;:::-;26757:34;;26834:1;26815:7;26809:21;:26;:87;;;;;;;;;;;;;;;;;26862:7;26871:18;26881:7;26871:9;:18::i;:::-;26845:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26809:87;26802:94;;;26586:318;;;:::o;65078:31::-;;;;:::o;33640:164::-;33737:4;33761:18;:25;33780:5;33761:25;;;;;;;;;;;;;;;:35;33787:8;33761:35;;;;;;;;;;;;;;;;;;;;;;;;;33754:42;;33640:164;;;;:::o;64309:201::-;63289:13;:11;:13::i;:::-;64418:1:::1;64398:22;;:8;:22;;::::0;64390:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;64474:28;64493:8;64474:18;:28::i;:::-;64309:201:::0;:::o;34062:282::-;34127:4;34183:7;34164:15;:13;:15::i;:::-;:26;;:66;;;;;34217:13;;34207:7;:23;34164:66;:153;;;;;34316:1;18070:8;34268:17;:26;34286:7;34268:26;;;;;;;;;;;;:44;:49;34164:153;34144:173;;34062:282;;;:::o;32124:408::-;32213:13;32229:16;32237:7;32229;:16::i;:::-;32213:32;;32285:5;32262:28;;:19;:17;:19::i;:::-;:28;;;32258:175;;32310:44;32327:5;32334:19;:17;:19::i;:::-;32310:16;:44::i;:::-;32305:128;;32382:35;;;;;;;;;;;;;;32305:128;32258:175;32478:2;32445:15;:24;32461:7;32445:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32516:7;32512:2;32496:28;;32505:5;32496:28;;;;;;;;;;;;32202:330;32124:408;;:::o;65349:101::-;65414:7;65441:1;65434:8;;65349:101;:::o;36330:2825::-;36472:27;36502;36521:7;36502:18;:27::i;:::-;36472:57;;36587:4;36546:45;;36562:19;36546:45;;;36542:86;;36600:28;;;;;;;;;;;;;;36542:86;36642:27;36671:23;36698:35;36725:7;36698:26;:35::i;:::-;36641:92;;;;36833:68;36858:15;36875:4;36881:19;:17;:19::i;:::-;36833:24;:68::i;:::-;36828:180;;36921:43;36938:4;36944:19;:17;:19::i;:::-;36921:16;:43::i;:::-;36916:92;;36973:35;;;;;;;;;;;;;;36916:92;36828:180;37039:1;37025:16;;:2;:16;;;37021:52;;37050:23;;;;;;;;;;;;;;37021:52;37086:43;37108:4;37114:2;37118:7;37127:1;37086:21;:43::i;:::-;37222:15;37219:160;;;37362:1;37341:19;37334:30;37219:160;37759:18;:24;37778:4;37759:24;;;;;;;;;;;;;;;;37757:26;;;;;;;;;;;;37828:18;:22;37847:2;37828:22;;;;;;;;;;;;;;;;37826:24;;;;;;;;;;;38150:146;38187:2;38236:45;38251:4;38257:2;38261:19;38236:14;:45::i;:::-;18350:8;38208:73;38150:18;:146::i;:::-;38121:17;:26;38139:7;38121:26;;;;;;;;;;;:175;;;;38467:1;18350:8;38416:19;:47;:52;38412:627;;38489:19;38521:1;38511:7;:11;38489:33;;38678:1;38644:17;:30;38662:11;38644:30;;;;;;;;;;;;:35;38640:384;;38782:13;;38767:11;:28;38763:242;;38962:19;38929:17;:30;38947:11;38929:30;;;;;;;;;;;:52;;;;38763:242;38640:384;38470:569;38412:627;39086:7;39082:2;39067:27;;39076:4;39067:27;;;;;;;;;;;;39105:42;39126:4;39132:2;39136:7;39145:1;39105:20;:42::i;:::-;36461:2694;;;36330:2825;;;:::o;63568:132::-;63643:12;:10;:12::i;:::-;63632:23;;:7;:5;:7::i;:::-;:23;;;63624:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63568:132::o;39251:193::-;39397:39;39414:4;39420:2;39424:7;39397:39;;;;;;;;;;;;:16;:39::i;:::-;39251:193;;;:::o;28748:1275::-;28815:7;28835:12;28850:7;28835:22;;28918:4;28899:15;:13;:15::i;:::-;:23;28895:1061;;28952:13;;28945:4;:20;28941:1015;;;28990:14;29007:17;:23;29025:4;29007:23;;;;;;;;;;;;28990:40;;29124:1;18070:8;29096:6;:24;:29;29092:845;;29761:113;29778:1;29768:6;:11;29761:113;;29821:17;:25;29839:6;;;;;;;29821:25;;;;;;;;;;;;29812:34;;29761:113;;;29907:6;29900:13;;;;;;29092:845;28967:989;28941:1015;28895:1061;29984:31;;;;;;;;;;;;;;28748:1275;;;;:::o;64670:191::-;64744:16;64763:6;;;;;;;;;;;64744:25;;64789:8;64780:6;;:17;;;;;;;;;;;;;;;;;;64844:8;64813:40;;64834:8;64813:40;;;;;;;;;;;;64733:128;64670:191;:::o;50202:112::-;50279:27;50289:2;50293:8;50279:27;;;;;;;;;;;;:9;:27::i;:::-;50202:112;;:::o;33249:234::-;33396:8;33344:18;:39;33363:19;:17;:19::i;:::-;33344:39;;;;;;;;;;;;;;;:49;33384:8;33344:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;33456:8;33420:55;;33435:19;:17;:19::i;:::-;33420:55;;;33466:8;33420:55;;;;;;:::i;:::-;;;;;;;;33249:234;;:::o;40042:407::-;40217:31;40230:4;40236:2;40240:7;40217:12;:31::i;:::-;40281:1;40263:2;:14;;;:19;40259:183;;40302:56;40333:4;40339:2;40343:7;40352:5;40302:30;:56::i;:::-;40297:145;;40386:40;;;;;;;;;;;;;;40297:145;40259:183;40042:407;;;;:::o;65935:108::-;65995:13;66028:7;66021:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65935:108;:::o;56577:1745::-;56642:17;57076:4;57069;57063:11;57059:22;57168:1;57162:4;57155:15;57243:4;57240:1;57236:12;57229:19;;57325:1;57320:3;57313:14;57429:3;57668:5;57650:428;57676:1;57650:428;;;57716:1;57711:3;57707:11;57700:18;;57887:2;57881:4;57877:13;57873:2;57869:22;57864:3;57856:36;57981:2;57975:4;57971:13;57963:21;;58048:4;57650:428;58038:25;57650:428;57654:21;58117:3;58112;58108:13;58232:4;58227:3;58223:14;58216:21;;58297:6;58292:3;58285:19;56681:1634;;;56577:1745;;;:::o;56370:105::-;56430:7;56457:10;56450:17;;56370:105;:::o;35225:485::-;35327:27;35356:23;35397:38;35438:15;:24;35454:7;35438:24;;;;;;;;;;;35397:65;;35615:18;35592:41;;35672:19;35666:26;35647:45;;35577:126;35225:485;;;:::o;34453:659::-;34602:11;34767:16;34760:5;34756:28;34747:37;;34927:16;34916:9;34912:32;34899:45;;35077:15;35066:9;35063:30;35055:5;35044:9;35041:20;35038:56;35028:66;;34453:659;;;;;:::o;41111:159::-;;;;;:::o;55679:311::-;55814:7;55834:16;18474:3;55860:19;:41;;55834:68;;18474:3;55928:31;55939:4;55945:2;55949:9;55928:10;:31::i;:::-;55920:40;;:62;;55913:69;;;55679:311;;;;;:::o;30571:450::-;30651:14;30819:16;30812:5;30808:28;30799:37;;30996:5;30982:11;30957:23;30953:41;30950:52;30943:5;30940:63;30930:73;;30571:450;;;;:::o;41935:158::-;;;;;:::o;61954:98::-;62007:7;62034:10;62027:17;;61954:98;:::o;49429:689::-;49560:19;49566:2;49570:8;49560:5;:19::i;:::-;49639:1;49621:2;:14;;;:19;49617:483;;49661:11;49675:13;;49661:27;;49707:13;49729:8;49723:3;:14;49707:30;;49756:233;49787:62;49826:1;49830:2;49834:7;;;;;;49843:5;49787:30;:62::i;:::-;49782:167;;49885:40;;;;;;;;;;;;;;49782:167;49984:3;49976:5;:11;49756:233;;50071:3;50054:13;;:20;50050:34;;50076:8;;;50050:34;49642:458;;49617:483;49429:689;;;:::o;42533:716::-;42696:4;42742:2;42717:45;;;42763:19;:17;:19::i;:::-;42784:4;42790:7;42799:5;42717:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42713:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43017:1;43000:6;:13;:18;42996:235;;43046:40;;;;;;;;;;;;;;42996:235;43189:6;43183:13;43174:6;43170:2;43166:15;43159:38;42713:529;42886:54;;;42876:64;;;:6;:64;;;;42869:71;;;42533:716;;;;;;:::o;55380:147::-;55517:6;55380:147;;;;;:::o;43711:2966::-;43784:20;43807:13;;43784:36;;43847:1;43835:8;:13;43831:44;;43857:18;;;;;;;;;;;;;;43831:44;43888:61;43918:1;43922:2;43926:12;43940:8;43888:21;:61::i;:::-;44432:1;17432:2;44402:1;:26;;44401:32;44389:8;:45;44363:18;:22;44382:2;44363:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;44711:139;44748:2;44802:33;44825:1;44829:2;44833:1;44802:14;:33::i;:::-;44769:30;44790:8;44769:20;:30::i;:::-;:66;44711:18;:139::i;:::-;44677:17;:31;44695:12;44677:31;;;;;;;;;;;:173;;;;44867:16;44898:11;44927:8;44912:12;:23;44898:37;;45448:16;45444:2;45440:25;45428:37;;45820:12;45780:8;45739:1;45677:25;45618:1;45557;45530:335;46191:1;46177:12;46173:20;46131:346;46232:3;46223:7;46220:16;46131:346;;46450:7;46440:8;46437:1;46410:25;46407:1;46404;46399:59;46285:1;46276:7;46272:15;46261:26;;46131:346;;;46135:77;46522:1;46510:8;:13;46506:45;;46532:19;;;;;;;;;;;;;;46506:45;46584:3;46568:13;:19;;;;44137:2462;;46609:60;46638:1;46642:2;46646:12;46660:8;46609:20;:60::i;:::-;43773:2904;43711:2966;;:::o;31123:324::-;31193:14;31426:1;31416:8;31413:15;31387:24;31383:46;31373:56;;31123: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:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:60::-;5943:3;5964:5;5957:12;;5915:60;;;:::o;5981:142::-;6031:9;6064:53;6082:34;6091:24;6109:5;6091:24;:::i;:::-;6082:34;:::i;:::-;6064:53;:::i;:::-;6051:66;;5981:142;;;:::o;6129:126::-;6179:9;6212:37;6243:5;6212:37;:::i;:::-;6199:50;;6129:126;;;:::o;6261:157::-;6342:9;6375:37;6406:5;6375:37;:::i;:::-;6362:50;;6261:157;;;:::o;6424:193::-;6542:68;6604:5;6542:68;:::i;:::-;6537:3;6530:81;6424:193;;:::o;6623:284::-;6747:4;6785:2;6774:9;6770:18;6762:26;;6798:102;6897:1;6886:9;6882:17;6873:6;6798:102;:::i;:::-;6623:284;;;;:::o;6913:117::-;7022:1;7019;7012:12;7036:117;7145:1;7142;7135:12;7159:180;7207:77;7204:1;7197:88;7304:4;7301:1;7294:15;7328:4;7325:1;7318:15;7345:281;7428:27;7450:4;7428:27;:::i;:::-;7420:6;7416:40;7558:6;7546:10;7543:22;7522:18;7510:10;7507:34;7504:62;7501:88;;;7569:18;;:::i;:::-;7501:88;7609:10;7605:2;7598:22;7388:238;7345:281;;:::o;7632:129::-;7666:6;7693:20;;:::i;:::-;7683:30;;7722:33;7750:4;7742:6;7722:33;:::i;:::-;7632:129;;;:::o;7767:308::-;7829:4;7919:18;7911:6;7908:30;7905:56;;;7941:18;;:::i;:::-;7905:56;7979:29;8001:6;7979:29;:::i;:::-;7971:37;;8063:4;8057;8053:15;8045:23;;7767:308;;;:::o;8081:154::-;8165:6;8160:3;8155;8142:30;8227:1;8218:6;8213:3;8209:16;8202:27;8081:154;;;:::o;8241:412::-;8319:5;8344:66;8360:49;8402:6;8360:49;:::i;:::-;8344:66;:::i;:::-;8335:75;;8433:6;8426:5;8419:21;8471:4;8464:5;8460:16;8509:3;8500:6;8495:3;8491:16;8488:25;8485:112;;;8516:79;;:::i;:::-;8485:112;8606:41;8640:6;8635:3;8630;8606:41;:::i;:::-;8325:328;8241:412;;;;;:::o;8673:340::-;8729:5;8778:3;8771:4;8763:6;8759:17;8755:27;8745:122;;8786:79;;:::i;:::-;8745:122;8903:6;8890:20;8928:79;9003:3;8995:6;8988:4;8980:6;8976:17;8928:79;:::i;:::-;8919:88;;8735:278;8673:340;;;;:::o;9019:509::-;9088:6;9137:2;9125:9;9116:7;9112:23;9108:32;9105:119;;;9143:79;;:::i;:::-;9105:119;9291:1;9280:9;9276:17;9263:31;9321:18;9313:6;9310:30;9307:117;;;9343:79;;:::i;:::-;9307:117;9448:63;9503:7;9494:6;9483:9;9479:22;9448:63;:::i;:::-;9438:73;;9234:287;9019:509;;;;:::o;9534:329::-;9593:6;9642:2;9630:9;9621:7;9617:23;9613:32;9610:119;;;9648:79;;:::i;:::-;9610:119;9768:1;9793:53;9838:7;9829:6;9818:9;9814:22;9793:53;:::i;:::-;9783:63;;9739:117;9534:329;;;;:::o;9869:116::-;9939:21;9954:5;9939:21;:::i;:::-;9932:5;9929:32;9919:60;;9975:1;9972;9965:12;9919:60;9869:116;:::o;9991:133::-;10034:5;10072:6;10059:20;10050:29;;10088:30;10112:5;10088:30;:::i;:::-;9991:133;;;;:::o;10130:468::-;10195:6;10203;10252:2;10240:9;10231:7;10227:23;10223:32;10220:119;;;10258:79;;:::i;:::-;10220:119;10378:1;10403:53;10448:7;10439:6;10428:9;10424:22;10403:53;:::i;:::-;10393:63;;10349:117;10505:2;10531:50;10573:7;10564:6;10553:9;10549:22;10531:50;:::i;:::-;10521:60;;10476:115;10130:468;;;;;:::o;10604:307::-;10665:4;10755:18;10747:6;10744:30;10741:56;;;10777:18;;:::i;:::-;10741:56;10815:29;10837:6;10815:29;:::i;:::-;10807:37;;10899:4;10893;10889:15;10881:23;;10604:307;;;:::o;10917:410::-;10994:5;11019:65;11035:48;11076:6;11035:48;:::i;:::-;11019:65;:::i;:::-;11010:74;;11107:6;11100:5;11093:21;11145:4;11138:5;11134:16;11183:3;11174:6;11169:3;11165:16;11162:25;11159:112;;;11190:79;;:::i;:::-;11159:112;11280:41;11314:6;11309:3;11304;11280:41;:::i;:::-;11000:327;10917:410;;;;;:::o;11346:338::-;11401:5;11450:3;11443:4;11435:6;11431:17;11427:27;11417:122;;11458:79;;:::i;:::-;11417:122;11575:6;11562:20;11600:78;11674:3;11666:6;11659:4;11651:6;11647:17;11600:78;:::i;:::-;11591:87;;11407:277;11346:338;;;;:::o;11690:943::-;11785:6;11793;11801;11809;11858:3;11846:9;11837:7;11833:23;11829:33;11826:120;;;11865:79;;:::i;:::-;11826:120;11985:1;12010:53;12055:7;12046:6;12035:9;12031:22;12010:53;:::i;:::-;12000:63;;11956:117;12112:2;12138:53;12183:7;12174:6;12163:9;12159:22;12138:53;:::i;:::-;12128:63;;12083:118;12240:2;12266:53;12311:7;12302:6;12291:9;12287:22;12266:53;:::i;:::-;12256:63;;12211:118;12396:2;12385:9;12381:18;12368:32;12427:18;12419:6;12416:30;12413:117;;;12449:79;;:::i;:::-;12413:117;12554:62;12608:7;12599:6;12588:9;12584:22;12554:62;:::i;:::-;12544:72;;12339:287;11690:943;;;;;;;:::o;12639:474::-;12707:6;12715;12764:2;12752:9;12743:7;12739:23;12735:32;12732:119;;;12770:79;;:::i;:::-;12732:119;12890:1;12915:53;12960:7;12951:6;12940:9;12936:22;12915:53;:::i;:::-;12905:63;;12861:117;13017:2;13043:53;13088:7;13079:6;13068:9;13064:22;13043:53;:::i;:::-;13033:63;;12988:118;12639:474;;;;;:::o;13119:180::-;13167:77;13164:1;13157:88;13264:4;13261:1;13254:15;13288:4;13285:1;13278:15;13305:320;13349:6;13386:1;13380:4;13376:12;13366:22;;13433:1;13427:4;13423:12;13454:18;13444:81;;13510:4;13502:6;13498:17;13488:27;;13444:81;13572:2;13564:6;13561:14;13541:18;13538:38;13535:84;;13591:18;;:::i;:::-;13535:84;13356:269;13305:320;;;:::o;13631:332::-;13752:4;13790:2;13779:9;13775:18;13767:26;;13803:71;13871:1;13860:9;13856:17;13847:6;13803:71;:::i;:::-;13884:72;13952:2;13941:9;13937:18;13928:6;13884:72;:::i;:::-;13631:332;;;;;:::o;13969:137::-;14023:5;14054:6;14048:13;14039:22;;14070:30;14094:5;14070:30;:::i;:::-;13969:137;;;;:::o;14112:345::-;14179:6;14228:2;14216:9;14207:7;14203:23;14199:32;14196:119;;;14234:79;;:::i;:::-;14196:119;14354:1;14379:61;14432:7;14423:6;14412:9;14408:22;14379:61;:::i;:::-;14369:71;;14325:125;14112:345;;;;:::o;14463:141::-;14512:4;14535:3;14527:11;;14558:3;14555:1;14548:14;14592:4;14589:1;14579:18;14571:26;;14463:141;;;:::o;14610:93::-;14647:6;14694:2;14689;14682:5;14678:14;14674:23;14664:33;;14610:93;;;:::o;14709:107::-;14753:8;14803:5;14797:4;14793:16;14772:37;;14709:107;;;;:::o;14822:393::-;14891:6;14941:1;14929:10;14925:18;14964:97;14994:66;14983:9;14964:97;:::i;:::-;15082:39;15112:8;15101:9;15082:39;:::i;:::-;15070:51;;15154:4;15150:9;15143:5;15139:21;15130:30;;15203:4;15193:8;15189:19;15182:5;15179:30;15169:40;;14898:317;;14822:393;;;;;:::o;15221:142::-;15271:9;15304:53;15322:34;15331:24;15349:5;15331:24;:::i;:::-;15322:34;:::i;:::-;15304:53;:::i;:::-;15291:66;;15221:142;;;:::o;15369:75::-;15412:3;15433:5;15426:12;;15369:75;;;:::o;15450:269::-;15560:39;15591:7;15560:39;:::i;:::-;15621:91;15670:41;15694:16;15670:41;:::i;:::-;15662:6;15655:4;15649:11;15621:91;:::i;:::-;15615:4;15608:105;15526:193;15450:269;;;:::o;15725:73::-;15770:3;15725:73;:::o;15804:189::-;15881:32;;:::i;:::-;15922:65;15980:6;15972;15966:4;15922:65;:::i;:::-;15857:136;15804:189;;:::o;15999:186::-;16059:120;16076:3;16069:5;16066:14;16059:120;;;16130:39;16167:1;16160:5;16130:39;:::i;:::-;16103:1;16096:5;16092:13;16083:22;;16059:120;;;15999:186;;:::o;16191:543::-;16292:2;16287:3;16284:11;16281:446;;;16326:38;16358:5;16326:38;:::i;:::-;16410:29;16428:10;16410:29;:::i;:::-;16400:8;16396:44;16593:2;16581:10;16578:18;16575:49;;;16614:8;16599:23;;16575:49;16637:80;16693:22;16711:3;16693:22;:::i;:::-;16683:8;16679:37;16666:11;16637:80;:::i;:::-;16296:431;;16281:446;16191:543;;;:::o;16740:117::-;16794:8;16844:5;16838:4;16834:16;16813:37;;16740:117;;;;:::o;16863:169::-;16907:6;16940:51;16988:1;16984:6;16976:5;16973:1;16969:13;16940:51;:::i;:::-;16936:56;17021:4;17015;17011:15;17001:25;;16914:118;16863:169;;;;:::o;17037:295::-;17113:4;17259:29;17284:3;17278:4;17259:29;:::i;:::-;17251:37;;17321:3;17318:1;17314:11;17308:4;17305:21;17297:29;;17037:295;;;;:::o;17337:1395::-;17454:37;17487:3;17454:37;:::i;:::-;17556:18;17548:6;17545:30;17542:56;;;17578:18;;:::i;:::-;17542:56;17622:38;17654:4;17648:11;17622:38;:::i;:::-;17707:67;17767:6;17759;17753:4;17707:67;:::i;:::-;17801:1;17825:4;17812:17;;17857:2;17849:6;17846:14;17874:1;17869:618;;;;18531:1;18548:6;18545:77;;;18597:9;18592:3;18588:19;18582:26;18573:35;;18545:77;18648:67;18708:6;18701:5;18648:67;:::i;:::-;18642:4;18635:81;18504:222;17839:887;;17869:618;17921:4;17917:9;17909:6;17905:22;17955:37;17987:4;17955:37;:::i;:::-;18014:1;18028:208;18042:7;18039:1;18036:14;18028:208;;;18121:9;18116:3;18112:19;18106:26;18098:6;18091:42;18172:1;18164:6;18160:14;18150:24;;18219:2;18208:9;18204:18;18191:31;;18065:4;18062:1;18058:12;18053:17;;18028:208;;;18264:6;18255:7;18252:19;18249:179;;;18322:9;18317:3;18313:19;18307:26;18365:48;18407:4;18399:6;18395:17;18384:9;18365:48;:::i;:::-;18357:6;18350:64;18272:156;18249:179;18474:1;18470;18462:6;18458:14;18454:22;18448:4;18441:36;17876:611;;;17839:887;;17429:1303;;;17337:1395;;:::o;18738:180::-;18878:32;18874:1;18866:6;18862:14;18855:56;18738:180;:::o;18924:366::-;19066:3;19087:67;19151:2;19146:3;19087:67;:::i;:::-;19080:74;;19163:93;19252:3;19163:93;:::i;:::-;19281:2;19276:3;19272:12;19265:19;;18924:366;;;:::o;19296:419::-;19462:4;19500:2;19489:9;19485:18;19477:26;;19549:9;19543:4;19539:20;19535:1;19524:9;19520:17;19513:47;19577:131;19703:4;19577:131;:::i;:::-;19569:139;;19296:419;;;:::o;19721:175::-;19861:27;19857:1;19849:6;19845:14;19838:51;19721:175;:::o;19902:366::-;20044:3;20065:67;20129:2;20124:3;20065:67;:::i;:::-;20058:74;;20141:93;20230:3;20141:93;:::i;:::-;20259:2;20254:3;20250:12;20243:19;;19902:366;;;:::o;20274:419::-;20440:4;20478:2;20467:9;20463:18;20455:26;;20527:9;20521:4;20517:20;20513:1;20502:9;20498:17;20491:47;20555:131;20681:4;20555:131;:::i;:::-;20547:139;;20274:419;;;:::o;20699:180::-;20747:77;20744:1;20737:88;20844:4;20841:1;20834:15;20868:4;20865:1;20858:15;20885:305;20925:3;20944:20;20962:1;20944:20;:::i;:::-;20939:25;;20978:20;20996:1;20978:20;:::i;:::-;20973:25;;21132:1;21064:66;21060:74;21057:1;21054:81;21051:107;;;21138:18;;:::i;:::-;21051:107;21182:1;21179;21175:9;21168:16;;20885:305;;;;:::o;21196:159::-;21336:11;21332:1;21324:6;21320:14;21313:35;21196:159;:::o;21361:365::-;21503:3;21524:66;21588:1;21583:3;21524:66;:::i;:::-;21517:73;;21599:93;21688:3;21599:93;:::i;:::-;21717:2;21712:3;21708:12;21701:19;;21361:365;;;:::o;21732:419::-;21898:4;21936:2;21925:9;21921:18;21913:26;;21985:9;21979:4;21975:20;21971:1;21960:9;21956:17;21949:47;22013:131;22139:4;22013:131;:::i;:::-;22005:139;;21732:419;;;:::o;22157:148::-;22259:11;22296:3;22281:18;;22157:148;;;;:::o;22311:377::-;22417:3;22445:39;22478:5;22445:39;:::i;:::-;22500:89;22582:6;22577:3;22500:89;:::i;:::-;22493:96;;22598:52;22643:6;22638:3;22631:4;22624:5;22620:16;22598:52;:::i;:::-;22675:6;22670:3;22666:16;22659:23;;22421:267;22311:377;;;;:::o;22694:435::-;22874:3;22896:95;22987:3;22978:6;22896:95;:::i;:::-;22889:102;;23008:95;23099:3;23090:6;23008:95;:::i;:::-;23001:102;;23120:3;23113:10;;22694:435;;;;;:::o;23135:225::-;23275:34;23271:1;23263:6;23259:14;23252:58;23344:8;23339:2;23331:6;23327:15;23320:33;23135:225;:::o;23366:366::-;23508:3;23529:67;23593:2;23588:3;23529:67;:::i;:::-;23522:74;;23605:93;23694:3;23605:93;:::i;:::-;23723:2;23718:3;23714:12;23707:19;;23366:366;;;:::o;23738:419::-;23904:4;23942:2;23931:9;23927:18;23919:26;;23991:9;23985:4;23981:20;23977:1;23966:9;23962:17;23955:47;24019:131;24145:4;24019:131;:::i;:::-;24011:139;;23738:419;;;:::o;24163:182::-;24303:34;24299:1;24291:6;24287:14;24280:58;24163:182;:::o;24351:366::-;24493:3;24514:67;24578:2;24573:3;24514:67;:::i;:::-;24507:74;;24590:93;24679:3;24590:93;:::i;:::-;24708:2;24703:3;24699:12;24692:19;;24351:366;;;:::o;24723:419::-;24889:4;24927:2;24916:9;24912:18;24904:26;;24976:9;24970:4;24966:20;24962:1;24951:9;24947:17;24940:47;25004:131;25130:4;25004:131;:::i;:::-;24996:139;;24723:419;;;:::o;25148:98::-;25199:6;25233:5;25227:12;25217:22;;25148:98;;;:::o;25252:168::-;25335:11;25369:6;25364:3;25357:19;25409:4;25404:3;25400:14;25385:29;;25252:168;;;;:::o;25426:360::-;25512:3;25540:38;25572:5;25540:38;:::i;:::-;25594:70;25657:6;25652:3;25594:70;:::i;:::-;25587:77;;25673:52;25718:6;25713:3;25706:4;25699:5;25695:16;25673:52;:::i;:::-;25750:29;25772:6;25750:29;:::i;:::-;25745:3;25741:39;25734:46;;25516:270;25426:360;;;;:::o;25792:640::-;25987:4;26025:3;26014:9;26010:19;26002:27;;26039:71;26107:1;26096:9;26092:17;26083:6;26039:71;:::i;:::-;26120:72;26188:2;26177:9;26173:18;26164:6;26120:72;:::i;:::-;26202;26270:2;26259:9;26255:18;26246:6;26202:72;:::i;:::-;26321:9;26315:4;26311:20;26306:2;26295:9;26291:18;26284:48;26349:76;26420:4;26411:6;26349:76;:::i;:::-;26341:84;;25792:640;;;;;;;:::o;26438:141::-;26494:5;26525:6;26519:13;26510:22;;26541:32;26567:5;26541:32;:::i;:::-;26438:141;;;;:::o;26585:349::-;26654:6;26703:2;26691:9;26682:7;26678:23;26674:32;26671:119;;;26709:79;;:::i;:::-;26671:119;26829:1;26854:63;26909:7;26900:6;26889:9;26885:22;26854:63;:::i;:::-;26844:73;;26800:127;26585:349;;;;:::o

Swarm Source

ipfs://648f00a07e25d30a4a69298e52cc319c8a6b7b2a8e4474bcbbca0a6ea2ced014
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.