ETH Price: $2,356.44 (+0.69%)

Token

Peace on Marz (POM)
 

Overview

Max Total Supply

1,561 POM

Holders

329

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 POM
0x792d440af82ef5910dd1543ec30994a89619e708
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:
PeaceOnMarz

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.17;

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

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

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

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

interface IPreminter {
    function burn(uint256 tokenId) external;
    function balanceOf(address owner) external view returns (uint256);
}

contract PeaceOnMarz is Ownable, ERC721A, ReentrancyGuard {
    uint256 constant RESERVE_MINTS = 250; // Reserve for Vault
    uint256 constant MAX_SUPPLY = 4500;
    uint256 constant FREE_MINT = 4;

    string private _baseTokenURI;

    IPreminter public PRE_MINTER;

    uint256 public MINT_START;

    address public WITHDRAW_ADDRESS;

    address public COMMUNITY_VAULT;

    constructor(address preminter, address vault) ERC721A("Peace on Marz", "POM") {
        _baseTokenURI = "https://metadata.peaceonmarz.com/";
        MINT_START = 1670374800; // Launch Time
        COMMUNITY_VAULT = vault;
        PRE_MINTER = IPreminter(preminter);
    }

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

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

    function contractURI() external view returns (string memory) {
        return _baseTokenURI;
    }

    function mintStarted() public view returns (bool) {
        return block.timestamp >= MINT_START;
    }

    /**
     * Returns the price of NFT.
     */
    function price(uint256 quantity) public pure returns (uint256) {
        return quantity * 0.005 ether;
    }

    function mint() external {
        require(_numberMinted(_msgSender()) == 0, "You already minted");
        uint256 quantity = PRE_MINTER.balanceOf(_msgSender());
        _safeMint(_msgSender(), quantity);
    }


    function burn(uint256 tokenId) external {
        _burn(tokenId, true);
    }

    function totalMinted() external view returns (uint256) {
        return _totalMinted();
    }

    function totalBurned() external view returns (uint256) {
        return _totalBurned();
    }

    /// Admin Functions

    function setBaseTokenURI(string memory baseTokenURI) external onlyOwner {
        _baseTokenURI = baseTokenURI;
    }

    function withdraw() external onlyOwner nonReentrant {
        uint256 balance = address(this).balance;
        require(balance > 0, "NOTHING_TO_WITHDRAW");

        (bool success, ) = payable(WITHDRAW_ADDRESS).call{
            value: address(this).balance
        }("");
        require(success, "Transfer failed.");
    }

    function adminBurn(uint256 tokenId) external onlyOwner {
        _burn(tokenId, false);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"preminter","type":"address"},{"internalType":"address","name":"vault","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"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":"COMMUNITY_VAULT","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_START","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRE_MINTER","outputs":[{"internalType":"contract IPreminter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WITHDRAW_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"adminBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseTokenURI","type":"string"}],"name":"setBaseTokenURI","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":"totalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200370c3803806200370c833981810160405281019062000037919062000306565b6040518060400160405280600d81526020017f5065616365206f6e204d61727a000000000000000000000000000000000000008152506040518060400160405280600381526020017f504f4d0000000000000000000000000000000000000000000000000000000000815250620000c3620000b7620001c760201b60201c565b620001cf60201b60201c565b8160039081620000d49190620005c7565b508060049081620000e69190620005c7565b50620000f76200029360201b60201c565b60018190555050506001600981905550604051806060016040528060218152602001620036eb60219139600a9081620001319190620005c7565b5063638fe590600c8190555080600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050620006ae565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620002ce82620002a1565b9050919050565b620002e081620002c1565b8114620002ec57600080fd5b50565b6000815190506200030081620002d5565b92915050565b6000806040838503121562000320576200031f6200029c565b5b60006200033085828601620002ef565b92505060206200034385828601620002ef565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003cf57607f821691505b602082108103620003e557620003e462000387565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200044f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000410565b6200045b868362000410565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004a8620004a26200049c8462000473565b6200047d565b62000473565b9050919050565b6000819050919050565b620004c48362000487565b620004dc620004d382620004af565b8484546200041d565b825550505050565b600090565b620004f3620004e4565b62000500818484620004b9565b505050565b5b8181101562000528576200051c600082620004e9565b60018101905062000506565b5050565b601f82111562000577576200054181620003eb565b6200054c8462000400565b810160208510156200055c578190505b620005746200056b8562000400565b83018262000505565b50505b505050565b600082821c905092915050565b60006200059c600019846008026200057c565b1980831691505092915050565b6000620005b7838362000589565b9150826002028217905092915050565b620005d2826200034d565b67ffffffffffffffff811115620005ee57620005ed62000358565b5b620005fa8254620003b6565b620006078282856200052c565b600060209050601f8311600181146200063f57600084156200062a578287015190505b620006368582620005a9565b865550620006a6565b601f1984166200064f86620003eb565b60005b82811015620006795784890151825560018201915060208501945060208101905062000652565b8683101562000699578489015162000695601f89168262000589565b8355505b6001600288020188555050505b505050505050565b61302d80620006be6000396000f3fe6080604052600436106101d85760003560e01c8063715018a611610102578063badb97ff11610095578063d928e21711610064578063d928e21714610652578063e8a3d4851461067d578063e985e9c5146106a8578063f2fde38b146106e5576101d8565b8063badb97ff14610596578063c6374d0c146105bf578063c87b56dd146105ea578063d89135cd14610627576101d8565b8063a22cb465116100d1578063a22cb465146104fb578063a2309ff814610524578063a9722cf31461054f578063b88d4fde1461057a576101d8565b8063715018a6146104635780638da5cb5b1461047a57806395d89b41146104a55780639bcae510146104d0576101d8565b806323b872dd1161017a57806342842e0e1161014957806342842e0e146103a457806342966c68146103c05780636352211e146103e957806370a0823114610426576101d8565b806323b872dd1461030b57806326a49e371461032757806330176e13146103645780633ccfd60b1461038d576101d8565b8063095ea7b3116101b6578063095ea7b314610282578063122e04a81461029e5780631249c58b146102c957806318160ddd146102e0576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612187565b61070e565b60405161021191906121cf565b60405180910390f35b34801561022657600080fd5b5061022f6107a0565b60405161023c919061227a565b60405180910390f35b34801561025157600080fd5b5061026c600480360381019061026791906122d2565b610832565b6040516102799190612340565b60405180910390f35b61029c60048036038101906102979190612387565b6108b1565b005b3480156102aa57600080fd5b506102b36109f5565b6040516102c09190612340565b60405180910390f35b3480156102d557600080fd5b506102de610a1b565b005b3480156102ec57600080fd5b506102f5610b28565b60405161030291906123d6565b60405180910390f35b610325600480360381019061032091906123f1565b610b3f565b005b34801561033357600080fd5b5061034e600480360381019061034991906122d2565b610e61565b60405161035b91906123d6565b60405180910390f35b34801561037057600080fd5b5061038b60048036038101906103869190612579565b610e7d565b005b34801561039957600080fd5b506103a2610e98565b005b6103be60048036038101906103b991906123f1565b610fca565b005b3480156103cc57600080fd5b506103e760048036038101906103e291906122d2565b610fea565b005b3480156103f557600080fd5b50610410600480360381019061040b91906122d2565b610ff8565b60405161041d9190612340565b60405180910390f35b34801561043257600080fd5b5061044d600480360381019061044891906125c2565b61100a565b60405161045a91906123d6565b60405180910390f35b34801561046f57600080fd5b506104786110c2565b005b34801561048657600080fd5b5061048f6110d6565b60405161049c9190612340565b60405180910390f35b3480156104b157600080fd5b506104ba6110ff565b6040516104c7919061227a565b60405180910390f35b3480156104dc57600080fd5b506104e5611191565b6040516104f29190612340565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d919061261b565b6111b7565b005b34801561053057600080fd5b506105396112c2565b60405161054691906123d6565b60405180910390f35b34801561055b57600080fd5b506105646112d1565b60405161057191906121cf565b60405180910390f35b610594600480360381019061058f91906126fc565b6112de565b005b3480156105a257600080fd5b506105bd60048036038101906105b891906122d2565b611351565b005b3480156105cb57600080fd5b506105d4611367565b6040516105e191906123d6565b60405180910390f35b3480156105f657600080fd5b50610611600480360381019061060c91906122d2565b61136d565b60405161061e919061227a565b60405180910390f35b34801561063357600080fd5b5061063c61140b565b60405161064991906123d6565b60405180910390f35b34801561065e57600080fd5b5061066761141a565b60405161067491906127de565b60405180910390f35b34801561068957600080fd5b50610692611440565b60405161069f919061227a565b60405180910390f35b3480156106b457600080fd5b506106cf60048036038101906106ca91906127f9565b6114d2565b6040516106dc91906121cf565b60405180910390f35b3480156106f157600080fd5b5061070c600480360381019061070791906125c2565b611566565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107995750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546107af90612868565b80601f01602080910402602001604051908101604052809291908181526020018280546107db90612868565b80156108285780601f106107fd57610100808354040283529160200191610828565b820191906000526020600020905b81548152906001019060200180831161080b57829003601f168201915b5050505050905090565b600061083d826115e9565b610873576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108bc82610ff8565b90508073ffffffffffffffffffffffffffffffffffffffff166108dd611648565b73ffffffffffffffffffffffffffffffffffffffff16146109405761090981610904611648565b6114d2565b61093f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610a2d610a28611650565b611658565b14610a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a64906128e5565b60405180910390fd5b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231610ab5611650565b6040518263ffffffff1660e01b8152600401610ad19190612340565b602060405180830381865afa158015610aee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b12919061291a565b9050610b25610b1f611650565b826116af565b50565b6000610b326116cd565b6002546001540303905090565b6000610b4a826116d6565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bb1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610bbd846117a2565b91509150610bd38187610bce611648565b6117c9565b610c1f57610be886610be3611648565b6114d2565b610c1e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c85576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c92868686600161180d565b8015610c9d57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d6b85610d47888887611813565b7c02000000000000000000000000000000000000000000000000000000001761183b565b600560008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610df15760006001850190506000600560008381526020019081526020016000205403610def576001548114610dee578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e598686866001611866565b505050505050565b60006611c37937e0800082610e769190612976565b9050919050565b610e8561186c565b80600a9081610e949190612b5a565b5050565b610ea061186c565b610ea86118ea565b600047905060008111610ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee790612c78565b60405180910390fd5b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610f3890612cc9565b60006040518083038185875af1925050503d8060008114610f75576040519150601f19603f3d011682016040523d82523d6000602084013e610f7a565b606091505b5050905080610fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb590612d2a565b60405180910390fd5b5050610fc8611939565b565b610fe5838383604051806020016040528060008152506112de565b505050565b610ff5816001611943565b50565b6000611003826116d6565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611071576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110ca61186c565b6110d46000611b95565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461110e90612868565b80601f016020809104026020016040519081016040528092919081815260200182805461113a90612868565b80156111875780601f1061115c57610100808354040283529160200191611187565b820191906000526020600020905b81548152906001019060200180831161116a57829003601f168201915b5050505050905090565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b80600860006111c4611648565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611271611648565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112b691906121cf565b60405180910390a35050565b60006112cc611c59565b905090565b6000600c54421015905090565b6112e9848484610b3f565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461134b5761131484848484611c6c565b61134a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61135961186c565b611364816000611943565b50565b600c5481565b6060611378826115e9565b6113ae576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006113b8611dbc565b905060008151036113d85760405180602001604052806000815250611403565b806113e284611e4e565b6040516020016113f3929190612d86565b6040516020818303038152906040525b915050919050565b6000611415611e9e565b905090565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600a805461144f90612868565b80601f016020809104026020016040519081016040528092919081815260200182805461147b90612868565b80156114c85780601f1061149d576101008083540402835291602001916114c8565b820191906000526020600020905b8154815290600101906020018083116114ab57829003601f168201915b5050505050905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61156e61186c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d490612e1c565b60405180910390fd5b6115e681611b95565b50565b6000816115f46116cd565b11158015611603575060015482105b8015611641575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6116c9828260405180602001604052806000815250611ea8565b5050565b60006001905090565b600080829050806116e56116cd565b1161176b5760015481101561176a5760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611768575b6000810361175e576005600083600190039350838152602001908152602001600020549050611734565b809250505061179d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861182a868684611f46565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611874611650565b73ffffffffffffffffffffffffffffffffffffffff166118926110d6565b73ffffffffffffffffffffffffffffffffffffffff16146118e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118df90612e88565b60405180910390fd5b565b60026009540361192f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192690612ef4565b60405180910390fd5b6002600981905550565b6001600981905550565b600061194e836116d6565b90506000819050600080611961866117a2565b9150915084156119ca5761197d8184611978611648565b6117c9565b6119c9576119928361198d611648565b6114d2565b6119c8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b6119d883600088600161180d565b80156119e357600082555b600160806001901b03600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611a8b83611a4885600088611813565b7c02000000000000000000000000000000000000000000000000000000007c0100000000000000000000000000000000000000000000000000000000171761183b565b600560008881526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000851603611b115760006001870190506000600560008381526020019081526020016000205403611b0f576001548114611b0e578460056000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b7b836000886001611866565b600260008154809291906001019190505550505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611c636116cd565b60015403905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c92611648565b8786866040518563ffffffff1660e01b8152600401611cb49493929190612f69565b6020604051808303816000875af1925050508015611cf057506040513d601f19601f82011682018060405250810190611ced9190612fca565b60015b611d69573d8060008114611d20576040519150601f19603f3d011682016040523d82523d6000602084013e611d25565b606091505b506000815103611d61576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611dcb90612868565b80601f0160208091040260200160405190810160405280929190818152602001828054611df790612868565b8015611e445780601f10611e1957610100808354040283529160200191611e44565b820191906000526020600020905b815481529060010190602001808311611e2757829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611e8957600184039350600a81066030018453600a8104905080611e67575b50828103602084039350808452505050919050565b6000600254905090565b611eb28383611f4f565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611f415760006001549050600083820390505b611ef36000868380600101945086611c6c565b611f29576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ee0578160015414611f3e57600080fd5b50505b505050565b60009392505050565b6000600154905060008203611f90576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f9d600084838561180d565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612014836120056000866000611813565b61200e8561210b565b1761183b565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146120b557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061207a565b50600082036120f0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060018190555050506121066000848385611866565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6121648161212f565b811461216f57600080fd5b50565b6000813590506121818161215b565b92915050565b60006020828403121561219d5761219c612125565b5b60006121ab84828501612172565b91505092915050565b60008115159050919050565b6121c9816121b4565b82525050565b60006020820190506121e460008301846121c0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612224578082015181840152602081019050612209565b60008484015250505050565b6000601f19601f8301169050919050565b600061224c826121ea565b61225681856121f5565b9350612266818560208601612206565b61226f81612230565b840191505092915050565b600060208201905081810360008301526122948184612241565b905092915050565b6000819050919050565b6122af8161229c565b81146122ba57600080fd5b50565b6000813590506122cc816122a6565b92915050565b6000602082840312156122e8576122e7612125565b5b60006122f6848285016122bd565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061232a826122ff565b9050919050565b61233a8161231f565b82525050565b60006020820190506123556000830184612331565b92915050565b6123648161231f565b811461236f57600080fd5b50565b6000813590506123818161235b565b92915050565b6000806040838503121561239e5761239d612125565b5b60006123ac85828601612372565b92505060206123bd858286016122bd565b9150509250929050565b6123d08161229c565b82525050565b60006020820190506123eb60008301846123c7565b92915050565b60008060006060848603121561240a57612409612125565b5b600061241886828701612372565b935050602061242986828701612372565b925050604061243a868287016122bd565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61248682612230565b810181811067ffffffffffffffff821117156124a5576124a461244e565b5b80604052505050565b60006124b861211b565b90506124c4828261247d565b919050565b600067ffffffffffffffff8211156124e4576124e361244e565b5b6124ed82612230565b9050602081019050919050565b82818337600083830152505050565b600061251c612517846124c9565b6124ae565b90508281526020810184848401111561253857612537612449565b5b6125438482856124fa565b509392505050565b600082601f8301126125605761255f612444565b5b8135612570848260208601612509565b91505092915050565b60006020828403121561258f5761258e612125565b5b600082013567ffffffffffffffff8111156125ad576125ac61212a565b5b6125b98482850161254b565b91505092915050565b6000602082840312156125d8576125d7612125565b5b60006125e684828501612372565b91505092915050565b6125f8816121b4565b811461260357600080fd5b50565b600081359050612615816125ef565b92915050565b6000806040838503121561263257612631612125565b5b600061264085828601612372565b925050602061265185828601612606565b9150509250929050565b600067ffffffffffffffff8211156126765761267561244e565b5b61267f82612230565b9050602081019050919050565b600061269f61269a8461265b565b6124ae565b9050828152602081018484840111156126bb576126ba612449565b5b6126c68482856124fa565b509392505050565b600082601f8301126126e3576126e2612444565b5b81356126f384826020860161268c565b91505092915050565b6000806000806080858703121561271657612715612125565b5b600061272487828801612372565b945050602061273587828801612372565b9350506040612746878288016122bd565b925050606085013567ffffffffffffffff8111156127675761276661212a565b5b612773878288016126ce565b91505092959194509250565b6000819050919050565b60006127a461279f61279a846122ff565b61277f565b6122ff565b9050919050565b60006127b682612789565b9050919050565b60006127c8826127ab565b9050919050565b6127d8816127bd565b82525050565b60006020820190506127f360008301846127cf565b92915050565b600080604083850312156128105761280f612125565b5b600061281e85828601612372565b925050602061282f85828601612372565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061288057607f821691505b60208210810361289357612892612839565b5b50919050565b7f596f7520616c7265616479206d696e7465640000000000000000000000000000600082015250565b60006128cf6012836121f5565b91506128da82612899565b602082019050919050565b600060208201905081810360008301526128fe816128c2565b9050919050565b600081519050612914816122a6565b92915050565b6000602082840312156129305761292f612125565b5b600061293e84828501612905565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006129818261229c565b915061298c8361229c565b925082820261299a8161229c565b915082820484148315176129b1576129b0612947565b5b5092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612a1a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826129dd565b612a2486836129dd565b95508019841693508086168417925050509392505050565b6000612a57612a52612a4d8461229c565b61277f565b61229c565b9050919050565b6000819050919050565b612a7183612a3c565b612a85612a7d82612a5e565b8484546129ea565b825550505050565b600090565b612a9a612a8d565b612aa5818484612a68565b505050565b5b81811015612ac957612abe600082612a92565b600181019050612aab565b5050565b601f821115612b0e57612adf816129b8565b612ae8846129cd565b81016020851015612af7578190505b612b0b612b03856129cd565b830182612aaa565b50505b505050565b600082821c905092915050565b6000612b3160001984600802612b13565b1980831691505092915050565b6000612b4a8383612b20565b9150826002028217905092915050565b612b63826121ea565b67ffffffffffffffff811115612b7c57612b7b61244e565b5b612b868254612868565b612b91828285612acd565b600060209050601f831160018114612bc45760008415612bb2578287015190505b612bbc8582612b3e565b865550612c24565b601f198416612bd2866129b8565b60005b82811015612bfa57848901518255600182019150602085019450602081019050612bd5565b86831015612c175784890151612c13601f891682612b20565b8355505b6001600288020188555050505b505050505050565b7f4e4f5448494e475f544f5f574954484452415700000000000000000000000000600082015250565b6000612c626013836121f5565b9150612c6d82612c2c565b602082019050919050565b60006020820190508181036000830152612c9181612c55565b9050919050565b600081905092915050565b50565b6000612cb3600083612c98565b9150612cbe82612ca3565b600082019050919050565b6000612cd482612ca6565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612d146010836121f5565b9150612d1f82612cde565b602082019050919050565b60006020820190508181036000830152612d4381612d07565b9050919050565b600081905092915050565b6000612d60826121ea565b612d6a8185612d4a565b9350612d7a818560208601612206565b80840191505092915050565b6000612d928285612d55565b9150612d9e8284612d55565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e066026836121f5565b9150612e1182612daa565b604082019050919050565b60006020820190508181036000830152612e3581612df9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612e726020836121f5565b9150612e7d82612e3c565b602082019050919050565b60006020820190508181036000830152612ea181612e65565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612ede601f836121f5565b9150612ee982612ea8565b602082019050919050565b60006020820190508181036000830152612f0d81612ed1565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612f3b82612f14565b612f458185612f1f565b9350612f55818560208601612206565b612f5e81612230565b840191505092915050565b6000608082019050612f7e6000830187612331565b612f8b6020830186612331565b612f9860408301856123c7565b8181036060830152612faa8184612f30565b905095945050505050565b600081519050612fc48161215b565b92915050565b600060208284031215612fe057612fdf612125565b5b6000612fee84828501612fb5565b9150509291505056fea264697066735822122036ba9444e662ee685b76f2b55b586587b281d2f179c28eb86dfe55681bebcc2064736f6c6343000811003368747470733a2f2f6d657461646174612e70656163656f6e6d61727a2e636f6d2f0000000000000000000000005987106a9a4213c1a826756213e26af5395d984b0000000000000000000000007007aeeac69204505a91acdc7ee0afd84a011edf

