ETH Price: $3,005.53 (+5.42%)
Gas: 2 Gwei

Token

Fukushima Fish (KOI)
 

Overview

Max Total Supply

323 KOI

Holders

69

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 KOI
0xdCe0E5F0eB4A87190c81c13Ee6c8056002BF0D8A
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:
FukushimaFishNFT

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 10000 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-13
*/

// File: solmate/src/utils/ReentrancyGuard.sol


pragma solidity >=0.8.0;

/// @notice Gas optimized reentrancy protection for smart contracts.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/ReentrancyGuard.sol)
/// @author Modified from OpenZeppelin (https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/security/ReentrancyGuard.sol)
abstract contract ReentrancyGuard {
    uint256 private locked = 1;

    modifier nonReentrant() virtual {
        require(locked == 1, "REENTRANCY");

        locked = 2;

        _;

        locked = 1;
    }
}

// File: solmate/src/auth/Owned.sol


pragma solidity >=0.8.0;

/// @notice Simple single owner authorization mixin.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/auth/Owned.sol)
abstract contract Owned {
    /*//////////////////////////////////////////////////////////////
                                 EVENTS
    //////////////////////////////////////////////////////////////*/

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

    /*//////////////////////////////////////////////////////////////
                            OWNERSHIP STORAGE
    //////////////////////////////////////////////////////////////*/

    address public owner;

    modifier onlyOwner() virtual {
        require(msg.sender == owner, "UNAUTHORIZED");

        _;
    }

    /*//////////////////////////////////////////////////////////////
                               CONSTRUCTOR
    //////////////////////////////////////////////////////////////*/

    constructor(address _owner) {
        owner = _owner;

        emit OwnershipTransferred(address(0), _owner);
    }

    /*//////////////////////////////////////////////////////////////
                             OWNERSHIP LOGIC
    //////////////////////////////////////////////////////////////*/

    function transferOwnership(address newOwner) public virtual onlyOwner {
        owner = newOwner;

        emit OwnershipTransferred(msg.sender, newOwner);
    }
}

// File: https://raw.githubusercontent.com/ninjaswtf/ERC721A/main/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: https://raw.githubusercontent.com/ninjaswtf/ERC721A/main/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) _revert(BalanceQueryForZeroAddress.selector);
        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.selector);

        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 Returns whether the ownership slot at `index` is initialized.
     * An uninitialized slot does not necessarily mean that the slot has no owner.
     */
    function _ownershipIsInitialized(uint256 index) internal view virtual returns (bool) {
        return _packedOwnerships[index] != 0;
    }

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

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256 packed) {
        if (_startTokenId() <= tokenId) {
            packed = _packedOwnerships[tokenId];
            // If the data at the starting slot does not exist, start the scan.
            if (packed == 0) {
                if (tokenId >= _currentIndex) _revert(OwnerQueryForNonexistentToken.selector);
                // Invariant:
                // There will always be an initialized ownership slot
                // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                // before an unintialized ownership slot
                // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                // Hence, `tokenId` will not underflow.
                //
                // We can directly compare the packed value.
                // If the address is zero, packed will be zero.
                for (;;) {
                    unchecked {
                        packed = _packedOwnerships[--tokenId];
                    }
                    if (packed == 0) continue;
                    if (packed & _BITMASK_BURNED == 0) return packed;
                    // Otherwise, the token is burned, and we must revert.
                    // This handles the case of batch burned tokens, where only the burned bit
                    // of the starting slot is set, and remaining slots are left uninitialized.
                    _revert(OwnerQueryForNonexistentToken.selector);
                }
            }
            // Otherwise, the data exists and we can skip the scan.
            // This is possible because we have already achieved the target condition.
            // This saves 2143 gas on transfers of initialized tokens.
            // If the token is not burned, return `packed`. Otherwise, revert.
            if (packed & _BITMASK_BURNED == 0) return packed;
        }
        _revert(OwnerQueryForNonexistentToken.selector);
    }

    /**
     * @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, uint64 timeStamp, uint256 flags) private pure returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timeStamp), flags))
        }
    }

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

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

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account. See {ERC721A-_approve}.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     */
    function approve(address to, uint256 tokenId) public payable virtual override {
        _approve(to, tokenId, true);
    }

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

        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 result) {
        if (_startTokenId() <= tokenId) {
            if (tokenId < _currentIndex) {
                uint256 packed;
                while ((packed = _packedOwnerships[tokenId]) == 0) --tokenId;
                result = packed & _BITMASK_BURNED == 0;
            }
        }
    }

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

        // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
        from = address(uint160(uint256(uint160(from)) & _BITMASK_ADDRESS));

        if (address(uint160(prevOwnershipPacked)) != from) _revert(TransferFromIncorrectOwner.selector);

        (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.selector);

        _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`.

            uint64 _timestamp = uint64(prevOwnershipPacked >> _BITPOS_START_TIMESTAMP);
            bool update = _updateTimestampOnTransfer();

            assembly {
                if update {
                    _timestamp := timestamp()
                }
            }

            _packedOwnerships[tokenId] = _packOwnershipData(
                to, _timestamp, 
                _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;
                    }
                }
            }
        }

        // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
        uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;
        assembly {
            // 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.
                from, // `from`.
                toMasked, // `to`.
                tokenId // `tokenId`.
            )
        }
        if (toMasked == 0) _revert(TransferToZeroAddress.selector);

        _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.selector);
            }
    }

    /**
     * @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.selector);
            }
            assembly {
                revert(add(32, reason), mload(reason))
            }
        }
    }

    /**
     * @dev Flag that specifies whether an ownership timestamp should be updated every transfer
     * 
     * Setting this to false effectively stores the mint time of the token.
     */
    function _updateTimestampOnTransfer() internal virtual returns(bool) {
        return true;
    }


    // =============================================================
    //                        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.selector);

        _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:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.

            uint64 _timestamp;
            assembly { _timestamp := timestamp() }
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to, _timestamp,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
            uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;

            if (toMasked == 0) _revert(MintToZeroAddress.selector);

            uint256 end = startTokenId + quantity;
            uint256 tokenId = startTokenId;

            do {
                assembly {
                    // 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`.
                        tokenId // `tokenId`.
                    )
                }
                // The `!=` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
            } while (++tokenId != end);

            _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.selector);
        if (quantity == 0) _revert(MintZeroQuantity.selector);
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) _revert(MintERC2309QuantityExceedsLimit.selector);

        _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`.
            uint64 _timestamp;
            assembly { _timestamp := timestamp() }
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to, _timestamp,
                _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.selector);
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) _revert(bytes4(0));
            }
        }
    }

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

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

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

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

        if (approvalCheck && _msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                _revert(ApprovalCallerNotOwnerNorApproved.selector);
            }

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

        _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`.

            uint64 _timestamp;
            assembly { _timestamp := timestamp() }

            _packedOwnerships[tokenId] = _packOwnershipData(
                from, _timestamp,
                (_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.selector);
        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 For more efficient reverts.
     */
    function _revert(bytes4 errorSelector) internal pure {
        assembly {
            mstore(0x00, errorSelector)
            revert(0x00, 0x04)
        }
    }
}

// File: contracts/SupplyController.sol

pragma solidity ^0.8.9;

abstract contract SupplyController {
    
    /**
        Called when a claim is successfully issued
     */
    event Claimed(address claimer, uint256 tokenId, uint256 tokensClaimed);


    event Burned(address burner, uint256 tokensBurned);


    /**
      Claims the tokens
     */
    function claim(uint256 tokenId) external virtual;


    /**
       Gets the claimable tokens available for a given NFT
     */
    function getClaimableTokens(address a, uint256 tokenId) external virtual returns (uint256); 


    /**
        Determines based on certain criteria if minting (anything that is able to generate new tokens) is allowed.

        e.g. We have a fixed supply and the current token count would surpass the max amount
     */
    function isMintingAllowed() external virtual returns (bool);


    /**
       Determines based on certain criteria if burning is allowed.  
     */     
    function isBurningAllowed() external virtual returns (bool);



    /**
      Events
     */
     function onPreTransfer(address from,
        address to,
        uint256 startTokenId,
        uint256 quantity) external virtual{}


    function onPostTransfer(address from,
        address to,
        uint256 startTokenId,
        uint256 quantity) external virtual{}

}

// File: contracts/FukushimaFish.sol

pragma solidity ^0.8.9;





contract FukushimaFishNFT is
    ERC721A("Fukushima Fish", "KOI"),
    Owned(msg.sender), ReentrancyGuard
{
    enum MintStatus {
        // 0 = closed
        CLOSED,
        // 1 = open for whitelisted addresses
        WHITELIST,
        // 2 = open for the public
        PUBLIC
    }

    uint256 public WHITELIST_MINT_COST = 0.05 ether;
    // Subject to change
    uint256 public PUBLIC_MINT_COST = 0.0777 ether;

    uint256 constant MAX_PUBLIC_MINT_PER_WALLET = 20;

    uint256 constant MAX_SUPPLY = 3888;

    string constant NO_MINTS_REMAINING = "You have no mints remaining";

    // The default mint status is CLOSED
    MintStatus public mintStatus = MintStatus.CLOSED;

    string _baseTokenURI = "";
    string _unrevealedURI = "";

    string public termsOfServiceURI;
    string public readMeURI;

    bytes32 whitelistMerkleProofRoot = bytes32(0);

    bool _updateOnTransfer = false;


    SupplyController public controller;

    function setSupplyController(SupplyController _controller) external onlyOwner {
        controller = _controller;
    }

    function getMintTime(uint256 tokenId) external view returns (uint256) {
        TokenOwnership memory ownership = _ownershipOf(tokenId);
        return ownership.startTimestamp;
    }

    function setUpdateOnTransfer(bool status) external onlyOwner {
        _updateOnTransfer = status;
    }


    function _updateTimestampOnTransfer() internal virtual override returns(bool)  {
        return _updateOnTransfer;
    }

    function exists(uint256 id) external view returns (bool) {
        return _exists(id);
    }

    function minted(address _addr) external view returns (uint256) {
        return _numberMinted(_addr);
    }


    function setTermsOfServiceURI(string calldata uri) external onlyOwner {
        termsOfServiceURI = uri;
    }

    function setReadMeURI(string calldata uri) external onlyOwner {
        readMeURI = uri;
    }

    function setMintStatus(MintStatus status) external onlyOwner {
        mintStatus = status;
    }

    function setMerkleRoot(bytes32 merkleRoot) external onlyOwner {
        whitelistMerkleProofRoot = merkleRoot;
    }

    function setBaseTokenURI(string calldata uri) external onlyOwner {
        _baseTokenURI = uri;
    }

    function setUnrevealedTokenURI(string calldata uri) external onlyOwner {
        _unrevealedURI = uri;
    }

    function setWhitelistMintPrice(uint256 cost) external onlyOwner {
        WHITELIST_MINT_COST = cost;
    }

    function setPublicMintPrice(uint256 cost) external onlyOwner {
        PUBLIC_MINT_COST = cost;
    }

    function ownerMint(address to, uint256 amount) external onlyOwner {
        // supply limit checks
        require(_totalMinted() < MAX_SUPPLY, "minted out.");
        require(
            _totalMinted() + amount <= MAX_SUPPLY,
            "mint amount would be out of range."
        );
        _mint(to, amount);
    }

    // Validate checks if the given address and proof result in the merkle tree root.
    // if the proof & the hashed address resolves to the provided proof, then the address
    // is within the whitelist.
    function validate(
        address addr,
        uint256 limit,
        bytes32[] calldata proof,
        uint256 path
    ) public view returns (bool) {
        bytes32 hash = keccak256(abi.encode(addr, limit));

        for (uint256 i; i < proof.length; i++) {
            // check if the path is odd and inverse the hash
            if (path & 1 == 1) {
                hash = keccak256(abi.encodePacked(hash, proof[i]));
            } else {
                hash = keccak256(abi.encodePacked(proof[i], hash));
            }

            // this divides the path by 2 lol bitwise ops > division
            path >>= 1;
        }

        return hash == whitelistMerkleProofRoot;
    }

    function publicMint(uint256 amount) external payable nonReentrant {
        uint256 currentSupply = _totalMinted();
        // supply limit checks
        require(
            msg.sender == tx.origin &&
                amount > 0 &&
                amount <= MAX_PUBLIC_MINT_PER_WALLET &&
                currentSupply < MAX_SUPPLY &&
                currentSupply + amount <= MAX_SUPPLY &&
                mintStatus == MintStatus.PUBLIC
        );

        uint256 minimumPayment = amount * PUBLIC_MINT_COST;

        require(msg.value >= minimumPayment, "not enough ether sent for mint!");

        _mint(msg.sender, amount);

        if (msg.value > minimumPayment) {
            // refund if the user somehow overpaid
            uint256 refund = msg.value - minimumPayment;
            (bool ok, ) = payable(msg.sender).call{value: refund}("");
            require(ok);
        }
    }

    function whitelistMint(
        uint256 amount,
        uint256 limit,
        bytes32[] calldata proof,
        uint256 path
    ) external payable nonReentrant {
        address msgSender = msg.sender;

        uint256 currentSupply = _totalMinted();

        // supply & sanity checks
        require(
            amount > 0 &&
                amount <= limit &&
                currentSupply < MAX_SUPPLY &&
                currentSupply + amount <= MAX_SUPPLY &&
                msg.sender == tx.origin &&
                mintStatus != MintStatus.CLOSED
        );

        // account mint limit checks
        uint256 _minted = _numberMinted(msgSender);
        require(proof.length > 0 && validate(msgSender, limit, proof, path));
        require(_minted < limit, "Mint limit reached!");
        uint256 remaining = limit - _minted;
        require(amount > 0 && amount <= remaining);

        // payment checks

        uint256 minimumPayment = amount * WHITELIST_MINT_COST;

        require(msg.value >= minimumPayment, "not enough ether sent for mint!");

        _mint(msgSender, amount);

        if (msg.value > minimumPayment) {
            // refund if the user somehow overpaid
            uint256 refund = msg.value - minimumPayment;
            (bool ok, ) = payable(msgSender).call{value: refund}("");
            require(ok);
        }
    }

    function tokenURI(uint256 id) public view override returns (string memory) {
        // baseTokenURI is empty, assume the token is unrevealed, and default to the unrevealed URI
        // else concatenate the base URI with the token ID and the JSON URI
        return
            bytes(_baseTokenURI).length == 0
                ? _unrevealedURI
                : string(abi.encodePacked(_baseTokenURI, id, ".json"));
    }

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

    function withdraw(address to) external onlyOwner {
        (bool ok, ) = payable(to).call{value: address(this).balance}("");
        require(ok);
    }

    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal override {
        if (address(controller) != address(0)) {
            controller.onPreTransfer(from, to, startTokenId, quantity);
        }
    }

    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal override {
        if (address(controller) != address(0)) {
            controller.onPostTransfer(from, to, startTokenId, quantity);
        }
    }
}

