ETH Price: $2,677.13 (-1.00%)

Token

Amnesia by rem (Abr)
 

Overview

Max Total Supply

243 Abr

Holders

29

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 Abr
0x4F811ED3b17c6C797d18a1a80050D98F2a55Da26
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:
Amnesiabyrem

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT
// File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/main/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/main/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 {
        // 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) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    function _checkFilterOperator(address operator) internal view 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/main/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: https://github.com/chiru-labs/ERC721A/blob/main/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: https://github.com/chiru-labs/ERC721A/blob/main/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 packed) {
        if (_startTokenId() <= tokenId) {
            packed = _packedOwnerships[tokenId];
            // If not burned.
            if (packed & _BITMASK_BURNED == 0) {
                // If the data at the starting slot does not exist, start the scan.
                if (packed == 0) {
                    if (tokenId >= _currentIndex) revert OwnerQueryForNonexistentToken();
                    // 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, `tokenId` will not underflow.
                    //
                    // We can directly compare the packed value.
                    // If the address is zero, packed will be zero.
                    for (;;) {
                        unchecked {
                            packed = _packedOwnerships[--tokenId];
                        }
                        if (packed == 0) continue;
                        return packed;
                    }
                }
                // Otherwise, the data exists and is not burned. We can skip the scan.
                // This is possible because we have already achieved the target condition.
                // This saves 2143 gas on transfers of initialized tokens.
                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. See {ERC721A-_approve}.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     */
    function approve(address to, uint256 tokenId) public payable virtual override {
        _approve(to, tokenId, true);
    }

    /**
     * @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, '');
    }

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

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

    /**
     * @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:
     *
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        bool approvalCheck
    ) internal virtual {
        address owner = ownerOf(tokenId);

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

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

    // =============================================================
    //                        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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.8.0/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.8.0/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.8.0/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // ? `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // ? `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.8.0/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;


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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

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

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

// File: amnesia.sol

pragma solidity ^0.8.13;


contract Amnesiabyrem is ERC721A, Ownable, DefaultOperatorFilterer {

  using Strings for uint256;

  error MintInactive();
  error ContractCaller();
  error InvalidAmount();
  error ExceedsSupply();
  error InvalidValue();
  error LengthsDoNotMatch();
  error InvalidToken();

  string public baseURI;

  uint256 public price = 0.01 ether;
  uint256 public constant MAX_SUPPLY = 360;
  uint256 public max_per_txn = 5;

  address public constant DEV_ADDRESS = 0x0E467D5235d90e3BeE7551450100B0E992DeBE2a;  
  address public constant PROJECT_ADDRESS = 0x3De71EdB08BAA8F5f5D79561D73946829EF0B2f3;  

  bool public saleActive = false;

  mapping(address => bool) hasMinted;


  constructor() ERC721A("Amnesia by rem", "Abr") payable {
    _mint(msg.sender, 1);
  }

  function mint(uint256 mintAmount_) public payable {
    if (!saleActive) revert MintInactive();
    if (msg.sender != tx.origin) revert ContractCaller();
    if (mintAmount_ > max_per_txn) revert InvalidAmount();
    unchecked {
      if (mintAmount_ + totalSupply() > MAX_SUPPLY) revert ExceedsSupply();
      if (msg.value != mintAmount_ * price) revert InvalidValue();
    }
    hasMinted[msg.sender] = true;
    _mint(msg.sender, mintAmount_);
  }

  function mintForAddress(uint256 mintAmount_, address to_) external onlyOwner {
    _mint(to_, mintAmount_);
  }

  function batchMintForAddresses(address[] calldata addresses_, uint256[] calldata amounts_) external onlyOwner {
    if (addresses_.length != amounts_.length) revert LengthsDoNotMatch();
    unchecked {
      for (uint32 i = 0; i < addresses_.length; i++) {
        _mint(addresses_[i], amounts_[i]);
      }
    }
  }

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

  function flipSaleActive() external onlyOwner {
    saleActive = !saleActive;
  }

  function setPrice(uint256 price_) external onlyOwner {
    price = price_;
  }

  function setMaxPerTxn(uint256 pertx_) external onlyOwner {
    max_per_txn = pertx_;
  }

  function setBaseURI(string memory newBaseURI_) external onlyOwner {
    baseURI = newBaseURI_;
  }

  function tokenURI(uint256 tokenId_) public view virtual override returns (string memory) {
    if (!_exists(tokenId_)) revert InvalidToken();
    return string(abi.encodePacked(baseURI, tokenId_.toString(), ".json"));
  }

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


  // withdraw
  function withdraw() external onlyOwner {
      uint256 balance = address(this).balance;
      require(balance > 0, "No balance to withdraw");
      uint256 bal_a = (balance * 50) / 100;
      payable(DEV_ADDRESS).transfer(bal_a);
      payable(PROJECT_ADDRESS).transfer(address(this).balance);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"ContractCaller","type":"error"},{"inputs":[],"name":"ExceedsSupply","type":"error"},{"inputs":[],"name":"InvalidAmount","type":"error"},{"inputs":[],"name":"InvalidToken","type":"error"},{"inputs":[],"name":"InvalidValue","type":"error"},{"inputs":[],"name":"LengthsDoNotMatch","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintInactive","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":"DEV_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROJECT_ADDRESS","outputs":[{"internalType":"address","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":"address[]","name":"addresses_","type":"address[]"},{"internalType":"uint256[]","name":"amounts_","type":"uint256[]"}],"name":"batchMintForAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleActive","outputs":[],"stateMutability":"nonpayable","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":"max_per_txn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount_","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount_","type":"uint256"},{"internalType":"address","name":"to_","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","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":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"pertx_","type":"uint256"}],"name":"setMaxPerTxn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","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"}]

6080604052662386f26fc10000600a556005600b556000600c60006101000a81548160ff021916908315150217905550733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600e81526020017f416d6e657369612062792072656d0000000000000000000000000000000000008152506040518060400160405280600381526020017f41627200000000000000000000000000000000000000000000000000000000008152508160029081620000c39190620008d6565b508060039081620000d59190620008d6565b50620000e66200031e60201b60201c565b60008190555050506200010e620001026200032760201b60201c565b6200032f60201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111562000303578015620001c9576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200018f92919062000a02565b600060405180830381600087803b158015620001aa57600080fd5b505af1158015620001bf573d6000803e3d6000fd5b5050505062000302565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000283576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200024992919062000a02565b600060405180830381600087803b1580156200026457600080fd5b505af115801562000279573d6000803e3d6000fd5b5050505062000301565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002cc919062000a2f565b600060405180830381600087803b158015620002e757600080fd5b505af1158015620002fc573d6000803e3d6000fd5b505050505b5b5b505062000318336001620003f560201b60201c565b62000a4c565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000805490506000820362000436576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200044b6000848385620005dc60201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550620004da83620004bc6000866000620005e260201b60201c565b620004cd856200061260201b60201c565b176200062260201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146200057d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905062000540565b5060008203620005b9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050620005d760008483856200064d60201b60201c565b505050565b50505050565b60008060e883901c905060e8620006018686846200065360201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60009392505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006de57607f821691505b602082108103620006f457620006f362000696565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200075e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200071f565b6200076a86836200071f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007b7620007b1620007ab8462000782565b6200078c565b62000782565b9050919050565b6000819050919050565b620007d38362000796565b620007eb620007e282620007be565b8484546200072c565b825550505050565b600090565b62000802620007f3565b6200080f818484620007c8565b505050565b5b8181101562000837576200082b600082620007f8565b60018101905062000815565b5050565b601f82111562000886576200085081620006fa565b6200085b846200070f565b810160208510156200086b578190505b620008836200087a856200070f565b83018262000814565b50505b505050565b600082821c905092915050565b6000620008ab600019846008026200088b565b1980831691505092915050565b6000620008c6838362000898565b9150826002028217905092915050565b620008e1826200065c565b67ffffffffffffffff811115620008fd57620008fc62000667565b5b620009098254620006c5565b620009168282856200083b565b600060209050601f8311600181146200094e576000841562000939578287015190505b620009458582620008b8565b865550620009b5565b601f1984166200095e86620006fa565b60005b82811015620009885784890151825560018201915060208501945060208101905062000961565b86831015620009a85784890151620009a4601f89168262000898565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620009ea82620009bd565b9050919050565b620009fc81620009dd565b82525050565b600060408201905062000a196000830185620009f1565b62000a286020830184620009f1565b9392505050565b600060208201905062000a466000830184620009f1565b92915050565b6132f98062000a5c6000396000f3fe6080604052600436106101ee5760003560e01c806370a082311161010d578063b6f3ce00116100a0578063de53f38a1161006f578063de53f38a14610686578063de8b51e1146106af578063e985e9c5146106c6578063efbd73f414610703578063f2fde38b1461072c576101ee565b8063b6f3ce00146105d9578063b88d4fde14610602578063c87b56dd1461061e578063d685b6451461065b576101ee565b806395d89b41116100dc57806395d89b411461053e578063a035b1fe14610569578063a0712d6814610594578063a22cb465146105b0576101ee565b806370a0823114610496578063715018a6146104d35780638da5cb5b146104ea57806391b7f5ed14610515576101ee565b806341f43434116101855780635639e8cf116101545780635639e8cf146103d85780636352211e1461040357806368428a1b146104405780636c0360eb1461046b576101ee565b806341f434341461033d57806342842e0e146103685780634bf940701461038457806355f804b3146103af576101ee565b806318160ddd116101c157806318160ddd146102b457806323b872dd146102df57806332cb6b0c146102fb5780633ccfd60b14610326576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906122d4565b610755565b604051610227919061231c565b60405180910390f35b34801561023c57600080fd5b506102456107e7565b60405161025291906123c7565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d919061241f565b610879565b60405161028f919061248d565b60405180910390f35b6102b260048036038101906102ad91906124d4565b6108f8565b005b3480156102c057600080fd5b506102c9610911565b6040516102d69190612523565b60405180910390f35b6102f960048036038101906102f4919061253e565b610928565b005b34801561030757600080fd5b50610310610977565b60405161031d9190612523565b60405180910390f35b34801561033257600080fd5b5061033b61097d565b005b34801561034957600080fd5b50610352610aa4565b60405161035f91906125f0565b60405180910390f35b610382600480360381019061037d919061253e565b610ab6565b005b34801561039057600080fd5b50610399610b05565b6040516103a6919061248d565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190612740565b610b1d565b005b3480156103e457600080fd5b506103ed610b38565b6040516103fa919061248d565b60405180910390f35b34801561040f57600080fd5b5061042a6004803603810190610425919061241f565b610b50565b604051610437919061248d565b60405180910390f35b34801561044c57600080fd5b50610455610b62565b604051610462919061231c565b60405180910390f35b34801561047757600080fd5b50610480610b75565b60405161048d91906123c7565b60405180910390f35b3480156104a257600080fd5b506104bd60048036038101906104b89190612789565b610c03565b6040516104ca9190612523565b60405180910390f35b3480156104df57600080fd5b506104e8610cbb565b005b3480156104f657600080fd5b506104ff610ccf565b60405161050c919061248d565b60405180910390f35b34801561052157600080fd5b5061053c6004803603810190610537919061241f565b610cf9565b005b34801561054a57600080fd5b50610553610d0b565b60405161056091906123c7565b60405180910390f35b34801561057557600080fd5b5061057e610d9d565b60405161058b9190612523565b60405180910390f35b6105ae60048036038101906105a9919061241f565b610da3565b005b3480156105bc57600080fd5b506105d760048036038101906105d291906127e2565b610f71565b005b3480156105e557600080fd5b5061060060048036038101906105fb919061241f565b610f8a565b005b61061c600480360381019061061791906128c3565b610f9c565b005b34801561062a57600080fd5b506106456004803603810190610640919061241f565b610fed565b60405161065291906123c7565b60405180910390f35b34801561066757600080fd5b50610670611060565b60405161067d9190612523565b60405180910390f35b34801561069257600080fd5b506106ad60048036038101906106a891906129fc565b611066565b005b3480156106bb57600080fd5b506106c461112b565b005b3480156106d257600080fd5b506106ed60048036038101906106e89190612a7d565b61115f565b6040516106fa919061231c565b60405180910390f35b34801561070f57600080fd5b5061072a60048036038101906107259190612abd565b6111f3565b005b34801561073857600080fd5b50610753600480360381019061074e9190612789565b611209565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107b057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107e05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107f690612b2c565b80601f016020809104026020016040519081016040528092919081815260200182805461082290612b2c565b801561086f5780601f106108445761010080835404028352916020019161086f565b820191906000526020600020905b81548152906001019060200180831161085257829003601f168201915b5050505050905090565b60006108848261128c565b6108ba576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610902816112eb565b61090c83836113e8565b505050565b600061091b6113f8565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461096657610965336112eb565b5b610971848484611401565b50505050565b61016881565b610985611723565b6000479050600081116109cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c490612ba9565b60405180910390fd5b600060646032836109de9190612bf8565b6109e89190612c69565b9050730e467d5235d90e3bee7551450100b0e992debe2a73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610a44573d6000803e3d6000fd5b50733de71edb08baa8f5f5d79561d73946829ef0b2f373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610a9f573d6000803e3d6000fd5b505050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610af457610af3336112eb565b5b610aff8484846117a1565b50505050565b733de71edb08baa8f5f5d79561d73946829ef0b2f381565b610b25611723565b8060099081610b349190612e3c565b5050565b730e467d5235d90e3bee7551450100b0e992debe2a81565b6000610b5b826117c1565b9050919050565b600c60009054906101000a900460ff1681565b60098054610b8290612b2c565b80601f0160208091040260200160405190810160405280929190818152602001828054610bae90612b2c565b8015610bfb5780601f10610bd057610100808354040283529160200191610bfb565b820191906000526020600020905b815481529060010190602001808311610bde57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c6a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610cc3611723565b610ccd60006118b9565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d01611723565b80600a8190555050565b606060038054610d1a90612b2c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4690612b2c565b8015610d935780601f10610d6857610100808354040283529160200191610d93565b820191906000526020600020905b815481529060010190602001808311610d7657829003601f168201915b5050505050905090565b600a5481565b600c60009054906101000a900460ff16610de9576040517f343295c400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e4e576040517f6844047f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b54811115610e8a576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610168610e95610911565b82011115610ecf576040517f2d573a5500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5481023414610f0c576040517faa7feadc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610f6e338261197f565b50565b81610f7b816112eb565b610f858383611b3a565b505050565b610f92611723565b80600b8190555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610fda57610fd9336112eb565b5b610fe685858585611c45565b5050505050565b6060610ff88261128c565b61102e576040517fc1ab6dc100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600961103983611cb8565b60405160200161104a929190613019565b6040516020818303038152906040529050919050565b600b5481565b61106e611723565b8181905084849050146110ad576040517faa81c86100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b848490508163ffffffff1610156111245761111785858363ffffffff168181106110dd576110dc613048565b5b90506020020160208101906110f29190612789565b84848463ffffffff1681811061110b5761110a613048565b5b9050602002013561197f565b80806001019150506110b0565b5050505050565b611133611723565b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6111fb611723565b611205818361197f565b5050565b611211611723565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611280576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611277906130e9565b60405180910390fd5b611289816118b9565b50565b6000816112976113f8565b111580156112a6575060005482105b80156112e4575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156113e5576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611362929190613109565b602060405180830381865afa15801561137f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113a39190613147565b6113e457806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016113db919061248d565b60405180910390fd5b5b50565b6113f482826001611d86565b5050565b60006001905090565b600061140c826117c1565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611473576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061147f84611ed2565b915091506114958187611490611ef9565b611f01565b6114e1576114aa866114a5611ef9565b61115f565b6114e0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611547576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115548686866001611f45565b801561155f57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061162d85611609888887611f4b565b7c020000000000000000000000000000000000000000000000000000000017611f73565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036116b357600060018501905060006004600083815260200190815260200160002054036116b15760005481146116b0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461171b8686866001611f9e565b505050505050565b61172b611fa4565b73ffffffffffffffffffffffffffffffffffffffff16611749610ccf565b73ffffffffffffffffffffffffffffffffffffffff161461179f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611796906131c0565b60405180910390fd5b565b6117bc83838360405180602001604052806000815250610f9c565b505050565b6000816117cc6113f8565b11611882576004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611881576000810361187c576000548210611851576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b6004600083600190039350838152602001908152602001600020549050600081036118b457611852565b6118b4565b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080549050600082036119bf576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119cc6000848385611f45565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611a4383611a346000866000611f4b565b611a3d85611fac565b17611f73565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611ae457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611aa9565b5060008203611b1f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611b356000848385611f9e565b505050565b8060076000611b47611ef9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bf4611ef9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c39919061231c565b60405180910390a35050565b611c50848484610928565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cb257611c7b84848484611fbc565b611cb1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060006001611cc78461210c565b01905060008167ffffffffffffffff811115611ce657611ce5612615565b5b6040519080825280601f01601f191660200182016040528015611d185781602001600182028036833780820191505090505b509050600082602001820190505b600115611d7b578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611d6f57611d6e612c3a565b5b04945060008503611d26575b819350505050919050565b6000611d9183610b50565b90508115611e1c578073ffffffffffffffffffffffffffffffffffffffff16611db8611ef9565b73ffffffffffffffffffffffffffffffffffffffff1614611e1b57611de481611ddf611ef9565b61115f565b611e1a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b836006600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f6286868461225f565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60006001821460e11b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fe2611ef9565b8786866040518563ffffffff1660e01b81526004016120049493929190613235565b6020604051808303816000875af192505050801561204057506040513d601f19601f8201168201806040525081019061203d9190613296565b60015b6120b9573d8060008114612070576040519150601f19603f3d011682016040523d82523d6000602084013e612075565b606091505b5060008151036120b1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061216a577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816121605761215f612c3a565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106121a7576d04ee2d6d415b85acef8100000000838161219d5761219c612c3a565b5b0492506020810190505b662386f26fc1000083106121d657662386f26fc1000083816121cc576121cb612c3a565b5b0492506010810190505b6305f5e10083106121ff576305f5e10083816121f5576121f4612c3a565b5b0492506008810190505b612710831061222457612710838161221a57612219612c3a565b5b0492506004810190505b60648310612247576064838161223d5761223c612c3a565b5b0492506002810190505b600a8310612256576001810190505b80915050919050565b60009392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122b18161227c565b81146122bc57600080fd5b50565b6000813590506122ce816122a8565b92915050565b6000602082840312156122ea576122e9612272565b5b60006122f8848285016122bf565b91505092915050565b60008115159050919050565b61231681612301565b82525050565b6000602082019050612331600083018461230d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612371578082015181840152602081019050612356565b60008484015250505050565b6000601f19601f8301169050919050565b600061239982612337565b6123a38185612342565b93506123b3818560208601612353565b6123bc8161237d565b840191505092915050565b600060208201905081810360008301526123e1818461238e565b905092915050565b6000819050919050565b6123fc816123e9565b811461240757600080fd5b50565b600081359050612419816123f3565b92915050565b60006020828403121561243557612434612272565b5b60006124438482850161240a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124778261244c565b9050919050565b6124878161246c565b82525050565b60006020820190506124a2600083018461247e565b92915050565b6124b18161246c565b81146124bc57600080fd5b50565b6000813590506124ce816124a8565b92915050565b600080604083850312156124eb576124ea612272565b5b60006124f9858286016124bf565b925050602061250a8582860161240a565b9150509250929050565b61251d816123e9565b82525050565b60006020820190506125386000830184612514565b92915050565b60008060006060848603121561255757612556612272565b5b6000612565868287016124bf565b9350506020612576868287016124bf565b92505060406125878682870161240a565b9150509250925092565b6000819050919050565b60006125b66125b16125ac8461244c565b612591565b61244c565b9050919050565b60006125c88261259b565b9050919050565b60006125da826125bd565b9050919050565b6125ea816125cf565b82525050565b600060208201905061260560008301846125e1565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61264d8261237d565b810181811067ffffffffffffffff8211171561266c5761266b612615565b5b80604052505050565b600061267f612268565b905061268b8282612644565b919050565b600067ffffffffffffffff8211156126ab576126aa612615565b5b6126b48261237d565b9050602081019050919050565b82818337600083830152505050565b60006126e36126de84612690565b612675565b9050828152602081018484840111156126ff576126fe612610565b5b61270a8482856126c1565b509392505050565b600082601f8301126127275761272661260b565b5b81356127378482602086016126d0565b91505092915050565b60006020828403121561275657612755612272565b5b600082013567ffffffffffffffff81111561277457612773612277565b5b61278084828501612712565b91505092915050565b60006020828403121561279f5761279e612272565b5b60006127ad848285016124bf565b91505092915050565b6127bf81612301565b81146127ca57600080fd5b50565b6000813590506127dc816127b6565b92915050565b600080604083850312156127f9576127f8612272565b5b6000612807858286016124bf565b9250506020612818858286016127cd565b9150509250929050565b600067ffffffffffffffff82111561283d5761283c612615565b5b6128468261237d565b9050602081019050919050565b600061286661286184612822565b612675565b90508281526020810184848401111561288257612881612610565b5b61288d8482856126c1565b509392505050565b600082601f8301126128aa576128a961260b565b5b81356128ba848260208601612853565b91505092915050565b600080600080608085870312156128dd576128dc612272565b5b60006128eb878288016124bf565b94505060206128fc878288016124bf565b935050604061290d8782880161240a565b925050606085013567ffffffffffffffff81111561292e5761292d612277565b5b61293a87828801612895565b91505092959194509250565b600080fd5b600080fd5b60008083601f8401126129665761296561260b565b5b8235905067ffffffffffffffff81111561298357612982612946565b5b60208301915083602082028301111561299f5761299e61294b565b5b9250929050565b60008083601f8401126129bc576129bb61260b565b5b8235905067ffffffffffffffff8111156129d9576129d8612946565b5b6020830191508360208202830111156129f5576129f461294b565b5b9250929050565b60008060008060408587031215612a1657612a15612272565b5b600085013567ffffffffffffffff811115612a3457612a33612277565b5b612a4087828801612950565b9450945050602085013567ffffffffffffffff811115612a6357612a62612277565b5b612a6f878288016129a6565b925092505092959194509250565b60008060408385031215612a9457612a93612272565b5b6000612aa2858286016124bf565b9250506020612ab3858286016124bf565b9150509250929050565b60008060408385031215612ad457612ad3612272565b5b6000612ae28582860161240a565b9250506020612af3858286016124bf565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b4457607f821691505b602082108103612b5757612b56612afd565b5b50919050565b7f4e6f2062616c616e636520746f20776974686472617700000000000000000000600082015250565b6000612b93601683612342565b9150612b9e82612b5d565b602082019050919050565b60006020820190508181036000830152612bc281612b86565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c03826123e9565b9150612c0e836123e9565b9250828202612c1c816123e9565b91508282048414831517612c3357612c32612bc9565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612c74826123e9565b9150612c7f836123e9565b925082612c8f57612c8e612c3a565b5b828204905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612cfc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612cbf565b612d068683612cbf565b95508019841693508086168417925050509392505050565b6000612d39612d34612d2f846123e9565b612591565b6123e9565b9050919050565b6000819050919050565b612d5383612d1e565b612d67612d5f82612d40565b848454612ccc565b825550505050565b600090565b612d7c612d6f565b612d87818484612d4a565b505050565b5b81811015612dab57612da0600082612d74565b600181019050612d8d565b5050565b601f821115612df057612dc181612c9a565b612dca84612caf565b81016020851015612dd9578190505b612ded612de585612caf565b830182612d8c565b50505b505050565b600082821c905092915050565b6000612e1360001984600802612df5565b1980831691505092915050565b6000612e2c8383612e02565b9150826002028217905092915050565b612e4582612337565b67ffffffffffffffff811115612e5e57612e5d612615565b5b612e688254612b2c565b612e73828285612daf565b600060209050601f831160018114612ea65760008415612e94578287015190505b612e9e8582612e20565b865550612f06565b601f198416612eb486612c9a565b60005b82811015612edc57848901518255600182019150602085019450602081019050612eb7565b86831015612ef95784890151612ef5601f891682612e02565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b60008154612f2681612b2c565b612f308186612f0e565b94506001821660008114612f4b5760018114612f6057612f93565b60ff1983168652811515820286019350612f93565b612f6985612c9a565b60005b83811015612f8b57815481890152600182019150602081019050612f6c565b838801955050505b50505092915050565b6000612fa782612337565b612fb18185612f0e565b9350612fc1818560208601612353565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613003600583612f0e565b915061300e82612fcd565b600582019050919050565b60006130258285612f19565b91506130318284612f9c565b915061303c82612ff6565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130d3602683612342565b91506130de82613077565b604082019050919050565b60006020820190508181036000830152613102816130c6565b9050919050565b600060408201905061311e600083018561247e565b61312b602083018461247e565b9392505050565b600081519050613141816127b6565b92915050565b60006020828403121561315d5761315c612272565b5b600061316b84828501613132565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131aa602083612342565b91506131b582613174565b602082019050919050565b600060208201905081810360008301526131d98161319d565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613207826131e0565b61321181856131eb565b9350613221818560208601612353565b61322a8161237d565b840191505092915050565b600060808201905061324a600083018761247e565b613257602083018661247e565b6132646040830185612514565b818103606083015261327681846131fc565b905095945050505050565b600081519050613290816122a8565b92915050565b6000602082840312156132ac576132ab612272565b5b60006132ba84828501613281565b9150509291505056fea2646970667358221220a4074504c380c48682f838993db2798ec84598e17dba8d91d746217a9701a78b64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c806370a082311161010d578063b6f3ce00116100a0578063de53f38a1161006f578063de53f38a14610686578063de8b51e1146106af578063e985e9c5146106c6578063efbd73f414610703578063f2fde38b1461072c576101ee565b8063b6f3ce00146105d9578063b88d4fde14610602578063c87b56dd1461061e578063d685b6451461065b576101ee565b806395d89b41116100dc57806395d89b411461053e578063a035b1fe14610569578063a0712d6814610594578063a22cb465146105b0576101ee565b806370a0823114610496578063715018a6146104d35780638da5cb5b146104ea57806391b7f5ed14610515576101ee565b806341f43434116101855780635639e8cf116101545780635639e8cf146103d85780636352211e1461040357806368428a1b146104405780636c0360eb1461046b576101ee565b806341f434341461033d57806342842e0e146103685780634bf940701461038457806355f804b3146103af576101ee565b806318160ddd116101c157806318160ddd146102b457806323b872dd146102df57806332cb6b0c146102fb5780633ccfd60b14610326576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906122d4565b610755565b604051610227919061231c565b60405180910390f35b34801561023c57600080fd5b506102456107e7565b60405161025291906123c7565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d919061241f565b610879565b60405161028f919061248d565b60405180910390f35b6102b260048036038101906102ad91906124d4565b6108f8565b005b3480156102c057600080fd5b506102c9610911565b6040516102d69190612523565b60405180910390f35b6102f960048036038101906102f4919061253e565b610928565b005b34801561030757600080fd5b50610310610977565b60405161031d9190612523565b60405180910390f35b34801561033257600080fd5b5061033b61097d565b005b34801561034957600080fd5b50610352610aa4565b60405161035f91906125f0565b60405180910390f35b610382600480360381019061037d919061253e565b610ab6565b005b34801561039057600080fd5b50610399610b05565b6040516103a6919061248d565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190612740565b610b1d565b005b3480156103e457600080fd5b506103ed610b38565b6040516103fa919061248d565b60405180910390f35b34801561040f57600080fd5b5061042a6004803603810190610425919061241f565b610b50565b604051610437919061248d565b60405180910390f35b34801561044c57600080fd5b50610455610b62565b604051610462919061231c565b60405180910390f35b34801561047757600080fd5b50610480610b75565b60405161048d91906123c7565b60405180910390f35b3480156104a257600080fd5b506104bd60048036038101906104b89190612789565b610c03565b6040516104ca9190612523565b60405180910390f35b3480156104df57600080fd5b506104e8610cbb565b005b3480156104f657600080fd5b506104ff610ccf565b60405161050c919061248d565b60405180910390f35b34801561052157600080fd5b5061053c6004803603810190610537919061241f565b610cf9565b005b34801561054a57600080fd5b50610553610d0b565b60405161056091906123c7565b60405180910390f35b34801561057557600080fd5b5061057e610d9d565b60405161058b9190612523565b60405180910390f35b6105ae60048036038101906105a9919061241f565b610da3565b005b3480156105bc57600080fd5b506105d760048036038101906105d291906127e2565b610f71565b005b3480156105e557600080fd5b5061060060048036038101906105fb919061241f565b610f8a565b005b61061c600480360381019061061791906128c3565b610f9c565b005b34801561062a57600080fd5b506106456004803603810190610640919061241f565b610fed565b60405161065291906123c7565b60405180910390f35b34801561066757600080fd5b50610670611060565b60405161067d9190612523565b60405180910390f35b34801561069257600080fd5b506106ad60048036038101906106a891906129fc565b611066565b005b3480156106bb57600080fd5b506106c461112b565b005b3480156106d257600080fd5b506106ed60048036038101906106e89190612a7d565b61115f565b6040516106fa919061231c565b60405180910390f35b34801561070f57600080fd5b5061072a60048036038101906107259190612abd565b6111f3565b005b34801561073857600080fd5b50610753600480360381019061074e9190612789565b611209565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107b057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107e05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107f690612b2c565b80601f016020809104026020016040519081016040528092919081815260200182805461082290612b2c565b801561086f5780601f106108445761010080835404028352916020019161086f565b820191906000526020600020905b81548152906001019060200180831161085257829003601f168201915b5050505050905090565b60006108848261128c565b6108ba576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610902816112eb565b61090c83836113e8565b505050565b600061091b6113f8565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461096657610965336112eb565b5b610971848484611401565b50505050565b61016881565b610985611723565b6000479050600081116109cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c490612ba9565b60405180910390fd5b600060646032836109de9190612bf8565b6109e89190612c69565b9050730e467d5235d90e3bee7551450100b0e992debe2a73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610a44573d6000803e3d6000fd5b50733de71edb08baa8f5f5d79561d73946829ef0b2f373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610a9f573d6000803e3d6000fd5b505050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610af457610af3336112eb565b5b610aff8484846117a1565b50505050565b733de71edb08baa8f5f5d79561d73946829ef0b2f381565b610b25611723565b8060099081610b349190612e3c565b5050565b730e467d5235d90e3bee7551450100b0e992debe2a81565b6000610b5b826117c1565b9050919050565b600c60009054906101000a900460ff1681565b60098054610b8290612b2c565b80601f0160208091040260200160405190810160405280929190818152602001828054610bae90612b2c565b8015610bfb5780601f10610bd057610100808354040283529160200191610bfb565b820191906000526020600020905b815481529060010190602001808311610bde57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c6a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610cc3611723565b610ccd60006118b9565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d01611723565b80600a8190555050565b606060038054610d1a90612b2c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4690612b2c565b8015610d935780601f10610d6857610100808354040283529160200191610d93565b820191906000526020600020905b815481529060010190602001808311610d7657829003601f168201915b5050505050905090565b600a5481565b600c60009054906101000a900460ff16610de9576040517f343295c400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e4e576040517f6844047f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b54811115610e8a576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610168610e95610911565b82011115610ecf576040517f2d573a5500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5481023414610f0c576040517faa7feadc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610f6e338261197f565b50565b81610f7b816112eb565b610f858383611b3a565b505050565b610f92611723565b80600b8190555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610fda57610fd9336112eb565b5b610fe685858585611c45565b5050505050565b6060610ff88261128c565b61102e576040517fc1ab6dc100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600961103983611cb8565b60405160200161104a929190613019565b6040516020818303038152906040529050919050565b600b5481565b61106e611723565b8181905084849050146110ad576040517faa81c86100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b848490508163ffffffff1610156111245761111785858363ffffffff168181106110dd576110dc613048565b5b90506020020160208101906110f29190612789565b84848463ffffffff1681811061110b5761110a613048565b5b9050602002013561197f565b80806001019150506110b0565b5050505050565b611133611723565b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6111fb611723565b611205818361197f565b5050565b611211611723565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611280576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611277906130e9565b60405180910390fd5b611289816118b9565b50565b6000816112976113f8565b111580156112a6575060005482105b80156112e4575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156113e5576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611362929190613109565b602060405180830381865afa15801561137f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113a39190613147565b6113e457806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016113db919061248d565b60405180910390fd5b5b50565b6113f482826001611d86565b5050565b60006001905090565b600061140c826117c1565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611473576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061147f84611ed2565b915091506114958187611490611ef9565b611f01565b6114e1576114aa866114a5611ef9565b61115f565b6114e0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611547576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115548686866001611f45565b801561155f57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061162d85611609888887611f4b565b7c020000000000000000000000000000000000000000000000000000000017611f73565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036116b357600060018501905060006004600083815260200190815260200160002054036116b15760005481146116b0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461171b8686866001611f9e565b505050505050565b61172b611fa4565b73ffffffffffffffffffffffffffffffffffffffff16611749610ccf565b73ffffffffffffffffffffffffffffffffffffffff161461179f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611796906131c0565b60405180910390fd5b565b6117bc83838360405180602001604052806000815250610f9c565b505050565b6000816117cc6113f8565b11611882576004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611881576000810361187c576000548210611851576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b6004600083600190039350838152602001908152602001600020549050600081036118b457611852565b6118b4565b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080549050600082036119bf576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119cc6000848385611f45565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611a4383611a346000866000611f4b565b611a3d85611fac565b17611f73565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611ae457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611aa9565b5060008203611b1f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611b356000848385611f9e565b505050565b8060076000611b47611ef9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bf4611ef9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c39919061231c565b60405180910390a35050565b611c50848484610928565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cb257611c7b84848484611fbc565b611cb1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060006001611cc78461210c565b01905060008167ffffffffffffffff811115611ce657611ce5612615565b5b6040519080825280601f01601f191660200182016040528015611d185781602001600182028036833780820191505090505b509050600082602001820190505b600115611d7b578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611d6f57611d6e612c3a565b5b04945060008503611d26575b819350505050919050565b6000611d9183610b50565b90508115611e1c578073ffffffffffffffffffffffffffffffffffffffff16611db8611ef9565b73ffffffffffffffffffffffffffffffffffffffff1614611e1b57611de481611ddf611ef9565b61115f565b611e1a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b836006600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f6286868461225f565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60006001821460e11b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fe2611ef9565b8786866040518563ffffffff1660e01b81526004016120049493929190613235565b6020604051808303816000875af192505050801561204057506040513d601f19601f8201168201806040525081019061203d9190613296565b60015b6120b9573d8060008114612070576040519150601f19603f3d011682016040523d82523d6000602084013e612075565b606091505b5060008151036120b1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061216a577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816121605761215f612c3a565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106121a7576d04ee2d6d415b85acef8100000000838161219d5761219c612c3a565b5b0492506020810190505b662386f26fc1000083106121d657662386f26fc1000083816121cc576121cb612c3a565b5b0492506010810190505b6305f5e10083106121ff576305f5e10083816121f5576121f4612c3a565b5b0492506008810190505b612710831061222457612710838161221a57612219612c3a565b5b0492506004810190505b60648310612247576064838161223d5761223c612c3a565b5b0492506002810190505b600a8310612256576001810190505b80915050919050565b60009392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122b18161227c565b81146122bc57600080fd5b50565b6000813590506122ce816122a8565b92915050565b6000602082840312156122ea576122e9612272565b5b60006122f8848285016122bf565b91505092915050565b60008115159050919050565b61231681612301565b82525050565b6000602082019050612331600083018461230d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612371578082015181840152602081019050612356565b60008484015250505050565b6000601f19601f8301169050919050565b600061239982612337565b6123a38185612342565b93506123b3818560208601612353565b6123bc8161237d565b840191505092915050565b600060208201905081810360008301526123e1818461238e565b905092915050565b6000819050919050565b6123fc816123e9565b811461240757600080fd5b50565b600081359050612419816123f3565b92915050565b60006020828403121561243557612434612272565b5b60006124438482850161240a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124778261244c565b9050919050565b6124878161246c565b82525050565b60006020820190506124a2600083018461247e565b92915050565b6124b18161246c565b81146124bc57600080fd5b50565b6000813590506124ce816124a8565b92915050565b600080604083850312156124eb576124ea612272565b5b60006124f9858286016124bf565b925050602061250a8582860161240a565b9150509250929050565b61251d816123e9565b82525050565b60006020820190506125386000830184612514565b92915050565b60008060006060848603121561255757612556612272565b5b6000612565868287016124bf565b9350506020612576868287016124bf565b92505060406125878682870161240a565b9150509250925092565b6000819050919050565b60006125b66125b16125ac8461244c565b612591565b61244c565b9050919050565b60006125c88261259b565b9050919050565b60006125da826125bd565b9050919050565b6125ea816125cf565b82525050565b600060208201905061260560008301846125e1565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61264d8261237d565b810181811067ffffffffffffffff8211171561266c5761266b612615565b5b80604052505050565b600061267f612268565b905061268b8282612644565b919050565b600067ffffffffffffffff8211156126ab576126aa612615565b5b6126b48261237d565b9050602081019050919050565b82818337600083830152505050565b60006126e36126de84612690565b612675565b9050828152602081018484840111156126ff576126fe612610565b5b61270a8482856126c1565b509392505050565b600082601f8301126127275761272661260b565b5b81356127378482602086016126d0565b91505092915050565b60006020828403121561275657612755612272565b5b600082013567ffffffffffffffff81111561277457612773612277565b5b61278084828501612712565b91505092915050565b60006020828403121561279f5761279e612272565b5b60006127ad848285016124bf565b91505092915050565b6127bf81612301565b81146127ca57600080fd5b50565b6000813590506127dc816127b6565b92915050565b600080604083850312156127f9576127f8612272565b5b6000612807858286016124bf565b9250506020612818858286016127cd565b9150509250929050565b600067ffffffffffffffff82111561283d5761283c612615565b5b6128468261237d565b9050602081019050919050565b600061286661286184612822565b612675565b90508281526020810184848401111561288257612881612610565b5b61288d8482856126c1565b509392505050565b600082601f8301126128aa576128a961260b565b5b81356128ba848260208601612853565b91505092915050565b600080600080608085870312156128dd576128dc612272565b5b60006128eb878288016124bf565b94505060206128fc878288016124bf565b935050604061290d8782880161240a565b925050606085013567ffffffffffffffff81111561292e5761292d612277565b5b61293a87828801612895565b91505092959194509250565b600080fd5b600080fd5b60008083601f8401126129665761296561260b565b5b8235905067ffffffffffffffff81111561298357612982612946565b5b60208301915083602082028301111561299f5761299e61294b565b5b9250929050565b60008083601f8401126129bc576129bb61260b565b5b8235905067ffffffffffffffff8111156129d9576129d8612946565b5b6020830191508360208202830111156129f5576129f461294b565b5b9250929050565b60008060008060408587031215612a1657612a15612272565b5b600085013567ffffffffffffffff811115612a3457612a33612277565b5b612a4087828801612950565b9450945050602085013567ffffffffffffffff811115612a6357612a62612277565b5b612a6f878288016129a6565b925092505092959194509250565b60008060408385031215612a9457612a93612272565b5b6000612aa2858286016124bf565b9250506020612ab3858286016124bf565b9150509250929050565b60008060408385031215612ad457612ad3612272565b5b6000612ae28582860161240a565b9250506020612af3858286016124bf565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b4457607f821691505b602082108103612b5757612b56612afd565b5b50919050565b7f4e6f2062616c616e636520746f20776974686472617700000000000000000000600082015250565b6000612b93601683612342565b9150612b9e82612b5d565b602082019050919050565b60006020820190508181036000830152612bc281612b86565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c03826123e9565b9150612c0e836123e9565b9250828202612c1c816123e9565b91508282048414831517612c3357612c32612bc9565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612c74826123e9565b9150612c7f836123e9565b925082612c8f57612c8e612c3a565b5b828204905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612cfc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612cbf565b612d068683612cbf565b95508019841693508086168417925050509392505050565b6000612d39612d34612d2f846123e9565b612591565b6123e9565b9050919050565b6000819050919050565b612d5383612d1e565b612d67612d5f82612d40565b848454612ccc565b825550505050565b600090565b612d7c612d6f565b612d87818484612d4a565b505050565b5b81811015612dab57612da0600082612d74565b600181019050612d8d565b5050565b601f821115612df057612dc181612c9a565b612dca84612caf565b81016020851015612dd9578190505b612ded612de585612caf565b830182612d8c565b50505b505050565b600082821c905092915050565b6000612e1360001984600802612df5565b1980831691505092915050565b6000612e2c8383612e02565b9150826002028217905092915050565b612e4582612337565b67ffffffffffffffff811115612e5e57612e5d612615565b5b612e688254612b2c565b612e73828285612daf565b600060209050601f831160018114612ea65760008415612e94578287015190505b612e9e8582612e20565b865550612f06565b601f198416612eb486612c9a565b60005b82811015612edc57848901518255600182019150602085019450602081019050612eb7565b86831015612ef95784890151612ef5601f891682612e02565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b60008154612f2681612b2c565b612f308186612f0e565b94506001821660008114612f4b5760018114612f6057612f93565b60ff1983168652811515820286019350612f93565b612f6985612c9a565b60005b83811015612f8b57815481890152600182019150602081019050612f6c565b838801955050505b50505092915050565b6000612fa782612337565b612fb18185612f0e565b9350612fc1818560208601612353565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613003600583612f0e565b915061300e82612fcd565b600582019050919050565b60006130258285612f19565b91506130318284612f9c565b915061303c82612ff6565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130d3602683612342565b91506130de82613077565b604082019050919050565b60006020820190508181036000830152613102816130c6565b9050919050565b600060408201905061311e600083018561247e565b61312b602083018461247e565b9392505050565b600081519050613141816127b6565b92915050565b60006020828403121561315d5761315c612272565b5b600061316b84828501613132565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131aa602083612342565b91506131b582613174565b602082019050919050565b600060208201905081810360008301526131d98161319d565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613207826131e0565b61321181856131eb565b9350613221818560208601612353565b61322a8161237d565b840191505092915050565b600060808201905061324a600083018761247e565b613257602083018661247e565b6132646040830185612514565b818103606083015261327681846131fc565b905095945050505050565b600081519050613290816122a8565b92915050565b6000602082840312156132ac576132ab612272565b5b60006132ba84828501613281565b9150509291505056fea2646970667358221220a4074504c380c48682f838993db2798ec84598e17dba8d91d746217a9701a78b64736f6c63430008110033

Deployed Bytecode Sourcemap

77437:3634:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24145:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25047:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31447:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80030:159;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20798:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80195:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77795:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80765:303;;;;;;;;;;;;;:::i;:::-;;3119:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80366:173;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77964:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79518:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77877:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26440:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78057:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77729:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21982:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61265:103;;;;;;;;;;;;;:::i;:::-;;60617:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79336:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25223:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77757:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78231:461;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79854:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79422:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80545:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79624:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77840:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78817:324;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79248:82;;;;;;;;;;;;;:::i;:::-;;32396:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78698:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61523:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24145:639;24230:4;24569:10;24554:25;;:11;:25;;;;:102;;;;24646:10;24631:25;;:11;:25;;;;24554:102;:179;;;;24723:10;24708:25;;:11;:25;;;;24554:179;24534:199;;24145:639;;;:::o;25047:100::-;25101:13;25134:5;25127:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25047:100;:::o;31447:218::-;31523:7;31548:16;31556:7;31548;:16::i;:::-;31543:64;;31573:34;;;;;;;;;;;;;;31543:64;31627:15;:24;31643:7;31627:24;;;;;;;;;;;:30;;;;;;;;;;;;31620:37;;31447:218;;;:::o;80030:159::-;80134:8;4640:30;4661:8;4640:20;:30::i;:::-;80151:32:::1;80165:8;80175:7;80151:13;:32::i;:::-;80030:159:::0;;;:::o;20798:323::-;20859:7;21087:15;:13;:15::i;:::-;21072:12;;21056:13;;:28;:46;21049:53;;20798:323;:::o;80195:165::-;80304:4;4468:10;4460:18;;:4;:18;;;4456:83;;4495:32;4516:10;4495:20;:32::i;:::-;4456:83;80317:37:::1;80336:4;80342:2;80346:7;80317:18;:37::i;:::-;80195:165:::0;;;;:::o;77795:40::-;77832:3;77795:40;:::o;80765:303::-;60503:13;:11;:13::i;:::-;80813:15:::1;80831:21;80813:39;;80879:1;80869:7;:11;80861:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;80916:13;80949:3;80943:2;80933:7;:12;;;;:::i;:::-;80932:20;;;;:::i;:::-;80916:36;;77915:42;80961:29;;:36;80991:5;80961:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;78006:42;81006:33;;:56;81040:21;81006:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;80804:264;;80765:303::o:0;3119:143::-;3219:42;3119:143;:::o;80366:173::-;80479:4;4468:10;4460:18;;:4;:18;;;4456:83;;4495:32;4516:10;4495:20;:32::i;:::-;4456:83;80492:41:::1;80515:4;80521:2;80525:7;80492:22;:41::i;:::-;80366:173:::0;;;;:::o;77964:84::-;78006:42;77964:84;:::o;79518:100::-;60503:13;:11;:13::i;:::-;79601:11:::1;79591:7;:21;;;;;;:::i;:::-;;79518:100:::0;:::o;77877:80::-;77915:42;77877:80;:::o;26440:152::-;26512:7;26555:27;26574:7;26555:18;:27::i;:::-;26532:52;;26440:152;;;:::o;78057:30::-;;;;;;;;;;;;;:::o;77729:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21982:233::-;22054:7;22095:1;22078:19;;:5;:19;;;22074:60;;22106:28;;;;;;;;;;;;;;22074:60;16141:13;22152:18;:25;22171:5;22152:25;;;;;;;;;;;;;;;;:55;22145:62;;21982:233;;;:::o;61265:103::-;60503:13;:11;:13::i;:::-;61330:30:::1;61357:1;61330:18;:30::i;:::-;61265:103::o:0;60617:87::-;60663:7;60690:6;;;;;;;;;;;60683:13;;60617:87;:::o;79336:80::-;60503:13;:11;:13::i;:::-;79404:6:::1;79396:5;:14;;;;79336:80:::0;:::o;25223:104::-;25279:13;25312:7;25305:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25223:104;:::o;77757:33::-;;;;:::o;78231:461::-;78293:10;;;;;;;;;;;78288:38;;78312:14;;;;;;;;;;;;;;78288:38;78351:9;78337:23;;:10;:23;;;78333:52;;78369:16;;;;;;;;;;;;;;78333:52;78410:11;;78396;:25;78392:53;;;78430:15;;;;;;;;;;;;;;78392:53;77832:3;78489:13;:11;:13::i;:::-;78475:11;:27;:40;78471:68;;;78524:15;;;;;;;;;;;;;;78471:68;78579:5;;78565:11;:19;78552:9;:32;78548:59;;78593:14;;;;;;;;;;;;;;78548:59;78645:4;78621:9;:21;78631:10;78621:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;78656:30;78662:10;78674:11;78656:5;:30::i;:::-;78231:461;:::o;79854:170::-;79958:8;4640:30;4661:8;4640:20;:30::i;:::-;79975:43:::1;79999:8;80009;79975:23;:43::i;:::-;79854:170:::0;;;:::o;79422:90::-;60503:13;:11;:13::i;:::-;79500:6:::1;79486:11;:20;;;;79422:90:::0;:::o;80545:197::-;80677:4;4468:10;4460:18;;:4;:18;;;4456:83;;4495:32;4516:10;4495:20;:32::i;:::-;4456:83;80689:47:::1;80712:4;80718:2;80722:7;80731:4;80689:22;:47::i;:::-;80545:197:::0;;;;;:::o;79624:224::-;79698:13;79725:17;79733:8;79725:7;:17::i;:::-;79720:45;;79751:14;;;;;;;;;;;;;;79720:45;79803:7;79812:19;:8;:17;:19::i;:::-;79786:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;79772:70;;79624:224;;;:::o;77840:30::-;;;;:::o;78817:324::-;60503:13;:11;:13::i;:::-;78959:8:::1;;:15;;78938:10;;:17;;:36;78934:68;;78983:19;;;;;;;;;;;;;;78934:68;79033:8;79028:101;79051:10;;:17;;79047:1;:21;;;79028:101;;;79086:33;79092:10;;79103:1;79092:13;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;79107:8;;79116:1;79107:11;;;;;;;;;:::i;:::-;;;;;;;;79086:5;:33::i;:::-;79070:3;;;;;;;79028:101;;;;78817:324:::0;;;;:::o;79248:82::-;60503:13;:11;:13::i;:::-;79314:10:::1;;;;;;;;;;;79313:11;79300:10;;:24;;;;;;;;;;;;;;;;;;79248:82::o:0;32396:164::-;32493:4;32517:18;:25;32536:5;32517:25;;;;;;;;;;;;;;;:35;32543:8;32517:35;;;;;;;;;;;;;;;;;;;;;;;;;32510:42;;32396:164;;;;:::o;78698:113::-;60503:13;:11;:13::i;:::-;78782:23:::1;78788:3;78793:11;78782:5;:23::i;:::-;78698:113:::0;;:::o;61523:201::-;60503:13;:11;:13::i;:::-;61632:1:::1;61612:22;;:8;:22;;::::0;61604:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;61688:28;61707:8;61688:18;:28::i;:::-;61523:201:::0;:::o;32818:282::-;32883:4;32939:7;32920:15;:13;:15::i;:::-;:26;;:66;;;;;32973:13;;32963:7;:23;32920:66;:153;;;;;33072:1;16917:8;33024:17;:26;33042:7;33024:26;;;;;;;;;;;;:44;:49;32920:153;32900:173;;32818:282;;;:::o;4698:419::-;4937:1;3219:42;4889:45;;;:49;4885:225;;;3219:42;4960;;;5011:4;5018:8;4960:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4955:144;;5074:8;5055:28;;;;;;;;;;;:::i;:::-;;;;;;;;4955:144;4885:225;4698:419;:::o;31164:124::-;31253:27;31262:2;31266:7;31275:4;31253:8;:27::i;:::-;31164:124;;:::o;79147:95::-;79212:7;79235:1;79228:8;;79147:95;:::o;35086:2825::-;35228:27;35258;35277:7;35258:18;:27::i;:::-;35228:57;;35343:4;35302:45;;35318:19;35302:45;;;35298:86;;35356:28;;;;;;;;;;;;;;35298:86;35398:27;35427:23;35454:35;35481:7;35454:26;:35::i;:::-;35397:92;;;;35589:68;35614:15;35631:4;35637:19;:17;:19::i;:::-;35589:24;:68::i;:::-;35584:180;;35677:43;35694:4;35700:19;:17;:19::i;:::-;35677:16;:43::i;:::-;35672:92;;35729:35;;;;;;;;;;;;;;35672:92;35584:180;35795:1;35781:16;;:2;:16;;;35777:52;;35806:23;;;;;;;;;;;;;;35777:52;35842:43;35864:4;35870:2;35874:7;35883:1;35842:21;:43::i;:::-;35978:15;35975:160;;;36118:1;36097:19;36090:30;35975:160;36515:18;:24;36534:4;36515:24;;;;;;;;;;;;;;;;36513:26;;;;;;;;;;;;36584:18;:22;36603:2;36584:22;;;;;;;;;;;;;;;;36582:24;;;;;;;;;;;36906:146;36943:2;36992:45;37007:4;37013:2;37017:19;36992:14;:45::i;:::-;17197:8;36964:73;36906:18;:146::i;:::-;36877:17;:26;36895:7;36877:26;;;;;;;;;;;:175;;;;37223:1;17197:8;37172:19;:47;:52;37168:627;;37245:19;37277:1;37267:7;:11;37245:33;;37434:1;37400:17;:30;37418:11;37400:30;;;;;;;;;;;;:35;37396:384;;37538:13;;37523:11;:28;37519:242;;37718:19;37685:17;:30;37703:11;37685:30;;;;;;;;;;;:52;;;;37519:242;37396:384;37226:569;37168:627;37842:7;37838:2;37823:27;;37832:4;37823:27;;;;;;;;;;;;37861:42;37882:4;37888:2;37892:7;37901:1;37861:20;:42::i;:::-;35217:2694;;;35086:2825;;;:::o;60782:132::-;60857:12;:10;:12::i;:::-;60846:23;;:7;:5;:7::i;:::-;:23;;;60838:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60782:132::o;38007:193::-;38153:39;38170:4;38176:2;38180:7;38153:39;;;;;;;;;;;;:16;:39::i;:::-;38007:193;;;:::o;27595:1712::-;27662:14;27712:7;27693:15;:13;:15::i;:::-;:26;27689:1562;;27745:17;:26;27763:7;27745:26;;;;;;;;;;;;27736:35;;27849:1;16917:8;27821:6;:24;:29;27817:1423;;27970:1;27960:6;:11;27956:981;;28011:13;;28000:7;:24;27996:68;;28033:31;;;;;;;;;;;;;;27996:68;28661:257;28747:17;:28;28765:9;;;;;;;28747:28;;;;;;;;;;;;28738:37;;28843:1;28833:6;:11;28881:13;28829:25;28661:257;;27956:981;29211:13;;27817:1423;27689:1562;29268:31;;;;;;;;;;;;;;27595:1712;;;;:::o;61884:191::-;61958:16;61977:6;;;;;;;;;;;61958:25;;62003:8;61994:6;;:17;;;;;;;;;;;;;;;;;;62058:8;62027:40;;62048:8;62027:40;;;;;;;;;;;;61947:128;61884:191;:::o;42467:2966::-;42540:20;42563:13;;42540:36;;42603:1;42591:8;:13;42587:44;;42613:18;;;;;;;;;;;;;;42587:44;42644:61;42674:1;42678:2;42682:12;42696:8;42644:21;:61::i;:::-;43188:1;16279:2;43158:1;:26;;43157:32;43145:8;:45;43119:18;:22;43138:2;43119:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43467:139;43504:2;43558:33;43581:1;43585:2;43589:1;43558:14;:33::i;:::-;43525:30;43546:8;43525:20;:30::i;:::-;:66;43467:18;:139::i;:::-;43433:17;:31;43451:12;43433:31;;;;;;;;;;;:173;;;;43623:16;43654:11;43683:8;43668:12;:23;43654:37;;44204:16;44200:2;44196:25;44184:37;;44576:12;44536:8;44495:1;44433:25;44374:1;44313;44286:335;44947:1;44933:12;44929:20;44887:346;44988:3;44979:7;44976:16;44887:346;;45206:7;45196:8;45193:1;45166:25;45163:1;45160;45155:59;45041:1;45032:7;45028:15;45017:26;;44887:346;;;44891:77;45278:1;45266:8;:13;45262:45;;45288:19;;;;;;;;;;;;;;45262:45;45340:3;45324:13;:19;;;;42893:2462;;45365:60;45394:1;45398:2;45402:12;45416:8;45365:20;:60::i;:::-;42529:2904;42467:2966;;:::o;32005:234::-;32152:8;32100:18;:39;32119:19;:17;:19::i;:::-;32100:39;;;;;;;;;;;;;;;:49;32140:8;32100:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32212:8;32176:55;;32191:19;:17;:19::i;:::-;32176:55;;;32222:8;32176:55;;;;;;:::i;:::-;;;;;;;;32005:234;;:::o;38798:407::-;38973:31;38986:4;38992:2;38996:7;38973:12;:31::i;:::-;39037:1;39019:2;:14;;;:19;39015:183;;39058:56;39089:4;39095:2;39099:7;39108:5;39058:30;:56::i;:::-;39053:145;;39142:40;;;;;;;;;;;;;;39053:145;39015:183;38798:407;;;;:::o;75489:716::-;75545:13;75596:14;75633:1;75613:17;75624:5;75613:10;:17::i;:::-;:21;75596:38;;75649:20;75683:6;75672:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75649:41;;75705:11;75834:6;75830:2;75826:15;75818:6;75814:28;75807:35;;75871:288;75878:4;75871:288;;;75903:5;;;;;;;;76045:8;76040:2;76033:5;76029:14;76024:30;76019:3;76011:44;76101:2;76092:11;;;;;;:::i;:::-;;;;;76135:1;76126:5;:10;75871:288;76122:21;75871:288;76180:6;76173:13;;;;;75489:716;;;:::o;49876:492::-;50005:13;50021:16;50029:7;50021;:16::i;:::-;50005:32;;50054:13;50050:219;;;50109:5;50086:28;;:19;:17;:19::i;:::-;:28;;;50082:187;;50138:44;50155:5;50162:19;:17;:19::i;:::-;50138:16;:44::i;:::-;50133:136;;50214:35;;;;;;;;;;;;;;50133:136;50082:187;50050:219;50314:2;50281:15;:24;50297:7;50281:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;50352:7;50348:2;50332:28;;50341:5;50332:28;;;;;;;;;;;;49994:374;49876:492;;;:::o;33981:485::-;34083:27;34112:23;34153:38;34194:15;:24;34210:7;34194:24;;;;;;;;;;;34153:65;;34371:18;34348:41;;34428:19;34422:26;34403:45;;34333:126;33981:485;;;:::o;56424:105::-;56484:7;56511:10;56504:17;;56424:105;:::o;33209:659::-;33358:11;33523:16;33516:5;33512:28;33503:37;;33683:16;33672:9;33668:32;33655:45;;33833:15;33822:9;33819:30;33811:5;33800:9;33797:20;33794:56;33784:66;;33209:659;;;;;:::o;39867:159::-;;;;;:::o;55733:311::-;55868:7;55888:16;17321:3;55914:19;:41;;55888:68;;17321:3;55982:31;55993:4;55999:2;56003:9;55982:10;:31::i;:::-;55974:40;;:62;;55967:69;;;55733:311;;;;;:::o;29855:450::-;29935:14;30103:16;30096:5;30092:28;30083:37;;30280:5;30266:11;30241:23;30237:41;30234:52;30227:5;30224:63;30214:73;;29855:450;;;;:::o;40691:158::-;;;;;:::o;59115:98::-;59168:7;59195:10;59188:17;;59115:98;:::o;30407:324::-;30477:14;30710:1;30700:8;30697:15;30671:24;30667:46;30657:56;;30407:324;;;:::o;41289:716::-;41452:4;41498:2;41473:45;;;41519:19;:17;:19::i;:::-;41540:4;41546:7;41555:5;41473:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41469:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41773:1;41756:6;:13;:18;41752:235;;41802:40;;;;;;;;;;;;;;41752:235;41945:6;41939:13;41930:6;41926:2;41922:15;41915:38;41469:529;41642:54;;;41632:64;;;:6;:64;;;;41625:71;;;41289:716;;;;;;:::o;72302:922::-;72355:7;72375:14;72392:1;72375:18;;72442:6;72433:5;:15;72429:102;;72478:6;72469:15;;;;;;:::i;:::-;;;;;72513:2;72503:12;;;;72429:102;72558:6;72549:5;:15;72545:102;;72594:6;72585:15;;;;;;:::i;:::-;;;;;72629:2;72619:12;;;;72545:102;72674:6;72665:5;:15;72661:102;;72710:6;72701:15;;;;;;:::i;:::-;;;;;72745:2;72735:12;;;;72661:102;72790:5;72781;:14;72777:99;;72825:5;72816:14;;;;;;:::i;:::-;;;;;72859:1;72849:11;;;;72777:99;72903:5;72894;:14;72890:99;;72938:5;72929:14;;;;;;:::i;:::-;;;;;72972:1;72962:11;;;;72890:99;73016:5;73007;:14;73003:99;;73051:5;73042:14;;;;;;:::i;:::-;;;;;73085:1;73075:11;;;;73003:99;73129:5;73120;:14;73116:66;;73165:1;73155:11;;;;73116:66;73210:6;73203:13;;;72302:922;;;:::o;55434:147::-;55571:6;55434:147;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:60::-;5895:3;5916:5;5909:12;;5867:60;;;:::o;5933:142::-;5983:9;6016:53;6034:34;6043:24;6061:5;6043:24;:::i;:::-;6034:34;:::i;:::-;6016:53;:::i;:::-;6003:66;;5933:142;;;:::o;6081:126::-;6131:9;6164:37;6195:5;6164:37;:::i;:::-;6151:50;;6081:126;;;:::o;6213:157::-;6294:9;6327:37;6358:5;6327:37;:::i;:::-;6314:50;;6213:157;;;:::o;6376:193::-;6494:68;6556:5;6494:68;:::i;:::-;6489:3;6482:81;6376:193;;:::o;6575:284::-;6699:4;6737:2;6726:9;6722:18;6714:26;;6750:102;6849:1;6838:9;6834:17;6825:6;6750:102;:::i;:::-;6575:284;;;;:::o;6865:117::-;6974:1;6971;6964:12;6988:117;7097:1;7094;7087:12;7111:180;7159:77;7156:1;7149:88;7256:4;7253:1;7246:15;7280:4;7277:1;7270:15;7297:281;7380:27;7402:4;7380:27;:::i;:::-;7372:6;7368:40;7510:6;7498:10;7495:22;7474:18;7462:10;7459:34;7456:62;7453:88;;;7521:18;;:::i;:::-;7453:88;7561:10;7557:2;7550:22;7340:238;7297:281;;:::o;7584:129::-;7618:6;7645:20;;:::i;:::-;7635:30;;7674:33;7702:4;7694:6;7674:33;:::i;:::-;7584:129;;;:::o;7719:308::-;7781:4;7871:18;7863:6;7860:30;7857:56;;;7893:18;;:::i;:::-;7857:56;7931:29;7953:6;7931:29;:::i;:::-;7923:37;;8015:4;8009;8005:15;7997:23;;7719:308;;;:::o;8033:146::-;8130:6;8125:3;8120;8107:30;8171:1;8162:6;8157:3;8153:16;8146:27;8033:146;;;:::o;8185:425::-;8263:5;8288:66;8304:49;8346:6;8304:49;:::i;:::-;8288:66;:::i;:::-;8279:75;;8377:6;8370:5;8363:21;8415:4;8408:5;8404:16;8453:3;8444:6;8439:3;8435:16;8432:25;8429:112;;;8460:79;;:::i;:::-;8429:112;8550:54;8597:6;8592:3;8587;8550:54;:::i;:::-;8269:341;8185:425;;;;;:::o;8630:340::-;8686:5;8735:3;8728:4;8720:6;8716:17;8712:27;8702:122;;8743:79;;:::i;:::-;8702:122;8860:6;8847:20;8885:79;8960:3;8952:6;8945:4;8937:6;8933:17;8885:79;:::i;:::-;8876:88;;8692:278;8630:340;;;;:::o;8976:509::-;9045:6;9094:2;9082:9;9073:7;9069:23;9065:32;9062:119;;;9100:79;;:::i;:::-;9062:119;9248:1;9237:9;9233:17;9220:31;9278:18;9270:6;9267:30;9264:117;;;9300:79;;:::i;:::-;9264:117;9405:63;9460:7;9451:6;9440:9;9436:22;9405:63;:::i;:::-;9395:73;;9191:287;8976:509;;;;:::o;9491:329::-;9550:6;9599:2;9587:9;9578:7;9574:23;9570:32;9567:119;;;9605:79;;:::i;:::-;9567:119;9725:1;9750:53;9795:7;9786:6;9775:9;9771:22;9750:53;:::i;:::-;9740:63;;9696:117;9491:329;;;;:::o;9826:116::-;9896:21;9911:5;9896:21;:::i;:::-;9889:5;9886:32;9876:60;;9932:1;9929;9922:12;9876:60;9826:116;:::o;9948:133::-;9991:5;10029:6;10016:20;10007:29;;10045:30;10069:5;10045:30;:::i;:::-;9948:133;;;;:::o;10087:468::-;10152:6;10160;10209:2;10197:9;10188:7;10184:23;10180:32;10177:119;;;10215:79;;:::i;:::-;10177:119;10335:1;10360:53;10405:7;10396:6;10385:9;10381:22;10360:53;:::i;:::-;10350:63;;10306:117;10462:2;10488:50;10530:7;10521:6;10510:9;10506:22;10488:50;:::i;:::-;10478:60;;10433:115;10087:468;;;;;:::o;10561:307::-;10622:4;10712:18;10704:6;10701:30;10698:56;;;10734:18;;:::i;:::-;10698:56;10772:29;10794:6;10772:29;:::i;:::-;10764:37;;10856:4;10850;10846:15;10838:23;;10561:307;;;:::o;10874:423::-;10951:5;10976:65;10992:48;11033:6;10992:48;:::i;:::-;10976:65;:::i;:::-;10967:74;;11064:6;11057:5;11050:21;11102:4;11095:5;11091:16;11140:3;11131:6;11126:3;11122:16;11119:25;11116:112;;;11147:79;;:::i;:::-;11116:112;11237:54;11284:6;11279:3;11274;11237:54;:::i;:::-;10957:340;10874:423;;;;;:::o;11316:338::-;11371:5;11420:3;11413:4;11405:6;11401:17;11397:27;11387:122;;11428:79;;:::i;:::-;11387:122;11545:6;11532:20;11570:78;11644:3;11636:6;11629:4;11621:6;11617:17;11570:78;:::i;:::-;11561:87;;11377:277;11316:338;;;;:::o;11660:943::-;11755:6;11763;11771;11779;11828:3;11816:9;11807:7;11803:23;11799:33;11796:120;;;11835:79;;:::i;:::-;11796:120;11955:1;11980:53;12025:7;12016:6;12005:9;12001:22;11980:53;:::i;:::-;11970:63;;11926:117;12082:2;12108:53;12153:7;12144:6;12133:9;12129:22;12108:53;:::i;:::-;12098:63;;12053:118;12210:2;12236:53;12281:7;12272:6;12261:9;12257:22;12236:53;:::i;:::-;12226:63;;12181:118;12366:2;12355:9;12351:18;12338:32;12397:18;12389:6;12386:30;12383:117;;;12419:79;;:::i;:::-;12383:117;12524:62;12578:7;12569:6;12558:9;12554:22;12524:62;:::i;:::-;12514:72;;12309:287;11660:943;;;;;;;:::o;12609:117::-;12718:1;12715;12708:12;12732:117;12841:1;12838;12831:12;12872:568;12945:8;12955:6;13005:3;12998:4;12990:6;12986:17;12982:27;12972:122;;13013:79;;:::i;:::-;12972:122;13126:6;13113:20;13103:30;;13156:18;13148:6;13145:30;13142:117;;;13178:79;;:::i;:::-;13142:117;13292:4;13284:6;13280:17;13268:29;;13346:3;13338:4;13330:6;13326:17;13316:8;13312:32;13309:41;13306:128;;;13353:79;;:::i;:::-;13306:128;12872:568;;;;;:::o;13463:::-;13536:8;13546:6;13596:3;13589:4;13581:6;13577:17;13573:27;13563:122;;13604:79;;:::i;:::-;13563:122;13717:6;13704:20;13694:30;;13747:18;13739:6;13736:30;13733:117;;;13769:79;;:::i;:::-;13733:117;13883:4;13875:6;13871:17;13859:29;;13937:3;13929:4;13921:6;13917:17;13907:8;13903:32;13900:41;13897:128;;;13944:79;;:::i;:::-;13897:128;13463:568;;;;;:::o;14037:934::-;14159:6;14167;14175;14183;14232:2;14220:9;14211:7;14207:23;14203:32;14200:119;;;14238:79;;:::i;:::-;14200:119;14386:1;14375:9;14371:17;14358:31;14416:18;14408:6;14405:30;14402:117;;;14438:79;;:::i;:::-;14402:117;14551:80;14623:7;14614:6;14603:9;14599:22;14551:80;:::i;:::-;14533:98;;;;14329:312;14708:2;14697:9;14693:18;14680:32;14739:18;14731:6;14728:30;14725:117;;;14761:79;;:::i;:::-;14725:117;14874:80;14946:7;14937:6;14926:9;14922:22;14874:80;:::i;:::-;14856:98;;;;14651:313;14037:934;;;;;;;:::o;14977:474::-;15045:6;15053;15102:2;15090:9;15081:7;15077:23;15073:32;15070:119;;;15108:79;;:::i;:::-;15070:119;15228:1;15253:53;15298:7;15289:6;15278:9;15274:22;15253:53;:::i;:::-;15243:63;;15199:117;15355:2;15381:53;15426:7;15417:6;15406:9;15402:22;15381:53;:::i;:::-;15371:63;;15326:118;14977:474;;;;;:::o;15457:::-;15525:6;15533;15582:2;15570:9;15561:7;15557:23;15553:32;15550:119;;;15588:79;;:::i;:::-;15550:119;15708:1;15733:53;15778:7;15769:6;15758:9;15754:22;15733:53;:::i;:::-;15723:63;;15679:117;15835:2;15861:53;15906:7;15897:6;15886:9;15882:22;15861:53;:::i;:::-;15851:63;;15806:118;15457:474;;;;;:::o;15937:180::-;15985:77;15982:1;15975:88;16082:4;16079:1;16072:15;16106:4;16103:1;16096:15;16123:320;16167:6;16204:1;16198:4;16194:12;16184:22;;16251:1;16245:4;16241:12;16272:18;16262:81;;16328:4;16320:6;16316:17;16306:27;;16262:81;16390:2;16382:6;16379:14;16359:18;16356:38;16353:84;;16409:18;;:::i;:::-;16353:84;16174:269;16123:320;;;:::o;16449:172::-;16589:24;16585:1;16577:6;16573:14;16566:48;16449:172;:::o;16627:366::-;16769:3;16790:67;16854:2;16849:3;16790:67;:::i;:::-;16783:74;;16866:93;16955:3;16866:93;:::i;:::-;16984:2;16979:3;16975:12;16968:19;;16627:366;;;:::o;16999:419::-;17165:4;17203:2;17192:9;17188:18;17180:26;;17252:9;17246:4;17242:20;17238:1;17227:9;17223:17;17216:47;17280:131;17406:4;17280:131;:::i;:::-;17272:139;;16999:419;;;:::o;17424:180::-;17472:77;17469:1;17462:88;17569:4;17566:1;17559:15;17593:4;17590:1;17583:15;17610:410;17650:7;17673:20;17691:1;17673:20;:::i;:::-;17668:25;;17707:20;17725:1;17707:20;:::i;:::-;17702:25;;17762:1;17759;17755:9;17784:30;17802:11;17784:30;:::i;:::-;17773:41;;17963:1;17954:7;17950:15;17947:1;17944:22;17924:1;17917:9;17897:83;17874:139;;17993:18;;:::i;:::-;17874:139;17658:362;17610:410;;;;:::o;18026:180::-;18074:77;18071:1;18064:88;18171:4;18168:1;18161:15;18195:4;18192:1;18185:15;18212:185;18252:1;18269:20;18287:1;18269:20;:::i;:::-;18264:25;;18303:20;18321:1;18303:20;:::i;:::-;18298:25;;18342:1;18332:35;;18347:18;;:::i;:::-;18332:35;18389:1;18386;18382:9;18377:14;;18212:185;;;;:::o;18403:141::-;18452:4;18475:3;18467:11;;18498:3;18495:1;18488:14;18532:4;18529:1;18519:18;18511:26;;18403:141;;;:::o;18550:93::-;18587:6;18634:2;18629;18622:5;18618:14;18614:23;18604:33;;18550:93;;;:::o;18649:107::-;18693:8;18743:5;18737:4;18733:16;18712:37;;18649:107;;;;:::o;18762:393::-;18831:6;18881:1;18869:10;18865:18;18904:97;18934:66;18923:9;18904:97;:::i;:::-;19022:39;19052:8;19041:9;19022:39;:::i;:::-;19010:51;;19094:4;19090:9;19083:5;19079:21;19070:30;;19143:4;19133:8;19129:19;19122:5;19119:30;19109:40;;18838:317;;18762:393;;;;;:::o;19161:142::-;19211:9;19244:53;19262:34;19271:24;19289:5;19271:24;:::i;:::-;19262:34;:::i;:::-;19244:53;:::i;:::-;19231:66;;19161:142;;;:::o;19309:75::-;19352:3;19373:5;19366:12;;19309:75;;;:::o;19390:269::-;19500:39;19531:7;19500:39;:::i;:::-;19561:91;19610:41;19634:16;19610:41;:::i;:::-;19602:6;19595:4;19589:11;19561:91;:::i;:::-;19555:4;19548:105;19466:193;19390:269;;;:::o;19665:73::-;19710:3;19665:73;:::o;19744:189::-;19821:32;;:::i;:::-;19862:65;19920:6;19912;19906:4;19862:65;:::i;:::-;19797:136;19744:189;;:::o;19939:186::-;19999:120;20016:3;20009:5;20006:14;19999:120;;;20070:39;20107:1;20100:5;20070:39;:::i;:::-;20043:1;20036:5;20032:13;20023:22;;19999:120;;;19939:186;;:::o;20131:543::-;20232:2;20227:3;20224:11;20221:446;;;20266:38;20298:5;20266:38;:::i;:::-;20350:29;20368:10;20350:29;:::i;:::-;20340:8;20336:44;20533:2;20521:10;20518:18;20515:49;;;20554:8;20539:23;;20515:49;20577:80;20633:22;20651:3;20633:22;:::i;:::-;20623:8;20619:37;20606:11;20577:80;:::i;:::-;20236:431;;20221:446;20131:543;;;:::o;20680:117::-;20734:8;20784:5;20778:4;20774:16;20753:37;;20680:117;;;;:::o;20803:169::-;20847:6;20880:51;20928:1;20924:6;20916:5;20913:1;20909:13;20880:51;:::i;:::-;20876:56;20961:4;20955;20951:15;20941:25;;20854:118;20803:169;;;;:::o;20977:295::-;21053:4;21199:29;21224:3;21218:4;21199:29;:::i;:::-;21191:37;;21261:3;21258:1;21254:11;21248:4;21245:21;21237:29;;20977:295;;;;:::o;21277:1395::-;21394:37;21427:3;21394:37;:::i;:::-;21496:18;21488:6;21485:30;21482:56;;;21518:18;;:::i;:::-;21482:56;21562:38;21594:4;21588:11;21562:38;:::i;:::-;21647:67;21707:6;21699;21693:4;21647:67;:::i;:::-;21741:1;21765:4;21752:17;;21797:2;21789:6;21786:14;21814:1;21809:618;;;;22471:1;22488:6;22485:77;;;22537:9;22532:3;22528:19;22522:26;22513:35;;22485:77;22588:67;22648:6;22641:5;22588:67;:::i;:::-;22582:4;22575:81;22444:222;21779:887;;21809:618;21861:4;21857:9;21849:6;21845:22;21895:37;21927:4;21895:37;:::i;:::-;21954:1;21968:208;21982:7;21979:1;21976:14;21968:208;;;22061:9;22056:3;22052:19;22046:26;22038:6;22031:42;22112:1;22104:6;22100:14;22090:24;;22159:2;22148:9;22144:18;22131:31;;22005:4;22002:1;21998:12;21993:17;;21968:208;;;22204:6;22195:7;22192:19;22189:179;;;22262:9;22257:3;22253:19;22247:26;22305:48;22347:4;22339:6;22335:17;22324:9;22305:48;:::i;:::-;22297:6;22290:64;22212:156;22189:179;22414:1;22410;22402:6;22398:14;22394:22;22388:4;22381:36;21816:611;;;21779:887;;21369:1303;;;21277:1395;;:::o;22678:148::-;22780:11;22817:3;22802:18;;22678:148;;;;:::o;22856:874::-;22959:3;22996:5;22990:12;23025:36;23051:9;23025:36;:::i;:::-;23077:89;23159:6;23154:3;23077:89;:::i;:::-;23070:96;;23197:1;23186:9;23182:17;23213:1;23208:166;;;;23388:1;23383:341;;;;23175:549;;23208:166;23292:4;23288:9;23277;23273:25;23268:3;23261:38;23354:6;23347:14;23340:22;23332:6;23328:35;23323:3;23319:45;23312:52;;23208:166;;23383:341;23450:38;23482:5;23450:38;:::i;:::-;23510:1;23524:154;23538:6;23535:1;23532:13;23524:154;;;23612:7;23606:14;23602:1;23597:3;23593:11;23586:35;23662:1;23653:7;23649:15;23638:26;;23560:4;23557:1;23553:12;23548:17;;23524:154;;;23707:6;23702:3;23698:16;23691:23;;23390:334;;23175:549;;22963:767;;22856:874;;;;:::o;23736:390::-;23842:3;23870:39;23903:5;23870:39;:::i;:::-;23925:89;24007:6;24002:3;23925:89;:::i;:::-;23918:96;;24023:65;24081:6;24076:3;24069:4;24062:5;24058:16;24023:65;:::i;:::-;24113:6;24108:3;24104:16;24097:23;;23846:280;23736:390;;;;:::o;24132:155::-;24272:7;24268:1;24260:6;24256:14;24249:31;24132:155;:::o;24293:400::-;24453:3;24474:84;24556:1;24551:3;24474:84;:::i;:::-;24467:91;;24567:93;24656:3;24567:93;:::i;:::-;24685:1;24680:3;24676:11;24669:18;;24293:400;;;:::o;24699:695::-;24977:3;24999:92;25087:3;25078:6;24999:92;:::i;:::-;24992:99;;25108:95;25199:3;25190:6;25108:95;:::i;:::-;25101:102;;25220:148;25364:3;25220:148;:::i;:::-;25213:155;;25385:3;25378:10;;24699:695;;;;;:::o;25400:180::-;25448:77;25445:1;25438:88;25545:4;25542:1;25535:15;25569:4;25566:1;25559:15;25586:225;25726:34;25722:1;25714:6;25710:14;25703:58;25795:8;25790:2;25782:6;25778:15;25771:33;25586:225;:::o;25817:366::-;25959:3;25980:67;26044:2;26039:3;25980:67;:::i;:::-;25973:74;;26056:93;26145:3;26056:93;:::i;:::-;26174:2;26169:3;26165:12;26158:19;;25817:366;;;:::o;26189:419::-;26355:4;26393:2;26382:9;26378:18;26370:26;;26442:9;26436:4;26432:20;26428:1;26417:9;26413:17;26406:47;26470:131;26596:4;26470:131;:::i;:::-;26462:139;;26189:419;;;:::o;26614:332::-;26735:4;26773:2;26762:9;26758:18;26750:26;;26786:71;26854:1;26843:9;26839:17;26830:6;26786:71;:::i;:::-;26867:72;26935:2;26924:9;26920:18;26911:6;26867:72;:::i;:::-;26614:332;;;;;:::o;26952:137::-;27006:5;27037:6;27031:13;27022:22;;27053:30;27077:5;27053:30;:::i;:::-;26952:137;;;;:::o;27095:345::-;27162:6;27211:2;27199:9;27190:7;27186:23;27182:32;27179:119;;;27217:79;;:::i;:::-;27179:119;27337:1;27362:61;27415:7;27406:6;27395:9;27391:22;27362:61;:::i;:::-;27352:71;;27308:125;27095:345;;;;:::o;27446:182::-;27586:34;27582:1;27574:6;27570:14;27563:58;27446:182;:::o;27634:366::-;27776:3;27797:67;27861:2;27856:3;27797:67;:::i;:::-;27790:74;;27873:93;27962:3;27873:93;:::i;:::-;27991:2;27986:3;27982:12;27975:19;;27634:366;;;:::o;28006:419::-;28172:4;28210:2;28199:9;28195:18;28187:26;;28259:9;28253:4;28249:20;28245:1;28234:9;28230:17;28223:47;28287:131;28413:4;28287:131;:::i;:::-;28279:139;;28006:419;;;:::o;28431:98::-;28482:6;28516:5;28510:12;28500:22;;28431:98;;;:::o;28535:168::-;28618:11;28652:6;28647:3;28640:19;28692:4;28687:3;28683:14;28668:29;;28535:168;;;;:::o;28709:373::-;28795:3;28823:38;28855:5;28823:38;:::i;:::-;28877:70;28940:6;28935:3;28877:70;:::i;:::-;28870:77;;28956:65;29014:6;29009:3;29002:4;28995:5;28991:16;28956:65;:::i;:::-;29046:29;29068:6;29046:29;:::i;:::-;29041:3;29037:39;29030:46;;28799:283;28709:373;;;;:::o;29088:640::-;29283:4;29321:3;29310:9;29306:19;29298:27;;29335:71;29403:1;29392:9;29388:17;29379:6;29335:71;:::i;:::-;29416:72;29484:2;29473:9;29469:18;29460:6;29416:72;:::i;:::-;29498;29566:2;29555:9;29551:18;29542:6;29498:72;:::i;:::-;29617:9;29611:4;29607:20;29602:2;29591:9;29587:18;29580:48;29645:76;29716:4;29707:6;29645:76;:::i;:::-;29637:84;;29088:640;;;;;;;:::o;29734:141::-;29790:5;29821:6;29815:13;29806:22;;29837:32;29863:5;29837:32;:::i;:::-;29734:141;;;;:::o;29881:349::-;29950:6;29999:2;29987:9;29978:7;29974:23;29970:32;29967:119;;;30005:79;;:::i;:::-;29967:119;30125:1;30150:63;30205:7;30196:6;30185:9;30181:22;30150:63;:::i;:::-;30140:73;;30096:127;29881:349;;;;:::o

Swarm Source

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