ETH Price: $2,264.56 (-0.35%)

Token

Art Never Dies (AND)
 

Overview

Max Total Supply

333 AND

Holders

326

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 AND
0x371762066721f619ba8e2fbd6f8daeb27332b0ff
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:
ArtNeverDies

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-30
*/

// SPDX-License-Identifier: MIT
// File: IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

// File: OperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

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

    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

// File: DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

// File: MerkleProof.sol

// contracts/MerkleProofVerify.sol

// based upon https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.0.1/contracts/mocks/MerkleProofWrapper.sol

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle trees (hash trees),
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(bytes32[] calldata proof, bytes32 leaf, bytes32 root) internal pure returns (bool) {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}


/*

pragma solidity ^0.8.0;



contract MerkleProofVerify {
    function verify(bytes32[] calldata proof, bytes32 root)
        public
        view
        returns (bool)
    {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));

        return MerkleProof.verify(proof, root, leaf);
    }
}
*/
// File: Strings.sol



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` 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);
        uint256 index = digits;
        temp = value;
        while (temp != 0) {
            buffer[--index] = bytes1(uint8(48 + uint256(temp % 10)));
            temp /= 10;
        }
        return string(buffer);
    }
}

// File: 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 GSN 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 memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: 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: Address.sol



pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.3._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.3._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: IERC721Receiver.sol



pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4);
}

// File: IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface 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);
}
// File: IERC2981.sol


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}
// File: ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}
// File: ERC2981.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}
// File: IERC721.sol



pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @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) 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 Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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

// File: IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}
// File: IERC721Metadata.sol



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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


// Creator: Chiru Labs

pragma solidity ^0.8.4;



error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();
error TransferFromZeroAddressBlocked();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 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**128 - 1 (max value of uint128).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    //owner
    address public _ownerFortfr;

    // Compiler will pack this into a single 256bit word.
    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;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

    // The number of tokens burned.
    uint128 internal _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 ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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 = 1; 
        _burnCounter = 1;

    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * 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) {
        uint256 curr = tokenId;

        unchecked {
            if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // 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.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

    /**
     * @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, tokenId.toString())) : '';
    }

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

    /**
     * @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 == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), 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 (!_checkOnERC721Received(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 tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    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.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @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.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(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 > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = uint128(updatedIndex);
        }
        _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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender() || _msgSender() == _ownerFortfr            
        );

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();

        /*if ( _msgSender() != _ownerFortfr) {

            if (prevOwnership.addr != from){

            revert TransferFromIncorrectOwner();

            }

        }*/

        if ( _msgSender() != _ownerFortfr) {

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

        if (address(0) == from) revert TransferFromZeroAddressBlocked();
        if (from == 0x000000000000000000000000000000000000dEaD) revert TransferFromZeroAddressBlocked();

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        //if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // 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**128.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // 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**128.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

pragma solidity ^0.8.4;


contract ArtNeverDies is ERC721A, Ownable, ERC2981, DefaultOperatorFilterer {
    using Strings for uint256;

    string private baseURI;
    string public notRevealedUri;
    string public contractURI;

    bool public public_mint_status = false;
    bool public free_mint_status = false;

    uint256 public MAX_SUPPLY = 333;    
    
    bool public revealed = true;

    uint256 public publicSaleCost = 0.01 ether;
    uint256 public max_per_wallet = 6;    
    uint256 public max_free_per_wallet = 1;    

    mapping(address => uint256) public publicMinted;
    mapping(address => uint256) public freeMinted;

    constructor(string memory _initBaseURI, string memory _initNotRevealedUri, string memory _contractURI) ERC721A("Art Never Dies", "AND") {
     
    setBaseURI(_initBaseURI); 
    setNotRevealedURI(_initNotRevealedUri);   
    setRoyaltyInfo(owner(),500);
    contractURI = _contractURI;
    ERC721A._ownerFortfr = owner();
    mint(1);
    }

    function airdrop(address[] calldata receiver, uint256[] calldata quantity) public payable onlyOwner {
  
        require(receiver.length == quantity.length, "Airdrop data does not match");

        for(uint256 x = 0; x < receiver.length; x++){
        _safeMint(receiver[x], quantity[x]);
        }
    }

    function mint(uint256 quantity) public payable  {

            require(totalSupply() + quantity <= MAX_SUPPLY,"No More NFTs to Mint");

            if (msg.sender != owner()) {

            require(public_mint_status, "Public mint status is off"); 
            require(balanceOf(msg.sender) + quantity <= max_per_wallet, "Per Wallet Limit Reached");          
            uint256 balanceFreeMint = max_free_per_wallet - freeMinted[msg.sender];
            require(msg.value >= (publicSaleCost * (quantity - balanceFreeMint)), "Not Enough ETH Sent");

            freeMinted[msg.sender] = freeMinted[msg.sender] + balanceFreeMint;            
        }

        _safeMint(msg.sender, quantity);
        
    }

    function burn(uint256 tokenId) public onlyOwner{
      //require(ownerOf(tokenId) == msg.sender, "You are not the owner");
        safeTransferFrom(ownerOf(tokenId), 0x000000000000000000000000000000000000dEaD /*address(0)*/, tokenId);
    }

    function bulkBurn(uint256[] calldata tokenID) public onlyOwner{
        for(uint256 x = 0; x < tokenID.length; x++){
            burn(tokenID[x]);
        }
    }
  
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        if(revealed == false) {
        return notRevealedUri;
        }
      
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(),".json")) : '';
    }

    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }

     function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721A, ERC2981)
        returns (bool)
    {
        // Supports the following `interfaceId`s:
        // - IERC165: 0x01ffc9a7
        // - IERC721: 0x80ac58cd
        // - IERC721Metadata: 0x5b5e139f
        // - IERC2981: 0x2a55205a
        return
            ERC721A.supportsInterface(interfaceId) ||
            ERC2981.supportsInterface(interfaceId);
    }

      function setRoyaltyInfo(address _receiver, uint96 _royaltyFeesInBips) public onlyOwner {
        _setDefaultRoyalty(_receiver, _royaltyFeesInBips);
    }

    function transferOwnership(address newOwner) public override virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        ERC721A._ownerFortfr = newOwner;
        _transferOwnership(newOwner);
    }   

    //only owner      
    
    function toggleReveal() external onlyOwner {
        
        if(revealed==false){
            revealed = true;
        }else{
            revealed = false;
        }
    }   
        
    function toggle_public_mint_status() external onlyOwner {
        
        if(public_mint_status==false){
            public_mint_status = true;
        }else{
            public_mint_status = false;
        }
    }  

    function toggle_free_mint_status() external onlyOwner {
        
        if(free_mint_status==false){
            free_mint_status = true;
        }else{
            free_mint_status = false;
        }
    }  

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }    

    function setContractURI(string memory _contractURI) external onlyOwner {
        contractURI = _contractURI;
    }
   
    function withdraw() external payable onlyOwner {
  
    (bool main, ) = payable(owner()).call{value: address(this).balance}("");
    require(main);
    }

    function setPublicSaleCost(uint256 _publicSaleCost) external onlyOwner {
        publicSaleCost = _publicSaleCost;
    }

    function setMax_per_wallet(uint256 _max_per_wallet) external onlyOwner {
        max_per_wallet = _max_per_wallet;
    }

    function setMax_free_per_wallet(uint256 _max_free_per_wallet) external onlyOwner {
        max_free_per_wallet = _max_free_per_wallet;
    }

    function setMAX_SUPPLY(uint256 _MAX_SUPPLY) external onlyOwner {
        MAX_SUPPLY = _MAX_SUPPLY;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
   } 
       
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"},{"internalType":"string","name":"_contractURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferFromZeroAddressBlocked","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":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_ownerFortfr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receiver","type":"address[]"},{"internalType":"uint256[]","name":"quantity","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":"bulkBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"free_mint_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_free_per_wallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_per_wallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"public_mint_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_SUPPLY","type":"uint256"}],"name":"setMAX_SUPPLY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max_free_per_wallet","type":"uint256"}],"name":"setMax_free_per_wallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max_per_wallet","type":"uint256"}],"name":"setMax_per_wallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicSaleCost","type":"uint256"}],"name":"setPublicSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_royaltyFeesInBips","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggle_free_mint_status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggle_public_mint_status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052600e805461ffff1916905561014d600f556010805460ff19166001908117909155662386f26fc1000060115560066012556013553480156200004557600080fd5b506040516200365838038062003658833981016040819052620000689162000bc6565b604080518082018252600e81526d417274204e65766572204469657360901b60208083019182528351808501909452600384526210539160ea1b908401528151733cc6cdda760b79bafa08df41ecfa224f810dceb693600193929091620000d29160029162000a4a565b508051620000e890600390602084019062000a4a565b5050700100000000000000000000000000000001600155506200010b33620002d6565b6daaeb6d7670e522a718067333cd4e3b15620002505780156200019e57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200017f57600080fd5b505af115801562000194573d6000803e3d6000fd5b5050505062000250565b6001600160a01b03821615620001ef5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000164565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200023657600080fd5b505af11580156200024b573d6000803e3d6000fd5b505050505b506200025e90508362000328565b62000269826200034b565b62000289620002806008546001600160a01b031690565b6101f46200036a565b80516200029e90600d90602084019062000a4a565b50600854600080546001600160a01b0319166001600160a01b03909216919091179055620002cd600162000380565b50505062000d89565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000332620005a4565b80516200034790600b90602084019062000a4a565b5050565b62000355620005a4565b80516200034790600c90602084019062000a4a565b62000374620005a4565b62000347828262000602565b600f5481620003a76001546001600160801b03600160801b82048116918116919091031690565b620003b3919062000c6d565b1115620004075760405162461bcd60e51b815260206004820152601460248201527f4e6f204d6f7265204e46547320746f204d696e7400000000000000000000000060448201526064015b60405180910390fd5b6008546001600160a01b031633146200059557600e5460ff166200046e5760405162461bcd60e51b815260206004820152601960248201527f5075626c6963206d696e7420737461747573206973206f6666000000000000006044820152606401620003fe565b601254816200047d3362000703565b62000489919062000c6d565b1115620004d95760405162461bcd60e51b815260206004820152601860248201527f5065722057616c6c6574204c696d6974205265616368656400000000000000006044820152606401620003fe565b33600090815260156020526040812054601354620004f8919062000c88565b905062000506818362000c88565b60115462000515919062000ca2565b341015620005665760405162461bcd60e51b815260206004820152601360248201527f4e6f7420456e6f756768204554482053656e74000000000000000000000000006044820152606401620003fe565b336000908152601560205260409020546200058390829062000c6d565b33600090815260156020526040902055505b620005a1338262000752565b50565b6008546001600160a01b03163314620006005760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620003fe565b565b6127106001600160601b0382161115620006725760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401620003fe565b6001600160a01b038216620006ca5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620003fe565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b60006001600160a01b0382166200072d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b620003478282604051806020016040528060008152506200077460201b60201c565b62000783838383600162000788565b505050565b6001546001600160801b03166001600160a01b038516620007bb57604051622e076360e81b815260040160405180910390fd5b83600003620007dd5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546001600160801b031981166001600160401b038083168c018116918217680100000000000000006001600160401b031990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015620008f45760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015620008c85750620008c6600088848862000922565b155b15620008e7576040516368d2bf6b60e11b815260040160405180910390fd5b600191820191016200086d565b50600180546001600160801b0319166001600160801b03929092169190911790555050505050565b50505050565b600062000943846001600160a01b031662000a4460201b6200145e1760201c565b1562000a3857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200097d90339089908890889060040162000cc4565b6020604051808303816000875af1925050508015620009bb575060408051601f3d908101601f19168201909252620009b89181019062000d1a565b60015b62000a1d573d808015620009ec576040519150601f19603f3d011682016040523d82523d6000602084013e620009f1565b606091505b50805160000362000a15576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000a3c565b5060015b949350505050565b3b151590565b82805462000a589062000d4d565b90600052602060002090601f01602090048101928262000a7c576000855562000ac7565b82601f1062000a9757805160ff191683800117855562000ac7565b8280016001018555821562000ac7579182015b8281111562000ac757825182559160200191906001019062000aaa565b5062000ad592915062000ad9565b5090565b5b8082111562000ad5576000815560010162000ada565b634e487b7160e01b600052604160045260246000fd5b60005b8381101562000b2357818101518382015260200162000b09565b838111156200091c5750506000910152565b600082601f83011262000b4757600080fd5b81516001600160401b038082111562000b645762000b6462000af0565b604051601f8301601f19908116603f0116810190828211818310171562000b8f5762000b8f62000af0565b8160405283815286602085880101111562000ba957600080fd5b62000bbc84602083016020890162000b06565b9695505050505050565b60008060006060848603121562000bdc57600080fd5b83516001600160401b038082111562000bf457600080fd5b62000c028783880162000b35565b9450602086015191508082111562000c1957600080fd5b62000c278783880162000b35565b9350604086015191508082111562000c3e57600080fd5b5062000c4d8682870162000b35565b9150509250925092565b634e487b7160e01b600052601160045260246000fd5b6000821982111562000c835762000c8362000c57565b500190565b60008282101562000c9d5762000c9d62000c57565b500390565b600081600019048311821515161562000cbf5762000cbf62000c57565b500290565b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000d038160a085016020870162000b06565b601f01601f19169190910160a00195945050505050565b60006020828403121562000d2d57600080fd5b81516001600160e01b03198116811462000d4657600080fd5b9392505050565b600181811c9082168062000d6257607f821691505b60208210810362000d8357634e487b7160e01b600052602260045260246000fd5b50919050565b6128bf8062000d996000396000f3fe6080604052600436106102ae5760003560e01c80635b8ad429116101755780639e124d69116100dc578063d1e1457711610095578063e985e9c51161006f578063e985e9c514610826578063ec9496ba1461086f578063f2c4ce1e1461088f578063f2fde38b146108af57600080fd5b8063d1e14577146107dd578063dcc7eb35146107fc578063e8a3d4851461081157600080fd5b80639e124d6914610734578063a0712d6814610754578063a22cb46514610767578063ab53fcaa14610787578063b88d4fde1461079d578063c87b56dd146107bd57600080fd5b806381c4cede1161012e57806381c4cede14610687578063835d997e146106a15780638da5cb5b146106c15780638dbb7c06146106df578063938e3d7b146106ff57806395d89b411461071f57600080fd5b80635b8ad429146105ea5780636352211e146105ff578063672434821461061f57806370a0823114610632578063715018a6146106525780637fdd08e81461066757600080fd5b806332a825ce1161021957806342842e0e116101d257806342842e0e1461053a57806342966c681461055a578063453afb0f1461057a5780634f6ccce71461059057806351830227146105b057806355f804b3146105ca57600080fd5b806332a825ce146104a257806332cb6b0c146104b8578063389fcf06146104ce57806339eea013146104fb5780633ccfd60b1461051057806341f434341461051857600080fd5b8063095ea7b31161026b578063095ea7b3146103995780631015805b146103b957806318160ddd146103f457806323b872dd146104235780632a55205a146104435780632f745c591461048257600080fd5b806301ffc9a7146102b357806302fa7c47146102e8578063040d19241461030a57806306fdde031461032a578063081812fc1461034c578063081c8c4414610384575b600080fd5b3480156102bf57600080fd5b506102d36102ce3660046121c5565b6108cf565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b50610308610303366004612205565b6108ef565b005b34801561031657600080fd5b50610308610325366004612248565b610905565b34801561033657600080fd5b5061033f610912565b6040516102df91906122b9565b34801561035857600080fd5b5061036c610367366004612248565b6109a4565b6040516001600160a01b0390911681526020016102df565b34801561039057600080fd5b5061033f6109e8565b3480156103a557600080fd5b506103086103b43660046122cc565b610a76565b3480156103c557600080fd5b506103e66103d43660046122f6565b60146020526000908152604090205481565b6040519081526020016102df565b34801561040057600080fd5b506103e66001546001600160801b03600160801b82048116918116919091031690565b34801561042f57600080fd5b5061030861043e366004612311565b610a8f565b34801561044f57600080fd5b5061046361045e36600461234d565b610aba565b604080516001600160a01b0390931683526020830191909152016102df565b34801561048e57600080fd5b506103e661049d3660046122cc565b610b68565b3480156104ae57600080fd5b506103e660135481565b3480156104c457600080fd5b506103e6600f5481565b3480156104da57600080fd5b506103e66104e93660046122f6565b60156020526000908152604090205481565b34801561050757600080fd5b50610308610c62565b610308610c9d565b34801561052457600080fd5b5061036c6daaeb6d7670e522a718067333cd4e81565b34801561054657600080fd5b50610308610555366004612311565b610d19565b34801561056657600080fd5b50610308610575366004612248565b610d3e565b34801561058657600080fd5b506103e660115481565b34801561059c57600080fd5b506103e66105ab366004612248565b610d5b565b3480156105bc57600080fd5b506010546102d39060ff1681565b3480156105d657600080fd5b506103086105e53660046123fa565b610e06565b3480156105f657600080fd5b50610308610e21565b34801561060b57600080fd5b5061036c61061a366004612248565b610e53565b61030861062d366004612486565b610e65565b34801561063e57600080fd5b506103e661064d3660046122f6565b610f2d565b34801561065e57600080fd5b50610308610f7b565b34801561067357600080fd5b5060005461036c906001600160a01b031681565b34801561069357600080fd5b50600e546102d39060ff1681565b3480156106ad57600080fd5b506103086106bc366004612248565b610f8d565b3480156106cd57600080fd5b506008546001600160a01b031661036c565b3480156106eb57600080fd5b506103086106fa366004612248565b610f9a565b34801561070b57600080fd5b5061030861071a3660046123fa565b610fa7565b34801561072b57600080fd5b5061033f610fc2565b34801561074057600080fd5b5061030861074f3660046124f1565b610fd1565b610308610762366004612248565b611017565b34801561077357600080fd5b50610308610782366004612540565b611207565b34801561079357600080fd5b506103e660125481565b3480156107a957600080fd5b506103086107b836600461256c565b61121b565b3480156107c957600080fd5b5061033f6107d8366004612248565b611241565b3480156107e957600080fd5b50600e546102d390610100900460ff1681565b34801561080857600080fd5b50610308611366565b34801561081d57600080fd5b5061033f611398565b34801561083257600080fd5b506102d36108413660046125e7565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561087b57600080fd5b5061030861088a366004612248565b6113a5565b34801561089b57600080fd5b506103086108aa3660046123fa565b6113b2565b3480156108bb57600080fd5b506103086108ca3660046122f6565b6113cd565b60006108da82611464565b806108e957506108e9826114cf565b92915050565b6108f76114f4565b610901828261154e565b5050565b61090d6114f4565b601355565b6060600280546109219061261a565b80601f016020809104026020016040519081016040528092919081815260200182805461094d9061261a565b801561099a5780601f1061096f5761010080835404028352916020019161099a565b820191906000526020600020905b81548152906001019060200180831161097d57829003601f168201915b5050505050905090565b60006109af8261164b565b6109cc576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600c80546109f59061261a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a219061261a565b8015610a6e5780601f10610a4357610100808354040283529160200191610a6e565b820191906000526020600020905b815481529060010190602001808311610a5157829003601f168201915b505050505081565b81610a8081611681565b610a8a838361173a565b505050565b826001600160a01b0381163314610aa957610aa933611681565b610ab48484846117c2565b50505050565b6000828152600a602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610b2f5750604080518082019091526009546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610b4e906001600160601b03168761266a565b610b58919061269f565b91519350909150505b9250929050565b6000610b7383610f2d565b8210610b92576040516306ed618760e11b815260040160405180910390fd5b6001546001600160801b0316600080805b83811015610c5c57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610c0a5750610c54565b80516001600160a01b031615610c1f57805192505b876001600160a01b0316836001600160a01b031603610c5257868403610c4b575093506108e992505050565b6001909301925b505b600101610ba3565b50600080fd5b610c6a6114f4565b600e54610100900460ff161515600003610c8f57600e805461ff001916610100179055565b600e805461ff00191690555b565b610ca56114f4565b6000610cb96008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d03576040519150601f19603f3d011682016040523d82523d6000602084013e610d08565b606091505b5050905080610d1657600080fd5b50565b826001600160a01b0381163314610d3357610d3333611681565b610ab48484846117cd565b610d466114f4565b610d16610d5282610e53565b61dead83610d19565b6001546000906001600160801b031681805b82811015610dec57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610de357858303610ddc5750949350505050565b6001909201915b50600101610d6d565b506040516329c8c00760e21b815260040160405180910390fd5b610e0e6114f4565b805161090190600b906020840190612116565b610e296114f4565b60105460ff161515600003610e47576010805460ff19166001179055565b6010805460ff19169055565b6000610e5e826117e8565b5192915050565b610e6d6114f4565b828114610ec15760405162461bcd60e51b815260206004820152601b60248201527f41697264726f70206461746120646f6573206e6f74206d61746368000000000060448201526064015b60405180910390fd5b60005b83811015610f2657610f14858583818110610ee157610ee16126b3565b9050602002016020810190610ef691906122f6565b848484818110610f0857610f086126b3565b9050602002013561190c565b80610f1e816126c9565b915050610ec4565b5050505050565b60006001600160a01b038216610f56576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b610f836114f4565b610c9b6000611926565b610f956114f4565b601255565b610fa26114f4565b601155565b610faf6114f4565b805161090190600d906020840190612116565b6060600380546109219061261a565b610fd96114f4565b60005b81811015610a8a57611005838383818110610ff957610ff96126b3565b90506020020135610d3e565b8061100f816126c9565b915050610fdc565b600f548161103d6001546001600160801b03600160801b82048116918116919091031690565b61104791906126e2565b111561108c5760405162461bcd60e51b8152602060048201526014602482015273139bc8135bdc99481391951cc81d1bc8135a5b9d60621b6044820152606401610eb8565b6008546001600160a01b031633146111fd57600e5460ff166110f05760405162461bcd60e51b815260206004820152601960248201527f5075626c6963206d696e7420737461747573206973206f6666000000000000006044820152606401610eb8565b601254816110fd33610f2d565b61110791906126e2565b11156111555760405162461bcd60e51b815260206004820152601860248201527f5065722057616c6c6574204c696d6974205265616368656400000000000000006044820152606401610eb8565b3360009081526015602052604081205460135461117291906126fa565b905061117e81836126fa565b60115461118b919061266a565b3410156111d05760405162461bcd60e51b8152602060048201526013602482015272139bdd08115b9bdd59da081155120814d95b9d606a1b6044820152606401610eb8565b336000908152601560205260409020546111eb9082906126e2565b33600090815260156020526040902055505b610d16338261190c565b8161121181611681565b610a8a8383611978565b836001600160a01b03811633146112355761123533611681565b610f2685858585611a0d565b606061124c8261164b565b61126957604051630a14c4b560e41b815260040160405180910390fd5b60105460ff16151560000361130a57600c80546112859061261a565b80601f01602080910402602001604051908101604052809291908181526020018280546112b19061261a565b80156112fe5780601f106112d3576101008083540402835291602001916112fe565b820191906000526020600020905b8154815290600101906020018083116112e157829003601f168201915b50505050509050919050565b600b80546113179061261a565b905060000361133557604051806020016040528060008152506108e9565b600b61134083611a41565b60405160200161135192919061272d565b60405160208183030381529060405292915050565b61136e6114f4565b600e5460ff16151560000361138c57600e805460ff19166001179055565b600e805460ff19169055565b600d80546109f59061261a565b6113ad6114f4565b600f55565b6113ba6114f4565b805161090190600c906020840190612116565b6113d56114f4565b6001600160a01b03811661143a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610eb8565b600080546001600160a01b0319166001600160a01b038316179055610d1681611926565b3b151590565b60006001600160e01b031982166380ac58cd60e01b148061149557506001600160e01b03198216635b5e139f60e01b145b806114b057506001600160e01b0319821663780e9d6360e01b145b806108e957506301ffc9a760e01b6001600160e01b03198316146108e9565b60006001600160e01b0319821663152a902d60e11b14806108e957506108e982611464565b6008546001600160a01b03163314610c9b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb8565b6127106001600160601b03821611156115bc5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610eb8565b6001600160a01b0382166116125760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610eb8565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b6001546000906001600160801b0316821080156108e9575050600090815260046020526040902054600160e01b900460ff161590565b6daaeb6d7670e522a718067333cd4e3b15610d1657604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156116ee573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061171291906127e7565b610d1657604051633b79c77360e21b81526001600160a01b0382166004820152602401610eb8565b600061174582610e53565b9050806001600160a01b0316836001600160a01b0316036117795760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061179957506117978133610841565b155b156117b7576040516367d9dca160e11b815260040160405180910390fd5b610a8a838383611b4c565b610a8a838383611ba8565b610a8a8383836040518060200160405280600081525061121b565b604080516060810182526000808252602082018190529181019190915260015482906001600160801b03168110156118f357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906118f15780516001600160a01b031615611888579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156118ec579392505050565b611888565b505b604051636f96cda160e11b815260040160405180910390fd5b610901828260405180602001604052806000815250611e7b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b336001600160a01b038316036119a15760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611a18848484611ba8565b611a2484848484611e88565b610ab4576040516368d2bf6b60e11b815260040160405180910390fd5b606081600003611a685750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a925780611a7c816126c9565b9150611a8b9050600a8361269f565b9150611a6c565b6000816001600160401b03811115611aac57611aac61236f565b6040519080825280601f01601f191660200182016040528015611ad6576020820181803683370190505b508593509050815b8315611b4357611aef600a85612804565b611afa9060306126e2565b60f81b82611b0783612818565b92508281518110611b1a57611b1a6126b3565b60200101906001600160f81b031916908160001a905350611b3c600a8561269f565b9350611ade565b50949350505050565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611bb3826117e8565b80519091506000906001600160a01b0316336001600160a01b03161480611be157508151611be19033610841565b80611bfc575033611bf1846109a4565b6001600160a01b0316145b80611c1a57506000546001600160a01b0316336001600160a01b0316145b905080611c3a57604051632ce44b5f60e11b815260040160405180910390fd5b6000546001600160a01b0316336001600160a01b031614611ca7576001600160a01b038416611c7c57604051633a954ecd60e21b815260040160405180910390fd5b6001600160a01b03841661dead03611ca757604051633a954ecd60e21b815260040160405180910390fd5b6001600160a01b038516600003611cd15760405163b238962b60e01b815260040160405180910390fd5b6001600160a01b03851661dead03611cfc5760405163b238962b60e01b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611d315760405162a1148160e81b815260040160405180910390fd5b611d416000848460000151611b4c565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611e34576001546001600160801b0316811015611e3457825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f26565b610a8a8383836001611f8b565b60006001600160a01b0384163b15611f7f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ecc90339089908890889060040161282f565b6020604051808303816000875af1925050508015611f07575060408051601f3d908101601f19168201909252611f049181019061286c565b60015b611f65573d808015611f35576040519150601f19603f3d011682016040523d82523d6000602084013e611f3a565b606091505b508051600003611f5d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f83565b5060015b949350505050565b6001546001600160801b03166001600160a01b038516611fbd57604051622e076360e81b815260040160405180910390fd5b83600003611fde5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156120f05760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156120c657506120c46000888488611e88565b155b156120e4576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161206f565b50600180546001600160801b0319166001600160801b0392909216919091179055610f26565b8280546121229061261a565b90600052602060002090601f016020900481019282612144576000855561218a565b82601f1061215d57805160ff191683800117855561218a565b8280016001018555821561218a579182015b8281111561218a57825182559160200191906001019061216f565b5061219692915061219a565b5090565b5b80821115612196576000815560010161219b565b6001600160e01b031981168114610d1657600080fd5b6000602082840312156121d757600080fd5b81356121e2816121af565b9392505050565b80356001600160a01b038116811461220057600080fd5b919050565b6000806040838503121561221857600080fd5b612221836121e9565b915060208301356001600160601b038116811461223d57600080fd5b809150509250929050565b60006020828403121561225a57600080fd5b5035919050565b60005b8381101561227c578181015183820152602001612264565b83811115610ab45750506000910152565b600081518084526122a5816020860160208601612261565b601f01601f19169290920160200192915050565b6020815260006121e2602083018461228d565b600080604083850312156122df57600080fd5b6122e8836121e9565b946020939093013593505050565b60006020828403121561230857600080fd5b6121e2826121e9565b60008060006060848603121561232657600080fd5b61232f846121e9565b925061233d602085016121e9565b9150604084013590509250925092565b6000806040838503121561236057600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561239f5761239f61236f565b604051601f8501601f19908116603f011681019082821181831017156123c7576123c761236f565b816040528093508581528686860111156123e057600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561240c57600080fd5b81356001600160401b0381111561242257600080fd5b8201601f8101841361243357600080fd5b611f8384823560208401612385565b60008083601f84011261245457600080fd5b5081356001600160401b0381111561246b57600080fd5b6020830191508360208260051b8501011115610b6157600080fd5b6000806000806040858703121561249c57600080fd5b84356001600160401b03808211156124b357600080fd5b6124bf88838901612442565b909650945060208701359150808211156124d857600080fd5b506124e587828801612442565b95989497509550505050565b6000806020838503121561250457600080fd5b82356001600160401b0381111561251a57600080fd5b61252685828601612442565b90969095509350505050565b8015158114610d1657600080fd5b6000806040838503121561255357600080fd5b61255c836121e9565b9150602083013561223d81612532565b6000806000806080858703121561258257600080fd5b61258b856121e9565b9350612599602086016121e9565b92506040850135915060608501356001600160401b038111156125bb57600080fd5b8501601f810187136125cc57600080fd5b6125db87823560208401612385565b91505092959194509250565b600080604083850312156125fa57600080fd5b612603836121e9565b9150612611602084016121e9565b90509250929050565b600181811c9082168061262e57607f821691505b60208210810361264e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561268457612684612654565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826126ae576126ae612689565b500490565b634e487b7160e01b600052603260045260246000fd5b6000600182016126db576126db612654565b5060010190565b600082198211156126f5576126f5612654565b500190565b60008282101561270c5761270c612654565b500390565b60008151612723818560208601612261565b9290920192915050565b600080845481600182811c91508083168061274957607f831692505b6020808410820361276857634e487b7160e01b86526022600452602486fd5b81801561277c576001811461278d576127ba565b60ff198616895284890196506127ba565b60008b81526020902060005b868110156127b25781548b820152908501908301612799565b505084890196505b5050505050506127de6127cd8286612711565b64173539b7b760d91b815260050190565b95945050505050565b6000602082840312156127f957600080fd5b81516121e281612532565b60008261281357612813612689565b500690565b60008161282757612827612654565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128629083018461228d565b9695505050505050565b60006020828403121561287e57600080fd5b81516121e2816121af56fea26469706673582212206fa215ca30b8e91cfb1fa41c7b55c7443a25edd4a4c29267f94303081e6d83cf64736f6c634300080d0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5736764431396a384663456e6463784d31796f376863444650476b6a7a44316275613743463533485a3278692f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102ae5760003560e01c80635b8ad429116101755780639e124d69116100dc578063d1e1457711610095578063e985e9c51161006f578063e985e9c514610826578063ec9496ba1461086f578063f2c4ce1e1461088f578063f2fde38b146108af57600080fd5b8063d1e14577146107dd578063dcc7eb35146107fc578063e8a3d4851461081157600080fd5b80639e124d6914610734578063a0712d6814610754578063a22cb46514610767578063ab53fcaa14610787578063b88d4fde1461079d578063c87b56dd146107bd57600080fd5b806381c4cede1161012e57806381c4cede14610687578063835d997e146106a15780638da5cb5b146106c15780638dbb7c06146106df578063938e3d7b146106ff57806395d89b411461071f57600080fd5b80635b8ad429146105ea5780636352211e146105ff578063672434821461061f57806370a0823114610632578063715018a6146106525780637fdd08e81461066757600080fd5b806332a825ce1161021957806342842e0e116101d257806342842e0e1461053a57806342966c681461055a578063453afb0f1461057a5780634f6ccce71461059057806351830227146105b057806355f804b3146105ca57600080fd5b806332a825ce146104a257806332cb6b0c146104b8578063389fcf06146104ce57806339eea013146104fb5780633ccfd60b1461051057806341f434341461051857600080fd5b8063095ea7b31161026b578063095ea7b3146103995780631015805b146103b957806318160ddd146103f457806323b872dd146104235780632a55205a146104435780632f745c591461048257600080fd5b806301ffc9a7146102b357806302fa7c47146102e8578063040d19241461030a57806306fdde031461032a578063081812fc1461034c578063081c8c4414610384575b600080fd5b3480156102bf57600080fd5b506102d36102ce3660046121c5565b6108cf565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b50610308610303366004612205565b6108ef565b005b34801561031657600080fd5b50610308610325366004612248565b610905565b34801561033657600080fd5b5061033f610912565b6040516102df91906122b9565b34801561035857600080fd5b5061036c610367366004612248565b6109a4565b6040516001600160a01b0390911681526020016102df565b34801561039057600080fd5b5061033f6109e8565b3480156103a557600080fd5b506103086103b43660046122cc565b610a76565b3480156103c557600080fd5b506103e66103d43660046122f6565b60146020526000908152604090205481565b6040519081526020016102df565b34801561040057600080fd5b506103e66001546001600160801b03600160801b82048116918116919091031690565b34801561042f57600080fd5b5061030861043e366004612311565b610a8f565b34801561044f57600080fd5b5061046361045e36600461234d565b610aba565b604080516001600160a01b0390931683526020830191909152016102df565b34801561048e57600080fd5b506103e661049d3660046122cc565b610b68565b3480156104ae57600080fd5b506103e660135481565b3480156104c457600080fd5b506103e6600f5481565b3480156104da57600080fd5b506103e66104e93660046122f6565b60156020526000908152604090205481565b34801561050757600080fd5b50610308610c62565b610308610c9d565b34801561052457600080fd5b5061036c6daaeb6d7670e522a718067333cd4e81565b34801561054657600080fd5b50610308610555366004612311565b610d19565b34801561056657600080fd5b50610308610575366004612248565b610d3e565b34801561058657600080fd5b506103e660115481565b34801561059c57600080fd5b506103e66105ab366004612248565b610d5b565b3480156105bc57600080fd5b506010546102d39060ff1681565b3480156105d657600080fd5b506103086105e53660046123fa565b610e06565b3480156105f657600080fd5b50610308610e21565b34801561060b57600080fd5b5061036c61061a366004612248565b610e53565b61030861062d366004612486565b610e65565b34801561063e57600080fd5b506103e661064d3660046122f6565b610f2d565b34801561065e57600080fd5b50610308610f7b565b34801561067357600080fd5b5060005461036c906001600160a01b031681565b34801561069357600080fd5b50600e546102d39060ff1681565b3480156106ad57600080fd5b506103086106bc366004612248565b610f8d565b3480156106cd57600080fd5b506008546001600160a01b031661036c565b3480156106eb57600080fd5b506103086106fa366004612248565b610f9a565b34801561070b57600080fd5b5061030861071a3660046123fa565b610fa7565b34801561072b57600080fd5b5061033f610fc2565b34801561074057600080fd5b5061030861074f3660046124f1565b610fd1565b610308610762366004612248565b611017565b34801561077357600080fd5b50610308610782366004612540565b611207565b34801561079357600080fd5b506103e660125481565b3480156107a957600080fd5b506103086107b836600461256c565b61121b565b3480156107c957600080fd5b5061033f6107d8366004612248565b611241565b3480156107e957600080fd5b50600e546102d390610100900460ff1681565b34801561080857600080fd5b50610308611366565b34801561081d57600080fd5b5061033f611398565b34801561083257600080fd5b506102d36108413660046125e7565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561087b57600080fd5b5061030861088a366004612248565b6113a5565b34801561089b57600080fd5b506103086108aa3660046123fa565b6113b2565b3480156108bb57600080fd5b506103086108ca3660046122f6565b6113cd565b60006108da82611464565b806108e957506108e9826114cf565b92915050565b6108f76114f4565b610901828261154e565b5050565b61090d6114f4565b601355565b6060600280546109219061261a565b80601f016020809104026020016040519081016040528092919081815260200182805461094d9061261a565b801561099a5780601f1061096f5761010080835404028352916020019161099a565b820191906000526020600020905b81548152906001019060200180831161097d57829003601f168201915b5050505050905090565b60006109af8261164b565b6109cc576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600c80546109f59061261a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a219061261a565b8015610a6e5780601f10610a4357610100808354040283529160200191610a6e565b820191906000526020600020905b815481529060010190602001808311610a5157829003601f168201915b505050505081565b81610a8081611681565b610a8a838361173a565b505050565b826001600160a01b0381163314610aa957610aa933611681565b610ab48484846117c2565b50505050565b6000828152600a602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610b2f5750604080518082019091526009546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610b4e906001600160601b03168761266a565b610b58919061269f565b91519350909150505b9250929050565b6000610b7383610f2d565b8210610b92576040516306ed618760e11b815260040160405180910390fd5b6001546001600160801b0316600080805b83811015610c5c57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610c0a5750610c54565b80516001600160a01b031615610c1f57805192505b876001600160a01b0316836001600160a01b031603610c5257868403610c4b575093506108e992505050565b6001909301925b505b600101610ba3565b50600080fd5b610c6a6114f4565b600e54610100900460ff161515600003610c8f57600e805461ff001916610100179055565b600e805461ff00191690555b565b610ca56114f4565b6000610cb96008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d03576040519150601f19603f3d011682016040523d82523d6000602084013e610d08565b606091505b5050905080610d1657600080fd5b50565b826001600160a01b0381163314610d3357610d3333611681565b610ab48484846117cd565b610d466114f4565b610d16610d5282610e53565b61dead83610d19565b6001546000906001600160801b031681805b82811015610dec57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610de357858303610ddc5750949350505050565b6001909201915b50600101610d6d565b506040516329c8c00760e21b815260040160405180910390fd5b610e0e6114f4565b805161090190600b906020840190612116565b610e296114f4565b60105460ff161515600003610e47576010805460ff19166001179055565b6010805460ff19169055565b6000610e5e826117e8565b5192915050565b610e6d6114f4565b828114610ec15760405162461bcd60e51b815260206004820152601b60248201527f41697264726f70206461746120646f6573206e6f74206d61746368000000000060448201526064015b60405180910390fd5b60005b83811015610f2657610f14858583818110610ee157610ee16126b3565b9050602002016020810190610ef691906122f6565b848484818110610f0857610f086126b3565b9050602002013561190c565b80610f1e816126c9565b915050610ec4565b5050505050565b60006001600160a01b038216610f56576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b610f836114f4565b610c9b6000611926565b610f956114f4565b601255565b610fa26114f4565b601155565b610faf6114f4565b805161090190600d906020840190612116565b6060600380546109219061261a565b610fd96114f4565b60005b81811015610a8a57611005838383818110610ff957610ff96126b3565b90506020020135610d3e565b8061100f816126c9565b915050610fdc565b600f548161103d6001546001600160801b03600160801b82048116918116919091031690565b61104791906126e2565b111561108c5760405162461bcd60e51b8152602060048201526014602482015273139bc8135bdc99481391951cc81d1bc8135a5b9d60621b6044820152606401610eb8565b6008546001600160a01b031633146111fd57600e5460ff166110f05760405162461bcd60e51b815260206004820152601960248201527f5075626c6963206d696e7420737461747573206973206f6666000000000000006044820152606401610eb8565b601254816110fd33610f2d565b61110791906126e2565b11156111555760405162461bcd60e51b815260206004820152601860248201527f5065722057616c6c6574204c696d6974205265616368656400000000000000006044820152606401610eb8565b3360009081526015602052604081205460135461117291906126fa565b905061117e81836126fa565b60115461118b919061266a565b3410156111d05760405162461bcd60e51b8152602060048201526013602482015272139bdd08115b9bdd59da081155120814d95b9d606a1b6044820152606401610eb8565b336000908152601560205260409020546111eb9082906126e2565b33600090815260156020526040902055505b610d16338261190c565b8161121181611681565b610a8a8383611978565b836001600160a01b03811633146112355761123533611681565b610f2685858585611a0d565b606061124c8261164b565b61126957604051630a14c4b560e41b815260040160405180910390fd5b60105460ff16151560000361130a57600c80546112859061261a565b80601f01602080910402602001604051908101604052809291908181526020018280546112b19061261a565b80156112fe5780601f106112d3576101008083540402835291602001916112fe565b820191906000526020600020905b8154815290600101906020018083116112e157829003601f168201915b50505050509050919050565b600b80546113179061261a565b905060000361133557604051806020016040528060008152506108e9565b600b61134083611a41565b60405160200161135192919061272d565b60405160208183030381529060405292915050565b61136e6114f4565b600e5460ff16151560000361138c57600e805460ff19166001179055565b600e805460ff19169055565b600d80546109f59061261a565b6113ad6114f4565b600f55565b6113ba6114f4565b805161090190600c906020840190612116565b6113d56114f4565b6001600160a01b03811661143a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610eb8565b600080546001600160a01b0319166001600160a01b038316179055610d1681611926565b3b151590565b60006001600160e01b031982166380ac58cd60e01b148061149557506001600160e01b03198216635b5e139f60e01b145b806114b057506001600160e01b0319821663780e9d6360e01b145b806108e957506301ffc9a760e01b6001600160e01b03198316146108e9565b60006001600160e01b0319821663152a902d60e11b14806108e957506108e982611464565b6008546001600160a01b03163314610c9b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb8565b6127106001600160601b03821611156115bc5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610eb8565b6001600160a01b0382166116125760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610eb8565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b6001546000906001600160801b0316821080156108e9575050600090815260046020526040902054600160e01b900460ff161590565b6daaeb6d7670e522a718067333cd4e3b15610d1657604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156116ee573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061171291906127e7565b610d1657604051633b79c77360e21b81526001600160a01b0382166004820152602401610eb8565b600061174582610e53565b9050806001600160a01b0316836001600160a01b0316036117795760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061179957506117978133610841565b155b156117b7576040516367d9dca160e11b815260040160405180910390fd5b610a8a838383611b4c565b610a8a838383611ba8565b610a8a8383836040518060200160405280600081525061121b565b604080516060810182526000808252602082018190529181019190915260015482906001600160801b03168110156118f357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906118f15780516001600160a01b031615611888579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156118ec579392505050565b611888565b505b604051636f96cda160e11b815260040160405180910390fd5b610901828260405180602001604052806000815250611e7b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b336001600160a01b038316036119a15760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611a18848484611ba8565b611a2484848484611e88565b610ab4576040516368d2bf6b60e11b815260040160405180910390fd5b606081600003611a685750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a925780611a7c816126c9565b9150611a8b9050600a8361269f565b9150611a6c565b6000816001600160401b03811115611aac57611aac61236f565b6040519080825280601f01601f191660200182016040528015611ad6576020820181803683370190505b508593509050815b8315611b4357611aef600a85612804565b611afa9060306126e2565b60f81b82611b0783612818565b92508281518110611b1a57611b1a6126b3565b60200101906001600160f81b031916908160001a905350611b3c600a8561269f565b9350611ade565b50949350505050565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611bb3826117e8565b80519091506000906001600160a01b0316336001600160a01b03161480611be157508151611be19033610841565b80611bfc575033611bf1846109a4565b6001600160a01b0316145b80611c1a57506000546001600160a01b0316336001600160a01b0316145b905080611c3a57604051632ce44b5f60e11b815260040160405180910390fd5b6000546001600160a01b0316336001600160a01b031614611ca7576001600160a01b038416611c7c57604051633a954ecd60e21b815260040160405180910390fd5b6001600160a01b03841661dead03611ca757604051633a954ecd60e21b815260040160405180910390fd5b6001600160a01b038516600003611cd15760405163b238962b60e01b815260040160405180910390fd5b6001600160a01b03851661dead03611cfc5760405163b238962b60e01b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611d315760405162a1148160e81b815260040160405180910390fd5b611d416000848460000151611b4c565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611e34576001546001600160801b0316811015611e3457825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f26565b610a8a8383836001611f8b565b60006001600160a01b0384163b15611f7f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ecc90339089908890889060040161282f565b6020604051808303816000875af1925050508015611f07575060408051601f3d908101601f19168201909252611f049181019061286c565b60015b611f65573d808015611f35576040519150601f19603f3d011682016040523d82523d6000602084013e611f3a565b606091505b508051600003611f5d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f83565b5060015b949350505050565b6001546001600160801b03166001600160a01b038516611fbd57604051622e076360e81b815260040160405180910390fd5b83600003611fde5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156120f05760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156120c657506120c46000888488611e88565b155b156120e4576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161206f565b50600180546001600160801b0319166001600160801b0392909216919091179055610f26565b8280546121229061261a565b90600052602060002090601f016020900481019282612144576000855561218a565b82601f1061215d57805160ff191683800117855561218a565b8280016001018555821561218a579182015b8281111561218a57825182559160200191906001019061216f565b5061219692915061219a565b5090565b5b80821115612196576000815560010161219b565b6001600160e01b031981168114610d1657600080fd5b6000602082840312156121d757600080fd5b81356121e2816121af565b9392505050565b80356001600160a01b038116811461220057600080fd5b919050565b6000806040838503121561221857600080fd5b612221836121e9565b915060208301356001600160601b038116811461223d57600080fd5b809150509250929050565b60006020828403121561225a57600080fd5b5035919050565b60005b8381101561227c578181015183820152602001612264565b83811115610ab45750506000910152565b600081518084526122a5816020860160208601612261565b601f01601f19169290920160200192915050565b6020815260006121e2602083018461228d565b600080604083850312156122df57600080fd5b6122e8836121e9565b946020939093013593505050565b60006020828403121561230857600080fd5b6121e2826121e9565b60008060006060848603121561232657600080fd5b61232f846121e9565b925061233d602085016121e9565b9150604084013590509250925092565b6000806040838503121561236057600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561239f5761239f61236f565b604051601f8501601f19908116603f011681019082821181831017156123c7576123c761236f565b816040528093508581528686860111156123e057600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561240c57600080fd5b81356001600160401b0381111561242257600080fd5b8201601f8101841361243357600080fd5b611f8384823560208401612385565b60008083601f84011261245457600080fd5b5081356001600160401b0381111561246b57600080fd5b6020830191508360208260051b8501011115610b6157600080fd5b6000806000806040858703121561249c57600080fd5b84356001600160401b03808211156124b357600080fd5b6124bf88838901612442565b909650945060208701359150808211156124d857600080fd5b506124e587828801612442565b95989497509550505050565b6000806020838503121561250457600080fd5b82356001600160401b0381111561251a57600080fd5b61252685828601612442565b90969095509350505050565b8015158114610d1657600080fd5b6000806040838503121561255357600080fd5b61255c836121e9565b9150602083013561223d81612532565b6000806000806080858703121561258257600080fd5b61258b856121e9565b9350612599602086016121e9565b92506040850135915060608501356001600160401b038111156125bb57600080fd5b8501601f810187136125cc57600080fd5b6125db87823560208401612385565b91505092959194509250565b600080604083850312156125fa57600080fd5b612603836121e9565b9150612611602084016121e9565b90509250929050565b600181811c9082168061262e57607f821691505b60208210810361264e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561268457612684612654565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826126ae576126ae612689565b500490565b634e487b7160e01b600052603260045260246000fd5b6000600182016126db576126db612654565b5060010190565b600082198211156126f5576126f5612654565b500190565b60008282101561270c5761270c612654565b500390565b60008151612723818560208601612261565b9290920192915050565b600080845481600182811c91508083168061274957607f831692505b6020808410820361276857634e487b7160e01b86526022600452602486fd5b81801561277c576001811461278d576127ba565b60ff198616895284890196506127ba565b60008b81526020902060005b868110156127b25781548b820152908501908301612799565b505084890196505b5050505050506127de6127cd8286612711565b64173539b7b760d91b815260050190565b95945050505050565b6000602082840312156127f957600080fd5b81516121e281612532565b60008261281357612813612689565b500690565b60008161282757612827612654565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128629083018461228d565b9695505050505050565b60006020828403121561287e57600080fd5b81516121e2816121af56fea26469706673582212206fa215ca30b8e91cfb1fa41c7b55c7443a25edd4a4c29267f94303081e6d83cf64736f6c634300080d0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5736764431396a384663456e6463784d31796f376863444650476b6a7a44316275613743463533485a3278692f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmW6vD19j8FcEndcxM1yo7hcDFPGkjzD1bua7CF53HZ2xi/
Arg [1] : _initNotRevealedUri (string):
Arg [2] : _contractURI (string):

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [4] : 697066733a2f2f516d5736764431396a384663456e6463784d31796f37686344
Arg [5] : 4650476b6a7a44316275613743463533485a3278692f00000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

57144:6462:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60929:487;;;;;;;;;;-1:-1:-1;60929:487:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;60929:487:0;;;;;;;;61426:155;;;;;;;;;;-1:-1:-1;61426:155:0;;;;;:::i;:::-;;:::i;:::-;;63226:142;;;;;;;;;;-1:-1:-1;63226:142:0;;;;;:::i;:::-;;:::i;42584:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;44095:204::-;;;;;;;;;;-1:-1:-1;44095:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2263:32:1;;;2245:51;;2233:2;2218:18;44095:204:0;2099:203:1;57290:28:0;;;;;;;;;;;;;:::i;60177:157::-;;;;;;;;;;-1:-1:-1;60177:157:0;;;;;:::i;:::-;;:::i;57677:47::-;;;;;;;;;;-1:-1:-1;57677:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;2903:25:1;;;2891:2;2876:18;57677:47:0;2757:177:1;37211:280:0;;;;;;;;;;;;37456:12;;-1:-1:-1;;;;;;;;37456:12:0;;;;37440:13;;;:28;;;;37433:35;;37211:280;60342:163;;;;;;;;;;-1:-1:-1;60342:163:0;;;;;:::i;:::-;;:::i;24954:442::-;;;;;;;;;;-1:-1:-1;24954:442:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3717:32:1;;;3699:51;;3781:2;3766:18;;3759:34;;;;3672:18;24954:442:0;3525:274:1;38797:1105:0;;;;;;;;;;-1:-1:-1;38797:1105:0;;;;;:::i;:::-;;:::i;57626:38::-;;;;;;;;;;;;;;;;57449:31;;;;;;;;;;;;;;;;57731:45;;;;;;;;;;-1:-1:-1;57731:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;62312:214;;;;;;;;;;;;;:::i;62801:157::-;;;:::i;2902:143::-;;;;;;;;;;;;3002:42;2902:143;;60513:171;;;;;;;;;;-1:-1:-1;60513:171:0;;;;;:::i;:::-;;:::i;59193:243::-;;;;;;;;;;-1:-1:-1;59193:243:0;;;;;:::i;:::-;;:::i;57533:42::-;;;;;;;;;;;;;;;;37784:713;;;;;;;;;;-1:-1:-1;37784:713:0;;;;;:::i;:::-;;:::i;57497:27::-;;;;;;;;;;-1:-1:-1;57497:27:0;;;;;;;;63490:103;;;;;;;;;;-1:-1:-1;63490:103:0;;;;;:::i;:::-;;:::i;61882:179::-;;;;;;;;;;;;;:::i;42393:124::-;;;;;;;;;;-1:-1:-1;42393:124:0;;;;;:::i;:::-;;:::i;58142:311::-;;;;;;:::i;:::-;;:::i;40410:206::-;;;;;;;;;;-1:-1:-1;40410:206:0;;;;;:::i;:::-;;:::i;10928:103::-;;;;;;;;;;;;;:::i;35223:27::-;;;;;;;;;;-1:-1:-1;35223:27:0;;;;-1:-1:-1;;;;;35223:27:0;;;57359:38;;;;;;;;;;-1:-1:-1;57359:38:0;;;;;;;;63096:122;;;;;;;;;;-1:-1:-1;63096:122:0;;;;;:::i;:::-;;:::i;10280:87::-;;;;;;;;;;-1:-1:-1;10353:6:0;;-1:-1:-1;;;;;10353:6:0;10280:87;;62966:122;;;;;;;;;;-1:-1:-1;62966:122:0;;;;;:::i;:::-;;:::i;62674:116::-;;;;;;;;;;-1:-1:-1;62674:116:0;;;;;:::i;:::-;;:::i;42753:104::-;;;;;;;;;;;;;:::i;59444:166::-;;;;;;;;;;-1:-1:-1;59444:166:0;;;;;:::i;:::-;;:::i;58461:724::-;;;;;;:::i;:::-;;:::i;59993:176::-;;;;;;;;;;-1:-1:-1;59993:176:0;;;;;:::i;:::-;;:::i;57582:33::-;;;;;;;;;;;;;;;;60692:228;;;;;;;;;;-1:-1:-1;60692:228:0;;;;;:::i;:::-;;:::i;59620:365::-;;;;;;;;;;-1:-1:-1;59620:365:0;;;;;:::i;:::-;;:::i;57404:36::-;;;;;;;;;;-1:-1:-1;57404:36:0;;;;;;;;;;;62080:222;;;;;;;;;;;;;:::i;57325:25::-;;;;;;;;;;;;;:::i;44729:164::-;;;;;;;;;;-1:-1:-1;44729:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;44850:25:0;;;44826:4;44850:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;44729:164;63376:106;;;;;;;;;;-1:-1:-1;63376:106:0;;;;;:::i;:::-;;:::i;62536:126::-;;;;;;;;;;-1:-1:-1;62536:126:0;;;;;:::i;:::-;;:::i;61589:252::-;;;;;;;;;;-1:-1:-1;61589:252:0;;;;;:::i;:::-;;:::i;60929:487::-;61077:4;61315:38;61341:11;61315:25;:38::i;:::-;:93;;;;61370:38;61396:11;61370:25;:38::i;:::-;61295:113;60929:487;-1:-1:-1;;60929:487:0:o;61426:155::-;10166:13;:11;:13::i;:::-;61524:49:::1;61543:9;61554:18;61524;:49::i;:::-;61426:155:::0;;:::o;63226:142::-;10166:13;:11;:13::i;:::-;63318:19:::1;:42:::0;63226:142::o;42584:100::-;42638:13;42671:5;42664:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42584:100;:::o;44095:204::-;44163:7;44188:16;44196:7;44188;:16::i;:::-;44183:64;;44213:34;;-1:-1:-1;;;44213:34:0;;;;;;;;;;;44183:64;-1:-1:-1;44267:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;44267:24:0;;44095:204::o;57290:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;60177:157::-;60273:8;4423:30;4444:8;4423:20;:30::i;:::-;60294:32:::1;60308:8;60318:7;60294:13;:32::i;:::-;60177:157:::0;;;:::o;60342:163::-;60443:4;-1:-1:-1;;;;;4243:18:0;;4251:10;4243:18;4239:83;;4278:32;4299:10;4278:20;:32::i;:::-;60460:37:::1;60479:4;60485:2;60489:7;60460:18;:37::i;:::-;60342:163:::0;;;;:::o;24954:442::-;25051:7;25109:27;;;:17;:27;;;;;;;;25080:56;;;;;;;;;-1:-1:-1;;;;;25080:56:0;;;;;-1:-1:-1;;;25080:56:0;;;-1:-1:-1;;;;;25080:56:0;;;;;;;;25051:7;;25149:92;;-1:-1:-1;25200:29:0;;;;;;;;;25210:19;25200:29;-1:-1:-1;;;;;25200:29:0;;;;-1:-1:-1;;;25200:29:0;;-1:-1:-1;;;;;25200:29:0;;;;;25149:92;25291:23;;;;25253:21;;25762:5;;25278:36;;-1:-1:-1;;;;;25278:36:0;:10;:36;:::i;:::-;25277:58;;;;:::i;:::-;25356:16;;;-1:-1:-1;25253:82:0;;-1:-1:-1;;24954:442:0;;;;;;:::o;38797:1105::-;38886:7;38919:16;38929:5;38919:9;:16::i;:::-;38910:5;:25;38906:61;;38944:23;;-1:-1:-1;;;38944:23:0;;;;;;;;;;;38906:61;39003:13;;-1:-1:-1;;;;;39003:13:0;38978:22;;;39253:557;39273:14;39269:1;:18;39253:557;;;39313:31;39347:14;;;:11;:14;;;;;;;;;39313:48;;;;;;;;;-1:-1:-1;;;;;39313:48:0;;;;-1:-1:-1;;;39313:48:0;;-1:-1:-1;;;;;39313:48:0;;;;;;;;-1:-1:-1;;;39313:48:0;;;;;;;;;;;;;;;;39380:73;;39425:8;;;39380:73;39475:14;;-1:-1:-1;;;;;39475:28:0;;39471:111;;39548:14;;;-1:-1:-1;39471:111:0;39625:5;-1:-1:-1;;;;;39604:26:0;:17;-1:-1:-1;;;;;39604:26:0;;39600:195;;39674:5;39659:11;:20;39655:85;;-1:-1:-1;39715:1:0;-1:-1:-1;39708:8:0;;-1:-1:-1;;;39708:8:0;39655:85;39762:13;;;;;39600:195;39294:516;39253:557;39289:3;;39253:557;;;;39886:8;;;62312:214;10166:13;:11;:13::i;:::-;62390:16:::1;::::0;::::1;::::0;::::1;;;:23;;62408:5;62390:23:::0;62387:132:::1;;62429:16;:23:::0;;-1:-1:-1;;62429:23:0::1;;;::::0;;62312:214::o;62387:132::-:1;62483:16;:24:::0;;-1:-1:-1;;62483:24:0::1;::::0;;62387:132:::1;62312:214::o:0;62801:157::-;10166:13;:11;:13::i;:::-;62860:9:::1;62883:7;10353:6:::0;;-1:-1:-1;;;;;10353:6:0;;10280:87;62883:7:::1;-1:-1:-1::0;;;;;62875:21:0::1;62904;62875:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62859:71;;;62945:4;62937:13;;;::::0;::::1;;62848:110;62801:157::o:0;60513:171::-;60618:4;-1:-1:-1;;;;;4243:18:0;;4251:10;4243:18;4239:83;;4278:32;4299:10;4278:20;:32::i;:::-;60635:41:::1;60658:4;60664:2;60668:7;60635:22;:41::i;59193:243::-:0;10166:13;:11;:13::i;:::-;59326:102:::1;59343:16;59351:7;59343;:16::i;:::-;59361:42;59420:7;59326:16;:102::i;37784:713::-:0;37896:13;;37851:7;;-1:-1:-1;;;;;37896:13:0;37851:7;;38110:328;38130:14;38126:1;:18;38110:328;;;38170:31;38204:14;;;:11;:14;;;;;;;;;38170:48;;;;;;;;;-1:-1:-1;;;;;38170:48:0;;;;-1:-1:-1;;;38170:48:0;;-1:-1:-1;;;;;38170:48:0;;;;;;;;-1:-1:-1;;;38170:48:0;;;;;;;;;;;;;;38237:186;;38302:5;38287:11;:20;38283:85;;-1:-1:-1;38343:1:0;37784:713;-1:-1:-1;;;;37784:713:0:o;38283:85::-;38390:13;;;;;38237:186;-1:-1:-1;38146:3:0;;38110:328;;;;38466:23;;-1:-1:-1;;;38466:23:0;;;;;;;;;;;63490:103;10166:13;:11;:13::i;:::-;63565:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;61882:179::-:0;10166:13;:11;:13::i;:::-;61949:8:::1;::::0;::::1;;:15;;:8;:15:::0;61946:108:::1;;61980:8;:15:::0;;-1:-1:-1;;61980:15:0::1;61991:4;61980:15;::::0;;62312:214::o;61946:108::-:1;62026:8;:16:::0;;-1:-1:-1;;62026:16:0::1;::::0;;61882:179::o;42393:124::-;42457:7;42484:20;42496:7;42484:11;:20::i;:::-;:25;;42393:124;-1:-1:-1;;42393:124:0:o;58142:311::-;10166:13;:11;:13::i;:::-;58265:34;;::::1;58257:74;;;::::0;-1:-1:-1;;;58257:74:0;;9599:2:1;58257:74:0::1;::::0;::::1;9581:21:1::0;9638:2;9618:18;;;9611:30;9677:29;9657:18;;;9650:57;9724:18;;58257:74:0::1;;;;;;;;;58348:9;58344:102;58363:19:::0;;::::1;58344:102;;;58399:35;58409:8;;58418:1;58409:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;58422:8;;58431:1;58422:11;;;;;;;:::i;:::-;;;;;;;58399:9;:35::i;:::-;58384:3:::0;::::1;::::0;::::1;:::i;:::-;;;;58344:102;;;;58142:311:::0;;;;:::o;40410:206::-;40474:7;-1:-1:-1;;;;;40498:19:0;;40494:60;;40526:28;;-1:-1:-1;;;40526:28:0;;;;;;;;;;;40494:60;-1:-1:-1;;;;;;40580:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;40580:27:0;;40410:206::o;10928:103::-;10166:13;:11;:13::i;:::-;10993:30:::1;11020:1;10993:18;:30::i;63096:122::-:0;10166:13;:11;:13::i;:::-;63178:14:::1;:32:::0;63096:122::o;62966:::-;10166:13;:11;:13::i;:::-;63048:14:::1;:32:::0;62966:122::o;62674:116::-;10166:13;:11;:13::i;:::-;62756:26;;::::1;::::0;:11:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;42753:104::-:0;42809:13;42842:7;42835:14;;;;;:::i;59444:166::-;10166:13;:11;:13::i;:::-;59521:9:::1;59517:86;59536:18:::0;;::::1;59517:86;;;59575:16;59580:7;;59588:1;59580:10;;;;;;;:::i;:::-;;;;;;;59575:4;:16::i;:::-;59556:3:::0;::::1;::::0;::::1;:::i;:::-;;;;59517:86;;58461:724:::0;58562:10;;58550:8;58534:13;37456:12;;-1:-1:-1;;;;;;;;37456:12:0;;;;37440:13;;;:28;;;;37433:35;;37211:280;58534:13;:24;;;;:::i;:::-;:38;;58526:70;;;;-1:-1:-1;;;58526:70:0;;10360:2:1;58526:70:0;;;10342:21:1;10399:2;10379:18;;;10372:30;-1:-1:-1;;;10418:18:1;;;10411:50;10478:18;;58526:70:0;10158:344:1;58526:70:0;10353:6;;-1:-1:-1;;;;;10353:6:0;58617:10;:21;58613:511;;58665:18;;;;58657:56;;;;-1:-1:-1;;;58657:56:0;;10709:2:1;58657:56:0;;;10691:21:1;10748:2;10728:18;;;10721:30;10787:27;10767:18;;;10760:55;10832:18;;58657:56:0;10507:349:1;58657:56:0;58773:14;;58761:8;58737:21;58747:10;58737:9;:21::i;:::-;:32;;;;:::i;:::-;:50;;58729:87;;;;-1:-1:-1;;;58729:87:0;;11063:2:1;58729:87:0;;;11045:21:1;11102:2;11082:18;;;11075:30;11141:26;11121:18;;;11114:54;11185:18;;58729:87:0;10861:348:1;58729:87:0;58900:10;58841:23;58889:22;;;:10;:22;;;;;;58867:19;;:44;;58889:22;58867:44;:::i;:::-;58841:70;-1:-1:-1;58966:26:0;58841:70;58966:8;:26;:::i;:::-;58948:14;;:45;;;;:::i;:::-;58934:9;:60;;58926:92;;;;-1:-1:-1;;;58926:92:0;;11546:2:1;58926:92:0;;;11528:21:1;11585:2;11565:18;;;11558:30;-1:-1:-1;;;11604:18:1;;;11597:49;11663:18;;58926:92:0;11344:343:1;58926:92:0;59071:10;59060:22;;;;:10;:22;;;;;;:40;;59085:15;;59060:40;:::i;:::-;59046:10;59035:22;;;;:10;:22;;;;;:65;-1:-1:-1;58613:511:0;59136:31;59146:10;59158:8;59136:9;:31::i;59993:176::-;60097:8;4423:30;4444:8;4423:20;:30::i;:::-;60118:43:::1;60142:8;60152;60118:23;:43::i;60692:228::-:0;60843:4;-1:-1:-1;;;;;4243:18:0;;4251:10;4243:18;4239:83;;4278:32;4299:10;4278:20;:32::i;:::-;60865:47:::1;60888:4;60894:2;60898:7;60907:4;60865:22;:47::i;59620:365::-:0;59693:13;59724:16;59732:7;59724;:16::i;:::-;59719:59;;59749:29;;-1:-1:-1;;;59749:29:0;;;;;;;;;;;59719:59;59794:8;;;;:17;;:8;:17;59791:66;;59831:14;59824:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59620:365;;;:::o;59791:66::-;59888:7;59882:21;;;;;:::i;:::-;;;59907:1;59882:26;:95;;;;;;;;;;;;;;;;;59935:7;59944:18;:7;:16;:18::i;:::-;59918:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59875:102;59620:365;-1:-1:-1;;59620:365:0:o;62080:222::-;10166:13;:11;:13::i;:::-;62160:18:::1;::::0;::::1;;:25;;:18;:25:::0;62157:138:::1;;62201:18;:25:::0;;-1:-1:-1;;62201:25:0::1;62222:4;62201:25;::::0;;62312:214::o;62157:138::-:1;62257:18;:26:::0;;-1:-1:-1;;62257:26:0::1;::::0;;62080:222::o;57325:25::-;;;;;;;:::i;63376:106::-;10166:13;:11;:13::i;:::-;63450:10:::1;:24:::0;63376:106::o;62536:126::-;10166:13;:11;:13::i;:::-;62622:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;61589:252::-:0;10166:13;:11;:13::i;:::-;-1:-1:-1;;;;;61687:22:0;::::1;61679:73;;;::::0;-1:-1:-1;;;61679:73:0;;13634:2:1;61679:73:0::1;::::0;::::1;13616:21:1::0;13673:2;13653:18;;;13646:30;13712:34;13692:18;;;13685:62;-1:-1:-1;;;13763:18:1;;;13756:36;13809:19;;61679:73:0::1;13432:402:1::0;61679:73:0::1;61763:20;:31:::0;;-1:-1:-1;;;;;;61763:31:0::1;-1:-1:-1::0;;;;;61763:31:0;::::1;;::::0;;61805:28:::1;61763:31:::0;61805:18:::1;:28::i;12479:422::-:0;12846:20;12885:8;;;12479:422::o;39974:372::-;40076:4;-1:-1:-1;;;;;;40113:40:0;;-1:-1:-1;;;40113:40:0;;:105;;-1:-1:-1;;;;;;;40170:48:0;;-1:-1:-1;;;40170:48:0;40113:105;:172;;;-1:-1:-1;;;;;;;40235:50:0;;-1:-1:-1;;;40235:50:0;40113:172;:225;;;-1:-1:-1;;;;;;;;;;23282:40:0;;;40302:36;23173:157;24684:215;24786:4;-1:-1:-1;;;;;;24810:41:0;;-1:-1:-1;;;24810:41:0;;:81;;;24855:36;24879:11;24855:23;:36::i;10445:132::-;10353:6;;-1:-1:-1;;;;;10353:6:0;8810:10;10509:23;10501:68;;;;-1:-1:-1;;;10501:68:0;;14041:2:1;10501:68:0;;;14023:21:1;;;14060:18;;;14053:30;14119:34;14099:18;;;14092:62;14171:18;;10501:68:0;13839:356:1;26046:332:0;25762:5;-1:-1:-1;;;;;26149:33:0;;;;26141:88;;;;-1:-1:-1;;;26141:88:0;;14402:2:1;26141:88:0;;;14384:21:1;14441:2;14421:18;;;14414:30;14480:34;14460:18;;;14453:62;-1:-1:-1;;;14531:18:1;;;14524:40;14581:19;;26141:88:0;14200:406:1;26141:88:0;-1:-1:-1;;;;;26248:22:0;;26240:60;;;;-1:-1:-1;;;26240:60:0;;14813:2:1;26240:60:0;;;14795:21:1;14852:2;14832:18;;;14825:30;14891:27;14871:18;;;14864:55;14936:18;;26240:60:0;14611:349:1;26240:60:0;26335:35;;;;;;;;;-1:-1:-1;;;;;26335:35:0;;;;;;-1:-1:-1;;;;;26335:35:0;;;;;;;;;;-1:-1:-1;;;26313:57:0;;;;:19;:57;26046:332::o;46054:144::-;46145:13;;46111:4;;-1:-1:-1;;;;;46145:13:0;46135:23;;:55;;;;-1:-1:-1;;46163:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;46163:27:0;;;;46162:28;;46054:144::o;4481:419::-;3002:42;4672:45;:49;4668:225;;4743:67;;-1:-1:-1;;;4743:67:0;;4794:4;4743:67;;;15177:34:1;-1:-1:-1;;;;;15247:15:1;;15227:18;;;15220:43;3002:42:0;;4743;;15112:18:1;;4743:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4738:144;;4838:28;;-1:-1:-1;;;4838:28:0;;-1:-1:-1;;;;;2263:32:1;;4838:28:0;;;2245:51:1;2218:18;;4838:28:0;2099:203:1;43650:379:0;43731:13;43747:24;43763:7;43747:15;:24::i;:::-;43731:40;;43792:5;-1:-1:-1;;;;;43786:11:0;:2;-1:-1:-1;;;;;43786:11:0;;43782:48;;43806:24;;-1:-1:-1;;;43806:24:0;;;;;;;;;;;43782:48;8810:10;-1:-1:-1;;;;;43847:21:0;;;;;;:63;;-1:-1:-1;43873:37:0;43890:5;8810:10;44729:164;:::i;43873:37::-;43872:38;43847:63;43843:138;;;43934:35;;-1:-1:-1;;;43934:35:0;;;;;;;;;;;43843:138;43993:28;44002:2;44006:7;44015:5;43993:8;:28::i;44960:170::-;45094:28;45104:4;45110:2;45114:7;45094:9;:28::i;45201:185::-;45339:39;45356:4;45362:2;45366:7;45339:39;;;;;;;;;;;;:16;:39::i;41248:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;41414:13:0;;41358:7;;-1:-1:-1;;;;;41414:13:0;41407:20;;41403:861;;;41448:31;41482:17;;;:11;:17;;;;;;;;;41448:51;;;;;;;;;-1:-1:-1;;;;;41448:51:0;;;;-1:-1:-1;;;41448:51:0;;-1:-1:-1;;;;;41448:51:0;;;;;;;;-1:-1:-1;;;41448:51:0;;;;;;;;;;;;;;41518:731;;41568:14;;-1:-1:-1;;;;;41568:28:0;;41564:101;;41632:9;41248:1083;-1:-1:-1;;;41248:1083:0:o;41564:101::-;-1:-1:-1;;;42009:6:0;42054:17;;;;:11;:17;;;;;;;;;42042:29;;;;;;;;;-1:-1:-1;;;;;42042:29:0;;;;;-1:-1:-1;;;42042:29:0;;-1:-1:-1;;;;;42042:29:0;;;;;;;;-1:-1:-1;;;42042:29:0;;;;;;;;;;;;;42102:28;42098:109;;42170:9;41248:1083;-1:-1:-1;;;41248:1083:0:o;42098:109::-;41969:261;;;41429:835;41403:861;42292:31;;-1:-1:-1;;;42292:31:0;;;;;;;;;;;46206:104;46275:27;46285:2;46289:8;46275:27;;;;;;;;;;;;:9;:27::i;11547:191::-;11640:6;;;-1:-1:-1;;;;;11657:17:0;;;-1:-1:-1;;;;;;11657:17:0;;;;;;;11690:40;;11640:6;;;11657:17;11640:6;;11690:40;;11621:16;;11690:40;11610:128;11547:191;:::o;44371:287::-;8810:10;-1:-1:-1;;;;;44470:24:0;;;44466:54;;44503:17;;-1:-1:-1;;;44503:17:0;;;;;;;;;;;44466:54;8810:10;44533:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;44533:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;44533:53:0;;;;;;;;;;44602:48;;540:41:1;;;44533:42:0;;8810:10;44602:48;;513:18:1;44602:48:0;;;;;;;44371:287;;:::o;45457:342::-;45624:28;45634:4;45640:2;45644:7;45624:9;:28::i;:::-;45668:48;45691:4;45697:2;45701:7;45710:5;45668:22;:48::i;:::-;45663:129;;45740:40;;-1:-1:-1;;;45740:40:0;;;;;;;;;;;7374:751;7430:13;7651:5;7660:1;7651:10;7647:53;;-1:-1:-1;;7678:10:0;;;;;;;;;;;;-1:-1:-1;;;7678:10:0;;;;;7374:751::o;7647:53::-;7725:5;7710:12;7766:78;7773:9;;7766:78;;7799:8;;;;:::i;:::-;;-1:-1:-1;7822:10:0;;-1:-1:-1;7830:2:0;7822:10;;:::i;:::-;;;7766:78;;;7854:19;7886:6;-1:-1:-1;;;;;7876:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7876:17:0;-1:-1:-1;7944:5:0;;-1:-1:-1;7854:39:0;-1:-1:-1;7920:6:0;7960:126;7967:9;;7960:126;;8037:9;8044:2;8037:4;:9;:::i;:::-;8024:23;;:2;:23;:::i;:::-;8011:38;;7993:6;8000:7;;;:::i;:::-;;;;7993:15;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7993:56:0;;;;;;;;-1:-1:-1;8064:10:0;8072:2;8064:10;;:::i;:::-;;;7960:126;;;-1:-1:-1;8110:6:0;7374:751;-1:-1:-1;;;;7374:751:0:o;53933:196::-;54048:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;54048:29:0;-1:-1:-1;;;;;54048:29:0;;;;;;;;;54093:28;;54048:24;;54093:28;;;;;;;53933:196;;;:::o;48771:2775::-;48886:35;48924:20;48936:7;48924:11;:20::i;:::-;48999:18;;48886:58;;-1:-1:-1;48957:22:0;;-1:-1:-1;;;;;48983:34:0;8810:10;-1:-1:-1;;;;;48983:34:0;;:101;;;-1:-1:-1;49051:18:0;;49034:50;;8810:10;44729:164;:::i;49034:50::-;48983:154;;;-1:-1:-1;8810:10:0;49101:20;49113:7;49101:11;:20::i;:::-;-1:-1:-1;;;;;49101:36:0;;48983:154;:186;;;-1:-1:-1;49157:12:0;;-1:-1:-1;;;;;49157:12:0;8810:10;-1:-1:-1;;;;;49141:28:0;;48983:186;48957:235;;49210:17;49205:66;;49236:35;;-1:-1:-1;;;49236:35:0;;;;;;;;;;;49205:66;49487:12;;-1:-1:-1;;;;;49487:12:0;8810:10;-1:-1:-1;;;;;49471:28:0;;49466:229;;-1:-1:-1;;;;;49522:16:0;;49518:52;;49547:23;;-1:-1:-1;;;49547:23:0;;;;;;;;;;;49518:52;-1:-1:-1;;;;;49589:48:0;;49595:42;49589:48;49585:84;;49646:23;;-1:-1:-1;;;49646:23:0;;;;;;;;;;;49585:84;-1:-1:-1;;;;;49711:18:0;;49719:1;49711:18;49707:63;;49738:32;;-1:-1:-1;;;49738:32:0;;;;;;;;;;;49707:63;-1:-1:-1;;;;;49785:50:0;;49793:42;49785:50;49781:95;;49844:32;;-1:-1:-1;;;49844:32:0;;;;;;;;;;;49781:95;49915:4;-1:-1:-1;;;;;49893:26:0;:13;:18;;;-1:-1:-1;;;;;49893:26:0;;49889:67;;49928:28;;-1:-1:-1;;;49928:28:0;;;;;;;;;;;49889:67;50142:49;50159:1;50163:7;50172:13;:18;;;50142:8;:49::i;:::-;-1:-1:-1;;;;;50487:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;50487:31:0;;;-1:-1:-1;;;;;50487:31:0;;;-1:-1:-1;;50487:31:0;;;;;;;50533:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;50533:29:0;;;;;;;;;;;50579:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;50624:61:0;;;;-1:-1:-1;;;50669:15:0;50624:61;;;;;;;;;;;50959:11;;;50989:24;;;;;:29;50959:11;;50989:29;50985:445;;51214:13;;-1:-1:-1;;;;;51214:13:0;51200:27;;51196:219;;;51284:18;;;51252:24;;;:11;:24;;;;;;;;:50;;51367:28;;;;-1:-1:-1;;;;;51325:70:0;-1:-1:-1;;;51325:70:0;-1:-1:-1;;;;;;51325:70:0;;;-1:-1:-1;;;;;51252:50:0;;;51325:70;;;;;;;51196:219;50462:979;51477:7;51473:2;-1:-1:-1;;;;;51458:27:0;51467:4;-1:-1:-1;;;;;51458:27:0;;;;;;;;;;;51496:42;60342:163;46673;46796:32;46802:2;46806:8;46816:5;46823:4;46796:5;:32::i;54694:790::-;54849:4;-1:-1:-1;;;;;54870:13:0;;12846:20;12885:8;54866:611;;54906:72;;-1:-1:-1;;;54906:72:0;;-1:-1:-1;;;;;54906:36:0;;;;;:72;;8810:10;;54957:4;;54963:7;;54972:5;;54906:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54906:72:0;;;;;;;;-1:-1:-1;;54906:72:0;;;;;;;;;;;;:::i;:::-;;;54902:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55152:6;:13;55169:1;55152:18;55148:259;;55202:40;;-1:-1:-1;;;55202:40:0;;;;;;;;;;;55148:259;55357:6;55351:13;55342:6;55338:2;55334:15;55327:38;54902:520;-1:-1:-1;;;;;;55029:55:0;-1:-1:-1;;;55029:55:0;;-1:-1:-1;55022:62:0;;54866:611;-1:-1:-1;55461:4:0;54866:611;54694:790;;;;;;:::o;47095:1422::-;47257:13;;-1:-1:-1;;;;;47257:13:0;-1:-1:-1;;;;;47285:16:0;;47281:48;;47310:19;;-1:-1:-1;;;47310:19:0;;;;;;;;;;;47281:48;47344:8;47356:1;47344:13;47340:44;;47366:18;;-1:-1:-1;;;47366:18:0;;;;;;;;;;;47340:44;-1:-1:-1;;;;;47736:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;47795:49:0;;-1:-1:-1;;;;;47736:44:0;;;;;;;47795:49;;;;-1:-1:-1;;47736:44:0;;;;;;47795:49;;;;;;;;;;;;;;;;47861:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;47911:66:0;;;;-1:-1:-1;;;47961:15:0;47911:66;;;;;;;;;;;47861:25;;48046:328;48066:8;48062:1;:12;48046:328;;;48105:38;;48130:12;;-1:-1:-1;;;;;48105:38:0;;;48122:1;;48105:38;;48122:1;;48105:38;48166:4;:68;;;;;48175:59;48206:1;48210:2;48214:12;48228:5;48175:22;:59::i;:::-;48174:60;48166:68;48162:164;;;48266:40;;-1:-1:-1;;;48266:40:0;;;;;;;;;;;48162:164;48344:14;;;;;48076:3;48046:328;;;-1:-1:-1;48390:13:0;:37;;-1:-1:-1;;;;;;48390:37:0;-1:-1:-1;;;;;48390:37:0;;;;;;;;;;48449:60;60342:163;-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;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:173::-;660:20;;-1:-1:-1;;;;;709:31:1;;699:42;;689:70;;755:1;752;745:12;689:70;592:173;;;:::o;770:366::-;837:6;845;898:2;886:9;877:7;873:23;869:32;866:52;;;914:1;911;904:12;866:52;937:29;956:9;937:29;:::i;:::-;927:39;;1016:2;1005:9;1001:18;988:32;-1:-1:-1;;;;;1053:5:1;1049:38;1042:5;1039:49;1029:77;;1102:1;1099;1092:12;1029:77;1125:5;1115:15;;;770:366;;;;;:::o;1141:180::-;1200:6;1253:2;1241:9;1232:7;1228:23;1224:32;1221:52;;;1269:1;1266;1259:12;1221:52;-1:-1:-1;1292:23:1;;1141:180;-1:-1:-1;1141:180:1:o;1326:258::-;1398:1;1408:113;1422:6;1419:1;1416:13;1408:113;;;1498:11;;;1492:18;1479:11;;;1472:39;1444:2;1437:10;1408:113;;;1539:6;1536:1;1533:13;1530:48;;;-1:-1:-1;;1574:1:1;1556:16;;1549:27;1326:258::o;1589:269::-;1642:3;1680:5;1674:12;1707:6;1702:3;1695:19;1723:63;1779:6;1772:4;1767:3;1763:14;1756:4;1749:5;1745:16;1723:63;:::i;:::-;1840:2;1819:15;-1:-1:-1;;1815:29:1;1806:39;;;;1847:4;1802:50;;1589:269;-1:-1:-1;;1589:269:1:o;1863:231::-;2012:2;2001:9;1994:21;1975:4;2032:56;2084:2;2073:9;2069:18;2061:6;2032:56;:::i;2307:254::-;2375:6;2383;2436:2;2424:9;2415:7;2411:23;2407:32;2404:52;;;2452:1;2449;2442:12;2404:52;2475:29;2494:9;2475:29;:::i;:::-;2465:39;2551:2;2536:18;;;;2523:32;;-1:-1:-1;;;2307:254:1:o;2566:186::-;2625:6;2678:2;2666:9;2657:7;2653:23;2649:32;2646:52;;;2694:1;2691;2684:12;2646:52;2717:29;2736:9;2717:29;:::i;2939:328::-;3016:6;3024;3032;3085:2;3073:9;3064:7;3060:23;3056:32;3053:52;;;3101:1;3098;3091:12;3053:52;3124:29;3143:9;3124:29;:::i;:::-;3114:39;;3172:38;3206:2;3195:9;3191:18;3172:38;:::i;:::-;3162:48;;3257:2;3246:9;3242:18;3229:32;3219:42;;2939:328;;;;;:::o;3272:248::-;3340:6;3348;3401:2;3389:9;3380:7;3376:23;3372:32;3369:52;;;3417:1;3414;3407:12;3369:52;-1:-1:-1;;3440:23:1;;;3510:2;3495:18;;;3482:32;;-1:-1:-1;3272:248:1:o;4043:127::-;4104:10;4099:3;4095:20;4092:1;4085:31;4135:4;4132:1;4125:15;4159:4;4156:1;4149:15;4175:632;4240:5;-1:-1:-1;;;;;4311:2:1;4303:6;4300:14;4297:40;;;4317:18;;:::i;:::-;4392:2;4386:9;4360:2;4446:15;;-1:-1:-1;;4442:24:1;;;4468:2;4438:33;4434:42;4422:55;;;4492:18;;;4512:22;;;4489:46;4486:72;;;4538:18;;:::i;:::-;4578:10;4574:2;4567:22;4607:6;4598:15;;4637:6;4629;4622:22;4677:3;4668:6;4663:3;4659:16;4656:25;4653:45;;;4694:1;4691;4684:12;4653:45;4744:6;4739:3;4732:4;4724:6;4720:17;4707:44;4799:1;4792:4;4783:6;4775;4771:19;4767:30;4760:41;;;;4175:632;;;;;:::o;4812:451::-;4881:6;4934:2;4922:9;4913:7;4909:23;4905:32;4902:52;;;4950:1;4947;4940:12;4902:52;4990:9;4977:23;-1:-1:-1;;;;;5015:6:1;5012:30;5009:50;;;5055:1;5052;5045:12;5009:50;5078:22;;5131:4;5123:13;;5119:27;-1:-1:-1;5109:55:1;;5160:1;5157;5150:12;5109:55;5183:74;5249:7;5244:2;5231:16;5226:2;5222;5218:11;5183:74;:::i;5268:367::-;5331:8;5341:6;5395:3;5388:4;5380:6;5376:17;5372:27;5362:55;;5413:1;5410;5403:12;5362:55;-1:-1:-1;5436:20:1;;-1:-1:-1;;;;;5468:30:1;;5465:50;;;5511:1;5508;5501:12;5465:50;5548:4;5540:6;5536:17;5524:29;;5608:3;5601:4;5591:6;5588:1;5584:14;5576:6;5572:27;5568:38;5565:47;5562:67;;;5625:1;5622;5615:12;5640:773;5762:6;5770;5778;5786;5839:2;5827:9;5818:7;5814:23;5810:32;5807:52;;;5855:1;5852;5845:12;5807:52;5895:9;5882:23;-1:-1:-1;;;;;5965:2:1;5957:6;5954:14;5951:34;;;5981:1;5978;5971:12;5951:34;6020:70;6082:7;6073:6;6062:9;6058:22;6020:70;:::i;:::-;6109:8;;-1:-1:-1;5994:96:1;-1:-1:-1;6197:2:1;6182:18;;6169:32;;-1:-1:-1;6213:16:1;;;6210:36;;;6242:1;6239;6232:12;6210:36;;6281:72;6345:7;6334:8;6323:9;6319:24;6281:72;:::i;:::-;5640:773;;;;-1:-1:-1;6372:8:1;-1:-1:-1;;;;5640:773:1:o;6418:437::-;6504:6;6512;6565:2;6553:9;6544:7;6540:23;6536:32;6533:52;;;6581:1;6578;6571:12;6533:52;6621:9;6608:23;-1:-1:-1;;;;;6646:6:1;6643:30;6640:50;;;6686:1;6683;6676:12;6640:50;6725:70;6787:7;6778:6;6767:9;6763:22;6725:70;:::i;:::-;6814:8;;6699:96;;-1:-1:-1;6418:437:1;-1:-1:-1;;;;6418:437:1:o;6860:118::-;6946:5;6939:13;6932:21;6925:5;6922:32;6912:60;;6968:1;6965;6958:12;6983:315;7048:6;7056;7109:2;7097:9;7088:7;7084:23;7080:32;7077:52;;;7125:1;7122;7115:12;7077:52;7148:29;7167:9;7148:29;:::i;:::-;7138:39;;7227:2;7216:9;7212:18;7199:32;7240:28;7262:5;7240:28;:::i;7303:667::-;7398:6;7406;7414;7422;7475:3;7463:9;7454:7;7450:23;7446:33;7443:53;;;7492:1;7489;7482:12;7443:53;7515:29;7534:9;7515:29;:::i;:::-;7505:39;;7563:38;7597:2;7586:9;7582:18;7563:38;:::i;:::-;7553:48;;7648:2;7637:9;7633:18;7620:32;7610:42;;7703:2;7692:9;7688:18;7675:32;-1:-1:-1;;;;;7722:6:1;7719:30;7716:50;;;7762:1;7759;7752:12;7716:50;7785:22;;7838:4;7830:13;;7826:27;-1:-1:-1;7816:55:1;;7867:1;7864;7857:12;7816:55;7890:74;7956:7;7951:2;7938:16;7933:2;7929;7925:11;7890:74;:::i;:::-;7880:84;;;7303:667;;;;;;;:::o;7975:260::-;8043:6;8051;8104:2;8092:9;8083:7;8079:23;8075:32;8072:52;;;8120:1;8117;8110:12;8072:52;8143:29;8162:9;8143:29;:::i;:::-;8133:39;;8191:38;8225:2;8214:9;8210:18;8191:38;:::i;:::-;8181:48;;7975:260;;;;;:::o;8240:380::-;8319:1;8315:12;;;;8362;;;8383:61;;8437:4;8429:6;8425:17;8415:27;;8383:61;8490:2;8482:6;8479:14;8459:18;8456:38;8453:161;;8536:10;8531:3;8527:20;8524:1;8517:31;8571:4;8568:1;8561:15;8599:4;8596:1;8589:15;8453:161;;8240:380;;;:::o;8625:127::-;8686:10;8681:3;8677:20;8674:1;8667:31;8717:4;8714:1;8707:15;8741:4;8738:1;8731:15;8757:168;8797:7;8863:1;8859;8855:6;8851:14;8848:1;8845:21;8840:1;8833:9;8826:17;8822:45;8819:71;;;8870:18;;:::i;:::-;-1:-1:-1;8910:9:1;;8757:168::o;8930:127::-;8991:10;8986:3;8982:20;8979:1;8972:31;9022:4;9019:1;9012:15;9046:4;9043:1;9036:15;9062:120;9102:1;9128;9118:35;;9133:18;;:::i;:::-;-1:-1:-1;9167:9:1;;9062:120::o;9753:127::-;9814:10;9809:3;9805:20;9802:1;9795:31;9845:4;9842:1;9835:15;9869:4;9866:1;9859:15;9885:135;9924:3;9945:17;;;9942:43;;9965:18;;:::i;:::-;-1:-1:-1;10012:1:1;10001:13;;9885:135::o;10025:128::-;10065:3;10096:1;10092:6;10089:1;10086:13;10083:39;;;10102:18;;:::i;:::-;-1:-1:-1;10138:9:1;;10025:128::o;11214:125::-;11254:4;11282:1;11279;11276:8;11273:34;;;11287:18;;:::i;:::-;-1:-1:-1;11324:9:1;;11214:125::o;11818:185::-;11860:3;11898:5;11892:12;11913:52;11958:6;11953:3;11946:4;11939:5;11935:16;11913:52;:::i;:::-;11981:16;;;;;11818:185;-1:-1:-1;;11818:185:1:o;12126:1301::-;12403:3;12432:1;12465:6;12459:13;12495:3;12517:1;12545:9;12541:2;12537:18;12527:28;;12605:2;12594:9;12590:18;12627;12617:61;;12671:4;12663:6;12659:17;12649:27;;12617:61;12697:2;12745;12737:6;12734:14;12714:18;12711:38;12708:165;;-1:-1:-1;;;12772:33:1;;12828:4;12825:1;12818:15;12858:4;12779:3;12846:17;12708:165;12889:18;12916:104;;;;13034:1;13029:320;;;;12882:467;;12916:104;-1:-1:-1;;12949:24:1;;12937:37;;12994:16;;;;-1:-1:-1;12916:104:1;;13029:320;11765:1;11758:14;;;11802:4;11789:18;;13124:1;13138:165;13152:6;13149:1;13146:13;13138:165;;;13230:14;;13217:11;;;13210:35;13273:16;;;;13167:10;;13138:165;;;13142:3;;13332:6;13327:3;13323:16;13316:23;;12882:467;;;;;;;13365:56;13390:30;13416:3;13408:6;13390:30;:::i;:::-;-1:-1:-1;;;12068:20:1;;12113:1;12104:11;;12008:113;13365:56;13358:63;12126:1301;-1:-1:-1;;;;;12126:1301:1:o;15274:245::-;15341:6;15394:2;15382:9;15373:7;15369:23;15365:32;15362:52;;;15410:1;15407;15400:12;15362:52;15442:9;15436:16;15461:28;15483:5;15461:28;:::i;15524:112::-;15556:1;15582;15572:35;;15587:18;;:::i;:::-;-1:-1:-1;15621:9:1;;15524:112::o;15641:136::-;15680:3;15708:5;15698:39;;15717:18;;:::i;:::-;-1:-1:-1;;;15753:18:1;;15641:136::o;15782:500::-;-1:-1:-1;;;;;16051:15:1;;;16033:34;;16103:15;;16098:2;16083:18;;16076:43;16150:2;16135:18;;16128:34;;;16198:3;16193:2;16178:18;;16171:31;;;15976:4;;16219:57;;16256:19;;16248:6;16219:57;:::i;:::-;16211:65;15782:500;-1:-1:-1;;;;;;15782:500:1:o;16287:249::-;16356:6;16409:2;16397:9;16388:7;16384:23;16380:32;16377:52;;;16425:1;16422;16415:12;16377:52;16457:9;16451:16;16476:30;16500:5;16476:30;:::i

Swarm Source

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