Contract Security Audit

Contract ABI

[{"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":"user","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":"PUBLIC_MINT_COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_MINT_COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"controller","outputs":[{"internalType":"contract SupplyController","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getMintTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"mintStatus","outputs":[{"internalType":"enum FukushimaFishNFT.MintStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","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":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"readMeURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum FukushimaFishNFT.MintStatus","name":"status","type":"uint8"}],"name":"setMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"cost","type":"uint256"}],"name":"setPublicMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setReadMeURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract SupplyController","name":"_controller","type":"address"}],"name":"setSupplyController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setTermsOfServiceURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setUnrevealedTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setUpdateOnTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"cost","type":"uint256"}],"name":"setWhitelistMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"termsOfServiceURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"limit","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"path","type":"uint256"}],"name":"validate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"limit","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"path","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600160095566b1a2bc2ec50000600a556701140bbd030c4000600b55600c805460ff1916905560a060405260006080908152600d90620000409082620001df565b50604080516020810190915260008152600e906200005f9082620001df565b5060006011556012805460ff191690553480156200007c57600080fd5b50336040518060400160405280600e81526020016d08cead6eae6d0d2dac2408cd2e6d60931b815250604051806040016040528060038152602001624b4f4960e81b8152508160029081620000d29190620001df565b506003620000e18282620001df565b505060016000908155600880546001600160a01b0319166001600160a01b0385169081179091556040519092507f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620002ab565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200016557607f821691505b6020821081036200018657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001da57600081815260208120601f850160051c81016020861015620001b55750805b601f850160051c820191505b81811015620001d657828155600101620001c1565b5050505b505050565b81516001600160401b03811115620001fb57620001fb6200013a565b62000213816200020c845462000150565b846200018c565b602080601f8311600181146200024b5760008415620002325750858301515b600019600386901b1c1916600185901b178555620001d6565b600085815260208120601f198616915b828110156200027c578886015182559484019460019091019084016200025b565b50858210156200029b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b612b0880620002bb6000396000f3fe6080604052600436106102bb5760003560e01c806370a082311161016e578063a22cb465116100cb578063e3d1a7be1161007f578063e985e9c511610064578063e985e9c51461071c578063f2fde38b14610765578063f77c47911461078557600080fd5b8063e3d1a7be146106f1578063e49b1a7c1461070757600080fd5b8063b88d4fde116100b0578063b88d4fde1461069e578063c528cfc4146106b1578063c87b56dd146106d157600080fd5b8063a22cb4651461065e578063a611708e1461067e57600080fd5b80638da5cb5b1161012257806395d89b411161010757806395d89b411461060c5780639da3f8fd14610621578063a2080c5b1461064857600080fd5b80638da5cb5b146105cc5780638ed6e589146105ec57600080fd5b80637e386b65116101535780637e386b651461056c578063814c8c551461058c578063820de0c5146105ac57600080fd5b806370a082311461052c5780637cb647591461054c57600080fd5b806330176e131161021c5780634ffecb49116101d057806352875bc3116101b557806352875bc3146104cc5780635d82cf6e146104ec5780636352211e1461050c57600080fd5b80634ffecb491461048c57806351cff8d9146104ac57600080fd5b806342b41aad1161020157806342b41aad14610437578063484b973c1461044c5780634f558e791461046c57600080fd5b806330176e131461040457806342842e0e1461042457600080fd5b80631babc84a116102735780631e7269c5116102585780631e7269c5146103be57806323b872dd146103de5780632db11544146103f157600080fd5b80631babc84a1461038b5780631c4072e2146103ab57600080fd5b8063081812fc116102a4578063081812fc14610317578063095ea7b31461034f57806318160ddd1461036457600080fd5b806301ffc9a7146102c057806306fdde03146102f5575b600080fd5b3480156102cc57600080fd5b506102e06102db366004612265565b6107aa565b60405190151581526020015b60405180910390f35b34801561030157600080fd5b5061030a61088f565b6040516102ec91906122ed565b34801561032357600080fd5b50610337610332366004612300565b610921565b6040516001600160a01b0390911681526020016102ec565b61036261035d36600461232e565b610975565b005b34801561037057600080fd5b5060015460005403600019015b6040519081526020016102ec565b34801561039757600080fd5b506103626103a636600461235a565b610985565b6103626103b9366004612418565b6109f6565b3480156103ca57600080fd5b5061037d6103d9366004612473565b610c7d565b6103626103ec366004612490565b610ca8565b6103626103ff366004612300565b610ece565b34801561041057600080fd5b5061036261041f36600461235a565b61107c565b610362610432366004612490565b6110e3565b34801561044357600080fd5b5061030a6110fe565b34801561045857600080fd5b5061036261046736600461232e565b61118c565b34801561047857600080fd5b506102e0610487366004612300565b6112dc565b34801561049857600080fd5b506103626104a736600461235a565b6112e7565b3480156104b857600080fd5b506103626104c7366004612473565b61134e565b3480156104d857600080fd5b506103626104e7366004612473565b611408565b3480156104f857600080fd5b50610362610507366004612300565b6114a1565b34801561051857600080fd5b50610337610527366004612300565b611500565b34801561053857600080fd5b5061037d610547366004612473565b61150b565b34801561055857600080fd5b50610362610567366004612300565b61156a565b34801561057857600080fd5b506102e06105873660046124d1565b6115c9565b34801561059857600080fd5b506103626105a7366004612517565b6116de565b3480156105b857600080fd5b506103626105c736600461235a565b61177d565b3480156105d857600080fd5b50600854610337906001600160a01b031681565b3480156105f857600080fd5b50610362610607366004612548565b6117e4565b34801561061857600080fd5b5061030a61186f565b34801561062d57600080fd5b50600c5461063b9060ff1681565b6040516102ec9190612592565b34801561065457600080fd5b5061037d600b5481565b34801561066a57600080fd5b506103626106793660046125d3565b61187e565b34801561068a57600080fd5b50610362610699366004612300565b611908565b6103626106ac366004612637565b611967565b3480156106bd57600080fd5b5061037d6106cc366004612300565b6119c1565b3480156106dd57600080fd5b5061030a6106ec366004612300565b6119e2565b3480156106fd57600080fd5b5061037d600a5481565b34801561071357600080fd5b5061030a611ab1565b34801561072857600080fd5b506102e0610737366004612735565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561077157600080fd5b50610362610780366004612473565b611abe565b34801561079157600080fd5b506012546103379061010090046001600160a01b031681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316148061083d57507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b8061088957507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60606002805461089e9061276e565b80601f01602080910402602001604051908101604052809291908181526020018280546108ca9061276e565b80156109175780601f106108ec57610100808354040283529160200191610917565b820191906000526020600020905b8154815290600101906020018083116108fa57829003601f168201915b5050505050905090565b600061092c82611b7c565b610959576109597fcf4700e400000000000000000000000000000000000000000000000000000000611be3565b506000908152600660205260409020546001600160a01b031690565b61098182826001611bed565b5050565b6008546001600160a01b031633146109e45760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a4544000000000000000000000000000000000000000060448201526064015b60405180910390fd5b600f6109f182848361280f565b505050565b600954600114610a485760405162461bcd60e51b815260206004820152600a60248201527f5245454e5452414e43590000000000000000000000000000000000000000000060448201526064016109db565b6002600955336000610a5d6000546000190190565b9050600087118015610a6f5750858711155b8015610a7c5750610f3081105b8015610a935750610f30610a90888361291d565b11155b8015610a9e57503332145b8015610ac157506000600c5460ff166002811115610abe57610abe612563565b14155b610aca57600080fd5b6001600160a01b0382166000908152600560205260409081902054901c67ffffffffffffffff168415801590610b085750610b0883888888886115c9565b610b1157600080fd5b868110610b605760405162461bcd60e51b815260206004820152601360248201527f4d696e74206c696d69742072656163686564210000000000000000000000000060448201526064016109db565b6000610b6c8289612930565b9050600089118015610b7e5750808911155b610b8757600080fd5b6000600a548a610b979190612943565b905080341015610be95760405162461bcd60e51b815260206004820152601f60248201527f6e6f7420656e6f7567682065746865722073656e7420666f72206d696e74210060448201526064016109db565b610bf3858b611cde565b80341115610c6c576000610c078234612930565b90506000866001600160a01b03168260405160006040518083038185875af1925050503d8060008114610c56576040519150601f19603f3d011682016040523d82523d6000602084013e610c5b565b606091505b5050905080610c6957600080fd5b50505b505060016009555050505050505050565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c16610889565b6000610cb382611df4565b6001600160a01b039485169490915081168414610cf357610cf37fa114810000000000000000000000000000000000000000000000000000000000611be3565b60008281526006602052604090208054338082146001600160a01b03881690911417610d6d576001600160a01b038616600090815260076020908152604080832033845290915290205460ff16610d6d57610d6d7f59c896be00000000000000000000000000000000000000000000000000000000611be3565b610d7a8686866001611f12565b8015610d8557600082555b6001600160a01b03808716600090815260056020526040808220805460001901905591871681529081208054600101905560a084901c90610dc860125460ff1690565b90508015610dd4574291505b60008681526004602052604081207c020000000000000000000000000000000000000000000000000000000060a085901b6001600160a01b038b1617811790915586169003610e5357600186016000818152600460205260408120549003610e51576000548114610e515760008181526004602052604090208690555b505b50506001600160a01b0385168481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a480600003610eb857610eb87fea553b3400000000000000000000000000000000000000000000000000000000611be3565b610ec58787876001611fc3565b50505050505050565b600954600114610f205760405162461bcd60e51b815260206004820152600a60248201527f5245454e5452414e43590000000000000000000000000000000000000000000060448201526064016109db565b6002600955600054600019013233148015610f3b5750600082115b8015610f48575060148211155b8015610f555750610f3081105b8015610f6c5750610f30610f69838361291d565b11155b8015610f8e57506002600c5460ff166002811115610f8c57610f8c612563565b145b610f9757600080fd5b6000600b5483610fa79190612943565b905080341015610ff95760405162461bcd60e51b815260206004820152601f60248201527f6e6f7420656e6f7567682065746865722073656e7420666f72206d696e74210060448201526064016109db565b6110033384611cde565b803411156110725760006110178234612930565b604051909150600090339083908381818185875af1925050503d806000811461105c576040519150601f19603f3d011682016040523d82523d6000602084013e611061565b606091505b505090508061106f57600080fd5b50505b5050600160095550565b6008546001600160a01b031633146110d65760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a4544000000000000000000000000000000000000000060448201526064016109db565b600d6109f182848361280f565b6109f183838360405180602001604052806000815250611967565b6010805461110b9061276e565b80601f01602080910402602001604051908101604052809291908181526020018280546111379061276e565b80156111845780601f1061115957610100808354040283529160200191611184565b820191906000526020600020905b81548152906001019060200180831161116757829003601f168201915b505050505081565b6008546001600160a01b031633146111e65760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a4544000000000000000000000000000000000000000060448201526064016109db565b610f306111f66000546000190190565b106112435760405162461bcd60e51b815260206004820152600b60248201527f6d696e746564206f75742e00000000000000000000000000000000000000000060448201526064016109db565b610f30816112546000546000190190565b61125e919061291d565b11156112d25760405162461bcd60e51b815260206004820152602260248201527f6d696e7420616d6f756e7420776f756c64206265206f7574206f662072616e6760448201527f652e00000000000000000000000000000000000000000000000000000000000060648201526084016109db565b6109818282611cde565b600061088982611b7c565b6008546001600160a01b031633146113415760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a4544000000000000000000000000000000000000000060448201526064016109db565b60106109f182848361280f565b6008546001600160a01b031633146113a85760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a4544000000000000000000000000000000000000000060448201526064016109db565b6000816001600160a01b03164760405160006040518083038185875af1925050503d80600081146113f5576040519150601f19603f3d011682016040523d82523d6000602084013e6113fa565b606091505b505090508061098157600080fd5b6008546001600160a01b031633146114625760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a4544000000000000000000000000000000000000000060448201526064016109db565b601280546001600160a01b03909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b6008546001600160a01b031633146114fb5760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a4544000000000000000000000000000000000000000060448201526064016109db565b600b55565b600061088982611df4565b60006001600160a01b038216611544576115447f8f4eb60400000000000000000000000000000000000000000000000000000000611be3565b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146115c45760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a4544000000000000000000000000000000000000000060448201526064016109db565b601155565b604080516001600160a01b0387166020820152908101859052600090819060600160405160208183030381529060405280519060200120905060005b848110156116cf5783600116600103611669578186868381811061162b5761162b61295a565b9050602002013560405160200161164c929190918252602082015260400190565b6040516020818303038152906040528051906020012091506116b6565b85858281811061167b5761167b61295a565b905060200201358260405160200161169d929190918252602082015260400190565b6040516020818303038152906040528051906020012091505b60019390931c92806116c781612989565b915050611605565b50601154149695505050505050565b6008546001600160a01b031633146117385760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a4544000000000000000000000000000000000000000060448201526064016109db565b600c80548291907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600183600281111561177557611775612563565b021790555050565b6008546001600160a01b031633146117d75760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a4544000000000000000000000000000000000000000060448201526064016109db565b600e6109f182848361280f565b6008546001600160a01b0316331461183e5760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a4544000000000000000000000000000000000000000060448201526064016109db565b601280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60606003805461089e9061276e565b3360008181526007602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146119625760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a4544000000000000000000000000000000000000000060448201526064016109db565b600a55565b611972848484610ca8565b6001600160a01b0383163b156119bb5761198e84848484612040565b6119bb576119bb7fd1a57ed600000000000000000000000000000000000000000000000000000000611be3565b50505050565b6000806119cd836121a3565b6020015167ffffffffffffffff169392505050565b6060600d80546119f19061276e565b159050611a2057600d82604051602001611a0c9291906129a3565b604051602081830303815290604052610889565b600e8054611a2d9061276e565b80601f0160208091040260200160405190810160405280929190818152602001828054611a599061276e565b8015611aa65780601f10611a7b57610100808354040283529160200191611aa6565b820191906000526020600020905b815481529060010190602001808311611a8957829003601f168201915b505050505092915050565b600f805461110b9061276e565b6008546001600160a01b03163314611b185760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a4544000000000000000000000000000000000000000060448201526064016109db565b600880547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03831690811790915560405133907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a350565b600081600111611bde57600054821015611bde5760005b5060008281526004602052604081205490819003611bbb57611bb483612a62565b9250611b93565b7c0100000000000000000000000000000000000000000000000000000000161590505b919050565b8060005260046000fd5b6000611bf883611500565b9050818015611c105750336001600160a01b03821614155b15611c69576001600160a01b038116600090815260076020908152604080832033845290915290205460ff16611c6957611c697fcfb3b94200000000000000000000000000000000000000000000000000000000611be3565b60008381526006602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b6000805490829003611d1357611d137fb562e8dd00000000000000000000000000000000000000000000000000000000611be3565b611d206000848385611f12565b426001600160a01b03841660a082901b6001851460e11b17176000838152600460209081526040808320939093556001600160a01b03871680835260059091529181208054680100000000000000018702019055819003611da457611da47f2e07630000000000000000000000000000000000000000000000000000000000611be3565b828401835b808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4818160010191508103611da9575060009081556109f192509050848385611fc3565b600081600111611ee9575060008181526004602052604081205490819003611ebd576000548210611e4857611e487fdf2d9b4200000000000000000000000000000000000000000000000000000000611be3565b5b50600019016000818152600460205260409020548015611e49577c01000000000000000000000000000000000000000000000000000000008116600003611e8f57919050565b611eb87fdf2d9b4200000000000000000000000000000000000000000000000000000000611be3565b611e49565b7c01000000000000000000000000000000000000000000000000000000008116600003611ee957919050565b611bde7fdf2d9b4200000000000000000000000000000000000000000000000000000000611be3565b60125461010090046001600160a01b0316156119bb576012546040517fb62425a00000000000000000000000000000000000000000000000000000000081526001600160a01b038681166004830152858116602483015260448201859052606482018490526101009092049091169063b62425a0906084015b600060405180830381600087803b158015611fa557600080fd5b505af1158015611fb9573d6000803e3d6000fd5b5050505050505050565b60125461010090046001600160a01b0316156119bb576012546040517fa1d5ed100000000000000000000000000000000000000000000000000000000081526001600160a01b038681166004830152858116602483015260448201859052606482018490526101009092049091169063a1d5ed1090608401611f8b565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a029061208e903390899088908890600401612a79565b6020604051808303816000875af19250505080156120e7575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526120e491810190612ab5565b60015b612155573d808015612115576040519150601f19603f3d011682016040523d82523d6000602084013e61211a565b606091505b50805160000361214d5761214d7fd1a57ed600000000000000000000000000000000000000000000000000000000611be3565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050949350505050565b6040805160808101825260008082526020820181905291810182905260608101919091526108896121d383611df4565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff1660208201527c0100000000000000000000000000000000000000000000000000000000831615159181019190915260e89190911c606082015290565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461226257600080fd5b50565b60006020828403121561227757600080fd5b813561228281612234565b9392505050565b6000815180845260005b818110156122af57602081850181015186830182015201612293565b5060006020828601015260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f83011685010191505092915050565b6020815260006122826020830184612289565b60006020828403121561231257600080fd5b5035919050565b6001600160a01b038116811461226257600080fd5b6000806040838503121561234157600080fd5b823561234c81612319565b946020939093013593505050565b6000806020838503121561236d57600080fd5b823567ffffffffffffffff8082111561238557600080fd5b818501915085601f83011261239957600080fd5b8135818111156123a857600080fd5b8660208285010111156123ba57600080fd5b60209290920196919550909350505050565b60008083601f8401126123de57600080fd5b50813567ffffffffffffffff8111156123f657600080fd5b6020830191508360208260051b850101111561241157600080fd5b9250929050565b60008060008060006080868803121561243057600080fd5b8535945060208601359350604086013567ffffffffffffffff81111561245557600080fd5b612461888289016123cc565b96999598509660600135949350505050565b60006020828403121561248557600080fd5b813561228281612319565b6000806000606084860312156124a557600080fd5b83356124b081612319565b925060208401356124c081612319565b929592945050506040919091013590565b6000806000806000608086880312156124e957600080fd5b85356124f481612319565b945060208601359350604086013567ffffffffffffffff81111561245557600080fd5b60006020828403121561252957600080fd5b81356003811061228257600080fd5b80358015158114611bde57600080fd5b60006020828403121561255a57600080fd5b61228282612538565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60208101600383106125cd577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b91905290565b600080604083850312156125e657600080fd5b82356125f181612319565b91506125ff60208401612538565b90509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000806000806080858703121561264d57600080fd5b843561265881612319565b9350602085013561266881612319565b925060408501359150606085013567ffffffffffffffff8082111561268c57600080fd5b818701915087601f8301126126a057600080fd5b8135818111156126b2576126b2612608565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019083821181831017156126f8576126f8612608565b816040528281528a602084870101111561271157600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561274857600080fd5b823561275381612319565b9150602083013561276381612319565b809150509250929050565b600181811c9082168061278257607f821691505b6020821081036127bb577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b601f8211156109f157600081815260208120601f850160051c810160208610156127e85750805b601f850160051c820191505b81811015612807578281556001016127f4565b505050505050565b67ffffffffffffffff83111561282757612827612608565b61283b83612835835461276e565b836127c1565b6000601f84116001811461286f57600085156128575750838201355b600019600387901b1c1916600186901b1783556128e7565b6000838152602090207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0861690835b828110156128be578685013582556020948501946001909201910161289e565b50868210156128db5760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b80820180821115610889576108896128ee565b81810381811115610889576108896128ee565b8082028115828204841417610889576108896128ee565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000600019820361299c5761299c6128ee565b5060010190565b60008084546129b18161276e565b600182811680156129c957600181146129fc57612a2b565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0084168752821515830287019450612a2b565b8860005260208060002060005b85811015612a225781548a820152908401908201612a09565b50505082870194505b5050509381527f2e6a736f6e0000000000000000000000000000000000000000000000000000006020820152602501949350505050565b600081612a7157612a716128ee565b506000190190565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612aab6080830184612289565b9695505050505050565b600060208284031215612ac757600080fd5b81516122828161223456fea2646970667358221220e72b5be3da4741db1671bf80dc358d3b14329985ab683d5b108a68e488a5004f64736f6c63430008120033