Deployed Bytecode

0x6080604052600436106101d85760003560e01c8063715018a611610102578063badb97ff11610095578063d928e21711610064578063d928e21714610652578063e8a3d4851461067d578063e985e9c5146106a8578063f2fde38b146106e5576101d8565b8063badb97ff14610596578063c6374d0c146105bf578063c87b56dd146105ea578063d89135cd14610627576101d8565b8063a22cb465116100d1578063a22cb465146104fb578063a2309ff814610524578063a9722cf31461054f578063b88d4fde1461057a576101d8565b8063715018a6146104635780638da5cb5b1461047a57806395d89b41146104a55780639bcae510146104d0576101d8565b806323b872dd1161017a57806342842e0e1161014957806342842e0e146103a457806342966c68146103c05780636352211e146103e957806370a0823114610426576101d8565b806323b872dd1461030b57806326a49e371461032757806330176e13146103645780633ccfd60b1461038d576101d8565b8063095ea7b3116101b6578063095ea7b314610282578063122e04a81461029e5780631249c58b146102c957806318160ddd146102e0576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612187565b61070e565b60405161021191906121cf565b60405180910390f35b34801561022657600080fd5b5061022f6107a0565b60405161023c919061227a565b60405180910390f35b34801561025157600080fd5b5061026c600480360381019061026791906122d2565b610832565b6040516102799190612340565b60405180910390f35b61029c60048036038101906102979190612387565b6108b1565b005b3480156102aa57600080fd5b506102b36109f5565b6040516102c09190612340565b60405180910390f35b3480156102d557600080fd5b506102de610a1b565b005b3480156102ec57600080fd5b506102f5610b28565b60405161030291906123d6565b60405180910390f35b610325600480360381019061032091906123f1565b610b3f565b005b34801561033357600080fd5b5061034e600480360381019061034991906122d2565b610e61565b60405161035b91906123d6565b60405180910390f35b34801561037057600080fd5b5061038b60048036038101906103869190612579565b610e7d565b005b34801561039957600080fd5b506103a2610e98565b005b6103be60048036038101906103b991906123f1565b610fca565b005b3480156103cc57600080fd5b506103e760048036038101906103e291906122d2565b610fea565b005b3480156103f557600080fd5b50610410600480360381019061040b91906122d2565b610ff8565b60405161041d9190612340565b60405180910390f35b34801561043257600080fd5b5061044d600480360381019061044891906125c2565b61100a565b60405161045a91906123d6565b60405180910390f35b34801561046f57600080fd5b506104786110c2565b005b34801561048657600080fd5b5061048f6110d6565b60405161049c9190612340565b60405180910390f35b3480156104b157600080fd5b506104ba6110ff565b6040516104c7919061227a565b60405180910390f35b3480156104dc57600080fd5b506104e5611191565b6040516104f29190612340565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d919061261b565b6111b7565b005b34801561053057600080fd5b506105396112c2565b60405161054691906123d6565b60405180910390f35b34801561055b57600080fd5b506105646112d1565b60405161057191906121cf565b60405180910390f35b610594600480360381019061058f91906126fc565b6112de565b005b3480156105a257600080fd5b506105bd60048036038101906105b891906122d2565b611351565b005b3480156105cb57600080fd5b506105d4611367565b6040516105e191906123d6565b60405180910390f35b3480156105f657600080fd5b50610611600480360381019061060c91906122d2565b61136d565b60405161061e919061227a565b60405180910390f35b34801561063357600080fd5b5061063c61140b565b60405161064991906123d6565b60405180910390f35b34801561065e57600080fd5b5061066761141a565b60405161067491906127de565b60405180910390f35b34801561068957600080fd5b50610692611440565b60405161069f919061227a565b60405180910390f35b3480156106b457600080fd5b506106cf60048036038101906106ca91906127f9565b6114d2565b6040516106dc91906121cf565b60405180910390f35b3480156106f157600080fd5b5061070c600480360381019061070791906125c2565b611566565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107995750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546107af90612868565b80601f01602080910402602001604051908101604052809291908181526020018280546107db90612868565b80156108285780601f106107fd57610100808354040283529160200191610828565b820191906000526020600020905b81548152906001019060200180831161080b57829003601f168201915b5050505050905090565b600061083d826115e9565b610873576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108bc82610ff8565b90508073ffffffffffffffffffffffffffffffffffffffff166108dd611648565b73ffffffffffffffffffffffffffffffffffffffff16146109405761090981610904611648565b6114d2565b61093f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610a2d610a28611650565b611658565b14610a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a64906128e5565b60405180910390fd5b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231610ab5611650565b6040518263ffffffff1660e01b8152600401610ad19190612340565b602060405180830381865afa158015610aee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b12919061291a565b9050610b25610b1f611650565b826116af565b50565b6000610b326116cd565b6002546001540303905090565b6000610b4a826116d6565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bb1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610bbd846117a2565b91509150610bd38187610bce611648565b6117c9565b610c1f57610be886610be3611648565b6114d2565b610c1e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c85576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c92868686600161180d565b8015610c9d57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d6b85610d47888887611813565b7c02000000000000000000000000000000000000000000000000000000001761183b565b600560008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610df15760006001850190506000600560008381526020019081526020016000205403610def576001548114610dee578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e598686866001611866565b505050505050565b60006611c37937e0800082610e769190612976565b9050919050565b610e8561186c565b80600a9081610e949190612b5a565b5050565b610ea061186c565b610ea86118ea565b600047905060008111610ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee790612c78565b60405180910390fd5b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610f3890612cc9565b60006040518083038185875af1925050503d8060008114610f75576040519150601f19603f3d011682016040523d82523d6000602084013e610f7a565b606091505b5050905080610fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb590612d2a565b60405180910390fd5b5050610fc8611939565b565b610fe5838383604051806020016040528060008152506112de565b505050565b610ff5816001611943565b50565b6000611003826116d6565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611071576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110ca61186c565b6110d46000611b95565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461110e90612868565b80601f016020809104026020016040519081016040528092919081815260200182805461113a90612868565b80156111875780601f1061115c57610100808354040283529160200191611187565b820191906000526020600020905b81548152906001019060200180831161116a57829003601f168201915b5050505050905090565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b80600860006111c4611648565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611271611648565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112b691906121cf565b60405180910390a35050565b60006112cc611c59565b905090565b6000600c54421015905090565b6112e9848484610b3f565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461134b5761131484848484611c6c565b61134a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61135961186c565b611364816000611943565b50565b600c5481565b6060611378826115e9565b6113ae576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006113b8611dbc565b905060008151036113d85760405180602001604052806000815250611403565b806113e284611e4e565b6040516020016113f3929190612d86565b6040516020818303038152906040525b915050919050565b6000611415611e9e565b905090565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600a805461144f90612868565b80601f016020809104026020016040519081016040528092919081815260200182805461147b90612868565b80156114c85780601f1061149d576101008083540402835291602001916114c8565b820191906000526020600020905b8154815290600101906020018083116114ab57829003601f168201915b5050505050905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61156e61186c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d490612e1c565b60405180910390fd5b6115e681611b95565b50565b6000816115f46116cd565b11158015611603575060015482105b8015611641575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6116c9828260405180602001604052806000815250611ea8565b5050565b60006001905090565b600080829050806116e56116cd565b1161176b5760015481101561176a5760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611768575b6000810361175e576005600083600190039350838152602001908152602001600020549050611734565b809250505061179d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861182a868684611f46565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611874611650565b73ffffffffffffffffffffffffffffffffffffffff166118926110d6565b73ffffffffffffffffffffffffffffffffffffffff16146118e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118df90612e88565b60405180910390fd5b565b60026009540361192f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192690612ef4565b60405180910390fd5b6002600981905550565b6001600981905550565b600061194e836116d6565b90506000819050600080611961866117a2565b9150915084156119ca5761197d8184611978611648565b6117c9565b6119c9576119928361198d611648565b6114d2565b6119c8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b6119d883600088600161180d565b80156119e357600082555b600160806001901b03600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611a8b83611a4885600088611813565b7c02000000000000000000000000000000000000000000000000000000007c0100000000000000000000000000000000000000000000000000000000171761183b565b600560008881526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000851603611b115760006001870190506000600560008381526020019081526020016000205403611b0f576001548114611b0e578460056000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b7b836000886001611866565b600260008154809291906001019190505550505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611c636116cd565b60015403905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c92611648565b8786866040518563ffffffff1660e01b8152600401611cb49493929190612f69565b6020604051808303816000875af1925050508015611cf057506040513d601f19601f82011682018060405250810190611ced9190612fca565b60015b611d69573d8060008114611d20576040519150601f19603f3d011682016040523d82523d6000602084013e611d25565b606091505b506000815103611d61576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611dcb90612868565b80601f0160208091040260200160405190810160405280929190818152602001828054611df790612868565b8015611e445780601f10611e1957610100808354040283529160200191611e44565b820191906000526020600020905b815481529060010190602001808311611e2757829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611e8957600184039350600a81066030018453600a8104905080611e67575b50828103602084039350808452505050919050565b6000600254905090565b611eb28383611f4f565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611f415760006001549050600083820390505b611ef36000868380600101945086611c6c565b611f29576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ee0578160015414611f3e57600080fd5b50505b505050565b60009392505050565b6000600154905060008203611f90576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f9d600084838561180d565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612014836120056000866000611813565b61200e8561210b565b1761183b565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146120b557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061207a565b50600082036120f0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060018190555050506121066000848385611866565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6121648161212f565b811461216f57600080fd5b50565b6000813590506121818161215b565b92915050565b60006020828403121561219d5761219c612125565b5b60006121ab84828501612172565b91505092915050565b60008115159050919050565b6121c9816121b4565b82525050565b60006020820190506121e460008301846121c0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612224578082015181840152602081019050612209565b60008484015250505050565b6000601f19601f8301169050919050565b600061224c826121ea565b61225681856121f5565b9350612266818560208601612206565b61226f81612230565b840191505092915050565b600060208201905081810360008301526122948184612241565b905092915050565b6000819050919050565b6122af8161229c565b81146122ba57600080fd5b50565b6000813590506122cc816122a6565b92915050565b6000602082840312156122e8576122e7612125565b5b60006122f6848285016122bd565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061232a826122ff565b9050919050565b61233a8161231f565b82525050565b60006020820190506123556000830184612331565b92915050565b6123648161231f565b811461236f57600080fd5b50565b6000813590506123818161235b565b92915050565b6000806040838503121561239e5761239d612125565b5b60006123ac85828601612372565b92505060206123bd858286016122bd565b9150509250929050565b6123d08161229c565b82525050565b60006020820190506123eb60008301846123c7565b92915050565b60008060006060848603121561240a57612409612125565b5b600061241886828701612372565b935050602061242986828701612372565b925050604061243a868287016122bd565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61248682612230565b810181811067ffffffffffffffff821117156124a5576124a461244e565b5b80604052505050565b60006124b861211b565b90506124c4828261247d565b919050565b600067ffffffffffffffff8211156124e4576124e361244e565b5b6124ed82612230565b9050602081019050919050565b82818337600083830152505050565b600061251c612517846124c9565b6124ae565b90508281526020810184848401111561253857612537612449565b5b6125438482856124fa565b509392505050565b600082601f8301126125605761255f612444565b5b8135612570848260208601612509565b91505092915050565b60006020828403121561258f5761258e612125565b5b600082013567ffffffffffffffff8111156125ad576125ac61212a565b5b6125b98482850161254b565b91505092915050565b6000602082840312156125d8576125d7612125565b5b60006125e684828501612372565b91505092915050565b6125f8816121b4565b811461260357600080fd5b50565b600081359050612615816125ef565b92915050565b6000806040838503121561263257612631612125565b5b600061264085828601612372565b925050602061265185828601612606565b9150509250929050565b600067ffffffffffffffff8211156126765761267561244e565b5b61267f82612230565b9050602081019050919050565b600061269f61269a8461265b565b6124ae565b9050828152602081018484840111156126bb576126ba612449565b5b6126c68482856124fa565b509392505050565b600082601f8301126126e3576126e2612444565b5b81356126f384826020860161268c565b91505092915050565b6000806000806080858703121561271657612715612125565b5b600061272487828801612372565b945050602061273587828801612372565b9350506040612746878288016122bd565b925050606085013567ffffffffffffffff8111156127675761276661212a565b5b612773878288016126ce565b91505092959194509250565b6000819050919050565b60006127a461279f61279a846122ff565b61277f565b6122ff565b9050919050565b60006127b682612789565b9050919050565b60006127c8826127ab565b9050919050565b6127d8816127bd565b82525050565b60006020820190506127f360008301846127cf565b92915050565b600080604083850312156128105761280f612125565b5b600061281e85828601612372565b925050602061282f85828601612372565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061288057607f821691505b60208210810361289357612892612839565b5b50919050565b7f596f7520616c7265616479206d696e7465640000000000000000000000000000600082015250565b60006128cf6012836121f5565b91506128da82612899565b602082019050919050565b600060208201905081810360008301526128fe816128c2565b9050919050565b600081519050612914816122a6565b92915050565b6000602082840312156129305761292f612125565b5b600061293e84828501612905565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006129818261229c565b915061298c8361229c565b925082820261299a8161229c565b915082820484148315176129b1576129b0612947565b5b5092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612a1a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826129dd565b612a2486836129dd565b95508019841693508086168417925050509392505050565b6000612a57612a52612a4d8461229c565b61277f565b61229c565b9050919050565b6000819050919050565b612a7183612a3c565b612a85612a7d82612a5e565b8484546129ea565b825550505050565b600090565b612a9a612a8d565b612aa5818484612a68565b505050565b5b81811015612ac957612abe600082612a92565b600181019050612aab565b5050565b601f821115612b0e57612adf816129b8565b612ae8846129cd565b81016020851015612af7578190505b612b0b612b03856129cd565b830182612aaa565b50505b505050565b600082821c905092915050565b6000612b3160001984600802612b13565b1980831691505092915050565b6000612b4a8383612b20565b9150826002028217905092915050565b612b63826121ea565b67ffffffffffffffff811115612b7c57612b7b61244e565b5b612b868254612868565b612b91828285612acd565b600060209050601f831160018114612bc45760008415612bb2578287015190505b612bbc8582612b3e565b865550612c24565b601f198416612bd2866129b8565b60005b82811015612bfa57848901518255600182019150602085019450602081019050612bd5565b86831015612c175784890151612c13601f891682612b20565b8355505b6001600288020188555050505b505050505050565b7f4e4f5448494e475f544f5f574954484452415700000000000000000000000000600082015250565b6000612c626013836121f5565b9150612c6d82612c2c565b602082019050919050565b60006020820190508181036000830152612c9181612c55565b9050919050565b600081905092915050565b50565b6000612cb3600083612c98565b9150612cbe82612ca3565b600082019050919050565b6000612cd482612ca6565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612d146010836121f5565b9150612d1f82612cde565b602082019050919050565b60006020820190508181036000830152612d4381612d07565b9050919050565b600081905092915050565b6000612d60826121ea565b612d6a8185612d4a565b9350612d7a818560208601612206565b80840191505092915050565b6000612d928285612d55565b9150612d9e8284612d55565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e066026836121f5565b9150612e1182612daa565b604082019050919050565b60006020820190508181036000830152612e3581612df9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612e726020836121f5565b9150612e7d82612e3c565b602082019050919050565b60006020820190508181036000830152612ea181612e65565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612ede601f836121f5565b9150612ee982612ea8565b602082019050919050565b60006020820190508181036000830152612f0d81612ed1565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612f3b82612f14565b612f458185612f1f565b9350612f55818560208601612206565b612f5e81612230565b840191505092915050565b6000608082019050612f7e6000830187612331565b612f8b6020830186612331565b612f9860408301856123c7565b8181036060830152612faa8184612f30565b905095945050505050565b600081519050612fc48161215b565b92915050565b600060208284031215612fe057612fdf612125565b5b6000612fee84828501612fb5565b9150509291505056fea264697066735822122036ba9444e662ee685b76f2b55b586587b281d2f179c28eb86dfe55681bebcc2064736f6c63430008110033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000005987106a9a4213c1a826756213e26af5395d984b0000000000000000000000007007aeeac69204505a91acdc7ee0afd84a011edf

