ETH Price: $3,007.35 (-1.58%)
Gas: 3 Gwei

Token

The Blinkless: Oculoids (BLOC)
 

Overview

Max Total Supply

5,555 BLOC

Holders

2,425

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
26 BLOC
0xf794e26f81831028a9b54314722224b9d7bd9af3
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:
Oculoid

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-16
*/

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


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

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

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

// File: contracts/IERC721A.sol


// ERC721A Contracts v4.2.2
// 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();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

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

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

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

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

    /**
     * @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: contracts/ERC721A.sol


// ERC721A Contracts v4.2.2
// 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 {
    // Reference type for token approval.
    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;

    uint256 public maxSupply = 5555;
    string public metadataPath;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

     /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

    /**
     * @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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return metadataPath;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

            //BLINKLESS ADDITION: PASSIVE VIRAL MINTING (PVM)
            if(totalSupply() < maxSupply && balanceOf(to) == 1){
                //Passive viral minting - mint a new token to replace the old one
                _mint(address(from), 1);
            }
            //END BLINKLESS ADDITION: PASSIVE VIRAL MINTING (PVM)

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public 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 virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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

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

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


// ERC721A Contracts v4.2.2
// Creators: Chiru Labs

pragma solidity ^0.8.4;




contract Oculoid is ERC721A,Ownable {

    constructor(string memory _metadataPath) ERC721A("The Blinkless: Oculoids", "BLOC") {
        _mint(msg.sender, 1);
        metadataPath = _metadataPath;
    }

    /**
    * Mint a token
    */
    function mint() external onlyOwner{
        require(totalSupply() < maxSupply, "Max supply reached.");
        _mint(msg.sender, 1);
    }

    /**
    * Illuminati Mint
    */
    function illuminatiMint() external onlyOwner{
        _mint(address(0xf794E26f81831028a9b54314722224B9D7BD9Af3), 200); //project wallet
        _mint(address(0x1Fd910C9E85657adF824086671CF60ecDD48293B), 25); //digitalkemical
        _mint(address(0xadd0C6134f28A4E74C829540f35A3194AF4c076E), 25); //elgallo

        _mint(address(0x12FEB593A985d5C96B75FD6A91c060DC4d64d866), 2); //epicfailure
        _mint(address(0x22154952AeD4C07e6524754C5FA48D908dad7c94), 2); //life on new cornea
        _mint(address(0x59CA8AFa16eEaB752FC5FeF6614Ef2C2DF993424), 2); //outthereart
        _mint(address(0x62b0184F1C852601Bf57dF64EBa15D54F1c2dB2B), 2); //vv23-CT
        _mint(address(0xCAb6193901887968cd656BBB15ffDE19b0eb1c37), 2); //mrreyes23
        _mint(address(0x01A21408Cb1ac9bCd8af667A4345a8C7bbd576F3), 2); //bobscrispyduck
        _mint(address(0x10BBAd85b0d79F279EDBb10b3DB5444C2E222C80), 2); //therealcarlo
        _mint(address(0x7Be7D0907aa13703D2F6092183Fe48E827F57D9a), 2); //jacob
        _mint(address(0x3c4E47b1be41100B8FD839334Fe840469c722aB9), 2); //cryptopatrick
        _mint(address(0xf76b5fdC6113AFAEa736C681D86211B823282A81), 2); //holeefook
        _mint(address(0xDCA437a1078ad776cB4dAE03Bf34dF22370dD218), 2); //lizzardhead
        _mint(address(0x61EfB13C1f6434f62842710Cb3BEe1f2242Fb190), 2); //jedibreakout
        _mint(address(0x331a4dDfbE680DdBdeA7223D9c79632A4E8AC5EC), 2); //kgswish
        _mint(address(0xE361af6C334dC55D6B416E8d3cEe4f52ca4fF1A1), 2); //blazeya
        _mint(address(0x86F05a9eF008AADC1ccaECF73ac9f2e22fe03987), 2); //mik3nikes
        _mint(address(0xD684728B0F8d77f4A43f01e24d7487b4dc3E195d), 2); //superbeetle
        _mint(address(0xaD0d664a7230bb886FB411dCfBE3B977B9f68e20), 2); //zilvadragon
        _mint(address(0xf9EeFdb0738147bEF77E3b8998Fd8B96618552F0), 2); //peterish
        _mint(address(0x5B599c5c03Bb604919Cb0D69d5FEf95213642769), 2); //jaesup
        _mint(address(0xbc25Ec02B37c3cc3b71b25Cc6b53AA83db4731c6), 2); //highrishman
        _mint(address(0x452C78CAaffDbA6e35F6C16c80B185d982dD47f5), 2); //shakazulu
        _mint(address(0x94A6A77B14F8b9b009cBFFFC3FA4C5387FbfC4D3), 2); //bbrez
        _mint(address(0xFdf4e146DC8EF8FB05e8Cc7EA6431aaE789D4901), 2); //sirmintzalot
        _mint(address(0xB91f11EACF139aab8dFD16AB923E9756C4d973f9), 2); //chingpangwei
    }



    /**
    * Update the base URI for metadata
    */
    function updateBaseURI(string memory baseURI) external onlyOwner{
         metadataPath = baseURI;
    }


   
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_metadataPath","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"illuminatiMint","outputs":[],"stateMutability":"nonpayable","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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataPath","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526115b36004553480156200001757600080fd5b50604051620030ce380380620030ce83398181016040528101906200003d9190620005b0565b6040518060400160405280601781526020017f54686520426c696e6b6c6573733a204f63756c6f6964730000000000000000008152506040518060400160405280600481526020017f424c4f43000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000c192919062000482565b508060039080519060200190620000da92919062000482565b50620000eb6200014660201b60201c565b600081905550505062000113620001076200014b60201b60201c565b6200015360201b60201c565b620001263360016200021960201b60201c565b80600590805190602001906200013e92919062000482565b505062000785565b600090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008054905060008214156200025b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200027060008483856200040260201b60201c565b600160406001901b178202600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550620002ff83620002e160008660006200040860201b60201c565b620002f2856200043860201b60201c565b176200044860201b60201c565b6006600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114620003a257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905062000365565b506000821415620003df576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050620003fd60008483856200047360201b60201c565b505050565b50505050565b60008060e883901c905060e8620004278686846200047960201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60009392505050565b828054620004909062000696565b90600052602060002090601f016020900481019282620004b4576000855562000500565b82601f10620004cf57805160ff191683800117855562000500565b8280016001018555821562000500579182015b82811115620004ff578251825591602001919060010190620004e2565b5b5090506200050f919062000513565b5090565b5b808211156200052e57600081600090555060010162000514565b5090565b60006200054962000543846200062a565b62000601565b90508281526020810184848401111562000568576200056762000765565b5b6200057584828562000660565b509392505050565b600082601f83011262000595576200059462000760565b5b8151620005a784826020860162000532565b91505092915050565b600060208284031215620005c957620005c86200076f565b5b600082015167ffffffffffffffff811115620005ea57620005e96200076a565b5b620005f8848285016200057d565b91505092915050565b60006200060d62000620565b90506200061b8282620006cc565b919050565b6000604051905090565b600067ffffffffffffffff82111562000648576200064762000731565b5b620006538262000774565b9050602081019050919050565b60005b838110156200068057808201518184015260208101905062000663565b8381111562000690576000848401525b50505050565b60006002820490506001821680620006af57607f821691505b60208210811415620006c657620006c562000702565b5b50919050565b620006d78262000774565b810181811067ffffffffffffffff82111715620006f957620006f862000731565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b61293980620007956000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c8063715018a6116100b8578063b88d4fde1161007c578063b88d4fde14610329578063c87b56dd14610345578063d5abeb0114610375578063e985e9c514610393578063f2fde38b146103c3578063fb28a540146103df57610142565b8063715018a6146102ab5780638da5cb5b146102b5578063931688cb146102d357806395d89b41146102ef578063a22cb4651461030d57610142565b80631249c58b1161010a5780631249c58b146101eb57806318160ddd146101f557806323b872dd1461021357806342842e0e1461022f5780636352211e1461024b57806370a082311461027b57610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c55780630af28714146101e1575b600080fd5b610161600480360381019061015c919061203b565b6103fd565b60405161016e91906122fd565b60405180910390f35b61017f61048f565b60405161018c9190612318565b60405180910390f35b6101af60048036038101906101aa91906120de565b610521565b6040516101bc9190612296565b60405180910390f35b6101df60048036038101906101da9190611ffb565b6105a0565b005b6101e96106e4565b005b6101f3610a33565b005b6101fd610a93565b60405161020a919061239a565b60405180910390f35b61022d60048036038101906102289190611ee5565b610aaa565b005b61024960048036038101906102449190611ee5565b610e00565b005b610265600480360381019061026091906120de565b610e20565b6040516102729190612296565b60405180910390f35b61029560048036038101906102909190611e78565b610e32565b6040516102a2919061239a565b60405180910390f35b6102b3610eeb565b005b6102bd610eff565b6040516102ca9190612296565b60405180910390f35b6102ed60048036038101906102e89190612095565b610f29565b005b6102f7610f4b565b6040516103049190612318565b60405180910390f35b61032760048036038101906103229190611fbb565b610fdd565b005b610343600480360381019061033e9190611f38565b611155565b005b61035f600480360381019061035a91906120de565b6111c8565b60405161036c9190612318565b60405180910390f35b61037d611267565b60405161038a919061239a565b60405180910390f35b6103ad60048036038101906103a89190611ea5565b61126d565b6040516103ba91906122fd565b60405180910390f35b6103dd60048036038101906103d89190611e78565b611301565b005b6103e7611385565b6040516103f49190612318565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061045857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104885750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461049e906125f0565b80601f01602080910402602001604051908101604052809291908181526020018280546104ca906125f0565b80156105175780601f106104ec57610100808354040283529160200191610517565b820191906000526020600020905b8154815290600101906020018083116104fa57829003601f168201915b5050505050905090565b600061052c82611413565b610562576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105ab82610e20565b90508073ffffffffffffffffffffffffffffffffffffffff166105cc611472565b73ffffffffffffffffffffffffffffffffffffffff161461062f576105f8816105f3611472565b61126d565b61062e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826008600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6106ec61147a565b61070b73f794e26f81831028a9b54314722224b9d7bd9af360c86114f8565b61072a731fd910c9e85657adf824086671cf60ecdd48293b60196114f8565b61074973add0c6134f28a4e74c829540f35a3194af4c076e60196114f8565b6107687312feb593a985d5c96b75fd6a91c060dc4d64d86660026114f8565b6107877322154952aed4c07e6524754c5fa48d908dad7c9460026114f8565b6107a67359ca8afa16eeab752fc5fef6614ef2c2df99342460026114f8565b6107c57362b0184f1c852601bf57df64eba15d54f1c2db2b60026114f8565b6107e473cab6193901887968cd656bbb15ffde19b0eb1c3760026114f8565b6108037301a21408cb1ac9bcd8af667a4345a8c7bbd576f360026114f8565b6108227310bbad85b0d79f279edbb10b3db5444c2e222c8060026114f8565b610841737be7d0907aa13703d2f6092183fe48e827f57d9a60026114f8565b610860733c4e47b1be41100b8fd839334fe840469c722ab960026114f8565b61087f73f76b5fdc6113afaea736c681d86211b823282a8160026114f8565b61089e73dca437a1078ad776cb4dae03bf34df22370dd21860026114f8565b6108bd7361efb13c1f6434f62842710cb3bee1f2242fb19060026114f8565b6108dc73331a4ddfbe680ddbdea7223d9c79632a4e8ac5ec60026114f8565b6108fb73e361af6c334dc55d6b416e8d3cee4f52ca4ff1a160026114f8565b61091a7386f05a9ef008aadc1ccaecf73ac9f2e22fe0398760026114f8565b61093973d684728b0f8d77f4a43f01e24d7487b4dc3e195d60026114f8565b61095873ad0d664a7230bb886fb411dcfbe3b977b9f68e2060026114f8565b61097773f9eefdb0738147bef77e3b8998fd8b96618552f060026114f8565b610996735b599c5c03bb604919cb0d69d5fef9521364276960026114f8565b6109b573bc25ec02b37c3cc3b71b25cc6b53aa83db4731c660026114f8565b6109d473452c78caaffdba6e35f6c16c80b185d982dd47f560026114f8565b6109f37394a6a77b14f8b9b009cbfffc3fa4c5387fbfc4d360026114f8565b610a1273fdf4e146dc8ef8fb05e8cc7ea6431aae789d490160026114f8565b610a3173b91f11eacf139aab8dfd16ab923e9756c4d973f960026114f8565b565b610a3b61147a565b600454610a46610a93565b10610a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7d9061237a565b60405180910390fd5b610a913360016114f8565b565b6000610a9d6116b5565b6001546000540303905090565b6000610ab5826116ba565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b1c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b2884611788565b91509150610b3e8187610b39611472565b6117af565b610b8a57610b5386610b4e611472565b61126d565b610b89576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610bf1576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bfe86868660016117f3565b8015610c0957600082555b600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610cd785610cb38888876117f9565b7c020000000000000000000000000000000000000000000000000000000017611821565b600660008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d5f576000600185019050600060066000838152602001908152602001600020541415610d5d576000548114610d5c578360066000838152602001908152602001600020819055505b5b505b600454610d6a610a93565b108015610d7f57506001610d7d86610e32565b145b15610d9057610d8f8660016114f8565b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610df8868686600161184c565b505050505050565b610e1b83838360405180602001604052806000815250611155565b505050565b6000610e2b826116ba565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e9a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ef361147a565b610efd6000611852565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f3161147a565b8060059080519060200190610f47929190611c8c565b5050565b606060038054610f5a906125f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610f86906125f0565b8015610fd35780601f10610fa857610100808354040283529160200191610fd3565b820191906000526020600020905b815481529060010190602001808311610fb657829003601f168201915b5050505050905090565b610fe5611472565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561104a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060096000611057611472565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611104611472565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161114991906122fd565b60405180910390a35050565b611160848484610aaa565b60008373ffffffffffffffffffffffffffffffffffffffff163b146111c25761118b84848484611918565b6111c1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606111d382611413565b611209576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611213611a78565b9050600081511415611234576040518060200160405280600081525061125f565b8061123e84611b0a565b60405160200161124f929190612267565b6040516020818303038152906040525b915050919050565b60045481565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61130961147a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611379576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113709061233a565b60405180910390fd5b61138281611852565b50565b60058054611392906125f0565b80601f01602080910402602001604051908101604052809291908181526020018280546113be906125f0565b801561140b5780601f106113e05761010080835404028352916020019161140b565b820191906000526020600020905b8154815290600101906020018083116113ee57829003601f168201915b505050505081565b60008161141e6116b5565b1115801561142d575060005482105b801561146b575060007c0100000000000000000000000000000000000000000000000000000000600660008581526020019081526020016000205416145b9050919050565b600033905090565b611482611c6b565b73ffffffffffffffffffffffffffffffffffffffff166114a0610eff565b73ffffffffffffffffffffffffffffffffffffffff16146114f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ed9061235a565b60405180910390fd5b565b6000805490506000821415611539576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61154660008483856117f3565b600160406001901b178202600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506115bd836115ae60008660006117f9565b6115b785611c73565b17611821565b6006600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461165e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611623565b50600082141561169a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506116b0600084838561184c565b505050565b600090565b600080829050806116c96116b5565b11611751576000548110156117505760006006600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561174e575b6000811415611744576006600083600190039350838152602001908152602001600020549050611719565b8092505050611783565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006008600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611810868684611c83565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261193e611472565b8786866040518563ffffffff1660e01b815260040161196094939291906122b1565b602060405180830381600087803b15801561197a57600080fd5b505af19250505080156119ab57506040513d601f19601f820116820180604052508101906119a89190612068565b60015b611a25573d80600081146119db576040519150601f19603f3d011682016040523d82523d6000602084013e6119e0565b606091505b50600081511415611a1d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060058054611a87906125f0565b80601f0160208091040260200160405190810160405280929190818152602001828054611ab3906125f0565b8015611b005780601f10611ad557610100808354040283529160200191611b00565b820191906000526020600020905b815481529060010190602001808311611ae357829003601f168201915b5050505050905090565b60606000821415611b52576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c66565b600082905060005b60008214611b84578080611b6d90612653565b915050600a82611b7d91906124d5565b9150611b5a565b60008167ffffffffffffffff811115611ba057611b9f612789565b5b6040519080825280601f01601f191660200182016040528015611bd25781602001600182028036833780820191505090505b5090505b60008514611c5f57600182611beb9190612506565b9150600a85611bfa919061269c565b6030611c06919061247f565b60f81b818381518110611c1c57611c1b61275a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c5891906124d5565b9450611bd6565b8093505050505b919050565b600033905090565b60006001821460e11b9050919050565b60009392505050565b828054611c98906125f0565b90600052602060002090601f016020900481019282611cba5760008555611d01565b82601f10611cd357805160ff1916838001178555611d01565b82800160010185558215611d01579182015b82811115611d00578251825591602001919060010190611ce5565b5b509050611d0e9190611d12565b5090565b5b80821115611d2b576000816000905550600101611d13565b5090565b6000611d42611d3d846123da565b6123b5565b905082815260208101848484011115611d5e57611d5d6127bd565b5b611d698482856125ae565b509392505050565b6000611d84611d7f8461240b565b6123b5565b905082815260208101848484011115611da057611d9f6127bd565b5b611dab8482856125ae565b509392505050565b600081359050611dc2816128a7565b92915050565b600081359050611dd7816128be565b92915050565b600081359050611dec816128d5565b92915050565b600081519050611e01816128d5565b92915050565b600082601f830112611e1c57611e1b6127b8565b5b8135611e2c848260208601611d2f565b91505092915050565b600082601f830112611e4a57611e496127b8565b5b8135611e5a848260208601611d71565b91505092915050565b600081359050611e72816128ec565b92915050565b600060208284031215611e8e57611e8d6127c7565b5b6000611e9c84828501611db3565b91505092915050565b60008060408385031215611ebc57611ebb6127c7565b5b6000611eca85828601611db3565b9250506020611edb85828601611db3565b9150509250929050565b600080600060608486031215611efe57611efd6127c7565b5b6000611f0c86828701611db3565b9350506020611f1d86828701611db3565b9250506040611f2e86828701611e63565b9150509250925092565b60008060008060808587031215611f5257611f516127c7565b5b6000611f6087828801611db3565b9450506020611f7187828801611db3565b9350506040611f8287828801611e63565b925050606085013567ffffffffffffffff811115611fa357611fa26127c2565b5b611faf87828801611e07565b91505092959194509250565b60008060408385031215611fd257611fd16127c7565b5b6000611fe085828601611db3565b9250506020611ff185828601611dc8565b9150509250929050565b60008060408385031215612012576120116127c7565b5b600061202085828601611db3565b925050602061203185828601611e63565b9150509250929050565b600060208284031215612051576120506127c7565b5b600061205f84828501611ddd565b91505092915050565b60006020828403121561207e5761207d6127c7565b5b600061208c84828501611df2565b91505092915050565b6000602082840312156120ab576120aa6127c7565b5b600082013567ffffffffffffffff8111156120c9576120c86127c2565b5b6120d584828501611e35565b91505092915050565b6000602082840312156120f4576120f36127c7565b5b600061210284828501611e63565b91505092915050565b6121148161253a565b82525050565b6121238161254c565b82525050565b60006121348261243c565b61213e8185612452565b935061214e8185602086016125bd565b612157816127cc565b840191505092915050565b600061216d82612447565b6121778185612463565b93506121878185602086016125bd565b612190816127cc565b840191505092915050565b60006121a682612447565b6121b08185612474565b93506121c08185602086016125bd565b80840191505092915050565b60006121d9602683612463565b91506121e4826127dd565b604082019050919050565b60006121fc600583612474565b91506122078261282c565b600582019050919050565b600061221f602083612463565b915061222a82612855565b602082019050919050565b6000612242601383612463565b915061224d8261287e565b602082019050919050565b612261816125a4565b82525050565b6000612273828561219b565b915061227f828461219b565b915061228a826121ef565b91508190509392505050565b60006020820190506122ab600083018461210b565b92915050565b60006080820190506122c6600083018761210b565b6122d3602083018661210b565b6122e06040830185612258565b81810360608301526122f28184612129565b905095945050505050565b6000602082019050612312600083018461211a565b92915050565b600060208201905081810360008301526123328184612162565b905092915050565b60006020820190508181036000830152612353816121cc565b9050919050565b6000602082019050818103600083015261237381612212565b9050919050565b6000602082019050818103600083015261239381612235565b9050919050565b60006020820190506123af6000830184612258565b92915050565b60006123bf6123d0565b90506123cb8282612622565b919050565b6000604051905090565b600067ffffffffffffffff8211156123f5576123f4612789565b5b6123fe826127cc565b9050602081019050919050565b600067ffffffffffffffff82111561242657612425612789565b5b61242f826127cc565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061248a826125a4565b9150612495836125a4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156124ca576124c96126cd565b5b828201905092915050565b60006124e0826125a4565b91506124eb836125a4565b9250826124fb576124fa6126fc565b5b828204905092915050565b6000612511826125a4565b915061251c836125a4565b92508282101561252f5761252e6126cd565b5b828203905092915050565b600061254582612584565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156125db5780820151818401526020810190506125c0565b838111156125ea576000848401525b50505050565b6000600282049050600182168061260857607f821691505b6020821081141561261c5761261b61272b565b5b50919050565b61262b826127cc565b810181811067ffffffffffffffff8211171561264a57612649612789565b5b80604052505050565b600061265e826125a4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612691576126906126cd565b5b600182019050919050565b60006126a7826125a4565b91506126b2836125a4565b9250826126c2576126c16126fc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d617820737570706c7920726561636865642e00000000000000000000000000600082015250565b6128b08161253a565b81146128bb57600080fd5b50565b6128c78161254c565b81146128d257600080fd5b50565b6128de81612558565b81146128e957600080fd5b50565b6128f5816125a4565b811461290057600080fd5b5056fea2646970667358221220c8b483d4150072c2f0cd4cb0c3b53cdbd74eccc9605651a083d00731d375468464736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003268747470733a2f2f746865626c696e6b6c6573732e73332e616d617a6f6e6177732e636f6d2f6f63756c6f69646a736f6e2f0000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c8063715018a6116100b8578063b88d4fde1161007c578063b88d4fde14610329578063c87b56dd14610345578063d5abeb0114610375578063e985e9c514610393578063f2fde38b146103c3578063fb28a540146103df57610142565b8063715018a6146102ab5780638da5cb5b146102b5578063931688cb146102d357806395d89b41146102ef578063a22cb4651461030d57610142565b80631249c58b1161010a5780631249c58b146101eb57806318160ddd146101f557806323b872dd1461021357806342842e0e1461022f5780636352211e1461024b57806370a082311461027b57610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c55780630af28714146101e1575b600080fd5b610161600480360381019061015c919061203b565b6103fd565b60405161016e91906122fd565b60405180910390f35b61017f61048f565b60405161018c9190612318565b60405180910390f35b6101af60048036038101906101aa91906120de565b610521565b6040516101bc9190612296565b60405180910390f35b6101df60048036038101906101da9190611ffb565b6105a0565b005b6101e96106e4565b005b6101f3610a33565b005b6101fd610a93565b60405161020a919061239a565b60405180910390f35b61022d60048036038101906102289190611ee5565b610aaa565b005b61024960048036038101906102449190611ee5565b610e00565b005b610265600480360381019061026091906120de565b610e20565b6040516102729190612296565b60405180910390f35b61029560048036038101906102909190611e78565b610e32565b6040516102a2919061239a565b60405180910390f35b6102b3610eeb565b005b6102bd610eff565b6040516102ca9190612296565b60405180910390f35b6102ed60048036038101906102e89190612095565b610f29565b005b6102f7610f4b565b6040516103049190612318565b60405180910390f35b61032760048036038101906103229190611fbb565b610fdd565b005b610343600480360381019061033e9190611f38565b611155565b005b61035f600480360381019061035a91906120de565b6111c8565b60405161036c9190612318565b60405180910390f35b61037d611267565b60405161038a919061239a565b60405180910390f35b6103ad60048036038101906103a89190611ea5565b61126d565b6040516103ba91906122fd565b60405180910390f35b6103dd60048036038101906103d89190611e78565b611301565b005b6103e7611385565b6040516103f49190612318565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061045857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104885750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461049e906125f0565b80601f01602080910402602001604051908101604052809291908181526020018280546104ca906125f0565b80156105175780601f106104ec57610100808354040283529160200191610517565b820191906000526020600020905b8154815290600101906020018083116104fa57829003601f168201915b5050505050905090565b600061052c82611413565b610562576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105ab82610e20565b90508073ffffffffffffffffffffffffffffffffffffffff166105cc611472565b73ffffffffffffffffffffffffffffffffffffffff161461062f576105f8816105f3611472565b61126d565b61062e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826008600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6106ec61147a565b61070b73f794e26f81831028a9b54314722224b9d7bd9af360c86114f8565b61072a731fd910c9e85657adf824086671cf60ecdd48293b60196114f8565b61074973add0c6134f28a4e74c829540f35a3194af4c076e60196114f8565b6107687312feb593a985d5c96b75fd6a91c060dc4d64d86660026114f8565b6107877322154952aed4c07e6524754c5fa48d908dad7c9460026114f8565b6107a67359ca8afa16eeab752fc5fef6614ef2c2df99342460026114f8565b6107c57362b0184f1c852601bf57df64eba15d54f1c2db2b60026114f8565b6107e473cab6193901887968cd656bbb15ffde19b0eb1c3760026114f8565b6108037301a21408cb1ac9bcd8af667a4345a8c7bbd576f360026114f8565b6108227310bbad85b0d79f279edbb10b3db5444c2e222c8060026114f8565b610841737be7d0907aa13703d2f6092183fe48e827f57d9a60026114f8565b610860733c4e47b1be41100b8fd839334fe840469c722ab960026114f8565b61087f73f76b5fdc6113afaea736c681d86211b823282a8160026114f8565b61089e73dca437a1078ad776cb4dae03bf34df22370dd21860026114f8565b6108bd7361efb13c1f6434f62842710cb3bee1f2242fb19060026114f8565b6108dc73331a4ddfbe680ddbdea7223d9c79632a4e8ac5ec60026114f8565b6108fb73e361af6c334dc55d6b416e8d3cee4f52ca4ff1a160026114f8565b61091a7386f05a9ef008aadc1ccaecf73ac9f2e22fe0398760026114f8565b61093973d684728b0f8d77f4a43f01e24d7487b4dc3e195d60026114f8565b61095873ad0d664a7230bb886fb411dcfbe3b977b9f68e2060026114f8565b61097773f9eefdb0738147bef77e3b8998fd8b96618552f060026114f8565b610996735b599c5c03bb604919cb0d69d5fef9521364276960026114f8565b6109b573bc25ec02b37c3cc3b71b25cc6b53aa83db4731c660026114f8565b6109d473452c78caaffdba6e35f6c16c80b185d982dd47f560026114f8565b6109f37394a6a77b14f8b9b009cbfffc3fa4c5387fbfc4d360026114f8565b610a1273fdf4e146dc8ef8fb05e8cc7ea6431aae789d490160026114f8565b610a3173b91f11eacf139aab8dfd16ab923e9756c4d973f960026114f8565b565b610a3b61147a565b600454610a46610a93565b10610a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7d9061237a565b60405180910390fd5b610a913360016114f8565b565b6000610a9d6116b5565b6001546000540303905090565b6000610ab5826116ba565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b1c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b2884611788565b91509150610b3e8187610b39611472565b6117af565b610b8a57610b5386610b4e611472565b61126d565b610b89576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610bf1576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bfe86868660016117f3565b8015610c0957600082555b600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610cd785610cb38888876117f9565b7c020000000000000000000000000000000000000000000000000000000017611821565b600660008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d5f576000600185019050600060066000838152602001908152602001600020541415610d5d576000548114610d5c578360066000838152602001908152602001600020819055505b5b505b600454610d6a610a93565b108015610d7f57506001610d7d86610e32565b145b15610d9057610d8f8660016114f8565b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610df8868686600161184c565b505050505050565b610e1b83838360405180602001604052806000815250611155565b505050565b6000610e2b826116ba565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e9a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ef361147a565b610efd6000611852565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f3161147a565b8060059080519060200190610f47929190611c8c565b5050565b606060038054610f5a906125f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610f86906125f0565b8015610fd35780601f10610fa857610100808354040283529160200191610fd3565b820191906000526020600020905b815481529060010190602001808311610fb657829003601f168201915b5050505050905090565b610fe5611472565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561104a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060096000611057611472565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611104611472565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161114991906122fd565b60405180910390a35050565b611160848484610aaa565b60008373ffffffffffffffffffffffffffffffffffffffff163b146111c25761118b84848484611918565b6111c1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606111d382611413565b611209576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611213611a78565b9050600081511415611234576040518060200160405280600081525061125f565b8061123e84611b0a565b60405160200161124f929190612267565b6040516020818303038152906040525b915050919050565b60045481565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61130961147a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611379576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113709061233a565b60405180910390fd5b61138281611852565b50565b60058054611392906125f0565b80601f01602080910402602001604051908101604052809291908181526020018280546113be906125f0565b801561140b5780601f106113e05761010080835404028352916020019161140b565b820191906000526020600020905b8154815290600101906020018083116113ee57829003601f168201915b505050505081565b60008161141e6116b5565b1115801561142d575060005482105b801561146b575060007c0100000000000000000000000000000000000000000000000000000000600660008581526020019081526020016000205416145b9050919050565b600033905090565b611482611c6b565b73ffffffffffffffffffffffffffffffffffffffff166114a0610eff565b73ffffffffffffffffffffffffffffffffffffffff16146114f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ed9061235a565b60405180910390fd5b565b6000805490506000821415611539576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61154660008483856117f3565b600160406001901b178202600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506115bd836115ae60008660006117f9565b6115b785611c73565b17611821565b6006600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461165e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611623565b50600082141561169a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506116b0600084838561184c565b505050565b600090565b600080829050806116c96116b5565b11611751576000548110156117505760006006600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561174e575b6000811415611744576006600083600190039350838152602001908152602001600020549050611719565b8092505050611783565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006008600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611810868684611c83565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261193e611472565b8786866040518563ffffffff1660e01b815260040161196094939291906122b1565b602060405180830381600087803b15801561197a57600080fd5b505af19250505080156119ab57506040513d601f19601f820116820180604052508101906119a89190612068565b60015b611a25573d80600081146119db576040519150601f19603f3d011682016040523d82523d6000602084013e6119e0565b606091505b50600081511415611a1d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060058054611a87906125f0565b80601f0160208091040260200160405190810160405280929190818152602001828054611ab3906125f0565b8015611b005780601f10611ad557610100808354040283529160200191611b00565b820191906000526020600020905b815481529060010190602001808311611ae357829003601f168201915b5050505050905090565b60606000821415611b52576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c66565b600082905060005b60008214611b84578080611b6d90612653565b915050600a82611b7d91906124d5565b9150611b5a565b60008167ffffffffffffffff811115611ba057611b9f612789565b5b6040519080825280601f01601f191660200182016040528015611bd25781602001600182028036833780820191505090505b5090505b60008514611c5f57600182611beb9190612506565b9150600a85611bfa919061269c565b6030611c06919061247f565b60f81b818381518110611c1c57611c1b61275a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c5891906124d5565b9450611bd6565b8093505050505b919050565b600033905090565b60006001821460e11b9050919050565b60009392505050565b828054611c98906125f0565b90600052602060002090601f016020900481019282611cba5760008555611d01565b82601f10611cd357805160ff1916838001178555611d01565b82800160010185558215611d01579182015b82811115611d00578251825591602001919060010190611ce5565b5b509050611d0e9190611d12565b5090565b5b80821115611d2b576000816000905550600101611d13565b5090565b6000611d42611d3d846123da565b6123b5565b905082815260208101848484011115611d5e57611d5d6127bd565b5b611d698482856125ae565b509392505050565b6000611d84611d7f8461240b565b6123b5565b905082815260208101848484011115611da057611d9f6127bd565b5b611dab8482856125ae565b509392505050565b600081359050611dc2816128a7565b92915050565b600081359050611dd7816128be565b92915050565b600081359050611dec816128d5565b92915050565b600081519050611e01816128d5565b92915050565b600082601f830112611e1c57611e1b6127b8565b5b8135611e2c848260208601611d2f565b91505092915050565b600082601f830112611e4a57611e496127b8565b5b8135611e5a848260208601611d71565b91505092915050565b600081359050611e72816128ec565b92915050565b600060208284031215611e8e57611e8d6127c7565b5b6000611e9c84828501611db3565b91505092915050565b60008060408385031215611ebc57611ebb6127c7565b5b6000611eca85828601611db3565b9250506020611edb85828601611db3565b9150509250929050565b600080600060608486031215611efe57611efd6127c7565b5b6000611f0c86828701611db3565b9350506020611f1d86828701611db3565b9250506040611f2e86828701611e63565b9150509250925092565b60008060008060808587031215611f5257611f516127c7565b5b6000611f6087828801611db3565b9450506020611f7187828801611db3565b9350506040611f8287828801611e63565b925050606085013567ffffffffffffffff811115611fa357611fa26127c2565b5b611faf87828801611e07565b91505092959194509250565b60008060408385031215611fd257611fd16127c7565b5b6000611fe085828601611db3565b9250506020611ff185828601611dc8565b9150509250929050565b60008060408385031215612012576120116127c7565b5b600061202085828601611db3565b925050602061203185828601611e63565b9150509250929050565b600060208284031215612051576120506127c7565b5b600061205f84828501611ddd565b91505092915050565b60006020828403121561207e5761207d6127c7565b5b600061208c84828501611df2565b91505092915050565b6000602082840312156120ab576120aa6127c7565b5b600082013567ffffffffffffffff8111156120c9576120c86127c2565b5b6120d584828501611e35565b91505092915050565b6000602082840312156120f4576120f36127c7565b5b600061210284828501611e63565b91505092915050565b6121148161253a565b82525050565b6121238161254c565b82525050565b60006121348261243c565b61213e8185612452565b935061214e8185602086016125bd565b612157816127cc565b840191505092915050565b600061216d82612447565b6121778185612463565b93506121878185602086016125bd565b612190816127cc565b840191505092915050565b60006121a682612447565b6121b08185612474565b93506121c08185602086016125bd565b80840191505092915050565b60006121d9602683612463565b91506121e4826127dd565b604082019050919050565b60006121fc600583612474565b91506122078261282c565b600582019050919050565b600061221f602083612463565b915061222a82612855565b602082019050919050565b6000612242601383612463565b915061224d8261287e565b602082019050919050565b612261816125a4565b82525050565b6000612273828561219b565b915061227f828461219b565b915061228a826121ef565b91508190509392505050565b60006020820190506122ab600083018461210b565b92915050565b60006080820190506122c6600083018761210b565b6122d3602083018661210b565b6122e06040830185612258565b81810360608301526122f28184612129565b905095945050505050565b6000602082019050612312600083018461211a565b92915050565b600060208201905081810360008301526123328184612162565b905092915050565b60006020820190508181036000830152612353816121cc565b9050919050565b6000602082019050818103600083015261237381612212565b9050919050565b6000602082019050818103600083015261239381612235565b9050919050565b60006020820190506123af6000830184612258565b92915050565b60006123bf6123d0565b90506123cb8282612622565b919050565b6000604051905090565b600067ffffffffffffffff8211156123f5576123f4612789565b5b6123fe826127cc565b9050602081019050919050565b600067ffffffffffffffff82111561242657612425612789565b5b61242f826127cc565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061248a826125a4565b9150612495836125a4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156124ca576124c96126cd565b5b828201905092915050565b60006124e0826125a4565b91506124eb836125a4565b9250826124fb576124fa6126fc565b5b828204905092915050565b6000612511826125a4565b915061251c836125a4565b92508282101561252f5761252e6126cd565b5b828203905092915050565b600061254582612584565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156125db5780820151818401526020810190506125c0565b838111156125ea576000848401525b50505050565b6000600282049050600182168061260857607f821691505b6020821081141561261c5761261b61272b565b5b50919050565b61262b826127cc565b810181811067ffffffffffffffff8211171561264a57612649612789565b5b80604052505050565b600061265e826125a4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612691576126906126cd565b5b600182019050919050565b60006126a7826125a4565b91506126b2836125a4565b9250826126c2576126c16126fc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d617820737570706c7920726561636865642e00000000000000000000000000600082015250565b6128b08161253a565b81146128bb57600080fd5b50565b6128c78161254c565b81146128d257600080fd5b50565b6128de81612558565b81146128e957600080fd5b50565b6128f5816125a4565b811461290057600080fd5b5056fea2646970667358221220c8b483d4150072c2f0cd4cb0c3b53cdbd74eccc9605651a083d00731d375468464736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003268747470733a2f2f746865626c696e6b6c6573732e73332e616d617a6f6e6177732e636f6d2f6f63756c6f69646a736f6e2f0000000000000000000000000000