Deployed Bytecode

0x6080604052600436106102bb5760003560e01c806370a082311161016e578063a22cb465116100cb578063e3d1a7be1161007f578063e985e9c511610064578063e985e9c51461071c578063f2fde38b14610765578063f77c47911461078557600080fd5b8063e3d1a7be146106f1578063e49b1a7c1461070757600080fd5b8063b88d4fde116100b0578063b88d4fde1461069e578063c528cfc4146106b1578063c87b56dd146106d157600080fd5b8063a22cb4651461065e578063a611708e1461067e57600080fd5b80638da5cb5b1161012257806395d89b411161010757806395d89b411461060c5780639da3f8fd14610621578063a2080c5b1461064857600080fd5b80638da5cb5b146105cc5780638ed6e589146105ec57600080fd5b80637e386b65116101535780637e386b651461056c578063814c8c551461058c578063820de0c5146105ac57600080fd5b806370a082311461052c5780637cb647591461054c57600080fd5b806330176e131161021c5780634ffecb49116101d057806352875bc3116101b557806352875bc3146104cc5780635d82cf6e146104ec5780636352211e1461050c57600080fd5b80634ffecb491461048c57806351cff8d9146104ac57600080fd5b806342b41aad1161020157806342b41aad14610437578063484b973c1461044c5780634f558e791461046c57600080fd5b806330176e131461040457806342842e0e1461042457600080fd5b80631babc84a116102735780631e7269c5116102585780631e7269c5146103be57806323b872dd146103de5780632db11544146103f157600080fd5b80631babc84a1461038b5780631c4072e2146103ab57600080fd5b8063081812fc116102a4578063081812fc14610317578063095ea7b31461034f57806318160ddd1461036457600080fd5b806301ffc9a7146102c057806306fdde03146102f5575b600080fd5b3480156102cc57600080fd5b506102e06102db366004612265565b6107aa565b60405190151581526020015b60405180910390f35b34801561030157600080fd5b5061030a61088f565b6040516102ec91906122ed565b34801561032357600080fd5b50610337610332366004612300565b610921565b6040516001600160a01b0390911681526020016102ec565b61036261035d36600461232e565b610975565b005b34801561037057600080fd5b5060015460005403600019015b6040519081526020016102ec565b34801561039757600080fd5b506103626103a636600461235a565b610985565b6103626103b9366004612418565b6109f6565b3480156103ca57600080fd5b5061037d6103d9366004612473565b610c7d565b6103626103ec366004612490565b610ca8565b6103626103ff366004612300565b610ece565b34801561041057600080fd5b5061036261041f36600461235a565b61107c565b610362610432366004612490565b6110e3565b34801561044357600080fd5b5061030a6110fe565b34801561045857600080fd5b5061036261046736600461232e565b61118c565b34801561047857600080fd5b506102e0610487366004612300565b6112dc565b34801561049857600080fd5b506103626104a736600461235a565b6112e7565b3480156104b857600080fd5b506103626104c7366004612473565b61134e565b3480156104d857600080fd5b506103626104e7366004612473565b611408565b3480156104f857600080fd5b50610362610507366004612300565b6114a1565b34801561051857600080fd5b50610337610527366004612300565b611500565b34801561053857600080fd5b5061037d610547366004612473565b61150b565b34801561055857600080fd5b50610362610567366004612300565b61156a565b34801561057857600080fd5b506102e06105873660046124d1565b6115c9565b34801561059857600080fd5b506103626105a7366004612517565b6116de565b3480156105b857600080fd5b506103626105c736600461235a565b61177d565b3480156105d857600080fd5b50600854610337906001600160a01b031681565b3480156105f857600080fd5b50610362610607366004612548565b6117e4565b34801561061857600080fd5b5061030a61186f565b34801561062d57600080fd5b50600c5461063b9060ff1681565b6040516102ec9190612592565b34801561065457600080fd5b5061037d600b5481565b34801561066a57600080fd5b506103626106793660046125d3565b61187e565b34801561068a57600080fd5b50610362610699366004612300565b611908565b6103626106ac366004612637565b611967565b3480156106bd57600080fd5b5061037d6106cc366004612300565b6119c1565b3480156106dd57600080fd5b5061030a6106ec366004612300565b6119e2565b3480156106fd57600080fd5b5061037d600a5481565b34801561071357600080fd5b5061030a611ab1565b34801561072857600080fd5b506102e0610737366004612735565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561077157600080fd5b50610362610780366004612473565b611abe565b34801561079157600080fd5b506012546103379061010090046001600160a01b031681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316148061083d57507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b8061088957507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60606002805461089e9061276e565b80601f01602080910402602001604051908101604052809291908181526020018280546108ca9061276e565b80156109175780601f106108ec57610100808354040283529160200191610917565b820191906000526020600020905b8154815290600101906020018083116108fa57829003601f168201915b5050505050905090565b600061092c82611b7c565b610959576109597fcf4700e400000000000000000000000000000000000000000000000000000000611be3565b506000908152600660205260409020546001600160a01b031690565b61098182826001611bed565b5050565b6008546001600160a01b031633146109e45760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a4544000000000000000000000000000000000000000060448201526064015b60405180910390fd5b600f6109f182848361280f565b505050565b600954600114610a485760405162461bcd60e51b815260206004820152600a60248201527f5245454e5452414e43590000000000000000000000000000000000000000000060448201526064016109db565b6002600955336000610a5d6000546000190190565b9050600087118015610a6f5750858711155b8015610a7c5750610f3081105b8015610a935750610f30610a90888361291d565b11155b8015610a9e57503332145b8015610ac157506000600c5460ff166002811115610abe57610abe612563565b14155b610aca57600080fd5b6001600160a01b0382166000908152600560205260409081902054901c67ffffffffffffffff168415801590610b085750610b0883888888886115c9565b610b1157600080fd5b868110610b605760405162461bcd60e51b815260206004820152601360248201527f4d696e74206c696d69742072656163686564210000000000000000000000000060448201526064016109db565b6000610b6c8289612930565b9050600089118015610b7e5750808911155b610b8757600080fd5b6000600a548a610b979190612943565b905080341015610be95760405162461bcd60e51b815260206004820152601f60248201527f6e6f7420656e6f7567682065746865722073656e7420666f72206d696e74210060448201526064016109db565b610bf3858b611cde565b80341115610c6c576000610c078234612930565b90506000866001600160a01b03168260405160006040518083038185875af1925050503d8060008114610c56576040519150601f19603f3d011682016040523d82523d6000602084013e610c5b565b606091505b5050905080610c6957600080fd5b50505b505060016009555050505050505050565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c16610889565b6000610cb382611df4565b6001600160a01b039485169490915081168414610cf357610cf37fa114810000000000000000000000000000000000000000000000000000000000611be3565b60008281526006602052604090208054338082146001600160a01b03881690911417610d6d576001600160a01b038616600090815260076020908152604080832033845290915290205460ff16610d6d57610d6d7f59c896be00000000000000000000000000000000000000000000000000000000611be3565b610d7a8686866001611f12565b8015610d8557600082555b6001600160a01b03808716600090815260056020526040808220805460001901905591871681529081208054600101905560a084901c90610dc860125460ff1690565b90508015610dd4574291505b60008681526004602052604081207c020000000000000000000000000000000000000000000000000000000060a085901b6001600160a01b038b1617811790915586169003610e5357600186016000818152600460205260408120549003610e51576000548114610e515760008181526004602052604090208690555b505b50506001600160a01b0385168481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a480600003610eb857610eb87fea553b3400000000000000000000000000000000000000000000000000000000611be3565b610ec58787876001611fc3565b50505050505050565b600954600114610f205760405162461bcd60e51b815260206004820152600a60248201527f5245454e5452414e43590000000000000000000000000000000000000000000060448201526064016109db565b6002600955600054600019013233148015610f3b5750600082115b8015610f48575060148211155b8015610f555750610f3081105b8015610f6c5750610f30610f69838361291d565b11155b8015610f8e57506002600c5460ff166002811115610f8c57610f8c612563565b145b610f9757600080fd5b6000600b5483610fa79190612943565b905080341015610ff95760405162461bcd60e51b815260206004820152601f60248201527f6e6f7420656e6f7567682065746865722073656e7420666f72206d696e74210060448201526064016109db565b6110033384611cde565b803411156110725760006110178234612930565b604051909150600090339083908381818185875af1925050503d806000811461105c576040519150601f19603f3d011682016040523d82523d6000602084013e611061565b606091505b505090508061106f57600080fd5b50505b5050600160095550565b6008546001600160a01b031633146110d65760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a4544000000000000000000000000000000000000000060448201526064016109db565b600d6109f182848361280f565b6109f183838360405180602001604052806000815250611967565b6010805461110b9061276e565b80601f01602080910402602001604051908101604052809291908181526020018280546111379061276e565b80156111845780601f1061115957610100808354040283529160200191611184565b820191906000526020600020905b81548152906001019060200180831161116757829003601f168201915b505050505081565b6008546001600160a01b031633146111e65760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a4544000000000000000000000000000000000000000060448201526064016109db565b610f306111f66000546000190190565b106112435760405162461bcd60e51b815260206004820152600b60248201527f6d696e746564206f75742e00000000000000000000000000000000000000000060448201526064016109db565b610f30816112546000546000190190565b61125e919061291d565b11156112d25760405162461bcd60e51b815260206004820152602260248201527f6d696e7420616d6f756e7420776f756c64206265206f7574206f662072616e6760448201527f652e00000000000000000000000000000000000000000000000000000000000060648201526084016109db565b6109818282611cde565b600061088982611b7c565b6008546001600160a01b031633146113415760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a4544000000000000000000000000000000000000000060448201526064016109db565b60106109f182848361280f565b6008546001600160a01b031633146113a85760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a4544000000000000000000000000000000000000000060448201526064016109db565b6000816001600160a01b03164760405160006040518083038185875af1925050503d80600081146113f5576040519150601f19603f3d011682016040523d82523d6000602084013e6113fa565b606091505b505090508061098157600080fd5b6008546001600160a01b031633146114625760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a4544000000000000000000000000000000000000000060448201526064016109db565b601280546001600160a01b03909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b6008546001600160a01b031633146114fb5760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a4544000000000000000000000000000000000000000060448201526064016109db565b600b55565b600061088982611df4565b60006001600160a01b038216611544576115447f8f4eb60400000000000000000000000000000000000000000000000000000000611be3565b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146115c45760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a4544000000000000000000000000000000000000000060448201526064016109db565b601155565b604080516001600160a01b0387166020820152908101859052600090819060600160405160208183030381529060405280519060200120905060005b848110156116cf5783600116600103611669578186868381811061162b5761162b61295a565b9050602002013560405160200161164c929190918252602082015260400190565b6040516020818303038152906040528051906020012091506116b6565b85858281811061167b5761167b61295a565b905060200201358260405160200161169d929190918252602082015260400190565b6040516020818303038152906040528051906020012091505b60019390931c92806116c781612989565b915050611605565b50601154149695505050505050565b6008546001600160a01b031633146117385760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a4544000000000000000000000000000000000000000060448201526064016109db565b600c80548291907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600183600281111561177557611775612563565b021790555050565b6008546001600160a01b031633146117d75760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a4544000000000000000000000000000000000000000060448201526064016109db565b600e6109f182848361280f565b6008546001600160a01b0316331461183e5760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a4544000000000000000000000000000000000000000060448201526064016109db565b601280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60606003805461089e9061276e565b3360008181526007602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146119625760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a4544000000000000000000000000000000000000000060448201526064016109db565b600a55565b611972848484610ca8565b6001600160a01b0383163b156119bb5761198e84848484612040565b6119bb576119bb7fd1a57ed600000000000000000000000000000000000000000000000000000000611be3565b50505050565b6000806119cd836121a3565b6020015167ffffffffffffffff169392505050565b6060600d80546119f19061276e565b159050611a2057600d82604051602001611a0c9291906129a3565b604051602081830303815290604052610889565b600e8054611a2d9061276e565b80601f0160208091040260200160405190810160405280929190818152602001828054611a599061276e565b8015611aa65780601f10611a7b57610100808354040283529160200191611aa6565b820191906000526020600020905b815481529060010190602001808311611a8957829003601f168201915b505050505092915050565b600f805461110b9061276e565b6008546001600160a01b03163314611b185760405162461bcd60e51b815260206004820152600c60248201527f554e415554484f52495a4544000000000000000000000000000000000000000060448201526064016109db565b600880547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03831690811790915560405133907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a350565b600081600111611bde57600054821015611bde5760005b5060008281526004602052604081205490819003611bbb57611bb483612a62565b9250611b93565b7c0100000000000000000000000000000000000000000000000000000000161590505b919050565b8060005260046000fd5b6000611bf883611500565b9050818015611c105750336001600160a01b03821614155b15611c69576001600160a01b038116600090815260076020908152604080832033845290915290205460ff16611c6957611c697fcfb3b94200000000000000000000000000000000000000000000000000000000611be3565b60008381526006602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b6000805490829003611d1357611d137fb562e8dd00000000000000000000000000000000000000000000000000000000611be3565b611d206000848385611f12565b426001600160a01b03841660a082901b6001851460e11b17176000838152600460209081526040808320939093556001600160a01b03871680835260059091529181208054680100000000000000018702019055819003611da457611da47f2e07630000000000000000000000000000000000000000000000000000000000611be3565b828401835b808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4818160010191508103611da9575060009081556109f192509050848385611fc3565b600081600111611ee9575060008181526004602052604081205490819003611ebd576000548210611e4857611e487fdf2d9b4200000000000000000000000000000000000000000000000000000000611be3565b5b50600019016000818152600460205260409020548015611e49577c01000000000000000000000000000000000000000000000000000000008116600003611e8f57919050565b611eb87fdf2d9b4200000000000000000000000000000000000000000000000000000000611be3565b611e49565b7c01000000000000000000000000000000000000000000000000000000008116600003611ee957919050565b611bde7fdf2d9b4200000000000000000000000000000000000000000000000000000000611be3565b60125461010090046001600160a01b0316156119bb576012546040517fb62425a00000000000000000000000000000000000000000000000000000000081526001600160a01b038681166004830152858116602483015260448201859052606482018490526101009092049091169063b62425a0906084015b600060405180830381600087803b158015611fa557600080fd5b505af1158015611fb9573d6000803e3d6000fd5b5050505050505050565b60125461010090046001600160a01b0316156119bb576012546040517fa1d5ed100000000000000000000000000000000000000000000000000000000081526001600160a01b038681166004830152858116602483015260448201859052606482018490526101009092049091169063a1d5ed1090608401611f8b565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a029061208e903390899088908890600401612a79565b6020604051808303816000875af19250505080156120e7575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526120e491810190612ab5565b60015b612155573d808015612115576040519150601f19603f3d011682016040523d82523d6000602084013e61211a565b606091505b50805160000361214d5761214d7fd1a57ed600000000000000000000000000000000000000000000000000000000611be3565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050949350505050565b6040805160808101825260008082526020820181905291810182905260608101919091526108896121d383611df4565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff1660208201527c0100000000000000000000000000000000000000000000000000000000831615159181019190915260e89190911c606082015290565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461226257600080fd5b50565b60006020828403121561227757600080fd5b813561228281612234565b9392505050565b6000815180845260005b818110156122af57602081850181015186830182015201612293565b5060006020828601015260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f83011685010191505092915050565b6020815260006122826020830184612289565b60006020828403121561231257600080fd5b5035919050565b6001600160a01b038116811461226257600080fd5b6000806040838503121561234157600080fd5b823561234c81612319565b946020939093013593505050565b6000806020838503121561236d57600080fd5b823567ffffffffffffffff8082111561238557600080fd5b818501915085601f83011261239957600080fd5b8135818111156123a857600080fd5b8660208285010111156123ba57600080fd5b60209290920196919550909350505050565b60008083601f8401126123de57600080fd5b50813567ffffffffffffffff8111156123f657600080fd5b6020830191508360208260051b850101111561241157600080fd5b9250929050565b60008060008060006080868803121561243057600080fd5b8535945060208601359350604086013567ffffffffffffffff81111561245557600080fd5b612461888289016123cc565b96999598509660600135949350505050565b60006020828403121561248557600080fd5b813561228281612319565b6000806000606084860312156124a557600080fd5b83356124b081612319565b925060208401356124c081612319565b929592945050506040919091013590565b6000806000806000608086880312156124e957600080fd5b85356124f481612319565b945060208601359350604086013567ffffffffffffffff81111561245557600080fd5b60006020828403121561252957600080fd5b81356003811061228257600080fd5b80358015158114611bde57600080fd5b60006020828403121561255a57600080fd5b61228282612538565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60208101600383106125cd577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b91905290565b600080604083850312156125e657600080fd5b82356125f181612319565b91506125ff60208401612538565b90509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000806000806080858703121561264d57600080fd5b843561265881612319565b9350602085013561266881612319565b925060408501359150606085013567ffffffffffffffff8082111561268c57600080fd5b818701915087601f8301126126a057600080fd5b8135818111156126b2576126b2612608565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019083821181831017156126f8576126f8612608565b816040528281528a602084870101111561271157600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561274857600080fd5b823561275381612319565b9150602083013561276381612319565b809150509250929050565b600181811c9082168061278257607f821691505b6020821081036127bb577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b601f8211156109f157600081815260208120601f850160051c810160208610156127e85750805b601f850160051c820191505b81811015612807578281556001016127f4565b505050505050565b67ffffffffffffffff83111561282757612827612608565b61283b83612835835461276e565b836127c1565b6000601f84116001811461286f57600085156128575750838201355b600019600387901b1c1916600186901b1783556128e7565b6000838152602090207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0861690835b828110156128be578685013582556020948501946001909201910161289e565b50868210156128db5760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b80820180821115610889576108896128ee565b81810381811115610889576108896128ee565b8082028115828204841417610889576108896128ee565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000600019820361299c5761299c6128ee565b5060010190565b60008084546129b18161276e565b600182811680156129c957600181146129fc57612a2b565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0084168752821515830287019450612a2b565b8860005260208060002060005b85811015612a225781548a820152908401908201612a09565b50505082870194505b5050509381527f2e6a736f6e0000000000000000000000000000000000000000000000000000006020820152602501949350505050565b600081612a7157612a716128ee565b506000190190565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612aab6080830184612289565b9695505050505050565b600060208284031215612ac757600080fd5b81516122828161223456fea2646970667358221220e72b5be3da4741db1671bf80dc358d3b14329985ab683d5b108a68e488a5004f64736f6c63430008120033

