ETH Price: $3,026.95 (+2.28%)
Gas: 2 Gwei

Token

BlueChips (BLUE)
 

Overview

Max Total Supply

200 BLUE

Holders

97

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
yalor.eth
Balance
3 BLUE
0x66b1De0f14a0ce971F7f248415063D44CAF19398
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:
BlueChips

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// 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 v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
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();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 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`.
     *
     * 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 calldata data
    ) external;

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

    /**
     * @dev Transfers `tokenId` token 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);
}

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    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 => address) private _tokenApprovals;

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

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

    /**
     * @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 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (_addressToUint256(owner) == 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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly {
            // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-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, _toString(tokenId))) : '';
    }

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

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));

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

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _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 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 {
        uint256 startTokenId = _currentIndex;
        if (_addressToUint256(to) == 0) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 offset;
            do {
                emit Transfer(address(0), to, startTokenId + offset++);
            } while (offset < quantity);

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            approvedAddress == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (_addressToUint256(to) == 0) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

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

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

    /**
     * @dev Equivalent to `_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));
        address approvedAddress = _tokenApprovals[tokenId];

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                approvedAddress == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED |
                BITMASK_NEXT_INITIALIZED;

            // 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++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool 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))
                }
            }
        }
    }

    /**
     * @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 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 returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

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

// File: bluechips.sol



pragma solidity 0.8.14;



contract BlueChips is ERC721A, Ownable {
    bool public saleActive;
    uint256 public constant MAX_SUPPLY = 200;
    uint256 public constant PRICE = 0.078 ether;

    string URI = "ar://LmlKF_3mQSwNof7EYVMRScKld9adzK3UxHtEINHxgnw/";

    // uint256 public MAX_PER_TXN = 3;

    constructor() ERC721A("BlueChips", "BLUE") {
        // Claim collection on OpenSea with at least 1 minted
        _safeMint(msg.sender, 1);
    }

    /// @dev Flips the sale status using boolean NOT operator.
    function flipSale() external onlyOwner {
        saleActive = !saleActive;
    }

    /// @dev In case we need to fix something we can update the baseURI
    function updateURI(string memory newURI) external onlyOwner {
        URI = newURI;
    }

    /// @dev Transfers ETH to deployer wallet.
    function withdraw() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

    /// @dev Mints `amount` of tokens to `msg.sender`.
    function mint(uint256 amount) external payable {
        require(saleActive, "!saleActive");
        require(msg.value == amount * PRICE, "!=PRICE");
        // require(amount <= MAX_PER_TXN, ">maxTxn");
        require(totalSupply() + amount <= MAX_SUPPLY, ">MAX_SUPPLY");
        _safeMint(msg.sender, amount);
    }

    /// @dev Should never be used on-chain because of gas fees.
    function tokensOfOwner(address owner)
        external
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(owner);

        if (tokenCount == 0) {
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 resultIndex = 0;

            // Needs to go from 1 and include the last id
            for (uint256 tokenId = 1; tokenId <= totalSupply(); tokenId++) {
                if (ownerOf(tokenId) == owner) {
                    result[resultIndex] = tokenId;
                    resultIndex++;
                    if (resultIndex >= tokenCount) {
                        break;
                    }
                }
            }
            return result;
        }
    }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"updateURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e0604052603160808181529062001c2360a039805162000029916009916020909101906200037f565b503480156200003757600080fd5b506040805180820182526009815268426c7565436869707360b81b602080830191825283518085019094526004845263424c554560e01b90840152815191929162000085916002916200037f565b5080516200009b9060039060208401906200037f565b5050600160005550620000ae33620000c1565b620000bb33600162000113565b6200050f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001358282604051806020016040528060008152506200013960201b60201c565b5050565b620001458383620001b0565b6001600160a01b0383163b15620001ab576000548281035b600181019062000173906000908790866200028b565b62000191576040516368d2bf6b60e11b815260040160405180910390fd5b8181106200015d578160005414620001a857600080fd5b50505b505050565b60005482600003620001d457604051622e076360e81b815260040160405180910390fd5b81600003620001f65760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915281204260a01b85176001851460e11b1790555b60405160018201918301906001600160a01b038616906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48281106200023d57500160005550565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290620002c290339089908890889060040162000425565b6020604051808303816000875af192505050801562000300575060408051601f3d908101601f19168201909252620002fd91810190620004a0565b60015b62000362573d80801562000331576040519150601f19603f3d011682016040523d82523d6000602084013e62000336565b606091505b5080516000036200035a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b8280546200038d90620004d3565b90600052602060002090601f016020900481019282620003b15760008555620003fc565b82601f10620003cc57805160ff1916838001178555620003fc565b82800160010185558215620003fc579182015b82811115620003fc578251825591602001919060010190620003df565b506200040a9291506200040e565b5090565b5b808211156200040a57600081556001016200040f565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620004745785810182015185820160a00152810162000456565b828111156200048757600060a084870101525b5050601f01601f19169190910160a00195945050505050565b600060208284031215620004b357600080fd5b81516001600160e01b031981168114620004cc57600080fd5b9392505050565b600181811c90821680620004e857607f821691505b6020821081036200050957634e487b7160e01b600052602260045260246000fd5b50919050565b611704806200051f6000396000f3fe6080604052600436106101665760003560e01c8063715018a6116100d1578063a0712d681161008a578063c30f4a5a11610064578063c30f4a5a14610407578063c87b56dd14610427578063e985e9c514610447578063f2fde38b1461049057600080fd5b8063a0712d68146103b4578063a22cb465146103c7578063b88d4fde146103e757600080fd5b8063715018a61461030e5780637ba5e621146103235780638462151c146103385780638d859f3e146103655780638da5cb5b1461038157806395d89b411461039f57600080fd5b806332cb6b0c1161012357806332cb6b0c146102635780633ccfd60b1461027857806342842e0e1461028d5780636352211e146102ad57806368428a1b146102cd57806370a08231146102ee57600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101c2578063095ea7b3146101fa57806318160ddd1461021c57806323b872dd14610243575b600080fd5b34801561017757600080fd5b5061018b61018636600461121e565b6104b0565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b5610502565b6040516101979190611293565b3480156101ce57600080fd5b506101e26101dd3660046112a6565b610594565b6040516001600160a01b039091168152602001610197565b34801561020657600080fd5b5061021a6102153660046112db565b6105d8565b005b34801561022857600080fd5b5060015460005403600019015b604051908152602001610197565b34801561024f57600080fd5b5061021a61025e366004611305565b610678565b34801561026f57600080fd5b5061023560c881565b34801561028457600080fd5b5061021a610688565b34801561029957600080fd5b5061021a6102a8366004611305565b6106ea565b3480156102b957600080fd5b506101e26102c83660046112a6565b610705565b3480156102d957600080fd5b5060085461018b90600160a01b900460ff1681565b3480156102fa57600080fd5b50610235610309366004611341565b610710565b34801561031a57600080fd5b5061021a610759565b34801561032f57600080fd5b5061021a61078f565b34801561034457600080fd5b50610358610353366004611341565b6107da565b604051610197919061135c565b34801561037157600080fd5b506102356701151c96347b000081565b34801561038d57600080fd5b506008546001600160a01b03166101e2565b3480156103ab57600080fd5b506101b56108db565b61021a6103c23660046112a6565b6108ea565b3480156103d357600080fd5b5061021a6103e23660046113a0565b6109db565b3480156103f357600080fd5b5061021a610402366004611468565b610a70565b34801561041357600080fd5b5061021a6104223660046114e4565b610aba565b34801561043357600080fd5b506101b56104423660046112a6565b610afb565b34801561045357600080fd5b5061018b61046236600461152d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561049c57600080fd5b5061021a6104ab366004611341565b610b7f565b60006301ffc9a760e01b6001600160e01b0319831614806104e157506380ac58cd60e01b6001600160e01b03198316145b806104fc5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461051190611560565b80601f016020809104026020016040519081016040528092919081815260200182805461053d90611560565b801561058a5780601f1061055f5761010080835404028352916020019161058a565b820191906000526020600020905b81548152906001019060200180831161056d57829003601f168201915b5050505050905090565b600061059f82610c17565b6105bc576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105e382610c4c565b9050336001600160a01b0382161461061c576105ff8133610462565b61061c576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610683838383610cbb565b505050565b6008546001600160a01b031633146106bb5760405162461bcd60e51b81526004016106b290611594565b60405180910390fd5b60405133904780156108fc02916000818181858888f193505050501580156106e7573d6000803e3d6000fd5b50565b61068383838360405180602001604052806000815250610a70565b60006104fc82610c4c565b600081600003610733576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146107835760405162461bcd60e51b81526004016106b290611594565b61078d6000610e74565b565b6008546001600160a01b031633146107b95760405162461bcd60e51b81526004016106b290611594565b6008805460ff60a01b198116600160a01b9182900460ff1615909102179055565b606060006107e783610710565b905080600003610807575050604080516000815260208101909152919050565b60008167ffffffffffffffff811115610822576108226113dc565b60405190808252806020026020018201604052801561084b578160200160208202803683370190505b509050600060015b600154600054036000190181116108cb57856001600160a01b031661087782610705565b6001600160a01b0316036108b95780838381518110610898576108986115c9565b6020908102919091010152816108ad816115f5565b925050838210156108cb575b806108c3816115f5565b915050610853565b5090949350505050565b50919050565b60606003805461051190611560565b600854600160a01b900460ff166109315760405162461bcd60e51b815260206004820152600b60248201526a2173616c6541637469766560a81b60448201526064016106b2565b6109436701151c96347b00008261160e565b341461097b5760405162461bcd60e51b8152602060048201526007602482015266213d505249434560c81b60448201526064016106b2565b60015460005460c89183910360001901610995919061162d565b11156109d15760405162461bcd60e51b815260206004820152600b60248201526a3e4d41585f535550504c5960a81b60448201526064016106b2565b6106e73382610ec6565b336001600160a01b03831603610a045760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610a7b848484610cbb565b6001600160a01b0383163b15610ab457610a9784848484610ee0565b610ab4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610ae45760405162461bcd60e51b81526004016106b290611594565b8051610af790600990602084019061116f565b5050565b6060610b0682610c17565b610b2357604051630a14c4b560e41b815260040160405180910390fd5b6000610b2d610fcc565b90508051600003610b4d5760405180602001604052806000815250610b78565b80610b5784610fdb565b604051602001610b68929190611645565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610ba95760405162461bcd60e51b81526004016106b290611594565b6001600160a01b038116610c0e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106b2565b6106e781610e74565b600081600111158015610c2b575060005482105b80156104fc575050600090815260046020526040902054600160e01b161590565b60008180600111610ca257600054811015610ca25760008181526004602052604081205490600160e01b82169003610ca0575b80600003610b78575060001901600081815260046020526040902054610c7f565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610cc682610c4c565b9050836001600160a01b0316816001600160a01b031614610cf95760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b0390811691908616331480610d295750610d298633610462565b80610d3c57506001600160a01b03821633145b905080610d5c57604051632ce44b5f60e11b815260040160405180910390fd5b84600003610d7d57604051633a954ecd60e21b815260040160405180910390fd5b8115610da057600084815260066020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600560209081526040808320805460001901905592881682528282208054600101905586825260049052908120600160e11b4260a01b8817811790915584169003610e2b57600184016000818152600460205260408120549003610e29576000548114610e295760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610af782826040518060200160405280600081525061102a565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610f15903390899088908890600401611674565b6020604051808303816000875af1925050508015610f50575060408051601f3d908101601f19168201909252610f4d918101906116b1565b60015b610fae573d808015610f7e576040519150601f19603f3d011682016040523d82523d6000602084013e610f83565b606091505b508051600003610fa6576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461051190611560565b604080516080810191829052607f0190826030600a8206018353600a90045b801561101857600183039250600a81066030018353600a9004610ffa565b50819003601f19909101908152919050565b6110348383611097565b6001600160a01b0383163b15610683576000548281035b61105e6000868380600101945086610ee0565b61107b576040516368d2bf6b60e11b815260040160405180910390fd5b81811061104b57816000541461109057600080fd5b5050505050565b600054826000036110ba57604051622e076360e81b815260040160405180910390fd5b816000036110db5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915281204260a01b85176001851460e11b1790555b60405160018201918301906001600160a01b038616906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a482811061112257500160005550565b82805461117b90611560565b90600052602060002090601f01602090048101928261119d57600085556111e3565b82601f106111b657805160ff19168380011785556111e3565b828001600101855582156111e3579182015b828111156111e35782518255916020019190600101906111c8565b506111ef9291506111f3565b5090565b5b808211156111ef57600081556001016111f4565b6001600160e01b0319811681146106e757600080fd5b60006020828403121561123057600080fd5b8135610b7881611208565b60005b8381101561125657818101518382015260200161123e565b83811115610ab45750506000910152565b6000815180845261127f81602086016020860161123b565b601f01601f19169290920160200192915050565b602081526000610b786020830184611267565b6000602082840312156112b857600080fd5b5035919050565b80356001600160a01b03811681146112d657600080fd5b919050565b600080604083850312156112ee57600080fd5b6112f7836112bf565b946020939093013593505050565b60008060006060848603121561131a57600080fd5b611323846112bf565b9250611331602085016112bf565b9150604084013590509250925092565b60006020828403121561135357600080fd5b610b78826112bf565b6020808252825182820181905260009190848201906040850190845b8181101561139457835183529284019291840191600101611378565b50909695505050505050565b600080604083850312156113b357600080fd5b6113bc836112bf565b9150602083013580151581146113d157600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561140d5761140d6113dc565b604051601f8501601f19908116603f01168101908282118183101715611435576114356113dc565b8160405280935085815286868601111561144e57600080fd5b858560208301376000602087830101525050509392505050565b6000806000806080858703121561147e57600080fd5b611487856112bf565b9350611495602086016112bf565b925060408501359150606085013567ffffffffffffffff8111156114b857600080fd5b8501601f810187136114c957600080fd5b6114d8878235602084016113f2565b91505092959194509250565b6000602082840312156114f657600080fd5b813567ffffffffffffffff81111561150d57600080fd5b8201601f8101841361151e57600080fd5b610fc4848235602084016113f2565b6000806040838503121561154057600080fd5b611549836112bf565b9150611557602084016112bf565b90509250929050565b600181811c9082168061157457607f821691505b6020821081036108d557634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611607576116076115df565b5060010190565b6000816000190483118215151615611628576116286115df565b500290565b60008219821115611640576116406115df565b500190565b6000835161165781846020880161123b565b83519083019061166b81836020880161123b565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906116a790830184611267565b9695505050505050565b6000602082840312156116c357600080fd5b8151610b788161120856fea264697066735822122041a5cf3aa71de67112cf993acee58fd2520bfba4e76a9096f4b6fb55fc419c8564736f6c634300080e003361723a2f2f4c6d6c4b465f336d5153774e6f66374559564d5253634b6c643961647a4b335578487445494e4878676e772f

Deployed Bytecode

0x6080604052600436106101665760003560e01c8063715018a6116100d1578063a0712d681161008a578063c30f4a5a11610064578063c30f4a5a14610407578063c87b56dd14610427578063e985e9c514610447578063f2fde38b1461049057600080fd5b8063a0712d68146103b4578063a22cb465146103c7578063b88d4fde146103e757600080fd5b8063715018a61461030e5780637ba5e621146103235780638462151c146103385780638d859f3e146103655780638da5cb5b1461038157806395d89b411461039f57600080fd5b806332cb6b0c1161012357806332cb6b0c146102635780633ccfd60b1461027857806342842e0e1461028d5780636352211e146102ad57806368428a1b146102cd57806370a08231146102ee57600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101c2578063095ea7b3146101fa57806318160ddd1461021c57806323b872dd14610243575b600080fd5b34801561017757600080fd5b5061018b61018636600461121e565b6104b0565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b5610502565b6040516101979190611293565b3480156101ce57600080fd5b506101e26101dd3660046112a6565b610594565b6040516001600160a01b039091168152602001610197565b34801561020657600080fd5b5061021a6102153660046112db565b6105d8565b005b34801561022857600080fd5b5060015460005403600019015b604051908152602001610197565b34801561024f57600080fd5b5061021a61025e366004611305565b610678565b34801561026f57600080fd5b5061023560c881565b34801561028457600080fd5b5061021a610688565b34801561029957600080fd5b5061021a6102a8366004611305565b6106ea565b3480156102b957600080fd5b506101e26102c83660046112a6565b610705565b3480156102d957600080fd5b5060085461018b90600160a01b900460ff1681565b3480156102fa57600080fd5b50610235610309366004611341565b610710565b34801561031a57600080fd5b5061021a610759565b34801561032f57600080fd5b5061021a61078f565b34801561034457600080fd5b50610358610353366004611341565b6107da565b604051610197919061135c565b34801561037157600080fd5b506102356701151c96347b000081565b34801561038d57600080fd5b506008546001600160a01b03166101e2565b3480156103ab57600080fd5b506101b56108db565b61021a6103c23660046112a6565b6108ea565b3480156103d357600080fd5b5061021a6103e23660046113a0565b6109db565b3480156103f357600080fd5b5061021a610402366004611468565b610a70565b34801561041357600080fd5b5061021a6104223660046114e4565b610aba565b34801561043357600080fd5b506101b56104423660046112a6565b610afb565b34801561045357600080fd5b5061018b61046236600461152d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561049c57600080fd5b5061021a6104ab366004611341565b610b7f565b60006301ffc9a760e01b6001600160e01b0319831614806104e157506380ac58cd60e01b6001600160e01b03198316145b806104fc5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461051190611560565b80601f016020809104026020016040519081016040528092919081815260200182805461053d90611560565b801561058a5780601f1061055f5761010080835404028352916020019161058a565b820191906000526020600020905b81548152906001019060200180831161056d57829003601f168201915b5050505050905090565b600061059f82610c17565b6105bc576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105e382610c4c565b9050336001600160a01b0382161461061c576105ff8133610462565b61061c576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610683838383610cbb565b505050565b6008546001600160a01b031633146106bb5760405162461bcd60e51b81526004016106b290611594565b60405180910390fd5b60405133904780156108fc02916000818181858888f193505050501580156106e7573d6000803e3d6000fd5b50565b61068383838360405180602001604052806000815250610a70565b60006104fc82610c4c565b600081600003610733576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146107835760405162461bcd60e51b81526004016106b290611594565b61078d6000610e74565b565b6008546001600160a01b031633146107b95760405162461bcd60e51b81526004016106b290611594565b6008805460ff60a01b198116600160a01b9182900460ff1615909102179055565b606060006107e783610710565b905080600003610807575050604080516000815260208101909152919050565b60008167ffffffffffffffff811115610822576108226113dc565b60405190808252806020026020018201604052801561084b578160200160208202803683370190505b509050600060015b600154600054036000190181116108cb57856001600160a01b031661087782610705565b6001600160a01b0316036108b95780838381518110610898576108986115c9565b6020908102919091010152816108ad816115f5565b925050838210156108cb575b806108c3816115f5565b915050610853565b5090949350505050565b50919050565b60606003805461051190611560565b600854600160a01b900460ff166109315760405162461bcd60e51b815260206004820152600b60248201526a2173616c6541637469766560a81b60448201526064016106b2565b6109436701151c96347b00008261160e565b341461097b5760405162461bcd60e51b8152602060048201526007602482015266213d505249434560c81b60448201526064016106b2565b60015460005460c89183910360001901610995919061162d565b11156109d15760405162461bcd60e51b815260206004820152600b60248201526a3e4d41585f535550504c5960a81b60448201526064016106b2565b6106e73382610ec6565b336001600160a01b03831603610a045760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610a7b848484610cbb565b6001600160a01b0383163b15610ab457610a9784848484610ee0565b610ab4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610ae45760405162461bcd60e51b81526004016106b290611594565b8051610af790600990602084019061116f565b5050565b6060610b0682610c17565b610b2357604051630a14c4b560e41b815260040160405180910390fd5b6000610b2d610fcc565b90508051600003610b4d5760405180602001604052806000815250610b78565b80610b5784610fdb565b604051602001610b68929190611645565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610ba95760405162461bcd60e51b81526004016106b290611594565b6001600160a01b038116610c0e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106b2565b6106e781610e74565b600081600111158015610c2b575060005482105b80156104fc575050600090815260046020526040902054600160e01b161590565b60008180600111610ca257600054811015610ca25760008181526004602052604081205490600160e01b82169003610ca0575b80600003610b78575060001901600081815260046020526040902054610c7f565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610cc682610c4c565b9050836001600160a01b0316816001600160a01b031614610cf95760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b0390811691908616331480610d295750610d298633610462565b80610d3c57506001600160a01b03821633145b905080610d5c57604051632ce44b5f60e11b815260040160405180910390fd5b84600003610d7d57604051633a954ecd60e21b815260040160405180910390fd5b8115610da057600084815260066020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600560209081526040808320805460001901905592881682528282208054600101905586825260049052908120600160e11b4260a01b8817811790915584169003610e2b57600184016000818152600460205260408120549003610e29576000548114610e295760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610af782826040518060200160405280600081525061102a565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610f15903390899088908890600401611674565b6020604051808303816000875af1925050508015610f50575060408051601f3d908101601f19168201909252610f4d918101906116b1565b60015b610fae573d808015610f7e576040519150601f19603f3d011682016040523d82523d6000602084013e610f83565b606091505b508051600003610fa6576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461051190611560565b604080516080810191829052607f0190826030600a8206018353600a90045b801561101857600183039250600a81066030018353600a9004610ffa565b50819003601f19909101908152919050565b6110348383611097565b6001600160a01b0383163b15610683576000548281035b61105e6000868380600101945086610ee0565b61107b576040516368d2bf6b60e11b815260040160405180910390fd5b81811061104b57816000541461109057600080fd5b5050505050565b600054826000036110ba57604051622e076360e81b815260040160405180910390fd5b816000036110db5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915281204260a01b85176001851460e11b1790555b60405160018201918301906001600160a01b038616906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a482811061112257500160005550565b82805461117b90611560565b90600052602060002090601f01602090048101928261119d57600085556111e3565b82601f106111b657805160ff19168380011785556111e3565b828001600101855582156111e3579182015b828111156111e35782518255916020019190600101906111c8565b506111ef9291506111f3565b5090565b5b808211156111ef57600081556001016111f4565b6001600160e01b0319811681146106e757600080fd5b60006020828403121561123057600080fd5b8135610b7881611208565b60005b8381101561125657818101518382015260200161123e565b83811115610ab45750506000910152565b6000815180845261127f81602086016020860161123b565b601f01601f19169290920160200192915050565b602081526000610b786020830184611267565b6000602082840312156112b857600080fd5b5035919050565b80356001600160a01b03811681146112d657600080fd5b919050565b600080604083850312156112ee57600080fd5b6112f7836112bf565b946020939093013593505050565b60008060006060848603121561131a57600080fd5b611323846112bf565b9250611331602085016112bf565b9150604084013590509250925092565b60006020828403121561135357600080fd5b610b78826112bf565b6020808252825182820181905260009190848201906040850190845b8181101561139457835183529284019291840191600101611378565b50909695505050505050565b600080604083850312156113b357600080fd5b6113bc836112bf565b9150602083013580151581146113d157600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561140d5761140d6113dc565b604051601f8501601f19908116603f01168101908282118183101715611435576114356113dc565b8160405280935085815286868601111561144e57600080fd5b858560208301376000602087830101525050509392505050565b6000806000806080858703121561147e57600080fd5b611487856112bf565b9350611495602086016112bf565b925060408501359150606085013567ffffffffffffffff8111156114b857600080fd5b8501601f810187136114c957600080fd5b6114d8878235602084016113f2565b91505092959194509250565b6000602082840312156114f657600080fd5b813567ffffffffffffffff81111561150d57600080fd5b8201601f8101841361151e57600080fd5b610fc4848235602084016113f2565b6000806040838503121561154057600080fd5b611549836112bf565b9150611557602084016112bf565b90509250929050565b600181811c9082168061157457607f821691505b6020821081036108d557634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611607576116076115df565b5060010190565b6000816000190483118215151615611628576116286115df565b500290565b60008219821115611640576116406115df565b500190565b6000835161165781846020880161123b565b83519083019061166b81836020880161123b565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906116a790830184611267565b9695505050505050565b6000602082840312156116c357600080fd5b8151610b788161120856fea264697066735822122041a5cf3aa71de67112cf993acee58fd2520bfba4e76a9096f4b6fb55fc419c8564736f6c634300080e0033

Deployed Bytecode Sourcemap

40486:2418:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16490:615;;;;;;;;;;-1:-1:-1;16490:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;16490:615:0;;;;;;;;21526:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23539:204::-;;;;;;;;;;-1:-1:-1;23539:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;23539:204:0;1528:203:1;23058:415:0;;;;;;;;;;-1:-1:-1;23058:415:0;;;;;:::i;:::-;;:::i;:::-;;15544:315;;;;;;;;;;-1:-1:-1;42892:1:0;15810:12;15597:7;15794:13;:28;-1:-1:-1;;15794:46:0;15544:315;;;2319:25:1;;;2307:2;2292:18;15544:315:0;2173:177:1;24425:170:0;;;;;;;;;;-1:-1:-1;24425:170:0;;;;;:::i;:::-;;:::i;40561:40::-;;;;;;;;;;;;40598:3;40561:40;;41306:109;;;;;;;;;;;;;:::i;24666:185::-;;;;;;;;;;-1:-1:-1;24666:185:0;;;;;:::i;:::-;;:::i;21315:144::-;;;;;;;;;;-1:-1:-1;21315:144:0;;;;;:::i;:::-;;:::i;40532:22::-;;;;;;;;;;-1:-1:-1;40532:22:0;;;;-1:-1:-1;;;40532:22:0;;;;;;17169:234;;;;;;;;;;-1:-1:-1;17169:234:0;;;;;:::i;:::-;;:::i;2639:103::-;;;;;;;;;;;;;:::i;40996:82::-;;;;;;;;;;;;;:::i;41876:820::-;;;;;;;;;;-1:-1:-1;41876:820:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;40608:43::-;;;;;;;;;;;;40640:11;40608:43;;1988:87;;;;;;;;;;-1:-1:-1;2061:6:0;;-1:-1:-1;;;;;2061:6:0;1988:87;;21695:104;;;;;;;;;;;;;:::i;41479:324::-;;;;;;:::i;:::-;;:::i;23815:308::-;;;;;;;;;;-1:-1:-1;23815:308:0;;;;;:::i;:::-;;:::i;24922:396::-;;;;;;;;;;-1:-1:-1;24922:396:0;;;;;:::i;:::-;;:::i;41159:91::-;;;;;;;;;;-1:-1:-1;41159:91:0;;;;;:::i;:::-;;:::i;21870:318::-;;;;;;;;;;-1:-1:-1;21870:318:0;;;;;:::i;:::-;;:::i;24194:164::-;;;;;;;;;;-1:-1:-1;24194:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24315:25:0;;;24291:4;24315:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24194:164;2897:201;;;;;;;;;;-1:-1:-1;2897:201:0;;;;;:::i;:::-;;:::i;16490:615::-;16575:4;-1:-1:-1;;;;;;;;;16875:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;16952:25:0;;;16875:102;:179;;;-1:-1:-1;;;;;;;;;;17029:25:0;;;16875:179;16855:199;16490:615;-1:-1:-1;;16490:615:0:o;21526:100::-;21580:13;21613:5;21606:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21526:100;:::o;23539:204::-;23607:7;23632:16;23640:7;23632;:16::i;:::-;23627:64;;23657:34;;-1:-1:-1;;;23657:34:0;;;;;;;;;;;23627:64;-1:-1:-1;23711:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23711:24:0;;23539:204::o;23058:415::-;23131:13;23163:27;23182:7;23163:18;:27::i;:::-;23131:61;-1:-1:-1;38334:10:0;-1:-1:-1;;;;;23209:28:0;;;23205:175;;23257:44;23274:5;38334:10;24194:164;:::i;23257:44::-;23252:128;;23329:35;;-1:-1:-1;;;23329:35:0;;;;;;;;;;;23252:128;23392:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;23392:29:0;-1:-1:-1;;;;;23392:29:0;;;;;;;;;23437:28;;23392:24;;23437:28;;;;;;;23120:353;23058:415;;:::o;24425:170::-;24559:28;24569:4;24575:2;24579:7;24559:9;:28::i;:::-;24425:170;;;:::o;41306:109::-;2061:6;;-1:-1:-1;;;;;2061:6:0;38334:10;2208:23;2200:68;;;;-1:-1:-1;;;2200:68:0;;;;;;;:::i;:::-;;;;;;;;;41356:51:::1;::::0;41364:10:::1;::::0;41385:21:::1;41356:51:::0;::::1;;;::::0;::::1;::::0;;;41385:21;41364:10;41356:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;41306:109::o:0;24666:185::-;24804:39;24821:4;24827:2;24831:7;24804:39;;;;;;;;;;;;:16;:39::i;21315:144::-;21379:7;21422:27;21441:7;21422:18;:27::i;17169:234::-;17233:7;17275:5;17285:1;17257:29;17253:70;;17295:28;;-1:-1:-1;;;17295:28:0;;;;;;;;;;;17253:70;-1:-1:-1;;;;;;17341:25:0;;;;;:18;:25;;;;;;12514:13;17341:54;;17169:234::o;2639:103::-;2061:6;;-1:-1:-1;;;;;2061:6:0;38334:10;2208:23;2200:68;;;;-1:-1:-1;;;2200:68:0;;;;;;;:::i;:::-;2704:30:::1;2731:1;2704:18;:30::i;:::-;2639:103::o:0;40996:82::-;2061:6;;-1:-1:-1;;;;;2061:6:0;38334:10;2208:23;2200:68;;;;-1:-1:-1;;;2200:68:0;;;;;;;:::i;:::-;41060:10:::1;::::0;;-1:-1:-1;;;;41046:24:0;::::1;-1:-1:-1::0;;;41060:10:0;;;::::1;;;41059:11;41046:24:::0;;::::1;;::::0;;40996:82::o;41876:820::-;41964:16;41998:18;42019:16;42029:5;42019:9;:16::i;:::-;41998:37;;42052:10;42066:1;42052:15;42048:641;;-1:-1:-1;;42091:16:0;;;42105:1;42091:16;;;;;;;;;42084:23;-1:-1:-1;41876:820:0:o;42048:641::-;42140:23;42180:10;42166:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42166:25:0;-1:-1:-1;42140:51:0;-1:-1:-1;42206:19:0;42328:1;42305:345;42892:1;15810:12;15597:7;15794:13;:28;-1:-1:-1;;15794:46:0;42331:7;:24;42305:345;;42411:5;-1:-1:-1;;;;;42391:25:0;:16;42399:7;42391;:16::i;:::-;-1:-1:-1;;;;;42391:25:0;;42387:248;;42463:7;42441:6;42448:11;42441:19;;;;;;;;:::i;:::-;;;;;;;;;;:29;42493:13;;;;:::i;:::-;;;;42548:10;42533:11;:25;42529:87;42587:5;42529:87;;42357:9;;;;:::i;:::-;;;;42305:345;;;-1:-1:-1;42671:6:0;;41876:820;-1:-1:-1;;;;41876:820:0:o;42048:641::-;41987:709;41876:820;;;:::o;21695:104::-;21751:13;21784:7;21777:14;;;;;:::i;41479:324::-;41545:10;;-1:-1:-1;;;41545:10:0;;;;41537:34;;;;-1:-1:-1;;;41537:34:0;;7379:2:1;41537:34:0;;;7361:21:1;7418:2;7398:18;;;7391:30;-1:-1:-1;;;7437:18:1;;;7430:41;7488:18;;41537:34:0;7177:335:1;41537:34:0;41603:14;40640:11;41603:6;:14;:::i;:::-;41590:9;:27;41582:47;;;;-1:-1:-1;;;41582:47:0;;7892:2:1;41582:47:0;;;7874:21:1;7931:1;7911:18;;;7904:29;-1:-1:-1;;;7949:18:1;;;7942:37;7996:18;;41582:47:0;7690:330:1;41582:47:0;42892:1;15810:12;15597:7;15794:13;40598:3;;41719:6;;15794:28;-1:-1:-1;;15794:46:0;41703:22;;;;:::i;:::-;:36;;41695:60;;;;-1:-1:-1;;;41695:60:0;;8360:2:1;41695:60:0;;;8342:21:1;8399:2;8379:18;;;8372:30;-1:-1:-1;;;8418:18:1;;;8411:41;8469:18;;41695:60:0;8158:335:1;41695:60:0;41766:29;41776:10;41788:6;41766:9;:29::i;23815:308::-;38334:10;-1:-1:-1;;;;;23914:31:0;;;23910:61;;23954:17;;-1:-1:-1;;;23954:17:0;;;;;;;;;;;23910:61;38334:10;23984:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;23984:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;23984:60:0;;;;;;;;;;24060:55;;540:41:1;;;23984:49:0;;38334:10;24060:55;;513:18:1;24060:55:0;;;;;;;23815:308;;:::o;24922:396::-;25089:28;25099:4;25105:2;25109:7;25089:9;:28::i;:::-;-1:-1:-1;;;;;25132:14:0;;;:19;25128:183;;25171:56;25202:4;25208:2;25212:7;25221:5;25171:30;:56::i;:::-;25166:145;;25255:40;;-1:-1:-1;;;25255:40:0;;;;;;;;;;;25166:145;24922:396;;;;:::o;41159:91::-;2061:6;;-1:-1:-1;;;;;2061:6:0;38334:10;2208:23;2200:68;;;;-1:-1:-1;;;2200:68:0;;;;;;;:::i;:::-;41230:12;;::::1;::::0;:3:::1;::::0;:12:::1;::::0;::::1;::::0;::::1;:::i;:::-;;41159:91:::0;:::o;21870:318::-;21943:13;21974:16;21982:7;21974;:16::i;:::-;21969:59;;21999:29;;-1:-1:-1;;;21999:29:0;;;;;;;;;;;21969:59;22041:21;22065:10;:8;:10::i;:::-;22041:34;;22099:7;22093:21;22118:1;22093:26;:87;;;;;;;;;;;;;;;;;22146:7;22155:18;22165:7;22155:9;:18::i;:::-;22129:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22093:87;22086:94;21870:318;-1:-1:-1;;;21870:318:0:o;2897:201::-;2061:6;;-1:-1:-1;;;;;2061:6:0;38334:10;2208:23;2200:68;;;;-1:-1:-1;;;2200:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2986:22:0;::::1;2978:73;;;::::0;-1:-1:-1;;;2978:73:0;;9175:2:1;2978:73:0::1;::::0;::::1;9157:21:1::0;9214:2;9194:18;;;9187:30;9253:34;9233:18;;;9226:62;-1:-1:-1;;;9304:18:1;;;9297:36;9350:19;;2978:73:0::1;8973:402:1::0;2978:73:0::1;3062:28;3081:8;3062:18;:28::i;25573:273::-:0;25630:4;25686:7;42892:1;25667:26;;:66;;;;;25720:13;;25710:7;:23;25667:66;:152;;;;-1:-1:-1;;25771:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;25771:43:0;:48;;25573:273::o;18830:1129::-;18897:7;18932;;42892:1;18981:23;18977:915;;19034:13;;19027:4;:20;19023:869;;;19072:14;19089:23;;;:17;:23;;;;;;;-1:-1:-1;;;19178:23:0;;:28;;19174:699;;19697:113;19704:6;19714:1;19704:11;19697:113;;-1:-1:-1;;;19775:6:0;19757:25;;;;:17;:25;;;;;;19697:113;;19174:699;19049:843;19023:869;19920:31;;-1:-1:-1;;;19920:31:0;;;;;;;;;;;29239:2654;29354:27;29384;29403:7;29384:18;:27::i;:::-;29354:57;;29469:4;-1:-1:-1;;;;;29428:45:0;29444:19;-1:-1:-1;;;;;29428:45:0;;29424:86;;29482:28;;-1:-1:-1;;;29482:28:0;;;;;;;;;;;29424:86;29523:23;29549:24;;;:15;:24;;;;;;-1:-1:-1;;;;;29549:24:0;;;;29523:23;29612:27;;38334:10;29612:27;;:87;;-1:-1:-1;29656:43:0;29673:4;38334:10;24194:164;:::i;29656:43::-;29612:142;;;-1:-1:-1;;;;;;29716:38:0;;38334:10;29716:38;29612:142;29586:169;;29773:17;29768:66;;29799:35;;-1:-1:-1;;;29799:35:0;;;;;;;;;;;29768:66;29867:2;29874:1;29849:26;29845:62;;29884:23;;-1:-1:-1;;;29884:23:0;;;;;;;;;;;29845:62;30051:15;30033:39;30029:103;;30096:24;;;;:15;:24;;;;;30089:31;;-1:-1:-1;;;;;;30089:31:0;;;30029:103;-1:-1:-1;;;;;30499:24:0;;;;;;;:18;:24;;;;;;;;30497:26;;-1:-1:-1;;30497:26:0;;;30568:22;;;;;;;;30566:24;;-1:-1:-1;30566:24:0;;;30861:26;;;:17;:26;;;;;-1:-1:-1;;;30949:15:0;13168:3;30949:41;30907:84;;:128;;30861:174;;;31155:46;;:51;;31151:626;;31259:1;31249:11;;31227:19;31382:30;;;:17;:30;;;;;;:35;;31378:384;;31520:13;;31505:11;:28;31501:242;;31667:30;;;;:17;:30;;;;;:52;;;31501:242;31208:569;31151:626;31824:7;31820:2;-1:-1:-1;;;;;31805:27:0;31814:4;-1:-1:-1;;;;;31805:27:0;;;;;;;;;;;29343:2550;;;29239:2654;;;:::o;3258:191::-;3351:6;;;-1:-1:-1;;;;;3368:17:0;;;-1:-1:-1;;;;;;3368:17:0;;;;;;;3401:40;;3351:6;;;3368:17;3351:6;;3401:40;;3332:16;;3401:40;3321:128;3258:191;:::o;25930:104::-;25999:27;26009:2;26013:8;25999:27;;;;;;;;;;;;:9;:27::i;35716:716::-;35900:88;;-1:-1:-1;;;35900:88:0;;35879:4;;-1:-1:-1;;;;;35900:45:0;;;;;:88;;38334:10;;35967:4;;35973:7;;35982:5;;35900:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35900:88:0;;;;;;;;-1:-1:-1;;35900:88:0;;;;;;;;;;;;:::i;:::-;;;35896:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36183:6;:13;36200:1;36183:18;36179:235;;36229:40;;-1:-1:-1;;;36229:40:0;;;;;;;;;;;36179:235;36372:6;36366:13;36357:6;36353:2;36349:15;36342:38;35896:529;-1:-1:-1;;;;;;36059:64:0;-1:-1:-1;;;36059:64:0;;-1:-1:-1;35896:529:0;35716:716;;;;;;:::o;42704:96::-;42756:13;42789:3;42782:10;;;;;:::i;38458:1960::-;38927:4;38921:11;;38934:3;38917:21;;39012:17;;;;39708:11;;;39587:5;39840:2;39854;39844:13;;39836:22;39708:11;39823:36;39895:2;39885:13;;39479:697;39914:4;39479:697;;;40105:1;40100:3;40096:11;40089:18;;40156:2;40150:4;40146:13;40142:2;40138:22;40133:3;40125:36;40009:2;39999:13;;39479:697;;;-1:-1:-1;40206:13:0;;;-1:-1:-1;;40321:12:0;;;40381:19;;;40321:12;38458:1960;-1:-1:-1;38458:1960:0:o;26421:681::-;26544:19;26550:2;26554:8;26544:5;:19::i;:::-;-1:-1:-1;;;;;26605:14:0;;;:19;26601:483;;26645:11;26659:13;26707:14;;;26740:233;26771:62;26810:1;26814:2;26818:7;;;;;;26827:5;26771:30;:62::i;:::-;26766:167;;26869:40;;-1:-1:-1;;;26869:40:0;;;;;;;;;;;26766:167;26968:3;26960:5;:11;26740:233;;27055:3;27038:13;;:20;27034:34;;27060:8;;;27034:34;26626:458;;26421:681;;;:::o;27375:1610::-;27440:20;27463:13;27509:2;27516:1;27491:26;27487:58;;27526:19;;-1:-1:-1;;;27526:19:0;;;;;;;;;;;27487:58;27560:8;27572:1;27560:13;27556:44;;27582:18;;-1:-1:-1;;;27582:18:0;;;;;;;;;;;27556:44;-1:-1:-1;;;;;28149:22:0;;;;;;:18;:22;;;;12651:2;28149:22;;;:70;;28187:31;28175:44;;28149:70;;;28462:31;;;:17;:31;;;;;28555:15;13168:3;28555:41;28513:84;;-1:-1:-1;28633:13:0;;13427:3;28618:56;28513:162;28462:213;;28721:119;28748:49;;28788:8;;;;28773:23;;;-1:-1:-1;;;;;28748:49:0;;;28765:1;;28748:49;;28765:1;;28748:49;28830:8;28821:6;:17;28721:119;;-1:-1:-1;28872:23:0;28856:13;:39;-1:-1:-1;24425:170:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:632::-;3050:2;3102:21;;;3172:13;;3075:18;;;3194:22;;;3021:4;;3050:2;3273:15;;;;3247:2;3232:18;;;3021:4;3316:169;3330:6;3327:1;3324:13;3316:169;;;3391:13;;3379:26;;3460:15;;;;3425:12;;;;3352:1;3345:9;3316:169;;;-1:-1:-1;3502:3:1;;2879:632;-1:-1:-1;;;;;;2879:632:1:o;3516:347::-;3581:6;3589;3642:2;3630:9;3621:7;3617:23;3613:32;3610:52;;;3658:1;3655;3648:12;3610:52;3681:29;3700:9;3681:29;:::i;:::-;3671:39;;3760:2;3749:9;3745:18;3732:32;3807:5;3800:13;3793:21;3786:5;3783:32;3773:60;;3829:1;3826;3819:12;3773:60;3852:5;3842:15;;;3516:347;;;;;:::o;3868:127::-;3929:10;3924:3;3920:20;3917:1;3910:31;3960:4;3957:1;3950:15;3984:4;3981:1;3974:15;4000:631;4064:5;4094:18;4135:2;4127:6;4124:14;4121:40;;;4141:18;;:::i;:::-;4216:2;4210:9;4184:2;4270:15;;-1:-1:-1;;4266:24:1;;;4292:2;4262:33;4258:42;4246:55;;;4316:18;;;4336:22;;;4313:46;4310:72;;;4362:18;;:::i;:::-;4402:10;4398:2;4391:22;4431:6;4422:15;;4461:6;4453;4446:22;4501:3;4492:6;4487:3;4483:16;4480:25;4477:45;;;4518:1;4515;4508:12;4477:45;4568:6;4563:3;4556:4;4548:6;4544:17;4531:44;4623:1;4616:4;4607:6;4599;4595:19;4591:30;4584:41;;;;4000:631;;;;;:::o;4636:666::-;4731:6;4739;4747;4755;4808:3;4796:9;4787:7;4783:23;4779:33;4776:53;;;4825:1;4822;4815:12;4776:53;4848:29;4867:9;4848:29;:::i;:::-;4838:39;;4896:38;4930:2;4919:9;4915:18;4896:38;:::i;:::-;4886:48;;4981:2;4970:9;4966:18;4953:32;4943:42;;5036:2;5025:9;5021:18;5008:32;5063:18;5055:6;5052:30;5049:50;;;5095:1;5092;5085:12;5049:50;5118:22;;5171:4;5163:13;;5159:27;-1:-1:-1;5149:55:1;;5200:1;5197;5190:12;5149:55;5223:73;5288:7;5283:2;5270:16;5265:2;5261;5257:11;5223:73;:::i;:::-;5213:83;;;4636:666;;;;;;;:::o;5307:450::-;5376:6;5429:2;5417:9;5408:7;5404:23;5400:32;5397:52;;;5445:1;5442;5435:12;5397:52;5485:9;5472:23;5518:18;5510:6;5507:30;5504:50;;;5550:1;5547;5540:12;5504:50;5573:22;;5626:4;5618:13;;5614:27;-1:-1:-1;5604:55:1;;5655:1;5652;5645:12;5604:55;5678:73;5743:7;5738:2;5725:16;5720:2;5716;5712:11;5678:73;:::i;5762:260::-;5830:6;5838;5891:2;5879:9;5870:7;5866:23;5862:32;5859:52;;;5907:1;5904;5897:12;5859:52;5930:29;5949:9;5930:29;:::i;:::-;5920:39;;5978:38;6012:2;6001:9;5997:18;5978:38;:::i;:::-;5968:48;;5762:260;;;;;:::o;6027:380::-;6106:1;6102:12;;;;6149;;;6170:61;;6224:4;6216:6;6212:17;6202:27;;6170:61;6277:2;6269:6;6266:14;6246:18;6243:38;6240:161;;6323:10;6318:3;6314:20;6311:1;6304:31;6358:4;6355:1;6348:15;6386:4;6383:1;6376:15;6412:356;6614:2;6596:21;;;6633:18;;;6626:30;6692:34;6687:2;6672:18;;6665:62;6759:2;6744:18;;6412:356::o;6773:127::-;6834:10;6829:3;6825:20;6822:1;6815:31;6865:4;6862:1;6855:15;6889:4;6886:1;6879:15;6905:127;6966:10;6961:3;6957:20;6954:1;6947:31;6997:4;6994:1;6987:15;7021:4;7018:1;7011:15;7037:135;7076:3;7097:17;;;7094:43;;7117:18;;:::i;:::-;-1:-1:-1;7164:1:1;7153:13;;7037:135::o;7517:168::-;7557:7;7623:1;7619;7615:6;7611:14;7608:1;7605:21;7600:1;7593:9;7586:17;7582:45;7579:71;;;7630:18;;:::i;:::-;-1:-1:-1;7670:9:1;;7517:168::o;8025:128::-;8065:3;8096:1;8092:6;8089:1;8086:13;8083:39;;;8102:18;;:::i;:::-;-1:-1:-1;8138:9:1;;8025:128::o;8498:470::-;8677:3;8715:6;8709:13;8731:53;8777:6;8772:3;8765:4;8757:6;8753:17;8731:53;:::i;:::-;8847:13;;8806:16;;;;8869:57;8847:13;8806:16;8903:4;8891:17;;8869:57;:::i;:::-;8942:20;;8498:470;-1:-1:-1;;;;8498:470:1:o;9380:489::-;-1:-1:-1;;;;;9649:15:1;;;9631:34;;9701:15;;9696:2;9681:18;;9674:43;9748:2;9733:18;;9726:34;;;9796:3;9791:2;9776:18;;9769:31;;;9574:4;;9817:46;;9843:19;;9835:6;9817:46;:::i;:::-;9809:54;9380:489;-1:-1:-1;;;;;;9380:489:1:o;9874:249::-;9943:6;9996:2;9984:9;9975:7;9971:23;9967:32;9964:52;;;10012:1;10009;10002:12;9964:52;10044:9;10038:16;10063:30;10087:5;10063:30;:::i

Swarm Source

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