-----Decoded View---------------
Arg [0] : preminter (address): 0x5987106A9a4213C1A826756213E26AF5395d984B
Arg [1] : vault (address): 0x7007aeeAc69204505A91aCdC7Ee0aFd84A011EDf

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000005987106a9a4213c1a826756213e26af5395d984b
Arg [1] : 0000000000000000000000007007aeeac69204505a91acdc7ee0afd84a011edf


Deployed Bytecode Sourcemap

57513:2396:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19023:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19925:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26416:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25849:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57830:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58800:215;;;;;;;;;;;;;:::i;:::-;;15676:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30055:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58681:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59345:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59472:331;;;;;;;;;;;;;:::i;:::-;;32976:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59025:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21318:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16860:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56549:103;;;;;;;;;;;;;:::i;:::-;;55901:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20101:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57870:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26974:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59112:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58516:105;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33767:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59811:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57796:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20311:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59215:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57759:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58408:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27365:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56807:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19023:639;19108:4;19447:10;19432:25;;:11;:25;;;;:102;;;;19524:10;19509:25;;:11;:25;;;;19432:102;:179;;;;19601:10;19586:25;;:11;:25;;;;19432:179;19412:199;;19023:639;;;:::o;19925:100::-;19979:13;20012:5;20005:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19925:100;:::o;26416:218::-;26492:7;26517:16;26525:7;26517;:16::i;:::-;26512:64;;26542:34;;;;;;;;;;;;;;26512:64;26596:15;:24;26612:7;26596:24;;;;;;;;;;;:30;;;;;;;;;;;;26589:37;;26416:218;;;:::o;25849:408::-;25938:13;25954:16;25962:7;25954;:16::i;:::-;25938:32;;26010:5;25987:28;;:19;:17;:19::i;:::-;:28;;;25983:175;;26035:44;26052:5;26059:19;:17;:19::i;:::-;26035:16;:44::i;:::-;26030:128;;26107:35;;;;;;;;;;;;;;26030:128;25983:175;26203:2;26170:15;:24;26186:7;26170:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;26241:7;26237:2;26221:28;;26230:5;26221:28;;;;;;;;;;;;25927:330;25849:408;;:::o;57830:31::-;;;;;;;;;;;;;:::o;58800:215::-;58875:1;58844:27;58858:12;:10;:12::i;:::-;58844:13;:27::i;:::-;:32;58836:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;58910:16;58929:10;;;;;;;;;;;:20;;;58950:12;:10;:12::i;:::-;58929:34;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58910:53;;58974:33;58984:12;:10;:12::i;:::-;58998:8;58974:9;:33::i;:::-;58825:190;58800:215::o;15676:323::-;15737:7;15965:15;:13;:15::i;:::-;15950:12;;15934:13;;:28;:46;15927:53;;15676:323;:::o;30055:2825::-;30197:27;30227;30246:7;30227:18;:27::i;:::-;30197:57;;30312:4;30271:45;;30287:19;30271:45;;;30267:86;;30325:28;;;;;;;;;;;;;;30267:86;30367:27;30396:23;30423:35;30450:7;30423:26;:35::i;:::-;30366:92;;;;30558:68;30583:15;30600:4;30606:19;:17;:19::i;:::-;30558:24;:68::i;:::-;30553:180;;30646:43;30663:4;30669:19;:17;:19::i;:::-;30646:16;:43::i;:::-;30641:92;;30698:35;;;;;;;;;;;;;;30641:92;30553:180;30764:1;30750:16;;:2;:16;;;30746:52;;30775:23;;;;;;;;;;;;;;30746:52;30811:43;30833:4;30839:2;30843:7;30852:1;30811:21;:43::i;:::-;30947:15;30944:160;;;31087:1;31066:19;31059:30;30944:160;31484:18;:24;31503:4;31484:24;;;;;;;;;;;;;;;;31482:26;;;;;;;;;;;;31553:18;:22;31572:2;31553:22;;;;;;;;;;;;;;;;31551:24;;;;;;;;;;;31875:146;31912:2;31961:45;31976:4;31982:2;31986:19;31961:14;:45::i;:::-;12075:8;31933:73;31875:18;:146::i;:::-;31846:17;:26;31864:7;31846:26;;;;;;;;;;;:175;;;;32192:1;12075:8;32141:19;:47;:52;32137:627;;32214:19;32246:1;32236:7;:11;32214:33;;32403:1;32369:17;:30;32387:11;32369:30;;;;;;;;;;;;:35;32365:384;;32507:13;;32492:11;:28;32488:242;;32687:19;32654:17;:30;32672:11;32654:30;;;;;;;;;;;:52;;;;32488:242;32365:384;32195:569;32137:627;32811:7;32807:2;32792:27;;32801:4;32792:27;;;;;;;;;;;;32830:42;32851:4;32857:2;32861:7;32870:1;32830:20;:42::i;:::-;30186:2694;;;30055:2825;;;:::o;58681:111::-;58735:7;58773:11;58762:8;:22;;;;:::i;:::-;58755:29;;58681:111;;;:::o;59345:119::-;55787:13;:11;:13::i;:::-;59444:12:::1;59428:13;:28;;;;;;:::i;:::-;;59345:119:::0;:::o;59472:331::-;55787:13;:11;:13::i;:::-;54223:21:::1;:19;:21::i;:::-;59535:15:::2;59553:21;59535:39;;59603:1;59593:7;:11;59585:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;59642:12;59668:16;;;;;;;;;;;59660:30;;59712:21;59660:88;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59641:107;;;59767:7;59759:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;59524:279;;54267:20:::1;:18;:20::i;:::-;59472:331::o:0;32976:193::-;33122:39;33139:4;33145:2;33149:7;33122:39;;;;;;;;;;;;:16;:39::i;:::-;32976:193;;;:::o;59025:79::-;59076:20;59082:7;59091:4;59076:5;:20::i;:::-;59025:79;:::o;21318:152::-;21390:7;21433:27;21452:7;21433:18;:27::i;:::-;21410:52;;21318:152;;;:::o;16860:233::-;16932:7;16973:1;16956:19;;:5;:19;;;16952:60;;16984:28;;;;;;;;;;;;;;16952:60;11019:13;17030:18;:25;17049:5;17030:25;;;;;;;;;;;;;;;;:55;17023:62;;16860:233;;;:::o;56549:103::-;55787:13;:11;:13::i;:::-;56614:30:::1;56641:1;56614:18;:30::i;:::-;56549:103::o:0;55901:87::-;55947:7;55974:6;;;;;;;;;;;55967:13;;55901:87;:::o;20101:104::-;20157:13;20190:7;20183:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20101:104;:::o;57870:30::-;;;;;;;;;;;;;:::o;26974:234::-;27121:8;27069:18;:39;27088:19;:17;:19::i;:::-;27069:39;;;;;;;;;;;;;;;:49;27109:8;27069:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;27181:8;27145:55;;27160:19;:17;:19::i;:::-;27145:55;;;27191:8;27145:55;;;;;;:::i;:::-;;;;;;;;26974:234;;:::o;59112:95::-;59158:7;59185:14;:12;:14::i;:::-;59178:21;;59112:95;:::o;58516:105::-;58560:4;58603:10;;58584:15;:29;;58577:36;;58516:105;:::o;33767:407::-;33942:31;33955:4;33961:2;33965:7;33942:12;:31::i;:::-;34006:1;33988:2;:14;;;:19;33984:183;;34027:56;34058:4;34064:2;34068:7;34077:5;34027:30;:56::i;:::-;34022:145;;34111:40;;;;;;;;;;;;;;34022:145;33984:183;33767:407;;;;:::o;59811:95::-;55787:13;:11;:13::i;:::-;59877:21:::1;59883:7;59892:5;59877;:21::i;:::-;59811:95:::0;:::o;57796:25::-;;;;:::o;20311:318::-;20384:13;20415:16;20423:7;20415;:16::i;:::-;20410:59;;20440:29;;;;;;;;;;;;;;20410:59;20482:21;20506:10;:8;:10::i;:::-;20482:34;;20559:1;20540:7;20534:21;:26;:87;;;;;;;;;;;;;;;;;20587:7;20596:18;20606:7;20596:9;:18::i;:::-;20570:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20534:87;20527:94;;;20311:318;;;:::o;59215:95::-;59261:7;59288:14;:12;:14::i;:::-;59281:21;;59215:95;:::o;57759:28::-;;;;;;;;;;;;;:::o;58408:100::-;58454:13;58487;58480:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58408:100;:::o;27365:164::-;27462:4;27486:18;:25;27505:5;27486:25;;;;;;;;;;;;;;;:35;27512:8;27486:35;;;;;;;;;;;;;;;;;;;;;;;;;27479:42;;27365:164;;;;:::o;56807:201::-;55787:13;:11;:13::i;:::-;56916:1:::1;56896:22;;:8;:22;;::::0;56888:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;56972:28;56991:8;56972:18;:28::i;:::-;56807:201:::0;:::o;27787:282::-;27852:4;27908:7;27889:15;:13;:15::i;:::-;:26;;:66;;;;;27942:13;;27932:7;:23;27889:66;:153;;;;;28041:1;11795:8;27993:17;:26;28011:7;27993:26;;;;;;;;;;;;:44;:49;27889:153;27869:173;;27787:282;;;:::o;50095:105::-;50155:7;50182:10;50175:17;;50095:105;:::o;9542:98::-;9595:7;9622:10;9615:17;;9542:98;:::o;17175:178::-;17236:7;11019:13;11157:2;17264:18;:25;17283:5;17264:25;;;;;;;;;;;;;;;;:50;;17263:82;17256:89;;17175:178;;;:::o;43927:112::-;44004:27;44014:2;44018:8;44004:27;;;;;;;;;;;;:9;:27::i;:::-;43927:112;;:::o;58193:93::-;58250:7;58277:1;58270:8;;58193:93;:::o;22473:1275::-;22540:7;22560:12;22575:7;22560:22;;22643:4;22624:15;:13;:15::i;:::-;:23;22620:1061;;22677:13;;22670:4;:20;22666:1015;;;22715:14;22732:17;:23;22750:4;22732:23;;;;;;;;;;;;22715:40;;22849:1;11795:8;22821:6;:24;:29;22817:845;;23486:113;23503:1;23493:6;:11;23486:113;;23546:17;:25;23564:6;;;;;;;23546:25;;;;;;;;;;;;23537:34;;23486:113;;;23632:6;23625:13;;;;;;22817:845;22692:989;22666:1015;22620:1061;23709:31;;;;;;;;;;;;;;22473:1275;;;;:::o;28950:485::-;29052:27;29081:23;29122:38;29163:15;:24;29179:7;29163:24;;;;;;;;;;;29122:65;;29340:18;29317:41;;29397:19;29391:26;29372:45;;29302:126;28950:485;;;:::o;28178:659::-;28327:11;28492:16;28485:5;28481:28;28472:37;;28652:16;28641:9;28637:32;28624:45;;28802:15;28791:9;28788:30;28780:5;28769:9;28766:20;28763:56;28753:66;;28178:659;;;;;:::o;34836:159::-;;;;;:::o;49404:311::-;49539:7;49559:16;12199:3;49585:19;:41;;49559:68;;12199:3;49653:31;49664:4;49670:2;49674:9;49653:10;:31::i;:::-;49645:40;;:62;;49638:69;;;49404:311;;;;;:::o;24296:450::-;24376:14;24544:16;24537:5;24533:28;24524:37;;24721:5;24707:11;24682:23;24678:41;24675:52;24668:5;24665:63;24655:73;;24296:450;;;;:::o;35660:158::-;;;;;:::o;56066:132::-;56141:12;:10;:12::i;:::-;56130:23;;:7;:5;:7::i;:::-;:23;;;56122:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56066:132::o;54303:293::-;53705:1;54437:7;;:19;54429:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;53705:1;54570:7;:18;;;;54303:293::o;54604:213::-;53661:1;54787:7;:22;;;;54604:213::o;44624:3081::-;44704:27;44734;44753:7;44734:18;:27::i;:::-;44704:57;;44774:12;44805:19;44774:52;;44840:27;44869:23;44896:35;44923:7;44896:26;:35::i;:::-;44839:92;;;;44948:13;44944:316;;;45069:68;45094:15;45111:4;45117:19;:17;:19::i;:::-;45069:24;:68::i;:::-;45064:184;;45161:43;45178:4;45184:19;:17;:19::i;:::-;45161:16;:43::i;:::-;45156:92;;45213:35;;;;;;;;;;;;;;45156:92;45064:184;44944:316;45272:51;45294:4;45308:1;45312:7;45321:1;45272:21;:51::i;:::-;45416:15;45413:160;;;45556:1;45535:19;45528:30;45413:160;46234:1;11284:3;46204:1;:26;;46203:32;46175:18;:24;46194:4;46175:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;46502:176;46539:4;46610:53;46625:4;46639:1;46643:19;46610:14;:53::i;:::-;12075:8;11795;46563:43;46562:101;46502:18;:176::i;:::-;46473:17;:26;46491:7;46473:26;;;;;;;;;;;:205;;;;46849:1;12075:8;46798:19;:47;:52;46794:627;;46871:19;46903:1;46893:7;:11;46871:33;;47060:1;47026:17;:30;47044:11;47026:30;;;;;;;;;;;;:35;47022:384;;47164:13;;47149:11;:28;47145:242;;47344:19;47311:17;:30;47329:11;47311:30;;;;;;;;;;;:52;;;;47145:242;47022:384;46852:569;46794:627;47476:7;47472:1;47449:35;;47458:4;47449:35;;;;;;;;;;;;47495:50;47516:4;47530:1;47534:7;47543:1;47495:20;:50::i;:::-;47672:12;;:14;;;;;;;;;;;;;44693:3012;;;;44624:3081;;:::o;57168:191::-;57242:16;57261:6;;;;;;;;;;;57242:25;;57287:8;57278:6;;:17;;;;;;;;;;;;;;;;;;57342:8;57311:40;;57332:8;57311:40;;;;;;;;;;;;57231:128;57168:191;:::o;16097:296::-;16152:7;16359:15;:13;:15::i;:::-;16343:13;;:31;16336:38;;16097:296;:::o;36258:716::-;36421:4;36467:2;36442:45;;;36488:19;:17;:19::i;:::-;36509:4;36515:7;36524:5;36442:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36438:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36742:1;36725:6;:13;:18;36721:235;;36771:40;;;;;;;;;;;;;;36721:235;36914:6;36908:13;36899:6;36895:2;36891:15;36884:38;36438:529;36611:54;;;36601:64;;;:6;:64;;;;36594:71;;;36258:716;;;;;;:::o;58294:106::-;58346:13;58379;58372:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58294:106;:::o;50302:1745::-;50367:17;50801:4;50794;50788:11;50784:22;50893:1;50887:4;50880:15;50968:4;50965:1;50961:12;50954:19;;51050:1;51045:3;51038:14;51154:3;51393:5;51375:428;51401:1;51375:428;;;51441:1;51436:3;51432:11;51425:18;;51612:2;51606:4;51602:13;51598:2;51594:22;51589:3;51581:36;51706:2;51700:4;51696:13;51688:21;;51773:4;51375:428;51763:25;51375:428;51379:21;51842:3;51837;51833:13;51957:4;51952:3;51948:14;51941:21;;52022:6;52017:3;52010:19;50406:1634;;;50302:1745;;;:::o;16475:102::-;16530:7;16557:12;;16550:19;;16475:102;:::o;43154:689::-;43285:19;43291:2;43295:8;43285:5;:19::i;:::-;43364:1;43346:2;:14;;;:19;43342:483;;43386:11;43400:13;;43386:27;;43432:13;43454:8;43448:3;:14;43432:30;;43481:233;43512:62;43551:1;43555:2;43559:7;;;;;;43568:5;43512:30;:62::i;:::-;43507:167;;43610:40;;;;;;;;;;;;;;43507:167;43709:3;43701:5;:11;43481:233;;43796:3;43779:13;;:20;43775:34;;43801:8;;;43775:34;43367:458;;43342:483;43154:689;;;:::o;49105:147::-;49242:6;49105:147;;;;;:::o;37436:2966::-;37509:20;37532:13;;37509:36;;37572:1;37560:8;:13;37556:44;;37582:18;;;;;;;;;;;;;;37556:44;37613:61;37643:1;37647:2;37651:12;37665:8;37613:21;:61::i;:::-;38157:1;11157:2;38127:1;:26;;38126:32;38114:8;:45;38088:18;:22;38107:2;38088:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;38436:139;38473:2;38527:33;38550:1;38554:2;38558:1;38527:14;:33::i;:::-;38494:30;38515:8;38494:20;:30::i;:::-;:66;38436:18;:139::i;:::-;38402:17;:31;38420:12;38402:31;;;;;;;;;;;:173;;;;38592:16;38623:11;38652:8;38637:12;:23;38623:37;;39173:16;39169:2;39165:25;39153:37;;39545:12;39505:8;39464:1;39402:25;39343:1;39282;39255:335;39916:1;39902:12;39898:20;39856:346;39957:3;39948:7;39945:16;39856:346;;40175:7;40165:8;40162:1;40135:25;40132:1;40129;40124:59;40010:1;40001:7;39997:15;39986:26;;39856:346;;;39860:77;40247:1;40235:8;:13;40231:45;;40257:19;;;;;;;;;;;;;;40231:45;40309:3;40293:13;:19;;;;37862:2462;;40334:60;40363:1;40367:2;40371:12;40385:8;40334:20;:60::i;:::-;37498:2904;37436:2966;;:::o;24848:324::-;24918:14;25151:1;25141:8;25138:15;25112:24;25108:46;25098:56;;24848:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242: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:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:180;6161:77;6158:1;6151:88;6258:4;6255:1;6248:15;6282:4;6279:1;6272:15;6299:281;6382:27;6404:4;6382:27;:::i;:::-;6374:6;6370:40;6512:6;6500:10;6497:22;6476:18;6464:10;6461:34;6458:62;6455:88;;;6523:18;;:::i;:::-;6455:88;6563:10;6559:2;6552:22;6342:238;6299:281;;:::o;6586:129::-;6620:6;6647:20;;:::i;:::-;6637:30;;6676:33;6704:4;6696:6;6676:33;:::i;:::-;6586:129;;;:::o;6721:308::-;6783:4;6873:18;6865:6;6862:30;6859:56;;;6895:18;;:::i;:::-;6859:56;6933:29;6955:6;6933:29;:::i;:::-;6925:37;;7017:4;7011;7007:15;6999:23;;6721:308;;;:::o;7035:146::-;7132:6;7127:3;7122;7109:30;7173:1;7164:6;7159:3;7155:16;7148:27;7035:146;;;:::o;7187:425::-;7265:5;7290:66;7306:49;7348:6;7306:49;:::i;:::-;7290:66;:::i;:::-;7281:75;;7379:6;7372:5;7365:21;7417:4;7410:5;7406:16;7455:3;7446:6;7441:3;7437:16;7434:25;7431:112;;;7462:79;;:::i;:::-;7431:112;7552:54;7599:6;7594:3;7589;7552:54;:::i;:::-;7271:341;7187:425;;;;;:::o;7632:340::-;7688:5;7737:3;7730:4;7722:6;7718:17;7714:27;7704:122;;7745:79;;:::i;:::-;7704:122;7862:6;7849:20;7887:79;7962:3;7954:6;7947:4;7939:6;7935:17;7887:79;:::i;:::-;7878:88;;7694:278;7632:340;;;;:::o;7978:509::-;8047:6;8096:2;8084:9;8075:7;8071:23;8067:32;8064:119;;;8102:79;;:::i;:::-;8064:119;8250:1;8239:9;8235:17;8222:31;8280:18;8272:6;8269:30;8266:117;;;8302:79;;:::i;:::-;8266:117;8407:63;8462:7;8453:6;8442:9;8438:22;8407:63;:::i;:::-;8397:73;;8193:287;7978:509;;;;:::o;8493:329::-;8552:6;8601:2;8589:9;8580:7;8576:23;8572:32;8569:119;;;8607:79;;:::i;:::-;8569:119;8727:1;8752:53;8797:7;8788:6;8777:9;8773:22;8752:53;:::i;:::-;8742:63;;8698:117;8493:329;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:60::-;11639:3;11660:5;11653:12;;11611:60;;;:::o;11677:142::-;11727:9;11760:53;11778:34;11787:24;11805:5;11787:24;:::i;:::-;11778:34;:::i;:::-;11760:53;:::i;:::-;11747:66;;11677:142;;;:::o;11825:126::-;11875:9;11908:37;11939:5;11908:37;:::i;:::-;11895:50;;11825:126;;;:::o;11957:145::-;12026:9;12059:37;12090:5;12059:37;:::i;:::-;12046:50;;11957:145;;;:::o;12108:169::-;12214:56;12264:5;12214:56;:::i;:::-;12209:3;12202:69;12108:169;;:::o;12283:260::-;12395:4;12433:2;12422:9;12418:18;12410:26;;12446:90;12533:1;12522:9;12518:17;12509:6;12446:90;:::i;:::-;12283:260;;;;:::o;12549:474::-;12617:6;12625;12674:2;12662:9;12653:7;12649:23;12645:32;12642:119;;;12680:79;;:::i;:::-;12642:119;12800:1;12825:53;12870:7;12861:6;12850:9;12846:22;12825:53;:::i;:::-;12815:63;;12771:117;12927:2;12953:53;12998:7;12989:6;12978:9;12974:22;12953:53;:::i;:::-;12943:63;;12898:118;12549:474;;;;;:::o;13029:180::-;13077:77;13074:1;13067:88;13174:4;13171:1;13164:15;13198:4;13195:1;13188:15;13215:320;13259:6;13296:1;13290:4;13286:12;13276:22;;13343:1;13337:4;13333:12;13364:18;13354:81;;13420:4;13412:6;13408:17;13398:27;;13354:81;13482:2;13474:6;13471:14;13451:18;13448:38;13445:84;;13501:18;;:::i;:::-;13445:84;13266:269;13215:320;;;:::o;13541:168::-;13681:20;13677:1;13669:6;13665:14;13658:44;13541:168;:::o;13715:366::-;13857:3;13878:67;13942:2;13937:3;13878:67;:::i;:::-;13871:74;;13954:93;14043:3;13954:93;:::i;:::-;14072:2;14067:3;14063:12;14056:19;;13715:366;;;:::o;14087:419::-;14253:4;14291:2;14280:9;14276:18;14268:26;;14340:9;14334:4;14330:20;14326:1;14315:9;14311:17;14304:47;14368:131;14494:4;14368:131;:::i;:::-;14360:139;;14087:419;;;:::o;14512:143::-;14569:5;14600:6;14594:13;14585:22;;14616:33;14643:5;14616:33;:::i;:::-;14512:143;;;;:::o;14661:351::-;14731:6;14780:2;14768:9;14759:7;14755:23;14751:32;14748:119;;;14786:79;;:::i;:::-;14748:119;14906:1;14931:64;14987:7;14978:6;14967:9;14963:22;14931:64;:::i;:::-;14921:74;;14877:128;14661:351;;;;:::o;15018:180::-;15066:77;15063:1;15056:88;15163:4;15160:1;15153:15;15187:4;15184:1;15177:15;15204:410;15244:7;15267:20;15285:1;15267:20;:::i;:::-;15262:25;;15301:20;15319:1;15301:20;:::i;:::-;15296:25;;15356:1;15353;15349:9;15378:30;15396:11;15378:30;:::i;:::-;15367:41;;15557:1;15548:7;15544:15;15541:1;15538:22;15518:1;15511:9;15491:83;15468:139;;15587:18;;:::i;:::-;15468:139;15252:362;15204:410;;;;:::o;15620:141::-;15669:4;15692:3;15684:11;;15715:3;15712:1;15705:14;15749:4;15746:1;15736:18;15728:26;;15620:141;;;:::o;15767:93::-;15804:6;15851:2;15846;15839:5;15835:14;15831:23;15821:33;;15767:93;;;:::o;15866:107::-;15910:8;15960:5;15954:4;15950:16;15929:37;;15866:107;;;;:::o;15979:393::-;16048:6;16098:1;16086:10;16082:18;16121:97;16151:66;16140:9;16121:97;:::i;:::-;16239:39;16269:8;16258:9;16239:39;:::i;:::-;16227:51;;16311:4;16307:9;16300:5;16296:21;16287:30;;16360:4;16350:8;16346:19;16339:5;16336:30;16326:40;;16055:317;;15979:393;;;;;:::o;16378:142::-;16428:9;16461:53;16479:34;16488:24;16506:5;16488:24;:::i;:::-;16479:34;:::i;:::-;16461:53;:::i;:::-;16448:66;;16378:142;;;:::o;16526:75::-;16569:3;16590:5;16583:12;;16526:75;;;:::o;16607:269::-;16717:39;16748:7;16717:39;:::i;:::-;16778:91;16827:41;16851:16;16827:41;:::i;:::-;16819:6;16812:4;16806:11;16778:91;:::i;:::-;16772:4;16765:105;16683:193;16607:269;;;:::o;16882:73::-;16927:3;16882:73;:::o;16961:189::-;17038:32;;:::i;:::-;17079:65;17137:6;17129;17123:4;17079:65;:::i;:::-;17014:136;16961:189;;:::o;17156:186::-;17216:120;17233:3;17226:5;17223:14;17216:120;;;17287:39;17324:1;17317:5;17287:39;:::i;:::-;17260:1;17253:5;17249:13;17240:22;;17216:120;;;17156:186;;:::o;17348:543::-;17449:2;17444:3;17441:11;17438:446;;;17483:38;17515:5;17483:38;:::i;:::-;17567:29;17585:10;17567:29;:::i;:::-;17557:8;17553:44;17750:2;17738:10;17735:18;17732:49;;;17771:8;17756:23;;17732:49;17794:80;17850:22;17868:3;17850:22;:::i;:::-;17840:8;17836:37;17823:11;17794:80;:::i;:::-;17453:431;;17438:446;17348:543;;;:::o;17897:117::-;17951:8;18001:5;17995:4;17991:16;17970:37;;17897:117;;;;:::o;18020:169::-;18064:6;18097:51;18145:1;18141:6;18133:5;18130:1;18126:13;18097:51;:::i;:::-;18093:56;18178:4;18172;18168:15;18158:25;;18071:118;18020:169;;;;:::o;18194:295::-;18270:4;18416:29;18441:3;18435:4;18416:29;:::i;:::-;18408:37;;18478:3;18475:1;18471:11;18465:4;18462:21;18454:29;;18194:295;;;;:::o;18494:1395::-;18611:37;18644:3;18611:37;:::i;:::-;18713:18;18705:6;18702:30;18699:56;;;18735:18;;:::i;:::-;18699:56;18779:38;18811:4;18805:11;18779:38;:::i;:::-;18864:67;18924:6;18916;18910:4;18864:67;:::i;:::-;18958:1;18982:4;18969:17;;19014:2;19006:6;19003:14;19031:1;19026:618;;;;19688:1;19705:6;19702:77;;;19754:9;19749:3;19745:19;19739:26;19730:35;;19702:77;19805:67;19865:6;19858:5;19805:67;:::i;:::-;19799:4;19792:81;19661:222;18996:887;;19026:618;19078:4;19074:9;19066:6;19062:22;19112:37;19144:4;19112:37;:::i;:::-;19171:1;19185:208;19199:7;19196:1;19193:14;19185:208;;;19278:9;19273:3;19269:19;19263:26;19255:6;19248:42;19329:1;19321:6;19317:14;19307:24;;19376:2;19365:9;19361:18;19348:31;;19222:4;19219:1;19215:12;19210:17;;19185:208;;;19421:6;19412:7;19409:19;19406:179;;;19479:9;19474:3;19470:19;19464:26;19522:48;19564:4;19556:6;19552:17;19541:9;19522:48;:::i;:::-;19514:6;19507:64;19429:156;19406:179;19631:1;19627;19619:6;19615:14;19611:22;19605:4;19598:36;19033:611;;;18996:887;;18586:1303;;;18494:1395;;:::o;19895:169::-;20035:21;20031:1;20023:6;20019:14;20012:45;19895:169;:::o;20070:366::-;20212:3;20233:67;20297:2;20292:3;20233:67;:::i;:::-;20226:74;;20309:93;20398:3;20309:93;:::i;:::-;20427:2;20422:3;20418:12;20411:19;;20070:366;;;:::o;20442:419::-;20608:4;20646:2;20635:9;20631:18;20623:26;;20695:9;20689:4;20685:20;20681:1;20670:9;20666:17;20659:47;20723:131;20849:4;20723:131;:::i;:::-;20715:139;;20442:419;;;:::o;20867:147::-;20968:11;21005:3;20990:18;;20867:147;;;;:::o;21020:114::-;;:::o;21140:398::-;21299:3;21320:83;21401:1;21396:3;21320:83;:::i;:::-;21313:90;;21412:93;21501:3;21412:93;:::i;:::-;21530:1;21525:3;21521:11;21514:18;;21140:398;;;:::o;21544:379::-;21728:3;21750:147;21893:3;21750:147;:::i;:::-;21743:154;;21914:3;21907:10;;21544:379;;;:::o;21929:166::-;22069:18;22065:1;22057:6;22053:14;22046:42;21929:166;:::o;22101:366::-;22243:3;22264:67;22328:2;22323:3;22264:67;:::i;:::-;22257:74;;22340:93;22429:3;22340:93;:::i;:::-;22458:2;22453:3;22449:12;22442:19;;22101:366;;;:::o;22473:419::-;22639:4;22677:2;22666:9;22662:18;22654:26;;22726:9;22720:4;22716:20;22712:1;22701:9;22697:17;22690:47;22754:131;22880:4;22754:131;:::i;:::-;22746:139;;22473:419;;;:::o;22898:148::-;23000:11;23037:3;23022:18;;22898:148;;;;:::o;23052:390::-;23158:3;23186:39;23219:5;23186:39;:::i;:::-;23241:89;23323:6;23318:3;23241:89;:::i;:::-;23234:96;;23339:65;23397:6;23392:3;23385:4;23378:5;23374:16;23339:65;:::i;:::-;23429:6;23424:3;23420:16;23413:23;;23162:280;23052:390;;;;:::o;23448:435::-;23628:3;23650:95;23741:3;23732:6;23650:95;:::i;:::-;23643:102;;23762:95;23853:3;23844:6;23762:95;:::i;:::-;23755:102;;23874:3;23867:10;;23448:435;;;;;:::o;23889:225::-;24029:34;24025:1;24017:6;24013:14;24006:58;24098:8;24093:2;24085:6;24081:15;24074:33;23889:225;:::o;24120:366::-;24262:3;24283:67;24347:2;24342:3;24283:67;:::i;:::-;24276:74;;24359:93;24448:3;24359:93;:::i;:::-;24477:2;24472:3;24468:12;24461:19;;24120:366;;;:::o;24492:419::-;24658:4;24696:2;24685:9;24681:18;24673:26;;24745:9;24739:4;24735:20;24731:1;24720:9;24716:17;24709:47;24773:131;24899:4;24773:131;:::i;:::-;24765:139;;24492:419;;;:::o;24917:182::-;25057:34;25053:1;25045:6;25041:14;25034:58;24917:182;:::o;25105:366::-;25247:3;25268:67;25332:2;25327:3;25268:67;:::i;:::-;25261:74;;25344:93;25433:3;25344:93;:::i;:::-;25462:2;25457:3;25453:12;25446:19;;25105:366;;;:::o;25477:419::-;25643:4;25681:2;25670:9;25666:18;25658:26;;25730:9;25724:4;25720:20;25716:1;25705:9;25701:17;25694:47;25758:131;25884:4;25758:131;:::i;:::-;25750:139;;25477:419;;;:::o;25902:181::-;26042:33;26038:1;26030:6;26026:14;26019:57;25902:181;:::o;26089:366::-;26231:3;26252:67;26316:2;26311:3;26252:67;:::i;:::-;26245:74;;26328:93;26417:3;26328:93;:::i;:::-;26446:2;26441:3;26437:12;26430:19;;26089:366;;;:::o;26461:419::-;26627:4;26665:2;26654:9;26650:18;26642:26;;26714:9;26708:4;26704:20;26700:1;26689:9;26685:17;26678:47;26742:131;26868:4;26742:131;:::i;:::-;26734:139;;26461:419;;;:::o;26886:98::-;26937:6;26971:5;26965:12;26955:22;;26886:98;;;:::o;26990:168::-;27073:11;27107:6;27102:3;27095:19;27147:4;27142:3;27138:14;27123:29;;26990:168;;;;:::o;27164:373::-;27250:3;27278:38;27310:5;27278:38;:::i;:::-;27332:70;27395:6;27390:3;27332:70;:::i;:::-;27325:77;;27411:65;27469:6;27464:3;27457:4;27450:5;27446:16;27411:65;:::i;:::-;27501:29;27523:6;27501:29;:::i;:::-;27496:3;27492:39;27485:46;;27254:283;27164:373;;;;:::o;27543:640::-;27738:4;27776:3;27765:9;27761:19;27753:27;;27790:71;27858:1;27847:9;27843:17;27834:6;27790:71;:::i;:::-;27871:72;27939:2;27928:9;27924:18;27915:6;27871:72;:::i;:::-;27953;28021:2;28010:9;28006:18;27997:6;27953:72;:::i;:::-;28072:9;28066:4;28062:20;28057:2;28046:9;28042:18;28035:48;28100:76;28171:4;28162:6;28100:76;:::i;:::-;28092:84;;27543:640;;;;;;;:::o;28189:141::-;28245:5;28276:6;28270:13;28261:22;;28292:32;28318:5;28292:32;:::i;:::-;28189:141;;;;:::o;28336:349::-;28405:6;28454:2;28442:9;28433:7;28429:23;28425:32;28422:119;;;28460:79;;:::i;:::-;28422:119;28580:1;28605:63;28660:7;28651:6;28640:9;28636:22;28605:63;:::i;:::-;28595:73;;28551:127;28336:349;;;;:::o

Swarm Source

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