-----Decoded View---------------
Arg [0] : _metadataPath (string): https://theblinkless.s3.amazonaws.com/oculoidjson/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [2] : 68747470733a2f2f746865626c696e6b6c6573732e73332e616d617a6f6e6177
Arg [3] : 732e636f6d2f6f63756c6f69646a736f6e2f0000000000000000000000000000


Deployed Bytecode Sourcemap

60451:2986:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27339:639;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28241:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34711:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34152:400;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60892:2358;;;:::i;:::-;;60703:141;;;:::i;:::-;;23992:323;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38424:3155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41675:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29621:152;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25176:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5535:103;;;:::i;:::-;;4887:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63319:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28417:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35269:308;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42458:399;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28593:333;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21787:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35734:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5793:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21825:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27339:639;27424:4;27763:10;27748:25;;:11;:25;;;;:102;;;;27840:10;27825:25;;:11;:25;;;;27748:102;:179;;;;27917:10;27902:25;;:11;:25;;;;27748:179;27728:199;;27339:639;;;:::o;28241:100::-;28295:13;28328:5;28321:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28241:100;:::o;34711:218::-;34787:7;34812:16;34820:7;34812;:16::i;:::-;34807:64;;34837:34;;;;;;;;;;;;;;34807:64;34891:15;:24;34907:7;34891:24;;;;;;;;;;;:30;;;;;;;;;;;;34884:37;;34711:218;;;:::o;34152:400::-;34233:13;34249:16;34257:7;34249;:16::i;:::-;34233:32;;34305:5;34282:28;;:19;:17;:19::i;:::-;:28;;;34278:175;;34330:44;34347:5;34354:19;:17;:19::i;:::-;34330:16;:44::i;:::-;34325:128;;34402:35;;;;;;;;;;;;;;34325:128;34278:175;34498:2;34465:15;:24;34481:7;34465:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;34536:7;34532:2;34516:28;;34525:5;34516:28;;;;;;;;;;;;34222:330;34152:400;;:::o;60892:2358::-;4773:13;:11;:13::i;:::-;60947:63:::1;60961:42;61006:3;60947:5;:63::i;:::-;61038:62;61052:42;61097:2;61038:5;:62::i;:::-;61128;61142:42;61187:2;61128:5;:62::i;:::-;61213:61;61227:42;61272:1;61213:5;:61::i;:::-;61299;61313:42;61358:1;61299:5;:61::i;:::-;61392;61406:42;61451:1;61392:5;:61::i;:::-;61478;61492:42;61537:1;61478:5;:61::i;:::-;61560;61574:42;61619:1;61560:5;:61::i;:::-;61644;61658:42;61703:1;61644:5;:61::i;:::-;61733;61747:42;61792:1;61733:5;:61::i;:::-;61820;61834:42;61879:1;61820:5;:61::i;:::-;61900;61914:42;61959:1;61900:5;:61::i;:::-;61988;62002:42;62047:1;61988:5;:61::i;:::-;62072;62086:42;62131:1;62072:5;:61::i;:::-;62158;62172:42;62217:1;62158:5;:61::i;:::-;62245;62259:42;62304:1;62245:5;:61::i;:::-;62327;62341:42;62386:1;62327:5;:61::i;:::-;62409;62423:42;62468:1;62409:5;:61::i;:::-;62493;62507:42;62552:1;62493:5;:61::i;:::-;62579;62593:42;62638:1;62579:5;:61::i;:::-;62665;62679:42;62724:1;62665:5;:61::i;:::-;62748;62762:42;62807:1;62748:5;:61::i;:::-;62829;62843:42;62888:1;62829:5;:61::i;:::-;62915;62929:42;62974:1;62915:5;:61::i;:::-;62999;63013:42;63058:1;62999:5;:61::i;:::-;63079;63093:42;63138:1;63079:5;:61::i;:::-;63166;63180:42;63225:1;63166:5;:61::i;:::-;60892:2358::o:0;60703:141::-;4773:13;:11;:13::i;:::-;60772:9:::1;;60756:13;:11;:13::i;:::-;:25;60748:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;60816:20;60822:10;60834:1;60816:5;:20::i;:::-;60703:141::o:0;23992:323::-;24053:7;24281:15;:13;:15::i;:::-;24266:12;;24250:13;;:28;:46;24243:53;;23992:323;:::o;38424:3155::-;38558:27;38588;38607:7;38588:18;:27::i;:::-;38558:57;;38673:4;38632:45;;38648:19;38632:45;;;38628:86;;38686:28;;;;;;;;;;;;;;38628:86;38728:27;38757:23;38784:35;38811:7;38784:26;:35::i;:::-;38727:92;;;;38919:68;38944:15;38961:4;38967:19;:17;:19::i;:::-;38919:24;:68::i;:::-;38914:180;;39007:43;39024:4;39030:19;:17;:19::i;:::-;39007:16;:43::i;:::-;39002:92;;39059:35;;;;;;;;;;;;;;39002:92;38914:180;39125:1;39111:16;;:2;:16;;;39107:52;;;39136:23;;;;;;;;;;;;;;39107:52;39172:43;39194:4;39200:2;39204:7;39213:1;39172:21;:43::i;:::-;39308:15;39305:160;;;39448:1;39427:19;39420:30;39305:160;39845:18;:24;39864:4;39845:24;;;;;;;;;;;;;;;;39843:26;;;;;;;;;;;;39914:18;:22;39933:2;39914:22;;;;;;;;;;;;;;;;39912:24;;;;;;;;;;;40236:146;40273:2;40322:45;40337:4;40343:2;40347:19;40322:14;:45::i;:::-;20318:8;40294:73;40236:18;:146::i;:::-;40207:17;:26;40225:7;40207:26;;;;;;;;;;;:175;;;;40553:1;20318:8;40502:19;:47;:52;40498:627;;;40575:19;40607:1;40597:7;:11;40575:33;;40764:1;40730:17;:30;40748:11;40730:30;;;;;;;;;;;;:35;40726:384;;;40868:13;;40853:11;:28;40849:242;;41048:19;41015:17;:30;41033:11;41015:30;;;;;;;;;;;:52;;;;40849:242;40726:384;40556:569;40498:627;41234:9;;41218:13;:11;:13::i;:::-;:25;:47;;;;;41264:1;41247:13;41257:2;41247:9;:13::i;:::-;:18;41218:47;41215:192;;;41368:23;41382:4;41389:1;41368:5;:23::i;:::-;41215:192;41510:7;41506:2;41491:27;;41500:4;41491:27;;;;;;;;;;;;41529:42;41550:4;41556:2;41560:7;41569:1;41529:20;:42::i;:::-;38547:3032;;;38424:3155;;;:::o;41675:185::-;41813:39;41830:4;41836:2;41840:7;41813:39;;;;;;;;;;;;:16;:39::i;:::-;41675:185;;;:::o;29621:152::-;29693:7;29736:27;29755:7;29736:18;:27::i;:::-;29713:52;;29621:152;;;:::o;25176:233::-;25248:7;25289:1;25272:19;;:5;:19;;;25268:60;;;25300:28;;;;;;;;;;;;;;25268:60;19262:13;25346:18;:25;25365:5;25346:25;;;;;;;;;;;;;;;;:55;25339:62;;25176:233;;;:::o;5535:103::-;4773:13;:11;:13::i;:::-;5600:30:::1;5627:1;5600:18;:30::i;:::-;5535:103::o:0;4887:87::-;4933:7;4960:6;;;;;;;;;;;4953:13;;4887:87;:::o;63319:106::-;4773:13;:11;:13::i;:::-;63410:7:::1;63395:12;:22;;;;;;;;;;;;:::i;:::-;;63319:106:::0;:::o;28417:104::-;28473:13;28506:7;28499:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28417:104;:::o;35269:308::-;35380:19;:17;:19::i;:::-;35368:31;;:8;:31;;;35364:61;;;35408:17;;;;;;;;;;;;;;35364:61;35490:8;35438:18;:39;35457:19;:17;:19::i;:::-;35438:39;;;;;;;;;;;;;;;:49;35478:8;35438:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;35550:8;35514:55;;35529:19;:17;:19::i;:::-;35514:55;;;35560:8;35514:55;;;;;;:::i;:::-;;;;;;;;35269:308;;:::o;42458:399::-;42625:31;42638:4;42644:2;42648:7;42625:12;:31::i;:::-;42689:1;42671:2;:14;;;:19;42667:183;;42710:56;42741:4;42747:2;42751:7;42760:5;42710:30;:56::i;:::-;42705:145;;42794:40;;;;;;;;;;;;;;42705:145;42667:183;42458:399;;;;:::o;28593:333::-;28666:13;28697:16;28705:7;28697;:16::i;:::-;28692:59;;28722:29;;;;;;;;;;;;;;28692:59;28764:21;28788:10;:8;:10::i;:::-;28764:34;;28841:1;28822:7;28816:21;:26;;:102;;;;;;;;;;;;;;;;;28869:7;28878:25;28895:7;28878:16;:25::i;:::-;28852:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28816:102;28809:109;;;28593:333;;;:::o;21787:31::-;;;;:::o;35734:164::-;35831:4;35855:18;:25;35874:5;35855:25;;;;;;;;;;;;;;;:35;35881:8;35855:35;;;;;;;;;;;;;;;;;;;;;;;;;35848:42;;35734:164;;;;:::o;5793:201::-;4773:13;:11;:13::i;:::-;5902:1:::1;5882:22;;:8;:22;;;;5874:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5958:28;5977:8;5958:18;:28::i;:::-;5793:201:::0;:::o;21825:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36156:282::-;36221:4;36277:7;36258:15;:13;:15::i;:::-;:26;;:66;;;;;36311:13;;36301:7;:23;36258:66;:153;;;;;36410:1;20038:8;36362:17;:26;36380:7;36362:26;;;;;;;;;;;;:44;:49;36258:153;36238:173;;36156:282;;;:::o;58532:105::-;58592:7;58619:10;58612:17;;58532:105;:::o;5052:132::-;5127:12;:10;:12::i;:::-;5116:23;;:7;:5;:7::i;:::-;:23;;;5108:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5052:132::o;46119:2720::-;46192:20;46215:13;;46192:36;;46255:1;46243:8;:13;46239:44;;;46265:18;;;;;;;;;;;;;;46239:44;46296:61;46326:1;46330:2;46334:12;46348:8;46296:21;:61::i;:::-;46840:1;19400:2;46810:1;:26;;46809:32;46797:8;:45;46771:18;:22;46790:2;46771:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;47119:139;47156:2;47210:33;47233:1;47237:2;47241:1;47210:14;:33::i;:::-;47177:30;47198:8;47177:20;:30::i;:::-;:66;47119:18;:139::i;:::-;47085:17;:31;47103:12;47085:31;;;;;;;;;;;:173;;;;47275:16;47306:11;47335:8;47320:12;:23;47306:37;;47856:16;47852:2;47848:25;47836:37;;48228:12;48188:8;48147:1;48085:25;48026:1;47965;47938:335;48353:1;48339:12;48335:20;48293:346;48394:3;48385:7;48382:16;48293:346;;48612:7;48602:8;48599:1;48572:25;48569:1;48566;48561:59;48447:1;48438:7;48434:15;48423:26;;48293:346;;;48297:77;48684:1;48672:8;:13;48668:45;;;48694:19;;;;;;;;;;;;;;48668:45;48746:3;48730:13;:19;;;;46545:2216;;48771:60;48800:1;48804:2;48808:12;48822:8;48771:20;:60::i;:::-;46181:2658;46119:2720;;:::o;23508:92::-;23564:7;23508:92;:::o;30776:1275::-;30843:7;30863:12;30878:7;30863:22;;30946:4;30927:15;:13;:15::i;:::-;:23;30923:1061;;30980:13;;30973:4;:20;30969:1015;;;31018:14;31035:17;:23;31053:4;31035:23;;;;;;;;;;;;31018:40;;31152:1;20038:8;31124:6;:24;:29;31120:845;;;31789:113;31806:1;31796:6;:11;31789:113;;;31849:17;:25;31867:6;;;;;;;31849:25;;;;;;;;;;;;31840:34;;31789:113;;;31935:6;31928:13;;;;;;31120:845;30995:989;30969:1015;30923:1061;32012:31;;;;;;;;;;;;;;30776:1275;;;;:::o;37319:485::-;37421:27;37450:23;37491:38;37532:15;:24;37548:7;37532:24;;;;;;;;;;;37491:65;;37709:18;37686:41;;37766:19;37760:26;37741:45;;37671:126;37319:485;;;:::o;36547:659::-;36696:11;36861:16;36854:5;36850:28;36841:37;;37021:16;37010:9;37006:32;36993:45;;37171:15;37160:9;37157:30;37149:5;37138:9;37135:20;37132:56;37122:66;;36547:659;;;;;:::o;43519:159::-;;;;;:::o;57841:311::-;57976:7;57996:16;20442:3;58022:19;:41;;57996:68;;20442:3;58090:31;58101:4;58107:2;58111:9;58090:10;:31::i;:::-;58082:40;;:62;;58075:69;;;57841:311;;;;;:::o;32599:450::-;32679:14;32847:16;32840:5;32836:28;32827:37;;33024:5;33010:11;32985:23;32981:41;32978:52;32971:5;32968:63;32958:73;;32599:450;;;;:::o;44343:158::-;;;;;:::o;6154:191::-;6228:16;6247:6;;;;;;;;;;;6228:25;;6273:8;6264:6;;:17;;;;;;;;;;;;;;;;;;6328:8;6297:40;;6318:8;6297:40;;;;;;;;;;;;6217:128;6154:191;:::o;44941:716::-;45104:4;45150:2;45125:45;;;45171:19;:17;:19::i;:::-;45192:4;45198:7;45207:5;45125:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45121:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45425:1;45408:6;:13;:18;45404:235;;;45454:40;;;;;;;;;;;;;;45404:235;45597:6;45591:13;45582:6;45578:2;45574:15;45567:38;45121:529;45294:54;;;45284:64;;;:6;:64;;;;45277:71;;;44941:716;;;;;;:::o;29174:104::-;29225:13;29258:12;29251:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29174:104;:::o;6782:723::-;6838:13;7068:1;7059:5;:10;7055:53;;;7086:10;;;;;;;;;;;;;;;;;;;;;7055:53;7118:12;7133:5;7118:20;;7149:14;7174:78;7189:1;7181:4;:9;7174:78;;7207:8;;;;;:::i;:::-;;;;7238:2;7230:10;;;;;:::i;:::-;;;7174:78;;;7262:19;7294:6;7284:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7262:39;;7312:154;7328:1;7319:5;:10;7312:154;;7356:1;7346:11;;;;;:::i;:::-;;;7423:2;7415:5;:10;;;;:::i;:::-;7402:2;:24;;;;:::i;:::-;7389:39;;7372:6;7379;7372:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;7452:2;7443:11;;;;;:::i;:::-;;;7312:154;;;7490:6;7476:21;;;;;6782:723;;;;:::o;3438:98::-;3491:7;3518:10;3511:17;;3438:98;:::o;33151:324::-;33221:14;33454:1;33444:8;33441:15;33415:24;33411:46;33401:56;;33151:324;;;:::o;57542:147::-;57679:6;57542:147;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:400::-;9048:3;9069:84;9151:1;9146:3;9069:84;:::i;:::-;9062:91;;9162:93;9251:3;9162:93;:::i;:::-;9280:1;9275:3;9271:11;9264:18;;8888:400;;;:::o;9294:366::-;9436:3;9457:67;9521:2;9516:3;9457:67;:::i;:::-;9450:74;;9533:93;9622:3;9533:93;:::i;:::-;9651:2;9646:3;9642:12;9635:19;;9294:366;;;:::o;9666:::-;9808:3;9829:67;9893:2;9888:3;9829:67;:::i;:::-;9822:74;;9905:93;9994:3;9905:93;:::i;:::-;10023:2;10018:3;10014:12;10007:19;;9666:366;;;:::o;10038:118::-;10125:24;10143:5;10125:24;:::i;:::-;10120:3;10113:37;10038:118;;:::o;10162:701::-;10443:3;10465:95;10556:3;10547:6;10465:95;:::i;:::-;10458:102;;10577:95;10668:3;10659:6;10577:95;:::i;:::-;10570:102;;10689:148;10833:3;10689:148;:::i;:::-;10682:155;;10854:3;10847:10;;10162:701;;;;;:::o;10869:222::-;10962:4;11000:2;10989:9;10985:18;10977:26;;11013:71;11081:1;11070:9;11066:17;11057:6;11013:71;:::i;:::-;10869:222;;;;:::o;11097:640::-;11292:4;11330:3;11319:9;11315:19;11307:27;;11344:71;11412:1;11401:9;11397:17;11388:6;11344:71;:::i;:::-;11425:72;11493:2;11482:9;11478:18;11469:6;11425:72;:::i;:::-;11507;11575:2;11564:9;11560:18;11551:6;11507:72;:::i;:::-;11626:9;11620:4;11616:20;11611:2;11600:9;11596:18;11589:48;11654:76;11725:4;11716:6;11654:76;:::i;:::-;11646:84;;11097:640;;;;;;;:::o;11743:210::-;11830:4;11868:2;11857:9;11853:18;11845:26;;11881:65;11943:1;11932:9;11928:17;11919:6;11881:65;:::i;:::-;11743:210;;;;:::o;11959:313::-;12072:4;12110:2;12099:9;12095:18;12087:26;;12159:9;12153:4;12149:20;12145:1;12134:9;12130:17;12123:47;12187:78;12260:4;12251:6;12187:78;:::i;:::-;12179:86;;11959:313;;;;:::o;12278:419::-;12444:4;12482:2;12471:9;12467:18;12459:26;;12531:9;12525:4;12521:20;12517:1;12506:9;12502:17;12495:47;12559:131;12685:4;12559:131;:::i;:::-;12551:139;;12278:419;;;:::o;12703:::-;12869:4;12907:2;12896:9;12892:18;12884:26;;12956:9;12950:4;12946:20;12942:1;12931:9;12927:17;12920:47;12984:131;13110:4;12984:131;:::i;:::-;12976:139;;12703:419;;;:::o;13128:::-;13294:4;13332:2;13321:9;13317:18;13309:26;;13381:9;13375:4;13371:20;13367:1;13356:9;13352:17;13345:47;13409:131;13535:4;13409:131;:::i;:::-;13401:139;;13128:419;;;:::o;13553:222::-;13646:4;13684:2;13673:9;13669:18;13661:26;;13697:71;13765:1;13754:9;13750:17;13741:6;13697:71;:::i;:::-;13553:222;;;;:::o;13781:129::-;13815:6;13842:20;;:::i;:::-;13832:30;;13871:33;13899:4;13891:6;13871:33;:::i;:::-;13781:129;;;:::o;13916:75::-;13949:6;13982:2;13976:9;13966:19;;13916:75;:::o;13997:307::-;14058:4;14148:18;14140:6;14137:30;14134:56;;;14170:18;;:::i;:::-;14134:56;14208:29;14230:6;14208:29;:::i;:::-;14200:37;;14292:4;14286;14282:15;14274:23;;13997:307;;;:::o;14310:308::-;14372:4;14462:18;14454:6;14451:30;14448:56;;;14484:18;;:::i;:::-;14448:56;14522:29;14544:6;14522:29;:::i;:::-;14514:37;;14606:4;14600;14596:15;14588:23;;14310:308;;;:::o;14624:98::-;14675:6;14709:5;14703:12;14693:22;;14624:98;;;:::o;14728:99::-;14780:6;14814:5;14808:12;14798:22;;14728:99;;;:::o;14833:168::-;14916:11;14950:6;14945:3;14938:19;14990:4;14985:3;14981:14;14966:29;;14833:168;;;;:::o;15007:169::-;15091:11;15125:6;15120:3;15113:19;15165:4;15160:3;15156:14;15141:29;;15007:169;;;;:::o;15182:148::-;15284:11;15321:3;15306:18;;15182:148;;;;:::o;15336:305::-;15376:3;15395:20;15413:1;15395:20;:::i;:::-;15390:25;;15429:20;15447:1;15429:20;:::i;:::-;15424:25;;15583:1;15515:66;15511:74;15508:1;15505:81;15502:107;;;15589:18;;:::i;:::-;15502:107;15633:1;15630;15626:9;15619:16;;15336:305;;;;:::o;15647:185::-;15687:1;15704:20;15722:1;15704:20;:::i;:::-;15699:25;;15738:20;15756:1;15738:20;:::i;:::-;15733:25;;15777:1;15767:35;;15782:18;;:::i;:::-;15767:35;15824:1;15821;15817:9;15812:14;;15647:185;;;;:::o;15838:191::-;15878:4;15898:20;15916:1;15898:20;:::i;:::-;15893:25;;15932:20;15950:1;15932:20;:::i;:::-;15927:25;;15971:1;15968;15965:8;15962:34;;;15976:18;;:::i;:::-;15962:34;16021:1;16018;16014:9;16006:17;;15838:191;;;;:::o;16035:96::-;16072:7;16101:24;16119:5;16101:24;:::i;:::-;16090:35;;16035:96;;;:::o;16137:90::-;16171:7;16214:5;16207:13;16200:21;16189:32;;16137:90;;;:::o;16233:149::-;16269:7;16309:66;16302:5;16298:78;16287:89;;16233:149;;;:::o;16388:126::-;16425:7;16465:42;16458:5;16454:54;16443:65;;16388:126;;;:::o;16520:77::-;16557:7;16586:5;16575:16;;16520:77;;;:::o;16603:154::-;16687:6;16682:3;16677;16664:30;16749:1;16740:6;16735:3;16731:16;16724:27;16603:154;;;:::o;16763:307::-;16831:1;16841:113;16855:6;16852:1;16849:13;16841:113;;;16940:1;16935:3;16931:11;16925:18;16921:1;16916:3;16912:11;16905:39;16877:2;16874:1;16870:10;16865:15;;16841:113;;;16972:6;16969:1;16966:13;16963:101;;;17052:1;17043:6;17038:3;17034:16;17027:27;16963:101;16812:258;16763:307;;;:::o;17076:320::-;17120:6;17157:1;17151:4;17147:12;17137:22;;17204:1;17198:4;17194:12;17225:18;17215:81;;17281:4;17273:6;17269:17;17259:27;;17215:81;17343:2;17335:6;17332:14;17312:18;17309:38;17306:84;;;17362:18;;:::i;:::-;17306:84;17127:269;17076:320;;;:::o;17402:281::-;17485:27;17507:4;17485:27;:::i;:::-;17477:6;17473:40;17615:6;17603:10;17600:22;17579:18;17567:10;17564:34;17561:62;17558:88;;;17626:18;;:::i;:::-;17558:88;17666:10;17662:2;17655:22;17445:238;17402:281;;:::o;17689:233::-;17728:3;17751:24;17769:5;17751:24;:::i;:::-;17742:33;;17797:66;17790:5;17787:77;17784:103;;;17867:18;;:::i;:::-;17784:103;17914:1;17907:5;17903:13;17896:20;;17689:233;;;:::o;17928:176::-;17960:1;17977:20;17995:1;17977:20;:::i;:::-;17972:25;;18011:20;18029:1;18011:20;:::i;:::-;18006:25;;18050:1;18040:35;;18055:18;;:::i;:::-;18040:35;18096:1;18093;18089:9;18084:14;;17928:176;;;;:::o;18110:180::-;18158:77;18155:1;18148:88;18255:4;18252:1;18245:15;18279:4;18276:1;18269:15;18296:180;18344:77;18341:1;18334:88;18441:4;18438:1;18431:15;18465:4;18462:1;18455:15;18482:180;18530:77;18527:1;18520:88;18627:4;18624:1;18617:15;18651:4;18648:1;18641:15;18668:180;18716:77;18713:1;18706:88;18813:4;18810:1;18803:15;18837:4;18834:1;18827:15;18854:180;18902:77;18899:1;18892:88;18999:4;18996:1;18989:15;19023:4;19020:1;19013:15;19040:117;19149:1;19146;19139:12;19163:117;19272:1;19269;19262:12;19286:117;19395:1;19392;19385:12;19409:117;19518:1;19515;19508:12;19532:102;19573:6;19624:2;19620:7;19615:2;19608:5;19604:14;19600:28;19590:38;;19532:102;;;:::o;19640:225::-;19780:34;19776:1;19768:6;19764:14;19757:58;19849:8;19844:2;19836:6;19832:15;19825:33;19640:225;:::o;19871:155::-;20011:7;20007:1;19999:6;19995:14;19988:31;19871:155;:::o;20032:182::-;20172:34;20168:1;20160:6;20156:14;20149:58;20032:182;:::o;20220:169::-;20360:21;20356:1;20348:6;20344:14;20337:45;20220:169;:::o;20395:122::-;20468:24;20486:5;20468:24;:::i;:::-;20461:5;20458:35;20448:63;;20507:1;20504;20497:12;20448:63;20395:122;:::o;20523:116::-;20593:21;20608:5;20593:21;:::i;:::-;20586:5;20583:32;20573:60;;20629:1;20626;20619:12;20573:60;20523:116;:::o;20645:120::-;20717:23;20734:5;20717:23;:::i;:::-;20710:5;20707:34;20697:62;;20755:1;20752;20745:12;20697:62;20645:120;:::o;20771:122::-;20844:24;20862:5;20844:24;:::i;:::-;20837:5;20834:35;20824:63;;20883:1;20880;20873:12;20824:63;20771:122;:::o

Swarm Source

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