Deployed Bytecode Sourcemap

58344:7603:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20663:639;;;;;;;;;;-1:-1:-1;20663:639:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;20663:639:0;;;;;;;;21565:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28615:227::-;;;;;;;;;;-1:-1:-1;28615:227:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1699:55:1;;;1681:74;;1669:2;1654:18;28615:227:0;1535:226:1;28332:124:0;;;;;;:::i;:::-;;:::i;:::-;;17307:323;;;;;;;;;;-1:-1:-1;65157:1:0;17581:12;17368:7;17565:13;:28;-1:-1:-1;;17565:46:0;17307:323;;;2391:25:1;;;2379:2;2364:18;17307:323:0;2245:177:1;60125:112:0;;;;;;;;;;-1:-1:-1;60125:112:0;;;;;:::i;:::-;;:::i;63225:1402::-;;;;;;:::i;:::-;;:::i;60006:109::-;;;;;;;;;;-1:-1:-1;60006:109:0;;;;;:::i;:::-;;:::i;32349:3841::-;;;;;;:::i;:::-;;:::i;62302:915::-;;;;;;:::i;:::-;;:::i;60582:103::-;;;;;;;;;;-1:-1:-1;60582:103:0;;;;;:::i;:::-;;:::i;36286:193::-;;;;;;:::i;:::-;;:::i;59165:23::-;;;;;;;;;;;;;:::i;61039:328::-;;;;;;;;;;-1:-1:-1;61039:328:0;;;;;:::i;:::-;;:::i;59904:94::-;;;;;;;;;;-1:-1:-1;59904:94:0;;;;;:::i;:::-;;:::i;60245:96::-;;;;;;;;;;-1:-1:-1;60245:96:0;;;;;:::i;:::-;;:::i;65174:154::-;;;;;;;;;;-1:-1:-1;65174:154:0;;;;;:::i;:::-;;:::i;59335:121::-;;;;;;;;;;-1:-1:-1;59335:121:0;;;;;:::i;:::-;;:::i;60928:103::-;;;;;;;;;;-1:-1:-1;60928:103:0;;;;;:::i;:::-;;:::i;22967:152::-;;;;;;;;;;-1:-1:-1;22967:152:0;;;;;:::i;:::-;;:::i;18491:242::-;;;;;;;;;;-1:-1:-1;18491:242:0;;;;;:::i;:::-;;:::i;60456:118::-;;;;;;;;;;-1:-1:-1;60456:118:0;;;;;:::i;:::-;;:::i;61586:708::-;;;;;;;;;;-1:-1:-1;61586:708:0;;;;;:::i;:::-;;:::i;60349:99::-;;;;;;;;;;-1:-1:-1;60349:99:0;;;;;:::i;:::-;;:::i;60693:110::-;;;;;;;;;;-1:-1:-1;60693:110:0;;;;;:::i;:::-;;:::i;1336:20::-;;;;;;;;;;-1:-1:-1;1336:20:0;;;;-1:-1:-1;;;;;1336:20:0;;;59658:106;;;;;;;;;;-1:-1:-1;59658:106:0;;;;;:::i;:::-;;:::i;21741:104::-;;;;;;;;;;;;;:::i;59003:48::-;;;;;;;;;;-1:-1:-1;59003:48:0;;;;;;;;;;;;;;;:::i;58731:46::-;;;;;;;;;;;;;;;;29182:234;;;;;;;;;;-1:-1:-1;29182:234:0;;;;;:::i;:::-;;:::i;60811:109::-;;;;;;;;;;-1:-1:-1;60811:109:0;;;;;:::i;:::-;;:::i;37077:416::-;;;;;;:::i;:::-;;:::i;59464:186::-;;;;;;;;;;-1:-1:-1;59464:186:0;;;;;:::i;:::-;;:::i;64635:430::-;;;;;;;;;;-1:-1:-1;64635:430:0;;;;;:::i;:::-;;:::i;58651:47::-;;;;;;;;;;;;;;;;59127:31;;;;;;;;;;;;;:::i;29573:164::-;;;;;;;;;;-1:-1:-1;29573:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29694:25:0;;;29670:4;29694:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29573:164;1980:165;;;;;;;;;;-1:-1:-1;1980:165:0;;;;;:::i;:::-;;:::i;59292:34::-;;;;;;;;;;-1:-1:-1;59292:34:0;;;;;;;-1:-1:-1;;;;;59292:34:0;;;20663:639;20748:4;21072:25;;;;;;:102;;-1:-1:-1;21149:25:0;;;;;21072:102;:179;;;-1:-1:-1;21226:25:0;;;;;21072:179;21052:199;20663:639;-1:-1:-1;;20663:639:0:o;21565:100::-;21619:13;21652:5;21645:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21565:100;:::o;28615:227::-;28691:7;28716:16;28724:7;28716;:16::i;:::-;28711:73;;28734:50;28742:41;28734:7;:50::i;:::-;-1:-1:-1;28804:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;28804:30:0;;28615:227::o;28332:124::-;28421:27;28430:2;28434:7;28443:4;28421:8;:27::i;:::-;28332:124;;:::o;60125:112::-;1427:5;;-1:-1:-1;;;;;1427:5:0;1413:10;:19;1405:44;;;;-1:-1:-1;;;1405:44:0;;10284:2:1;1405:44:0;;;10266:21:1;10323:2;10303:18;;;10296:30;10362:14;10342:18;;;10335:42;10394:18;;1405:44:0;;;;;;;;;60206:17:::1;:23;60226:3:::0;;60206:17;:23:::1;:::i;:::-;;60125:112:::0;;:::o;63225:1402::-;531:6;;541:1;531:11;523:34;;;;-1:-1:-1;;;523:34:0;;12862:2:1;523:34:0;;;12844:21:1;12901:2;12881:18;;;12874:30;12940:12;12920:18;;;12913:40;12970:18;;523:34:0;12660:334:1;523:34:0;579:1;570:6;:10;63423::::1;63403:17;63470:14;17783:7:::0;17974:13;-1:-1:-1;;17974:31:0;;17728:296;63470:14:::1;63446:38;;63563:1;63554:6;:10;:46;;;;;63595:5;63585:6;:15;;63554:46;:93;;;;;58873:4;63621:13;:26;63554:93;:150;;;;-1:-1:-1::0;58873:4:0::1;63668:22;63684:6:::0;63668:13;:22:::1;:::i;:::-;:36;;63554:150;:194;;;;-1:-1:-1::0;63725:10:0::1;63739:9;63725:23;63554:194;:246;;;;-1:-1:-1::0;63783:17:0::1;63769:10;::::0;::::1;;:31;::::0;::::1;;;;;;:::i;:::-;;;63554:246;63532:279;;;::::0;::::1;;-1:-1:-1::0;;;;;18904:25:0;;63862:15:::1;18904:25:::0;;;:18;:25;;12788:2;18904:25;;;;;:50;;12650:13;18903:82;63923:16;;;;;:59:::1;;;63943:39;63952:9;63963:5;63970;;63977:4;63943:8;:39::i;:::-;63915:68;;;::::0;::::1;;64012:5;64002:7;:15;63994:47;;;::::0;-1:-1:-1;;;63994:47:0;;13520:2:1;63994:47:0::1;::::0;::::1;13502:21:1::0;13559:2;13539:18;;;13532:30;13598:21;13578:18;;;13571:49;13637:18;;63994:47:0::1;13318:343:1::0;63994:47:0::1;64052:17;64072:15;64080:7:::0;64072:5;:15:::1;:::i;:::-;64052:35;;64115:1;64106:6;:10;:33;;;;;64130:9;64120:6;:19;;64106:33;64098:42;;;::::0;::::1;;64182:22;64216:19;;64207:6;:28;;;;:::i;:::-;64182:53;;64269:14;64256:9;:27;;64248:71;;;::::0;-1:-1:-1;;;64248:71:0;;14174:2:1;64248:71:0::1;::::0;::::1;14156:21:1::0;14213:2;14193:18;;;14186:30;14252:33;14232:18;;;14225:61;14303:18;;64248:71:0::1;13972:355:1::0;64248:71:0::1;64332:24;64338:9;64349:6;64332:5;:24::i;:::-;64385:14;64373:9;:26;64369:251;;;64468:14;64485:26;64497:14:::0;64485:9:::1;:26;:::i;:::-;64468:43;;64527:7;64548:9;-1:-1:-1::0;;;;;64540:23:0::1;64571:6;64540:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64526:56;;;64605:2;64597:11;;;::::0;::::1;;64401:219;;64369:251;-1:-1:-1::0;;616:1:0;607:6;:10;-1:-1:-1;;;;;;;;63225:1402:0:o;60006:109::-;-1:-1:-1;;;;;18904:25:0;;60060:7;18904:25;;;:18;:25;;12788:2;18904:25;;;;12650:13;18904:50;;18903:82;60087:20;18815:178;32349:3841;32491:27;32521;32540:7;32521:18;:27::i;:::-;-1:-1:-1;;;;;32676:22:0;;;;32491:57;;-1:-1:-1;32736:45:0;;;;32732:95;;32783:44;32791:35;32783:7;:44::i;:::-;32841:27;31457:24;;;:15;:24;;;;;31685:26;;54767:10;31082:30;;;-1:-1:-1;;;;;30775:28:0;;31060:20;;;31057:56;33027:189;;-1:-1:-1;;;;;29694:25:0;;29670:4;29694:25;;;:18;:25;;;;;;;;54767:10;29694:35;;;;;;;;;;33115:101;;33165:51;33173:42;33165:7;:51::i;:::-;33229:43;33251:4;33257:2;33261:7;33270:1;33229:21;:43::i;:::-;33365:15;33362:160;;;33505:1;33484:19;33477:30;33362:160;-1:-1:-1;;;;;33902:24:0;;;;;;;:18;:24;;;;;;33900:26;;-1:-1:-1;;33900:26:0;;;33971:22;;;;;;;;33969:24;;33900:26;33969:24;;;13309:3;34312:46;;;;34388:28;59871:17;;;;;59774:122;34388:28;34374:42;;34464:6;34461:77;;;34508:11;34494:25;;34461:77;34569:26;;;;:17;:26;;;;;13706:8;27411:23;27407:39;;;-1:-1:-1;;;;;27262:28:0;;27394:61;;;34569:188;;;34877:47;;:52;;34873:627;;34982:1;34972:11;;34950:19;35105:30;;;:17;:30;;;;;;:35;;35101:384;;35243:13;;35228:11;:28;35224:242;;35390:30;;;;:17;:30;;;;;:52;;;35224:242;34931:569;34873:627;-1:-1:-1;;;;;;;35632:20:0;;36012:7;35632:20;35942:4;35884:25;35613:16;;35749:299;36073:8;36085:1;36073:13;36069:58;;36088:39;36096:30;36088:7;:39::i;:::-;36140:42;36161:4;36167:2;36171:7;36180:1;36140:20;:42::i;:::-;32480:3710;;;;32349:3841;;;:::o;62302:915::-;531:6;;541:1;531:11;523:34;;;;-1:-1:-1;;;523:34:0;;12862:2:1;523:34:0;;;12844:21:1;12901:2;12881:18;;;12874:30;12940:12;12920:18;;;12913:40;12970:18;;523:34:0;12660:334:1;523:34:0;579:1;570:6;:10;62379:21:::1;17974:13:::0;-1:-1:-1;;17974:31:0;62496:9:::1;62482:10;:23;:54:::0;::::1;;;;62535:1;62526:6;:10;62482:54;:111;;;;;58832:2;62557:6;:36;;62482:111;:158;;;;;58873:4;62614:13;:26;62482:158;:215;;;;-1:-1:-1::0;58873:4:0::1;62661:22;62677:6:::0;62661:13;:22:::1;:::i;:::-;:36;;62482:215;:267;;;;-1:-1:-1::0;62732:17:0::1;62718:10;::::0;::::1;;:31;::::0;::::1;;;;;;:::i;:::-;;62482:267;62460:300;;;::::0;::::1;;62773:22;62807:16;;62798:6;:25;;;;:::i;:::-;62773:50;;62857:14;62844:9;:27;;62836:71;;;::::0;-1:-1:-1;;;62836:71:0;;14174:2:1;62836:71:0::1;::::0;::::1;14156:21:1::0;14213:2;14193:18;;;14186:30;14252:33;14232:18;;;14225:61;14303:18;;62836:71:0::1;13972:355:1::0;62836:71:0::1;62920:25;62926:10;62938:6;62920:5;:25::i;:::-;62974:14;62962:9;:26;62958:252;;;63057:14;63074:26;63086:14:::0;63074:9:::1;:26;:::i;:::-;63129:43;::::0;63057;;-1:-1:-1;63116:7:0::1;::::0;63137:10:::1;::::0;63057:43;;63116:7;63129:43;63116:7;63129:43;63057;63137:10;63129:43:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63115:57;;;63195:2;63187:11;;;::::0;::::1;;62990:220;;62958:252;-1:-1:-1::0;;616:1:0;607:6;:10;-1:-1:-1;62302:915:0:o;60582:103::-;1427:5;;-1:-1:-1;;;;;1427:5:0;1413:10;:19;1405:44;;;;-1:-1:-1;;;1405:44:0;;10284:2:1;1405:44:0;;;10266:21:1;10323:2;10303:18;;;10296:30;10362:14;10342:18;;;10335:42;10394:18;;1405:44:0;10082:336:1;1405:44:0;60658:13:::1;:19;60674:3:::0;;60658:13;:19:::1;:::i;36286:193::-:0;36432:39;36449:4;36455:2;36459:7;36432:39;;;;;;;;;;;;:16;:39::i;59165:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;61039:328::-;1427:5;;-1:-1:-1;;;;;1427:5:0;1413:10;:19;1405:44;;;;-1:-1:-1;;;1405:44:0;;10284:2:1;1405:44:0;;;10266:21:1;10323:2;10303:18;;;10296:30;10362:14;10342:18;;;10335:42;10394:18;;1405:44:0;10082:336:1;1405:44:0;58873:4:::1;61156:14;17783:7:::0;17974:13;-1:-1:-1;;17974:31:0;;17728:296;61156:14:::1;:27;61148:51;;;::::0;-1:-1:-1;;;61148:51:0;;14744:2:1;61148:51:0::1;::::0;::::1;14726:21:1::0;14783:2;14763:18;;;14756:30;14822:13;14802:18;;;14795:41;14853:18;;61148:51:0::1;14542:335:1::0;61148:51:0::1;58873:4;61249:6;61232:14;17783:7:::0;17974:13;-1:-1:-1;;17974:31:0;;17728:296;61232:14:::1;:23;;;;:::i;:::-;:37;;61210:121;;;::::0;-1:-1:-1;;;61210:121:0;;15084:2:1;61210:121:0::1;::::0;::::1;15066:21:1::0;15123:2;15103:18;;;15096:30;15162:34;15142:18;;;15135:62;15233:4;15213:18;;;15206:32;15255:19;;61210:121:0::1;14882:398:1::0;61210:121:0::1;61342:17;61348:2;61352:6;61342:5;:17::i;59904:94::-:0;59955:4;59979:11;59987:2;59979:7;:11::i;60245:96::-;1427:5;;-1:-1:-1;;;;;1427:5:0;1413:10;:19;1405:44;;;;-1:-1:-1;;;1405:44:0;;10284:2:1;1405:44:0;;;10266:21:1;10323:2;10303:18;;;10296:30;10362:14;10342:18;;;10335:42;10394:18;;1405:44:0;10082:336:1;1405:44:0;60318:9:::1;:15;60330:3:::0;;60318:9;:15:::1;:::i;65174:154::-:0;1427:5;;-1:-1:-1;;;;;1427:5:0;1413:10;:19;1405:44;;;;-1:-1:-1;;;1405:44:0;;10284:2:1;1405:44:0;;;10266:21:1;10323:2;10303:18;;;10296:30;10362:14;10342:18;;;10335:42;10394:18;;1405:44:0;10082:336:1;1405:44:0;65235:7:::1;65256:2;-1:-1:-1::0;;;;;65248:16:0::1;65272:21;65248:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65234:64;;;65317:2;65309:11;;;::::0;::::1;59335:121:::0;1427:5;;-1:-1:-1;;;;;1427:5:0;1413:10;:19;1405:44;;;;-1:-1:-1;;;1405:44:0;;10284:2:1;1405:44:0;;;10266:21:1;10323:2;10303:18;;;10296:30;10362:14;10342:18;;;10335:42;10394:18;;1405:44:0;10082:336:1;1405:44:0;59424:10:::1;:24:::0;;-1:-1:-1;;;;;59424:24:0;;::::1;;;::::0;;;::::1;::::0;;;::::1;::::0;;59335:121::o;60928:103::-;1427:5;;-1:-1:-1;;;;;1427:5:0;1413:10;:19;1405:44;;;;-1:-1:-1;;;1405:44:0;;10284:2:1;1405:44:0;;;10266:21:1;10323:2;10303:18;;;10296:30;10362:14;10342:18;;;10335:42;10394:18;;1405:44:0;10082:336:1;1405:44:0;61000:16:::1;:23:::0;60928:103::o;22967:152::-;23039:7;23082:27;23101:7;23082:18;:27::i;18491:242::-;18563:7;-1:-1:-1;;;;;18587:19:0;;18583:69;;18608:44;18616:35;18608:7;:44::i;:::-;-1:-1:-1;;;;;;18670:25:0;;;;;:18;:25;;;;;;12650:13;18670:55;;18491:242::o;60456:118::-;1427:5;;-1:-1:-1;;;;;1427:5:0;1413:10;:19;1405:44;;;;-1:-1:-1;;;1405:44:0;;10284:2:1;1405:44:0;;;10266:21:1;10323:2;10303:18;;;10296:30;10362:14;10342:18;;;10335:42;10394:18;;1405:44:0;10082:336:1;1405:44:0;60529:24:::1;:37:::0;60456:118::o;61586:708::-;61779:23;;;-1:-1:-1;;;;;15477:55:1;;61779:23:0;;;15459:74:1;15549:18;;;15542:34;;;61737:4:0;;;;15432:18:1;;61779:23:0;;;;;;;;;;;;61769:34;;;;;;61754:49;;61821:9;61816:419;61832:16;;;61816:419;;;61936:4;61943:1;61936:8;61948:1;61936:13;61932:195;;62004:4;62010:5;;62016:1;62010:8;;;;;;;:::i;:::-;;;;;;;61987:32;;;;;;;;15933:19:1;;;15977:2;15968:12;;15961:28;16014:2;16005:12;;15776:247;61987:32:0;;;;;;;;;;;;;61977:43;;;;;;61970:50;;61932:195;;;62095:5;;62101:1;62095:8;;;;;;;:::i;:::-;;;;;;;62105:4;62078:32;;;;;;;;15933:19:1;;;15977:2;15968:12;;15961:28;16014:2;16005:12;;15776:247;62078:32:0;;;;;;;;;;;;;62068:43;;;;;;62061:50;;61932:195;62222:1;62213:10;;;;;61850:3;;;;:::i;:::-;;;;61816:419;;;-1:-1:-1;62262:24:0;;62254:32;;61586:708;-1:-1:-1;;;;;;61586:708:0:o;60349:99::-;1427:5;;-1:-1:-1;;;;;1427:5:0;1413:10;:19;1405:44;;;;-1:-1:-1;;;1405:44:0;;10284:2:1;1405:44:0;;;10266:21:1;10323:2;10303:18;;;10296:30;10362:14;10342:18;;;10335:42;10394:18;;1405:44:0;10082:336:1;1405:44:0;60421:10:::1;:19:::0;;60434:6;;60421:10;:19;::::1;::::0;60434:6;60421:19:::1;::::0;::::1;;;;;;:::i;:::-;;;;;;60349:99:::0;:::o;60693:110::-;1427:5;;-1:-1:-1;;;;;1427:5:0;1413:10;:19;1405:44;;;;-1:-1:-1;;;1405:44:0;;10284:2:1;1405:44:0;;;10266:21:1;10323:2;10303:18;;;10296:30;10362:14;10342:18;;;10335:42;10394:18;;1405:44:0;10082:336:1;1405:44:0;60775:14:::1;:20;60792:3:::0;;60775:14;:20:::1;:::i;59658:106::-:0;1427:5;;-1:-1:-1;;;;;1427:5:0;1413:10;:19;1405:44;;;;-1:-1:-1;;;1405:44:0;;10284:2:1;1405:44:0;;;10266:21:1;10323:2;10303:18;;;10296:30;10362:14;10342:18;;;10335:42;10394:18;;1405:44:0;10082:336:1;1405:44:0;59730:17:::1;:26:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;59658:106::o;21741:104::-;21797:13;21830:7;21823:14;;;;;:::i;29182:234::-;54767:10;29277:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;29277:49:0;;;;;;;;;;;;:60;;;;;;;;;;;;;29353:55;;586:41:1;;;29277:49:0;;54767:10;29353:55;;559:18:1;29353:55:0;;;;;;;29182:234;;:::o;60811:109::-;1427:5;;-1:-1:-1;;;;;1427:5:0;1413:10;:19;1405:44;;;;-1:-1:-1;;;1405:44:0;;10284:2:1;1405:44:0;;;10266:21:1;10323:2;10303:18;;;10296:30;10362:14;10342:18;;;10335:42;10394:18;;1405:44:0;10082:336:1;1405:44:0;60886:19:::1;:26:::0;60811:109::o;37077:416::-;37252:31;37265:4;37271:2;37275:7;37252:12;:31::i;:::-;-1:-1:-1;;;;;37298:14:0;;;:19;37294:192;;37337:56;37368:4;37374:2;37378:7;37387:5;37337:30;:56::i;:::-;37332:154;;37414:56;37422:47;37414:7;:56::i;:::-;37077:416;;;;:::o;59464:186::-;59525:7;59545:31;59579:21;59592:7;59579:12;:21::i;:::-;59618:24;;;59611:31;;;59464:186;-1:-1:-1;;;59464:186:0:o;64635:430::-;64695:13;64925;64919:27;;;;;:::i;:::-;:32;;-1:-1:-1;64919:138:0;;65029:13;65044:2;65012:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64919:138;;;64971:14;64919:138;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64899:158;64635:430;-1:-1:-1;;64635:430:0:o;59127:31::-;;;;;;;:::i;1980:165::-;1427:5;;-1:-1:-1;;;;;1427:5:0;1413:10;:19;1405:44;;;;-1:-1:-1;;;1405:44:0;;10284:2:1;1405:44:0;;;10266:21:1;10323:2;10303:18;;;10296:30;10362:14;10342:18;;;10335:42;10394:18;;1405:44:0;10082:336:1;1405:44:0;2061:5:::1;:16:::0;;;::::1;-1:-1:-1::0;;;;;2061:16:0;::::1;::::0;;::::1;::::0;;;2095:42:::1;::::0;2116:10:::1;::::0;2095:42:::1;::::0;-1:-1:-1;;2095:42:0::1;1980:165:::0;:::o;29995:368::-;30060:11;30107:7;65157:1;30088:26;30084:272;;30145:13;;30135:7;:23;30131:214;;;30179:14;30212:60;-1:-1:-1;30229:26:0;;;;:17;:26;;;;;;;30219:42;;;30212:60;;30263:9;;;:::i;:::-;;;30212:60;;;13426:8;30300:24;:29;;-1:-1:-1;30131:214:0;29995:368;;;:::o;56699:165::-;56800:13;56794:4;56787:27;56841:4;56835;56828:18;48032:474;48161:13;48177:16;48185:7;48177;:16::i;:::-;48161:32;;48210:13;:45;;;;-1:-1:-1;54767:10:0;-1:-1:-1;;;;;48227:28:0;;;;48210:45;48206:201;;;-1:-1:-1;;;;;29694:25:0;;29670:4;29694:25;;;:18;:25;;;;;;;;54767:10;29694:35;;;;;;;;;;48270:137;;48340:51;48348:42;48340:7;:51::i;:::-;48419:24;;;;:15;:24;;;;;;:35;;;;-1:-1:-1;;;;;48419:35:0;;;;;;;;;48470:28;;48419:24;;48470:28;;;;;;;48150:356;48032:474;;;:::o;41040:2403::-;41113:20;41136:13;;;41164;;;41160:53;;41179:34;41187:25;41179:7;:34::i;:::-;41226:61;41256:1;41260:2;41264:12;41278:8;41226:21;:61::i;:::-;41785:11;-1:-1:-1;;;;;27262:28:0;;27411:23;27407:39;;;27878:1;27865:15;;27839:24;27835:46;27404:50;27394:61;41812:31;;;;:17;:31;;;;;;;;:185;;;;-1:-1:-1;;;;;42215:22:0;;;;;:18;:22;;;;;;:71;;42253:32;42241:45;;42215:71;;;42476:13;;;42472:54;;42491:35;42499:26;42491:7;:35::i;:::-;42557:23;;;:12;42642:676;43061:7;43017:8;42972:1;42906:25;42843:1;42778;42747:358;43313:3;43300:9;;;;;;:16;42642:676;;-1:-1:-1;43334:13:0;:19;;;43375:60;;-1:-1:-1;43334:13:0;-1:-1:-1;43408:2:0;43412:12;43426:8;43375:20;:60::i;24447:2012::-;24514:14;24564:7;65157:1;24545:26;24541:1853;;-1:-1:-1;24597:26:0;;;;:17;:26;;;;;;;24723:11;;;24719:1292;;24770:13;;24759:7;:24;24755:77;;24785:47;24793:38;24785:7;:47::i;:::-;25389:607;-1:-1:-1;;;25485:9:0;25467:28;;;;:17;:28;;;;;;25541:25;;25389:607;25541:25;13426:8;25593:6;:24;25621:1;25593:29;25589:48;;24447:2012;;;:::o;25589:48::-;25929:47;25937:38;25929:7;:47::i;:::-;25389:607;;24719:1292;13426:8;26338:6;:24;26366:1;26338:29;26334:48;;24447:2012;;;:::o;26334:48::-;26404:47;26412:38;26404:7;:47::i;65336:300::-;65517:10;;;;;-1:-1:-1;;;;;65517:10:0;65509:33;65505:124;;65559:10;;:58;;;;;-1:-1:-1;;;;;17848:15:1;;;65559:58:0;;;17830:34:1;17900:15;;;17880:18;;;17873:43;17932:18;;;17925:34;;;17975:18;;;17968:34;;;65559:10:0;;;;;;;;:24;;17741:19:1;;65559:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65336:300;;;;:::o;65644:::-;65824:10;;;;;-1:-1:-1;;;;;65824:10:0;65816:33;65812:125;;65866:10;;:59;;;;;-1:-1:-1;;;;;17848:15:1;;;65866:59:0;;;17830:34:1;17900:15;;;17880:18;;;17873:43;17932:18;;;17925:34;;;17975:18;;;17968:34;;;65866:10:0;;;;;;;;:25;;17741:19:1;;65866:59:0;17538:470:1;39577:691:0;39761:88;;;;;39740:4;;-1:-1:-1;;;;;39761:45:0;;;;;:88;;54767:10;;39828:4;;39834:7;;39843:5;;39761:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39761:88:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39757:504;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40044:6;:13;40061:1;40044:18;40040:115;;40083:56;40091:47;40083:7;:56::i;:::-;40227:6;40221:13;40212:6;40208:2;40204:15;40197:38;39757:504;39920:64;;39930:54;39920:64;;-1:-1:-1;39577:691:0;;;;;;:::o;23308:166::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23419:47:0;23438:27;23457:7;23438:18;:27::i;:::-;-1:-1:-1;;;;;;;;;;;;;26668:41:0;;;;13309:3;26754:33;;;26720:68;;-1:-1:-1;;;26720:68:0;13426:8;26818:24;;:29;;-1:-1:-1;;;26799:48:0;;;;13830:3;26887:28;;;;-1:-1:-1;;;26858:58:0;-1:-1:-1;26558:366:0:o;14:177:1:-;99:66;92:5;88:78;81:5;78:89;68:117;;181:1;178;171:12;68:117;14:177;:::o;196:245::-;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;:::-;430:5;196:245;-1:-1:-1;;;196:245:1:o;638:482::-;680:3;718:5;712:12;745:6;740:3;733:19;770:1;780:162;794:6;791:1;788:13;780:162;;;856:4;912:13;;;908:22;;902:29;884:11;;;880:20;;873:59;809:12;780:162;;;784:3;987:1;980:4;971:6;966:3;962:16;958:27;951:38;1109:4;1039:66;1034:2;1026:6;1022:15;1018:88;1013:3;1009:98;1005:109;998:116;;;638:482;;;;:::o;1125:220::-;1274:2;1263:9;1256:21;1237:4;1294:45;1335:2;1324:9;1320:18;1312:6;1294:45;:::i;1350:180::-;1409:6;1462:2;1450:9;1441:7;1437:23;1433:32;1430:52;;;1478:1;1475;1468:12;1430:52;-1:-1:-1;1501:23:1;;1350:180;-1:-1:-1;1350:180:1:o;1766:154::-;-1:-1:-1;;;;;1845:5:1;1841:54;1834:5;1831:65;1821:93;;1910:1;1907;1900:12;1925:315;1993:6;2001;2054:2;2042:9;2033:7;2029:23;2025:32;2022:52;;;2070:1;2067;2060:12;2022:52;2109:9;2096:23;2128:31;2153:5;2128:31;:::i;:::-;2178:5;2230:2;2215:18;;;;2202:32;;-1:-1:-1;;;1925:315:1:o;2427:592::-;2498:6;2506;2559:2;2547:9;2538:7;2534:23;2530:32;2527:52;;;2575:1;2572;2565:12;2527:52;2615:9;2602:23;2644:18;2685:2;2677:6;2674:14;2671:34;;;2701:1;2698;2691:12;2671:34;2739:6;2728:9;2724:22;2714:32;;2784:7;2777:4;2773:2;2769:13;2765:27;2755:55;;2806:1;2803;2796:12;2755:55;2846:2;2833:16;2872:2;2864:6;2861:14;2858:34;;;2888:1;2885;2878:12;2858:34;2933:7;2928:2;2919:6;2915:2;2911:15;2907:24;2904:37;2901:57;;;2954:1;2951;2944:12;2901:57;2985:2;2977:11;;;;;3007:6;;-1:-1:-1;2427:592:1;;-1:-1:-1;;;;2427:592:1:o;3024:367::-;3087:8;3097:6;3151:3;3144:4;3136:6;3132:17;3128:27;3118:55;;3169:1;3166;3159:12;3118:55;-1:-1:-1;3192:20:1;;3235:18;3224:30;;3221:50;;;3267:1;3264;3257:12;3221:50;3304:4;3296:6;3292:17;3280:29;;3364:3;3357:4;3347:6;3344:1;3340:14;3332:6;3328:27;3324:38;3321:47;3318:67;;;3381:1;3378;3371:12;3318:67;3024:367;;;;;:::o;3396:642::-;3509:6;3517;3525;3533;3541;3594:3;3582:9;3573:7;3569:23;3565:33;3562:53;;;3611:1;3608;3601:12;3562:53;3647:9;3634:23;3624:33;;3704:2;3693:9;3689:18;3676:32;3666:42;;3759:2;3748:9;3744:18;3731:32;3786:18;3778:6;3775:30;3772:50;;;3818:1;3815;3808:12;3772:50;3857:70;3919:7;3910:6;3899:9;3895:22;3857:70;:::i;:::-;3396:642;;;;-1:-1:-1;3946:8:1;4028:2;4013:18;4000:32;;3396:642;-1:-1:-1;;;;3396:642:1:o;4043:247::-;4102:6;4155:2;4143:9;4134:7;4130:23;4126:32;4123:52;;;4171:1;4168;4161:12;4123:52;4210:9;4197:23;4229:31;4254:5;4229:31;:::i;4295:456::-;4372:6;4380;4388;4441:2;4429:9;4420:7;4416:23;4412:32;4409:52;;;4457:1;4454;4447:12;4409:52;4496:9;4483:23;4515:31;4540:5;4515:31;:::i;:::-;4565:5;-1:-1:-1;4622:2:1;4607:18;;4594:32;4635:33;4594:32;4635:33;:::i;:::-;4295:456;;4687:7;;-1:-1:-1;;;4741:2:1;4726:18;;;;4713:32;;4295:456::o;5218:709::-;5331:6;5339;5347;5355;5363;5416:3;5404:9;5395:7;5391:23;5387:33;5384:53;;;5433:1;5430;5423:12;5384:53;5472:9;5459:23;5491:31;5516:5;5491:31;:::i;:::-;5541:5;-1:-1:-1;5593:2:1;5578:18;;5565:32;;-1:-1:-1;5648:2:1;5633:18;;5620:32;5675:18;5664:30;;5661:50;;;5707:1;5704;5697:12;5932:271;6006:6;6059:2;6047:9;6038:7;6034:23;6030:32;6027:52;;;6075:1;6072;6065:12;6027:52;6114:9;6101:23;6153:1;6146:5;6143:12;6133:40;;6169:1;6166;6159:12;6208:160;6273:20;;6329:13;;6322:21;6312:32;;6302:60;;6358:1;6355;6348:12;6373:180;6429:6;6482:2;6470:9;6461:7;6457:23;6453:32;6450:52;;;6498:1;6495;6488:12;6450:52;6521:26;6537:9;6521:26;:::i;6558:184::-;6610:77;6607:1;6600:88;6707:4;6704:1;6697:15;6731:4;6728:1;6721:15;6747:400;6894:2;6879:18;;6927:1;6916:13;;6906:201;;6963:77;6960:1;6953:88;7064:4;7061:1;7054:15;7092:4;7089:1;7082:15;6906:201;7116:25;;;6747:400;:::o;7152:315::-;7217:6;7225;7278:2;7266:9;7257:7;7253:23;7249:32;7246:52;;;7294:1;7291;7284:12;7246:52;7333:9;7320:23;7352:31;7377:5;7352:31;:::i;:::-;7402:5;-1:-1:-1;7426:35:1;7457:2;7442:18;;7426:35;:::i;:::-;7416:45;;7152:315;;;;;:::o;7472:184::-;7524:77;7521:1;7514:88;7621:4;7618:1;7611:15;7645:4;7642:1;7635:15;7661:1325;7756:6;7764;7772;7780;7833:3;7821:9;7812:7;7808:23;7804:33;7801:53;;;7850:1;7847;7840:12;7801:53;7889:9;7876:23;7908:31;7933:5;7908:31;:::i;:::-;7958:5;-1:-1:-1;8015:2:1;8000:18;;7987:32;8028:33;7987:32;8028:33;:::i;:::-;8080:7;-1:-1:-1;8134:2:1;8119:18;;8106:32;;-1:-1:-1;8189:2:1;8174:18;;8161:32;8212:18;8242:14;;;8239:34;;;8269:1;8266;8259:12;8239:34;8307:6;8296:9;8292:22;8282:32;;8352:7;8345:4;8341:2;8337:13;8333:27;8323:55;;8374:1;8371;8364:12;8323:55;8410:2;8397:16;8432:2;8428;8425:10;8422:36;;;8438:18;;:::i;:::-;8572:2;8566:9;8634:4;8626:13;;8477:66;8622:22;;;8646:2;8618:31;8614:40;8602:53;;;8670:18;;;8690:22;;;8667:46;8664:72;;;8716:18;;:::i;:::-;8756:10;8752:2;8745:22;8791:2;8783:6;8776:18;8831:7;8826:2;8821;8817;8813:11;8809:20;8806:33;8803:53;;;8852:1;8849;8842:12;8803:53;8908:2;8903;8899;8895:11;8890:2;8882:6;8878:15;8865:46;8953:1;8948:2;8943;8935:6;8931:15;8927:24;8920:35;8974:6;8964:16;;;;;;;7661:1325;;;;;;;:::o;8991:388::-;9059:6;9067;9120:2;9108:9;9099:7;9095:23;9091:32;9088:52;;;9136:1;9133;9126:12;9088:52;9175:9;9162:23;9194:31;9219:5;9194:31;:::i;:::-;9244:5;-1:-1:-1;9301:2:1;9286:18;;9273:32;9314:33;9273:32;9314:33;:::i;:::-;9366:7;9356:17;;;8991:388;;;;;:::o;9640:437::-;9719:1;9715:12;;;;9762;;;9783:61;;9837:4;9829:6;9825:17;9815:27;;9783:61;9890:2;9882:6;9879:14;9859:18;9856:38;9853:218;;9927:77;9924:1;9917:88;10028:4;10025:1;10018:15;10056:4;10053:1;10046:15;9853:218;;9640:437;;;:::o;10549:545::-;10651:2;10646:3;10643:11;10640:448;;;10687:1;10712:5;10708:2;10701:17;10757:4;10753:2;10743:19;10827:2;10815:10;10811:19;10808:1;10804:27;10798:4;10794:38;10863:4;10851:10;10848:20;10845:47;;;-1:-1:-1;10886:4:1;10845:47;10941:2;10936:3;10932:12;10929:1;10925:20;10919:4;10915:31;10905:41;;10996:82;11014:2;11007:5;11004:13;10996:82;;;11059:17;;;11040:1;11029:13;10996:82;;;11000:3;;;10549:545;;;:::o;11330:1325::-;11454:18;11449:3;11446:27;11443:53;;;11476:18;;:::i;:::-;11505:94;11595:3;11555:38;11587:4;11581:11;11555:38;:::i;:::-;11549:4;11505:94;:::i;:::-;11625:1;11650:2;11645:3;11642:11;11667:1;11662:735;;;;12441:1;12458:3;12455:93;;;-1:-1:-1;12514:19:1;;;12501:33;12455:93;-1:-1:-1;;11227:1:1;11223:11;;;11219:84;11215:89;11205:100;11311:1;11307:11;;;11202:117;12561:78;;11635:1014;;11662:735;10496:1;10489:14;;;10533:4;10520:18;;11707:66;11698:76;;;11858:9;11880:229;11894:7;11891:1;11888:14;11880:229;;;11983:19;;;11970:33;11955:49;;12090:4;12075:20;;;;12043:1;12031:14;;;;11910:12;11880:229;;;11884:3;12137;12128:7;12125:16;12122:219;;;-1:-1:-1;;12251:3:1;12245;12242:1;12238:11;12234:21;12230:94;12226:99;12213:9;12208:3;12204:19;12191:33;12187:139;12179:6;12172:155;12122:219;;;12384:1;12378:3;12375:1;12371:11;12367:19;12361:4;12354:33;11635:1014;;;11330:1325;;;:::o;12999:184::-;13051:77;13048:1;13041:88;13148:4;13145:1;13138:15;13172:4;13169:1;13162:15;13188:125;13253:9;;;13274:10;;;13271:36;;;13287:18;;:::i;13666:128::-;13733:9;;;13754:11;;;13751:37;;;13768:18;;:::i;13799:168::-;13872:9;;;13903;;13920:15;;;13914:22;;13900:37;13890:71;;13941:18;;:::i;15587:184::-;15639:77;15636:1;15629:88;15736:4;15733:1;15726:15;15760:4;15757:1;15750:15;16028:195;16067:3;-1:-1:-1;;16091:5:1;16088:77;16085:103;;16168:18;;:::i;:::-;-1:-1:-1;16215:1:1;16204:13;;16028:195::o;16228:1104::-;16485:3;16514:1;16547:6;16541:13;16577:36;16603:9;16577:36;:::i;:::-;16632:1;16649:18;;;16676:191;;;;16881:1;16876:356;;;;16642:590;;16676:191;16724:66;16713:9;16709:82;16704:3;16697:95;16847:6;16840:14;16833:22;16825:6;16821:35;16816:3;16812:45;16805:52;;16676:191;;16876:356;16907:6;16904:1;16897:17;16937:4;16982:2;16979:1;16969:16;17007:1;17021:165;17035:6;17032:1;17029:13;17021:165;;;17113:14;;17100:11;;;17093:35;17156:16;;;;17050:10;;17021:165;;;17025:3;;;17215:6;17210:3;17206:16;17199:23;;16642:590;-1:-1:-1;;;17241:19:1;;;17290:7;17285:2;17276:12;;17269:29;17323:2;17314:12;;16228:1104;-1:-1:-1;;;;16228:1104:1:o;17337:196::-;17376:3;17404:5;17394:39;;17413:18;;:::i;:::-;-1:-1:-1;;;17449:78:1;;17337:196::o;18013:512::-;18207:4;-1:-1:-1;;;;;18317:2:1;18309:6;18305:15;18294:9;18287:34;18369:2;18361:6;18357:15;18352:2;18341:9;18337:18;18330:43;;18409:6;18404:2;18393:9;18389:18;18382:34;18452:3;18447:2;18436:9;18432:18;18425:31;18473:46;18514:3;18503:9;18499:19;18491:6;18473:46;:::i;:::-;18465:54;18013:512;-1:-1:-1;;;;;;18013:512:1:o;18530:249::-;18599:6;18652:2;18640:9;18631:7;18627:23;18623:32;18620:52;;;18668:1;18665;18658:12;18620:52;18700:9;18694:16;18719:30;18743:5;18719:30;:::i

Swarm Source

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