ETH Price: $2,508.81 (-1.25%)

Token

AbsolutelyFuckAll (AFA)
 

Overview

Max Total Supply

490 AFA

Holders

41

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
3 AFA
0x769b37bc70ae2dd9da3ca24cac91a3d56a46cf92
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:
AFA

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// File 1: Address.sol

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

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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");

        (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");

        (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");

        (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.4._
     */
    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.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// FILE 2: Context.sol
pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File 3: Strings.sol

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

pragma solidity ^0.8.0;

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

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

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

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

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


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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File 4: 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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}





// File 5: 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 6: 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 7: IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/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 returns (string memory);
}




// File 8: 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 9: ERC721.sol

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

pragma solidity ^0.8.0;


/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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 virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        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 overridden 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 = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );
        if (to.isContract()) {
            revert ("Token transfer to contract address is not allowed.");
        } else {
            _approve(to, tokenId);
        }
        // _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @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 {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}





// File 10: 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 tokenId);

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

pragma solidity ^0.8.0;


/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}



// File 12: IERC721Receiver.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC721/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 13: ERC721A.sol

pragma solidity ^0.8.0;


contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override virtual returns (uint256) {
        return currentIndex;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @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) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        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.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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) {
        require(owner != address(0), 'ERC721A: balance query for the zero address');
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * 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) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @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) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            'ERC721A: approve caller is not owner nor approved for all'
        );

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), 'ERC721A: approved query for nonexistent token');

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: approve to caller');

        _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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

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

    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;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

        _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 > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(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) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex = 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 ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _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**256.
        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)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @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('ERC721A: transfer to non ERC721Receiver implementer');
                } 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.
     *
     * 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`.
     */
    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.
     *
     * 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` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

pragma solidity ^0.8.0;

contract AFA is ERC721A, Ownable, ReentrancyGuard {
  using Strings for uint256;
  using Counters for Counters.Counter;

  string private uriPrefix = "";
  string private uriSuffix = ".json";
  string private hiddenMetadataUri;

    constructor() ERC721A("AbsolutelyFuckAll", "AFA") {
        setHiddenMetadataUri("ipfs://bafybeiapixp7ixduzi23nqxrpf6ufu7usey2rb4o6nf5bfhi7rks3feeki/FuckAll.json");
    }

    uint256 public price = 0.0002 ether;
    uint256 public maxPerTx = 10;
    uint256 public maxPerFree = 20;    
    uint256 private maxFreeSupply = 500;
    uint256 public max_Supply = 8888;
     
  bool public paused = false;
  bool public revealed = false;

    mapping(address => uint256) private _mintedFreeAmount;

    function changePrice(uint256 _newPrice) external onlyOwner {
        price = _newPrice;
    }

    function withdraw() external onlyOwner {
        (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

    //mint
    function mint(uint256 count) external payable {
        uint256 cost = price;
        require(!paused, "The contract is paused!");
        require(count > 0, "Minimum 1 NFT has to be minted per transaction");
        if (msg.sender != owner()) {
            bool isFree = ((totalSupply() + count < maxFreeSupply + 1) &&
                (_mintedFreeAmount[msg.sender] + count <= maxPerFree));

            if (isFree) {
                cost = 0;
                _mintedFreeAmount[msg.sender] += count;
            }

            require(msg.value >= count * cost, "Please send the exact amount.");
            require(count <= maxPerTx, "Max per TX reached.");
        }

        require(totalSupply() + count <= max_Supply, "No more.");

        _safeMint(msg.sender, count);
    }

    function walletOfOwner(address _owner) public view returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= max_Supply) {
        address currentTokenOwner = ownerOf(currentTokenId);
            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;
                ownedTokenIndex++;
            }
        currentTokenId++;
        }
        return ownedTokenIds;
    }
  
  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory)
  {
    require(_exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    if (revealed == false) {return hiddenMetadataUri;}

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : "";
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }  

  function setmaxPerTx(uint256 _maxPerTx) public onlyOwner {
    maxPerTx = _maxPerTx;
  }

  function setmaxPerFree(uint256 _maxPerFree) public onlyOwner {
    maxPerFree = _maxPerFree;
  }  

  function setmaxFreeSupply(uint256 _maxFreeSupply) public onlyOwner {
    maxFreeSupply = _maxFreeSupply;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }  

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }  

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

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

    function treasuryMint(uint quantity) public onlyOwner
  {
    require(quantity > 0,
      "Invalid mint amount"
    );
    require(totalSupply() + quantity <= max_Supply,
      "Maximum supply exceeded"
    );
    _safeMint(msg.sender, quantity);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_Supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreeSupply","type":"uint256"}],"name":"setmaxFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerFree","type":"uint256"}],"name":"setmaxPerFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerTx","type":"uint256"}],"name":"setmaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600991620001fe565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600a91620001fe565b5065b5e620f48000600c55600a600d556014600e556101f4600f556122b86010556011805461ffff191690553480156200008357600080fd5b50604080518082018252601181527010589cdbdb1d5d195b1e519d58dad05b1b607a1b60208083019182528351808501909452600384526241464160e81b908401528151919291620000d891600191620001fe565b508051620000ee906002906020840190620001fe565b5050506000620001036200018360201b60201c565b600780546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060016008819055506200017d6040518060800160405280604f815260200162002c46604f913962000187565b62000316565b3390565b6200019162000183565b6001600160a01b0316620001a4620001ef565b6001600160a01b031614620001d65760405162461bcd60e51b8152600401620001cd90620002a4565b60405180910390fd5b8051620001eb90600b906020840190620001fe565b5050565b6007546001600160a01b031690565b8280546200020c90620002d9565b90600052602060002090601f0160209004810192826200023057600085556200027b565b82601f106200024b57805160ff19168380011785556200027b565b828001600101855582156200027b579182015b828111156200027b5782518255916020019190600101906200025e565b50620002899291506200028d565b5090565b5b808211156200028957600081556001016200028e565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600281046001821680620002ee57607f821691505b602082108114156200031057634e487b7160e01b600052602260045260246000fd5b50919050565b61292080620003266000396000f3fe6080604052600436106102255760003560e01c8063715018a611610123578063b88d4fde116100ab578063e77837741161006f578063e77837741461061b578063e985e9c514610630578063efdc778814610650578063f2fde38b14610670578063f968adbe1461069057610225565b8063b88d4fde14610586578063bde12d73146105a6578063c7c39ffc146105c6578063c87b56dd146105db578063e0a80853146105fb57610225565b806395d89b41116100f257806395d89b4114610509578063a035b1fe1461051e578063a0712d6814610533578063a22cb46514610546578063a2b40d191461056657610225565b8063715018a61461049f5780637ec4a659146104b4578063805dcae5146104d45780638da5cb5b146104f457610225565b8063308d7798116101b15780634fdd43cb116101755780634fdd43cb1461041557806351830227146104355780635c975abb1461044a5780636352211e1461045f57806370a082311461047f57610225565b8063308d7798146103735780633ccfd60b1461039357806342842e0e146103a8578063438b6300146103c85780634f6ccce7146103f557610225565b806316ba10e0116101f857806316ba10e0146102d157806316c38b3c146102f157806318160ddd1461031157806323b872dd146103335780632f745c591461035357610225565b806301ffc9a71461022a57806306fdde0314610260578063081812fc14610282578063095ea7b3146102af575b600080fd5b34801561023657600080fd5b5061024a610245366004611ea4565b6106a5565b60405161025791906120c0565b60405180910390f35b34801561026c57600080fd5b50610275610708565b60405161025791906120cb565b34801561028e57600080fd5b506102a261029d366004611f22565b61079a565b604051610257919061202b565b3480156102bb57600080fd5b506102cf6102ca366004611e61565b6107e6565b005b3480156102dd57600080fd5b506102cf6102ec366004611edc565b61087f565b3480156102fd57600080fd5b506102cf61030c366004611e8a565b6108d5565b34801561031d57600080fd5b50610326610927565b6040516102579190612785565b34801561033f57600080fd5b506102cf61034e366004611d84565b61092d565b34801561035f57600080fd5b5061032661036e366004611e61565b610938565b34801561037f57600080fd5b506102cf61038e366004611f22565b610a23565b34801561039f57600080fd5b506102cf610a67565b3480156103b457600080fd5b506102cf6103c3366004611d84565b610b25565b3480156103d457600080fd5b506103e86103e3366004611d38565b610b40565b604051610257919061207c565b34801561040157600080fd5b50610326610410366004611f22565b610c3d565b34801561042157600080fd5b506102cf610430366004611edc565b610c69565b34801561044157600080fd5b5061024a610cbb565b34801561045657600080fd5b5061024a610cc9565b34801561046b57600080fd5b506102a261047a366004611f22565b610cd2565b34801561048b57600080fd5b5061032661049a366004611d38565b610ce4565b3480156104ab57600080fd5b506102cf610d31565b3480156104c057600080fd5b506102cf6104cf366004611edc565b610dba565b3480156104e057600080fd5b506102cf6104ef366004611f22565b610e0c565b34801561050057600080fd5b506102a2610e50565b34801561051557600080fd5b50610275610e5f565b34801561052a57600080fd5b50610326610e6e565b6102cf610541366004611f22565b610e74565b34801561055257600080fd5b506102cf610561366004611e38565b610fe3565b34801561057257600080fd5b506102cf610581366004611f22565b6110b1565b34801561059257600080fd5b506102cf6105a1366004611dbf565b6110f5565b3480156105b257600080fd5b506102cf6105c1366004611f22565b61112e565b3480156105d257600080fd5b50610326611172565b3480156105e757600080fd5b506102756105f6366004611f22565b611178565b34801561060757600080fd5b506102cf610616366004611e8a565b61129f565b34801561062757600080fd5b506103266112f8565b34801561063c57600080fd5b5061024a61064b366004611d52565b6112fe565b34801561065c57600080fd5b506102cf61066b366004611f22565b61132c565b34801561067c57600080fd5b506102cf61068b366004611d38565b6113c9565b34801561069c57600080fd5b5061032661148a565b60006001600160e01b031982166380ac58cd60e01b14806106d657506001600160e01b03198216635b5e139f60e01b145b806106f157506001600160e01b0319821663780e9d6360e01b145b80610700575061070082611490565b90505b919050565b60606001805461071790612828565b80601f016020809104026020016040519081016040528092919081815260200182805461074390612828565b80156107905780601f1061076557610100808354040283529160200191610790565b820191906000526020600020905b81548152906001019060200180831161077357829003601f168201915b5050505050905090565b60006107a5826114a9565b6107ca5760405162461bcd60e51b81526004016107c190612738565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107f182610cd2565b9050806001600160a01b0316836001600160a01b031614156108255760405162461bcd60e51b81526004016107c190612548565b806001600160a01b03166108376114b0565b6001600160a01b0316148061085357506108538161064b6114b0565b61086f5760405162461bcd60e51b81526004016107c1906122a8565b61087a8383836114b4565b505050565b6108876114b0565b6001600160a01b0316610898610e50565b6001600160a01b0316146108be5760405162461bcd60e51b81526004016107c1906123cd565b80516108d190600a906020840190611bef565b5050565b6108dd6114b0565b6001600160a01b03166108ee610e50565b6001600160a01b0316146109145760405162461bcd60e51b81526004016107c1906123cd565b6011805460ff1916911515919091179055565b60005490565b61087a838383611510565b600061094383610ce4565b82106109615760405162461bcd60e51b81526004016107c1906120de565b600061096b610927565b905060008060005b83811015610a04576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109c657805192505b876001600160a01b0316836001600160a01b031614156109fb57868414156109f457509350610a1d92505050565b6001909301925b50600101610973565b5060405162461bcd60e51b81526004016107c1906126ea565b92915050565b610a2b6114b0565b6001600160a01b0316610a3c610e50565b6001600160a01b031614610a625760405162461bcd60e51b81526004016107c1906123cd565b600e55565b610a6f6114b0565b6001600160a01b0316610a80610e50565b6001600160a01b031614610aa65760405162461bcd60e51b81526004016107c1906123cd565b6000336001600160a01b031647604051610abf90612028565b60006040518083038185875af1925050503d8060008114610afc576040519150601f19603f3d011682016040523d82523d6000602084013e610b01565b606091505b5050905080610b225760405162461bcd60e51b81526004016107c19061258a565b50565b61087a838383604051806020016040528060008152506110f5565b60606000610b4d83610ce4565b905060008167ffffffffffffffff811115610b7857634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610ba1578160200160208202803683370190505b509050600160005b8381108015610bba57506010548211155b15610c33576000610bca83610cd2565b9050866001600160a01b0316816001600160a01b03161415610c205782848381518110610c0757634e487b7160e01b600052603260045260246000fd5b602090810291909101015281610c1c81612863565b9250505b82610c2a81612863565b93505050610ba9565b5090949350505050565b6000610c47610927565b8210610c655760405162461bcd60e51b81526004016107c1906121fe565b5090565b610c716114b0565b6001600160a01b0316610c82610e50565b6001600160a01b031614610ca85760405162461bcd60e51b81526004016107c1906123cd565b80516108d190600b906020840190611bef565b601154610100900460ff1681565b60115460ff1681565b6000610cdd8261177d565b5192915050565b60006001600160a01b038216610d0c5760405162461bcd60e51b81526004016107c190612305565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610d396114b0565b6001600160a01b0316610d4a610e50565b6001600160a01b031614610d705760405162461bcd60e51b81526004016107c1906123cd565b6007546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600780546001600160a01b0319169055565b610dc26114b0565b6001600160a01b0316610dd3610e50565b6001600160a01b031614610df95760405162461bcd60e51b81526004016107c1906123cd565b80516108d1906009906020840190611bef565b610e146114b0565b6001600160a01b0316610e25610e50565b6001600160a01b031614610e4b5760405162461bcd60e51b81526004016107c1906123cd565b600d55565b6007546001600160a01b031690565b60606002805461071790612828565b600c5481565b600c5460115460ff1615610e9a5760405162461bcd60e51b81526004016107c190612402565b60008211610eba5760405162461bcd60e51b81526004016107c190612120565b610ec2610e50565b6001600160a01b0316336001600160a01b031614610fa5576000600f546001610eeb919061279a565b83610ef4610927565b610efe919061279a565b108015610f275750600e5433600090815260126020526040902054610f2490859061279a565b11155b90508015610f5857336000908152601260205260408120805491935084918490610f5290849061279a565b90915550505b610f6282846127c6565b341015610f815760405162461bcd60e51b81526004016107c190612511565b600d54831115610fa35760405162461bcd60e51b81526004016107c1906126bd565b505b60105482610fb1610927565b610fbb919061279a565b1115610fd95760405162461bcd60e51b81526004016107c190612286565b6108d13383611805565b610feb6114b0565b6001600160a01b0316826001600160a01b0316141561101c5760405162461bcd60e51b81526004016107c190612488565b80600660006110296114b0565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561106d6114b0565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110a591906120c0565b60405180910390a35050565b6110b96114b0565b6001600160a01b03166110ca610e50565b6001600160a01b0316146110f05760405162461bcd60e51b81526004016107c1906123cd565b600c55565b611100848484611510565b61110c8484848461181f565b6111285760405162461bcd60e51b81526004016107c1906125b4565b50505050565b6111366114b0565b6001600160a01b0316611147610e50565b6001600160a01b03161461116d5760405162461bcd60e51b81526004016107c1906123cd565b600f55565b600e5481565b6060611183826114a9565b61119f5760405162461bcd60e51b81526004016107c190612439565b601154610100900460ff1661124057600b80546111bb90612828565b80601f01602080910402602001604051908101604052809291908181526020018280546111e790612828565b80156112345780601f1061120957610100808354040283529160200191611234565b820191906000526020600020905b81548152906001019060200180831161121757829003601f168201915b50505050509050610703565b600061124a61193b565b9050600081511161126a5760405180602001604052806000815250611298565b806112748461194a565b600a60405160200161128893929190611f66565b6040516020818303038152906040525b9392505050565b6112a76114b0565b6001600160a01b03166112b8610e50565b6001600160a01b0316146112de5760405162461bcd60e51b81526004016107c1906123cd565b601180549115156101000261ff0019909216919091179055565b60105481565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6113346114b0565b6001600160a01b0316611345610e50565b6001600160a01b03161461136b5760405162461bcd60e51b81526004016107c1906123cd565b6000811161138b5760405162461bcd60e51b81526004016107c190612607565b60105481611397610927565b6113a1919061279a565b11156113bf5760405162461bcd60e51b81526004016107c190612350565b610b223382611805565b6113d16114b0565b6001600160a01b03166113e2610e50565b6001600160a01b0316146114085760405162461bcd60e51b81526004016107c1906123cd565b6001600160a01b03811661142e5760405162461bcd60e51b81526004016107c19061216e565b6007546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b600d5481565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061151b8261177d565b9050600081600001516001600160a01b03166115356114b0565b6001600160a01b0316148061156a575061154d6114b0565b6001600160a01b031661155f8461079a565b6001600160a01b0316145b8061157e5750815161157e9061064b6114b0565b90508061159d5760405162461bcd60e51b81526004016107c1906124bf565b846001600160a01b031682600001516001600160a01b0316146115d25760405162461bcd60e51b81526004016107c190612387565b6001600160a01b0384166115f85760405162461bcd60e51b81526004016107c190612241565b6116058585856001611128565b61161560008484600001516114b4565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160a01b03191690911767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff1602179055908601808352912054909116611727576116c9816114a9565b15611727578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b0267ffffffffffffffff60a01b196001600160a01b039094166001600160a01b031990931692909217929092161790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117768585856001611128565b5050505050565b611785611c6f565b61178e826114a9565b6117aa5760405162461bcd60e51b81526004016107c1906121b4565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156117fb5791506107039050565b50600019016117ac565b6108d1828260405180602001604052806000815250611a65565b6000611833846001600160a01b0316611a72565b1561192f57836001600160a01b031663150b7a0261184f6114b0565b8786866040518563ffffffff1660e01b8152600401611871949392919061203f565b602060405180830381600087803b15801561188b57600080fd5b505af19250505080156118bb575060408051601f3d908101601f191682019092526118b891810190611ec0565b60015b611915573d8080156118e9576040519150601f19603f3d011682016040523d82523d6000602084013e6118ee565b606091505b50805161190d5760405162461bcd60e51b81526004016107c1906125b4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611933565b5060015b949350505050565b60606009805461071790612828565b60608161196f57506040805180820190915260018152600360fc1b6020820152610703565b8160005b8115611999578061198381612863565b91506119929050600a836127b2565b9150611973565b60008167ffffffffffffffff8111156119c257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156119ec576020820181803683370190505b5090505b841561193357611a016001836127e5565b9150611a0e600a8661287e565b611a1990603061279a565b60f81b818381518110611a3c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611a5e600a866127b2565b94506119f0565b61087a8383836001611a81565b6001600160a01b03163b151590565b6000546001600160a01b038516611aaa5760405162461bcd60e51b81526004016107c190612634565b83611ac75760405162461bcd60e51b81526004016107c190612675565b611ad46000868387611128565b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160801b039182168b01821617808216600160801b9182900483168c01909216021790558483526003909152812080546001600160a01b03191690921767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790915581905b85811015611bdd5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611bd157611bb5600088848861181f565b611bd15760405162461bcd60e51b81526004016107c1906125b4565b60019182019101611b62565b50600090815561177690868387611128565b828054611bfb90612828565b90600052602060002090601f016020900481019282611c1d5760008555611c63565b82601f10611c3657805160ff1916838001178555611c63565b82800160010185558215611c63579182015b82811115611c63578251825591602001919060010190611c48565b50610c65929150611c86565b604080518082019091526000808252602082015290565b5b80821115610c655760008155600101611c87565b600067ffffffffffffffff80841115611cb657611cb66128be565b604051601f8501601f19908116603f01168101908282118183101715611cde57611cde6128be565b81604052809350858152868686011115611cf757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461070357600080fd5b8035801515811461070357600080fd5b600060208284031215611d49578081fd5b61129882611d11565b60008060408385031215611d64578081fd5b611d6d83611d11565b9150611d7b60208401611d11565b90509250929050565b600080600060608486031215611d98578081fd5b611da184611d11565b9250611daf60208501611d11565b9150604084013590509250925092565b60008060008060808587031215611dd4578081fd5b611ddd85611d11565b9350611deb60208601611d11565b925060408501359150606085013567ffffffffffffffff811115611e0d578182fd5b8501601f81018713611e1d578182fd5b611e2c87823560208401611c9b565b91505092959194509250565b60008060408385031215611e4a578182fd5b611e5383611d11565b9150611d7b60208401611d28565b60008060408385031215611e73578182fd5b611e7c83611d11565b946020939093013593505050565b600060208284031215611e9b578081fd5b61129882611d28565b600060208284031215611eb5578081fd5b8135611298816128d4565b600060208284031215611ed1578081fd5b8151611298816128d4565b600060208284031215611eed578081fd5b813567ffffffffffffffff811115611f03578182fd5b8201601f81018413611f13578182fd5b61193384823560208401611c9b565b600060208284031215611f33578081fd5b5035919050565b60008151808452611f528160208601602086016127fc565b601f01601f19169290920160200192915050565b600084516020611f798285838a016127fc565b855191840191611f8c8184848a016127fc565b8554920191839060028104600180831680611fa857607f831692505b858310811415611fc657634e487b7160e01b88526022600452602488fd5b808015611fda5760018114611feb57612017565b60ff19851688528388019550612017565b611ff48b61278e565b895b8581101561200f5781548a820152908401908801611ff6565b505083880195505b50939b9a5050505050505050505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061207290830184611f3a565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120b457835183529284019291840191600101612098565b50909695505050505050565b901515815260200190565b6000602082526112986020830184611f3a565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252602e908201527f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060408201526d32b9103a3930b739b0b1ba34b7b760911b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526008908201526727379036b7b9329760c11b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526017908201527f4d6178696d756d20737570706c79206578636565646564000000000000000000604082015260600190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f54686520636f6e74726163742069732070617573656421000000000000000000604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252601d908201527f506c656173652073656e642074686520657861637420616d6f756e742e000000604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b602080825260139082015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526028908201527f455243373231413a207175616e74697479206d75737420626520677265617465604082015267072207468616e20360c41b606082015260800190565b60208082526013908201527226b0bc103832b9102a2c103932b0b1b432b21760691b604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b90815260200190565b60009081526020902090565b600082198211156127ad576127ad612892565b500190565b6000826127c1576127c16128a8565b500490565b60008160001904831182151516156127e0576127e0612892565b500290565b6000828210156127f7576127f7612892565b500390565b60005b838110156128175781810151838201526020016127ff565b838111156111285750506000910152565b60028104600182168061283c57607f821691505b6020821081141561285d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561287757612877612892565b5060010190565b60008261288d5761288d6128a8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b2257600080fdfea2646970667358221220821d2f7bb3641394689f74fcdbcddc8499c867f39b9bf7a26436259cf63132f264736f6c63430008010033697066733a2f2f62616679626569617069787037697864757a6932336e7178727066367566753775736579327262346f366e66356266686937726b73336665656b692f4675636b416c6c2e6a736f6e

Deployed Bytecode

0x6080604052600436106102255760003560e01c8063715018a611610123578063b88d4fde116100ab578063e77837741161006f578063e77837741461061b578063e985e9c514610630578063efdc778814610650578063f2fde38b14610670578063f968adbe1461069057610225565b8063b88d4fde14610586578063bde12d73146105a6578063c7c39ffc146105c6578063c87b56dd146105db578063e0a80853146105fb57610225565b806395d89b41116100f257806395d89b4114610509578063a035b1fe1461051e578063a0712d6814610533578063a22cb46514610546578063a2b40d191461056657610225565b8063715018a61461049f5780637ec4a659146104b4578063805dcae5146104d45780638da5cb5b146104f457610225565b8063308d7798116101b15780634fdd43cb116101755780634fdd43cb1461041557806351830227146104355780635c975abb1461044a5780636352211e1461045f57806370a082311461047f57610225565b8063308d7798146103735780633ccfd60b1461039357806342842e0e146103a8578063438b6300146103c85780634f6ccce7146103f557610225565b806316ba10e0116101f857806316ba10e0146102d157806316c38b3c146102f157806318160ddd1461031157806323b872dd146103335780632f745c591461035357610225565b806301ffc9a71461022a57806306fdde0314610260578063081812fc14610282578063095ea7b3146102af575b600080fd5b34801561023657600080fd5b5061024a610245366004611ea4565b6106a5565b60405161025791906120c0565b60405180910390f35b34801561026c57600080fd5b50610275610708565b60405161025791906120cb565b34801561028e57600080fd5b506102a261029d366004611f22565b61079a565b604051610257919061202b565b3480156102bb57600080fd5b506102cf6102ca366004611e61565b6107e6565b005b3480156102dd57600080fd5b506102cf6102ec366004611edc565b61087f565b3480156102fd57600080fd5b506102cf61030c366004611e8a565b6108d5565b34801561031d57600080fd5b50610326610927565b6040516102579190612785565b34801561033f57600080fd5b506102cf61034e366004611d84565b61092d565b34801561035f57600080fd5b5061032661036e366004611e61565b610938565b34801561037f57600080fd5b506102cf61038e366004611f22565b610a23565b34801561039f57600080fd5b506102cf610a67565b3480156103b457600080fd5b506102cf6103c3366004611d84565b610b25565b3480156103d457600080fd5b506103e86103e3366004611d38565b610b40565b604051610257919061207c565b34801561040157600080fd5b50610326610410366004611f22565b610c3d565b34801561042157600080fd5b506102cf610430366004611edc565b610c69565b34801561044157600080fd5b5061024a610cbb565b34801561045657600080fd5b5061024a610cc9565b34801561046b57600080fd5b506102a261047a366004611f22565b610cd2565b34801561048b57600080fd5b5061032661049a366004611d38565b610ce4565b3480156104ab57600080fd5b506102cf610d31565b3480156104c057600080fd5b506102cf6104cf366004611edc565b610dba565b3480156104e057600080fd5b506102cf6104ef366004611f22565b610e0c565b34801561050057600080fd5b506102a2610e50565b34801561051557600080fd5b50610275610e5f565b34801561052a57600080fd5b50610326610e6e565b6102cf610541366004611f22565b610e74565b34801561055257600080fd5b506102cf610561366004611e38565b610fe3565b34801561057257600080fd5b506102cf610581366004611f22565b6110b1565b34801561059257600080fd5b506102cf6105a1366004611dbf565b6110f5565b3480156105b257600080fd5b506102cf6105c1366004611f22565b61112e565b3480156105d257600080fd5b50610326611172565b3480156105e757600080fd5b506102756105f6366004611f22565b611178565b34801561060757600080fd5b506102cf610616366004611e8a565b61129f565b34801561062757600080fd5b506103266112f8565b34801561063c57600080fd5b5061024a61064b366004611d52565b6112fe565b34801561065c57600080fd5b506102cf61066b366004611f22565b61132c565b34801561067c57600080fd5b506102cf61068b366004611d38565b6113c9565b34801561069c57600080fd5b5061032661148a565b60006001600160e01b031982166380ac58cd60e01b14806106d657506001600160e01b03198216635b5e139f60e01b145b806106f157506001600160e01b0319821663780e9d6360e01b145b80610700575061070082611490565b90505b919050565b60606001805461071790612828565b80601f016020809104026020016040519081016040528092919081815260200182805461074390612828565b80156107905780601f1061076557610100808354040283529160200191610790565b820191906000526020600020905b81548152906001019060200180831161077357829003601f168201915b5050505050905090565b60006107a5826114a9565b6107ca5760405162461bcd60e51b81526004016107c190612738565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107f182610cd2565b9050806001600160a01b0316836001600160a01b031614156108255760405162461bcd60e51b81526004016107c190612548565b806001600160a01b03166108376114b0565b6001600160a01b0316148061085357506108538161064b6114b0565b61086f5760405162461bcd60e51b81526004016107c1906122a8565b61087a8383836114b4565b505050565b6108876114b0565b6001600160a01b0316610898610e50565b6001600160a01b0316146108be5760405162461bcd60e51b81526004016107c1906123cd565b80516108d190600a906020840190611bef565b5050565b6108dd6114b0565b6001600160a01b03166108ee610e50565b6001600160a01b0316146109145760405162461bcd60e51b81526004016107c1906123cd565b6011805460ff1916911515919091179055565b60005490565b61087a838383611510565b600061094383610ce4565b82106109615760405162461bcd60e51b81526004016107c1906120de565b600061096b610927565b905060008060005b83811015610a04576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109c657805192505b876001600160a01b0316836001600160a01b031614156109fb57868414156109f457509350610a1d92505050565b6001909301925b50600101610973565b5060405162461bcd60e51b81526004016107c1906126ea565b92915050565b610a2b6114b0565b6001600160a01b0316610a3c610e50565b6001600160a01b031614610a625760405162461bcd60e51b81526004016107c1906123cd565b600e55565b610a6f6114b0565b6001600160a01b0316610a80610e50565b6001600160a01b031614610aa65760405162461bcd60e51b81526004016107c1906123cd565b6000336001600160a01b031647604051610abf90612028565b60006040518083038185875af1925050503d8060008114610afc576040519150601f19603f3d011682016040523d82523d6000602084013e610b01565b606091505b5050905080610b225760405162461bcd60e51b81526004016107c19061258a565b50565b61087a838383604051806020016040528060008152506110f5565b60606000610b4d83610ce4565b905060008167ffffffffffffffff811115610b7857634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610ba1578160200160208202803683370190505b509050600160005b8381108015610bba57506010548211155b15610c33576000610bca83610cd2565b9050866001600160a01b0316816001600160a01b03161415610c205782848381518110610c0757634e487b7160e01b600052603260045260246000fd5b602090810291909101015281610c1c81612863565b9250505b82610c2a81612863565b93505050610ba9565b5090949350505050565b6000610c47610927565b8210610c655760405162461bcd60e51b81526004016107c1906121fe565b5090565b610c716114b0565b6001600160a01b0316610c82610e50565b6001600160a01b031614610ca85760405162461bcd60e51b81526004016107c1906123cd565b80516108d190600b906020840190611bef565b601154610100900460ff1681565b60115460ff1681565b6000610cdd8261177d565b5192915050565b60006001600160a01b038216610d0c5760405162461bcd60e51b81526004016107c190612305565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610d396114b0565b6001600160a01b0316610d4a610e50565b6001600160a01b031614610d705760405162461bcd60e51b81526004016107c1906123cd565b6007546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600780546001600160a01b0319169055565b610dc26114b0565b6001600160a01b0316610dd3610e50565b6001600160a01b031614610df95760405162461bcd60e51b81526004016107c1906123cd565b80516108d1906009906020840190611bef565b610e146114b0565b6001600160a01b0316610e25610e50565b6001600160a01b031614610e4b5760405162461bcd60e51b81526004016107c1906123cd565b600d55565b6007546001600160a01b031690565b60606002805461071790612828565b600c5481565b600c5460115460ff1615610e9a5760405162461bcd60e51b81526004016107c190612402565b60008211610eba5760405162461bcd60e51b81526004016107c190612120565b610ec2610e50565b6001600160a01b0316336001600160a01b031614610fa5576000600f546001610eeb919061279a565b83610ef4610927565b610efe919061279a565b108015610f275750600e5433600090815260126020526040902054610f2490859061279a565b11155b90508015610f5857336000908152601260205260408120805491935084918490610f5290849061279a565b90915550505b610f6282846127c6565b341015610f815760405162461bcd60e51b81526004016107c190612511565b600d54831115610fa35760405162461bcd60e51b81526004016107c1906126bd565b505b60105482610fb1610927565b610fbb919061279a565b1115610fd95760405162461bcd60e51b81526004016107c190612286565b6108d13383611805565b610feb6114b0565b6001600160a01b0316826001600160a01b0316141561101c5760405162461bcd60e51b81526004016107c190612488565b80600660006110296114b0565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561106d6114b0565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110a591906120c0565b60405180910390a35050565b6110b96114b0565b6001600160a01b03166110ca610e50565b6001600160a01b0316146110f05760405162461bcd60e51b81526004016107c1906123cd565b600c55565b611100848484611510565b61110c8484848461181f565b6111285760405162461bcd60e51b81526004016107c1906125b4565b50505050565b6111366114b0565b6001600160a01b0316611147610e50565b6001600160a01b03161461116d5760405162461bcd60e51b81526004016107c1906123cd565b600f55565b600e5481565b6060611183826114a9565b61119f5760405162461bcd60e51b81526004016107c190612439565b601154610100900460ff1661124057600b80546111bb90612828565b80601f01602080910402602001604051908101604052809291908181526020018280546111e790612828565b80156112345780601f1061120957610100808354040283529160200191611234565b820191906000526020600020905b81548152906001019060200180831161121757829003601f168201915b50505050509050610703565b600061124a61193b565b9050600081511161126a5760405180602001604052806000815250611298565b806112748461194a565b600a60405160200161128893929190611f66565b6040516020818303038152906040525b9392505050565b6112a76114b0565b6001600160a01b03166112b8610e50565b6001600160a01b0316146112de5760405162461bcd60e51b81526004016107c1906123cd565b601180549115156101000261ff0019909216919091179055565b60105481565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6113346114b0565b6001600160a01b0316611345610e50565b6001600160a01b03161461136b5760405162461bcd60e51b81526004016107c1906123cd565b6000811161138b5760405162461bcd60e51b81526004016107c190612607565b60105481611397610927565b6113a1919061279a565b11156113bf5760405162461bcd60e51b81526004016107c190612350565b610b223382611805565b6113d16114b0565b6001600160a01b03166113e2610e50565b6001600160a01b0316146114085760405162461bcd60e51b81526004016107c1906123cd565b6001600160a01b03811661142e5760405162461bcd60e51b81526004016107c19061216e565b6007546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b600d5481565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061151b8261177d565b9050600081600001516001600160a01b03166115356114b0565b6001600160a01b0316148061156a575061154d6114b0565b6001600160a01b031661155f8461079a565b6001600160a01b0316145b8061157e5750815161157e9061064b6114b0565b90508061159d5760405162461bcd60e51b81526004016107c1906124bf565b846001600160a01b031682600001516001600160a01b0316146115d25760405162461bcd60e51b81526004016107c190612387565b6001600160a01b0384166115f85760405162461bcd60e51b81526004016107c190612241565b6116058585856001611128565b61161560008484600001516114b4565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160a01b03191690911767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff1602179055908601808352912054909116611727576116c9816114a9565b15611727578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b0267ffffffffffffffff60a01b196001600160a01b039094166001600160a01b031990931692909217929092161790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117768585856001611128565b5050505050565b611785611c6f565b61178e826114a9565b6117aa5760405162461bcd60e51b81526004016107c1906121b4565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156117fb5791506107039050565b50600019016117ac565b6108d1828260405180602001604052806000815250611a65565b6000611833846001600160a01b0316611a72565b1561192f57836001600160a01b031663150b7a0261184f6114b0565b8786866040518563ffffffff1660e01b8152600401611871949392919061203f565b602060405180830381600087803b15801561188b57600080fd5b505af19250505080156118bb575060408051601f3d908101601f191682019092526118b891810190611ec0565b60015b611915573d8080156118e9576040519150601f19603f3d011682016040523d82523d6000602084013e6118ee565b606091505b50805161190d5760405162461bcd60e51b81526004016107c1906125b4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611933565b5060015b949350505050565b60606009805461071790612828565b60608161196f57506040805180820190915260018152600360fc1b6020820152610703565b8160005b8115611999578061198381612863565b91506119929050600a836127b2565b9150611973565b60008167ffffffffffffffff8111156119c257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156119ec576020820181803683370190505b5090505b841561193357611a016001836127e5565b9150611a0e600a8661287e565b611a1990603061279a565b60f81b818381518110611a3c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611a5e600a866127b2565b94506119f0565b61087a8383836001611a81565b6001600160a01b03163b151590565b6000546001600160a01b038516611aaa5760405162461bcd60e51b81526004016107c190612634565b83611ac75760405162461bcd60e51b81526004016107c190612675565b611ad46000868387611128565b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160801b039182168b01821617808216600160801b9182900483168c01909216021790558483526003909152812080546001600160a01b03191690921767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790915581905b85811015611bdd5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611bd157611bb5600088848861181f565b611bd15760405162461bcd60e51b81526004016107c1906125b4565b60019182019101611b62565b50600090815561177690868387611128565b828054611bfb90612828565b90600052602060002090601f016020900481019282611c1d5760008555611c63565b82601f10611c3657805160ff1916838001178555611c63565b82800160010185558215611c63579182015b82811115611c63578251825591602001919060010190611c48565b50610c65929150611c86565b604080518082019091526000808252602082015290565b5b80821115610c655760008155600101611c87565b600067ffffffffffffffff80841115611cb657611cb66128be565b604051601f8501601f19908116603f01168101908282118183101715611cde57611cde6128be565b81604052809350858152868686011115611cf757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461070357600080fd5b8035801515811461070357600080fd5b600060208284031215611d49578081fd5b61129882611d11565b60008060408385031215611d64578081fd5b611d6d83611d11565b9150611d7b60208401611d11565b90509250929050565b600080600060608486031215611d98578081fd5b611da184611d11565b9250611daf60208501611d11565b9150604084013590509250925092565b60008060008060808587031215611dd4578081fd5b611ddd85611d11565b9350611deb60208601611d11565b925060408501359150606085013567ffffffffffffffff811115611e0d578182fd5b8501601f81018713611e1d578182fd5b611e2c87823560208401611c9b565b91505092959194509250565b60008060408385031215611e4a578182fd5b611e5383611d11565b9150611d7b60208401611d28565b60008060408385031215611e73578182fd5b611e7c83611d11565b946020939093013593505050565b600060208284031215611e9b578081fd5b61129882611d28565b600060208284031215611eb5578081fd5b8135611298816128d4565b600060208284031215611ed1578081fd5b8151611298816128d4565b600060208284031215611eed578081fd5b813567ffffffffffffffff811115611f03578182fd5b8201601f81018413611f13578182fd5b61193384823560208401611c9b565b600060208284031215611f33578081fd5b5035919050565b60008151808452611f528160208601602086016127fc565b601f01601f19169290920160200192915050565b600084516020611f798285838a016127fc565b855191840191611f8c8184848a016127fc565b8554920191839060028104600180831680611fa857607f831692505b858310811415611fc657634e487b7160e01b88526022600452602488fd5b808015611fda5760018114611feb57612017565b60ff19851688528388019550612017565b611ff48b61278e565b895b8581101561200f5781548a820152908401908801611ff6565b505083880195505b50939b9a5050505050505050505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061207290830184611f3a565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120b457835183529284019291840191600101612098565b50909695505050505050565b901515815260200190565b6000602082526112986020830184611f3a565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252602e908201527f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060408201526d32b9103a3930b739b0b1ba34b7b760911b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526008908201526727379036b7b9329760c11b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526017908201527f4d6178696d756d20737570706c79206578636565646564000000000000000000604082015260600190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f54686520636f6e74726163742069732070617573656421000000000000000000604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252601d908201527f506c656173652073656e642074686520657861637420616d6f756e742e000000604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b602080825260139082015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526028908201527f455243373231413a207175616e74697479206d75737420626520677265617465604082015267072207468616e20360c41b606082015260800190565b60208082526013908201527226b0bc103832b9102a2c103932b0b1b432b21760691b604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b90815260200190565b60009081526020902090565b600082198211156127ad576127ad612892565b500190565b6000826127c1576127c16128a8565b500490565b60008160001904831182151516156127e0576127e0612892565b500290565b6000828210156127f7576127f7612892565b500390565b60005b838110156128175781810151838201526020016127ff565b838111156111285750506000910152565b60028104600182168061283c57607f821691505b6020821081141561285d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561287757612877612892565b5060010190565b60008261288d5761288d6128a8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b2257600080fdfea2646970667358221220821d2f7bb3641394689f74fcdbcddc8499c867f39b9bf7a26436259cf63132f264736f6c63430008010033

Deployed Bytecode Sourcemap

65088:4223:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51928:372;;;;;;;;;;-1:-1:-1;51928:372:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53814:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;55385:214::-;;;;;;;;;;-1:-1:-1;55385:214:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;54906:413::-;;;;;;;;;;-1:-1:-1;54906:413:0;;;;;:::i;:::-;;:::i;:::-;;68831:100;;;;;;;;;;-1:-1:-1;68831:100:0;;;;;:::i;:::-;;:::i;68093:77::-;;;;;;;;;;-1:-1:-1;68093:77:0;;;;;:::i;:::-;;:::i;50177:108::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;56261:162::-;;;;;;;;;;-1:-1:-1;56261:162:0;;;;;:::i;:::-;;:::i;50849:1007::-;;;;;;;;;;-1:-1:-1;50849:1007:0;;;;;:::i;:::-;;:::i;68361:98::-;;;;;;;;;;-1:-1:-1;68361:98:0;;;;;:::i;:::-;;:::i;65946:182::-;;;;;;;;;;;;;:::i;56494:177::-;;;;;;;;;;-1:-1:-1;56494:177:0;;;;;:::i;:::-;;:::i;66957:677::-;;;;;;;;;;-1:-1:-1;66957:677:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;50362:187::-;;;;;;;;;;-1:-1:-1;50362:187:0;;;;;:::i;:::-;;:::i;68583:132::-;;;;;;;;;;-1:-1:-1;68583:132:0;;;;;:::i;:::-;;:::i;65744:28::-;;;;;;;;;;;;;:::i;65713:26::-;;;;;;;;;;;;;:::i;53623:124::-;;;;;;;;;;-1:-1:-1;53623:124:0;;;;;:::i;:::-;;:::i;52364:221::-;;;;;;;;;;-1:-1:-1;52364:221:0;;;;;:::i;:::-;;:::i;17467:148::-;;;;;;;;;;;;;:::i;68723:100::-;;;;;;;;;;-1:-1:-1;68723:100:0;;;;;:::i;:::-;;:::i;68265:90::-;;;;;;;;;;-1:-1:-1;68265:90:0;;;;;:::i;:::-;;:::i;16816:87::-;;;;;;;;;;;;;:::i;53983:104::-;;;;;;;;;;;;;:::i;65509:35::-;;;;;;;;;;;;;:::i;66148:801::-;;;;;;:::i;:::-;;:::i;55671:288::-;;;;;;;;;;-1:-1:-1;55671:288:0;;;;;:::i;:::-;;:::i;65843:95::-;;;;;;;;;;-1:-1:-1;65843:95:0;;;;;:::i;:::-;;:::i;56742:355::-;;;;;;;;;;-1:-1:-1;56742:355:0;;;;;:::i;:::-;;:::i;68467:110::-;;;;;;;;;;-1:-1:-1;68467:110:0;;;;;:::i;:::-;;:::i;65586:30::-;;;;;;;;;;;;;:::i;67642:445::-;;;;;;;;;;-1:-1:-1;67642:445:0;;;;;:::i;:::-;;:::i;68176:81::-;;;;;;;;;;-1:-1:-1;68176:81:0;;;;;:::i;:::-;;:::i;65669:32::-;;;;;;;;;;;;;:::i;56030:164::-;;;;;;;;;;-1:-1:-1;56030:164:0;;;;;:::i;:::-;;:::i;69049:259::-;;;;;;;;;;-1:-1:-1;69049:259:0;;;;;:::i;:::-;;:::i;17770:244::-;;;;;;;;;;-1:-1:-1;17770:244:0;;;;;:::i;:::-;;:::i;65551:28::-;;;;;;;;;;;;;:::i;51928:372::-;52030:4;-1:-1:-1;;;;;;52067:40:0;;-1:-1:-1;;;52067:40:0;;:105;;-1:-1:-1;;;;;;;52124:48:0;;-1:-1:-1;;;52124:48:0;52067:105;:172;;;-1:-1:-1;;;;;;;52189:50:0;;-1:-1:-1;;;52189:50:0;52067:172;:225;;;;52256:36;52280:11;52256:23;:36::i;:::-;52047:245;;51928:372;;;;:::o;53814:100::-;53868:13;53901:5;53894:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53814:100;:::o;55385:214::-;55453:7;55481:16;55489:7;55481;:16::i;:::-;55473:74;;;;-1:-1:-1;;;55473:74:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;55567:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;55567:24:0;;55385:214::o;54906:413::-;54979:13;54995:24;55011:7;54995:15;:24::i;:::-;54979:40;;55044:5;-1:-1:-1;;;;;55038:11:0;:2;-1:-1:-1;;;;;55038:11:0;;;55030:58;;;;-1:-1:-1;;;55030:58:0;;;;;;;:::i;:::-;55139:5;-1:-1:-1;;;;;55123:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;55123:21:0;;:62;;;;55148:37;55165:5;55172:12;:10;:12::i;55148:37::-;55101:169;;;;-1:-1:-1;;;55101:169:0;;;;;;;:::i;:::-;55283:28;55292:2;55296:7;55305:5;55283:8;:28::i;:::-;54906:413;;;:::o;68831:100::-;17047:12;:10;:12::i;:::-;-1:-1:-1;;;;;17036:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17036:23:0;;17028:68;;;;-1:-1:-1;;;17028:68:0;;;;;;;:::i;:::-;68903:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;68831:100:::0;:::o;68093:77::-;17047:12;:10;:12::i;:::-;-1:-1:-1;;;;;17036:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17036:23:0;;17028:68;;;;-1:-1:-1;;;17028:68:0;;;;;;;:::i;:::-;68149:6:::1;:15:::0;;-1:-1:-1;;68149:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;68093:77::o;50177:108::-;50238:7;50265:12;50177:108;:::o;56261:162::-;56387:28;56397:4;56403:2;56407:7;56387:9;:28::i;50849:1007::-;50938:7;50974:16;50984:5;50974:9;:16::i;:::-;50966:5;:24;50958:71;;;;-1:-1:-1;;;50958:71:0;;;;;;;:::i;:::-;51040:22;51065:13;:11;:13::i;:::-;51040:38;;51089:19;51119:25;51308:9;51303:466;51323:14;51319:1;:18;51303:466;;;51363:31;51397:14;;;:11;:14;;;;;;;;;51363:48;;;;;;;;;-1:-1:-1;;;;;51363:48:0;;;;;-1:-1:-1;;;51363:48:0;;;;;;;;;;;;51434:28;51430:111;;51507:14;;;-1:-1:-1;51430:111:0;51584:5;-1:-1:-1;;;;;51563:26:0;:17;-1:-1:-1;;;;;51563:26:0;;51559:195;;;51633:5;51618:11;:20;51614:85;;;-1:-1:-1;51674:1:0;-1:-1:-1;51667:8:0;;-1:-1:-1;;;51667:8:0;51614:85;51721:13;;;;;51559:195;-1:-1:-1;51339:3:0;;51303:466;;;;51792:56;;-1:-1:-1;;;51792:56:0;;;;;;;:::i;50849:1007::-;;;;;:::o;68361:98::-;17047:12;:10;:12::i;:::-;-1:-1:-1;;;;;17036:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17036:23:0;;17028:68;;;;-1:-1:-1;;;17028:68:0;;;;;;;:::i;:::-;68429:10:::1;:24:::0;68361:98::o;65946:182::-;17047:12;:10;:12::i;:::-;-1:-1:-1;;;;;17036:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17036:23:0;;17028:68;;;;-1:-1:-1;;;17028:68:0;;;;;;;:::i;:::-;65997:12:::1;66023:10;-1:-1:-1::0;;;;;66015:24:0::1;66047:21;66015:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65996:77;;;66092:7;66084:36;;;;-1:-1:-1::0;;;66084:36:0::1;;;;;;;:::i;:::-;17107:1;65946:182::o:0;56494:177::-;56624:39;56641:4;56647:2;56651:7;56624:39;;;;;;;;;;;;:16;:39::i;66957:677::-;67017:16;67051:23;67077:17;67087:6;67077:9;:17::i;:::-;67051:43;;67105:30;67152:15;67138:30;;;;;;-1:-1:-1;;;67138:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;67138:30:0;-1:-1:-1;67105:63:0;-1:-1:-1;67204:1:0;67179:22;67256:340;67281:15;67263;:33;:65;;;;;67318:10;;67300:14;:28;;67263:65;67256:340;;;67341:25;67369:23;67377:14;67369:7;:23::i;:::-;67341:51;;67432:6;-1:-1:-1;;;;;67411:27:0;:17;-1:-1:-1;;;;;67411:27:0;;67407:151;;;67492:14;67459:13;67473:15;67459:30;;;;;;-1:-1:-1;;;67459:30:0;;;;;;;;;;;;;;;;;;:47;67525:17;;;;:::i;:::-;;;;67407:151;67568:16;;;;:::i;:::-;;;;67256:340;;;;-1:-1:-1;67613:13:0;;66957:677;-1:-1:-1;;;;66957:677:0:o;50362:187::-;50429:7;50465:13;:11;:13::i;:::-;50457:5;:21;50449:69;;;;-1:-1:-1;;;50449:69:0;;;;;;;:::i;:::-;-1:-1:-1;50536:5:0;50362:187::o;68583:132::-;17047:12;:10;:12::i;:::-;-1:-1:-1;;;;;17036:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17036:23:0;;17028:68;;;;-1:-1:-1;;;17028:68:0;;;;;;;:::i;:::-;68671:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;65744:28::-:0;;;;;;;;;:::o;65713:26::-;;;;;;:::o;53623:124::-;53687:7;53714:20;53726:7;53714:11;:20::i;:::-;:25;;53623:124;-1:-1:-1;;53623:124:0:o;52364:221::-;52428:7;-1:-1:-1;;;;;52456:19:0;;52448:75;;;;-1:-1:-1;;;52448:75:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;52549:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;52549:27:0;;52364:221::o;17467:148::-;17047:12;:10;:12::i;:::-;-1:-1:-1;;;;;17036:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17036:23:0;;17028:68;;;;-1:-1:-1;;;17028:68:0;;;;;;;:::i;:::-;17558:6:::1;::::0;17537:40:::1;::::0;17574:1:::1;::::0;-1:-1:-1;;;;;17558:6:0::1;::::0;17537:40:::1;::::0;17574:1;;17537:40:::1;17588:6;:19:::0;;-1:-1:-1;;;;;;17588:19:0::1;::::0;;17467:148::o;68723:100::-;17047:12;:10;:12::i;:::-;-1:-1:-1;;;;;17036:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17036:23:0;;17028:68;;;;-1:-1:-1;;;17028:68:0;;;;;;;:::i;:::-;68795:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;68265:90::-:0;17047:12;:10;:12::i;:::-;-1:-1:-1;;;;;17036:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17036:23:0;;17028:68;;;;-1:-1:-1;;;17028:68:0;;;;;;;:::i;:::-;68329:8:::1;:20:::0;68265:90::o;16816:87::-;16889:6;;-1:-1:-1;;;;;16889:6:0;16816:87;:::o;53983:104::-;54039:13;54072:7;54065:14;;;;;:::i;65509:35::-;;;;:::o;66148:801::-;66220:5;;66245:6;;;;66244:7;66236:43;;;;-1:-1:-1;;;66236:43:0;;;;;;;:::i;:::-;66306:1;66298:5;:9;66290:68;;;;-1:-1:-1;;;66290:68:0;;;;;;;:::i;:::-;66387:7;:5;:7::i;:::-;-1:-1:-1;;;;;66373:21:0;:10;-1:-1:-1;;;;;66373:21:0;;66369:463;;66411:11;66451:13;;66467:1;66451:17;;;;:::i;:::-;66443:5;66427:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:41;66426:117;;;;-1:-1:-1;66532:10:0;;66509;66491:29;;;;:17;:29;;;;;;:37;;66523:5;;66491:37;:::i;:::-;:51;;66426:117;66411:133;;66565:6;66561:112;;;66637:10;66599:1;66619:29;;;:17;:29;;;;;:38;;66599:1;;-1:-1:-1;66652:5:0;;66599:1;;66619:38;;66652:5;;66619:38;:::i;:::-;;;;-1:-1:-1;;66561:112:0;66710:12;66718:4;66710:5;:12;:::i;:::-;66697:9;:25;;66689:67;;;;-1:-1:-1;;;66689:67:0;;;;;;;:::i;:::-;66788:8;;66779:5;:17;;66771:49;;;;-1:-1:-1;;;66771:49:0;;;;;;;:::i;:::-;66369:463;;66877:10;;66868:5;66852:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:35;;66844:56;;;;-1:-1:-1;;;66844:56:0;;;;;;;:::i;:::-;66913:28;66923:10;66935:5;66913:9;:28::i;55671:288::-;55778:12;:10;:12::i;:::-;-1:-1:-1;;;;;55766:24:0;:8;-1:-1:-1;;;;;55766:24:0;;;55758:63;;;;-1:-1:-1;;;55758:63:0;;;;;;;:::i;:::-;55879:8;55834:18;:32;55853:12;:10;:12::i;:::-;-1:-1:-1;;;;;55834:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;55834:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;55834:53:0;;;;;;;;;;;55918:12;:10;:12::i;:::-;-1:-1:-1;;;;;55903:48:0;;55942:8;55903:48;;;;;;:::i;:::-;;;;;;;;55671:288;;:::o;65843:95::-;17047:12;:10;:12::i;:::-;-1:-1:-1;;;;;17036:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17036:23:0;;17028:68;;;;-1:-1:-1;;;17028:68:0;;;;;;;:::i;:::-;65913:5:::1;:17:::0;65843:95::o;56742:355::-;56901:28;56911:4;56917:2;56921:7;56901:9;:28::i;:::-;56962:48;56985:4;56991:2;56995:7;57004:5;56962:22;:48::i;:::-;56940:149;;;;-1:-1:-1;;;56940:149:0;;;;;;;:::i;:::-;56742:355;;;;:::o;68467:110::-;17047:12;:10;:12::i;:::-;-1:-1:-1;;;;;17036:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17036:23:0;;17028:68;;;;-1:-1:-1;;;17028:68:0;;;;;;;:::i;:::-;68541:13:::1;:30:::0;68467:110::o;65586:30::-;;;;:::o;67642:445::-;67716:13;67749:17;67757:8;67749:7;:17::i;:::-;67741:90;;;;-1:-1:-1;;;67741:90:0;;;;;;;:::i;:::-;67842:8;;;;;;;67838:50;;67869:17;67862:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67838:50;67896:28;67927:10;:8;:10::i;:::-;67896:41;;67982:1;67957:14;67951:28;:32;:130;;;;;;;;;;;;;;;;;68019:14;68035:19;:8;:17;:19::i;:::-;68056:9;68002:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;67951:130;67944:137;67642:445;-1:-1:-1;;;67642:445:0:o;68176:81::-;17047:12;:10;:12::i;:::-;-1:-1:-1;;;;;17036:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17036:23:0;;17028:68;;;;-1:-1:-1;;;17028:68:0;;;;;;;:::i;:::-;68234:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;68234:17:0;;::::1;::::0;;;::::1;::::0;;68176:81::o;65669:32::-;;;;:::o;56030:164::-;-1:-1:-1;;;;;56151:25:0;;;56127:4;56151:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;56030:164::o;69049:259::-;17047:12;:10;:12::i;:::-;-1:-1:-1;;;;;17036:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17036:23:0;;17028:68;;;;-1:-1:-1;;;17028:68:0;;;;;;;:::i;:::-;69132:1:::1;69121:8;:12;69113:57;;;;-1:-1:-1::0;;;69113:57:0::1;;;;;;;:::i;:::-;69213:10;;69201:8;69185:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;69177:87;;;;-1:-1:-1::0;;;69177:87:0::1;;;;;;;:::i;:::-;69271:31;69281:10;69293:8;69271:9;:31::i;17770:244::-:0;17047:12;:10;:12::i;:::-;-1:-1:-1;;;;;17036:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17036:23:0;;17028:68;;;;-1:-1:-1;;;17028:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17859:22:0;::::1;17851:73;;;;-1:-1:-1::0;;;17851:73:0::1;;;;;;;:::i;:::-;17961:6;::::0;17940:38:::1;::::0;-1:-1:-1;;;;;17940:38:0;;::::1;::::0;17961:6:::1;::::0;17940:38:::1;::::0;17961:6:::1;::::0;17940:38:::1;17989:6;:17:::0;;-1:-1:-1;;;;;;17989:17:0::1;-1:-1:-1::0;;;;;17989:17:0;;;::::1;::::0;;;::::1;::::0;;17770:244::o;65551:28::-;;;;:::o;25090:157::-;-1:-1:-1;;;;;;25199:40:0;;-1:-1:-1;;;25199:40:0;25090:157;;;:::o;57352:111::-;57409:4;57443:12;-1:-1:-1;57433:22:0;57352:111::o;11842:98::-;11922:10;11842:98;:::o;62272:196::-;62387:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;62387:29:0;-1:-1:-1;;;;;62387:29:0;;;;;;;;;62432:28;;62387:24;;62432:28;;;;;;;62272:196;;;:::o;60152:2002::-;60267:35;60305:20;60317:7;60305:11;:20::i;:::-;60267:58;;60338:22;60380:13;:18;;;-1:-1:-1;;;;;60364:34:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;60364:34:0;;:87;;;;60439:12;:10;:12::i;:::-;-1:-1:-1;;;;;60415:36:0;:20;60427:7;60415:11;:20::i;:::-;-1:-1:-1;;;;;60415:36:0;;60364:87;:154;;;-1:-1:-1;60485:18:0;;60468:50;;60505:12;:10;:12::i;60468:50::-;60338:181;;60540:17;60532:80;;;;-1:-1:-1;;;60532:80:0;;;;;;;:::i;:::-;60655:4;-1:-1:-1;;;;;60633:26:0;:13;:18;;;-1:-1:-1;;;;;60633:26:0;;60625:77;;;;-1:-1:-1;;;60625:77:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;60721:16:0;;60713:66;;;;-1:-1:-1;;;60713:66:0;;;;;;;:::i;:::-;60792:43;60814:4;60820:2;60824:7;60833:1;60792:21;:43::i;:::-;60900:49;60917:1;60921:7;60930:13;:18;;;60900:8;:49::i;:::-;-1:-1:-1;;;;;61245:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;61245:31:0;;;-1:-1:-1;;;;;61245:31:0;;;-1:-1:-1;;61245:31:0;;;;;;;61291:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;61291:29:0;;;;;;;;;;;;;61337:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;61337:30:0;;;;-1:-1:-1;;;;61382:61:0;-1:-1:-1;;;61427:15:0;61382:61;;;;;;61717:11;;;61747:24;;;;;:29;61717:11;;61747:29;61743:295;;61815:20;61823:11;61815:7;:20::i;:::-;61811:212;;;61892:18;;;61860:24;;;:11;:24;;;;;;;;:50;;61975:28;;;;61933:70;;-1:-1:-1;;;61933:70:0;-1:-1:-1;;;;;;;;;61860:50:0;;;-1:-1:-1;;;;;;61860:50:0;;;;;;;61933:70;;;;;;;61811:212;60152:2002;62085:7;62081:2;-1:-1:-1;;;;;62066:27:0;62075:4;-1:-1:-1;;;;;62066:27:0;;;;;;;;;;;62104:42;62125:4;62131:2;62135:7;62144:1;62104:20;:42::i;:::-;60152:2002;;;;;:::o;53024:537::-;53085:21;;:::i;:::-;53127:16;53135:7;53127;:16::i;:::-;53119:71;;;;-1:-1:-1;;;53119:71:0;;;;;;;:::i;:::-;53248:7;53228:245;53295:31;53329:17;;;:11;:17;;;;;;;;;53295:51;;;;;;;;;-1:-1:-1;;;;;53295:51:0;;;;;-1:-1:-1;;;53295:51:0;;;;;;;;;;;;53369:28;53365:93;;53429:9;-1:-1:-1;53422:16:0;;-1:-1:-1;53422:16:0;53365:93;-1:-1:-1;;;53268:6:0;53228:245;;57471:104;57540:27;57550:2;57554:8;57540:27;;;;;;;;;;;;:9;:27::i;63033:804::-;63188:4;63209:15;:2;-1:-1:-1;;;;;63209:13:0;;:15::i;:::-;63205:625;;;63261:2;-1:-1:-1;;;;;63245:36:0;;63282:12;:10;:12::i;:::-;63296:4;63302:7;63311:5;63245:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63245:72:0;;;;;;;;-1:-1:-1;;63245:72:0;;;;;;;;;;;;:::i;:::-;;;63241:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63491:13:0;;63487:273;;63534:61;;-1:-1:-1;;;63534:61:0;;;;;;;:::i;63487:273::-;63710:6;63704:13;63695:6;63691:2;63687:15;63680:38;63241:534;-1:-1:-1;;;;;;63368:55:0;-1:-1:-1;;;63368:55:0;;-1:-1:-1;63361:62:0;;63205:625;-1:-1:-1;63814:4:0;63205:625;63033:804;;;;;;:::o;68937:104::-;68997:13;69026:9;69019:16;;;;;:::i;12525:723::-;12581:13;12802:10;12798:53;;-1:-1:-1;12829:10:0;;;;;;;;;;;;-1:-1:-1;;;12829:10:0;;;;;;12798:53;12876:5;12861:12;12917:78;12924:9;;12917:78;;12950:8;;;;:::i;:::-;;-1:-1:-1;12973:10:0;;-1:-1:-1;12981:2:0;12973:10;;:::i;:::-;;;12917:78;;;13005:19;13037:6;13027:17;;;;;;-1:-1:-1;;;13027:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13027:17:0;;13005:39;;13055:154;13062:10;;13055:154;;13089:11;13099:1;13089:11;;:::i;:::-;;-1:-1:-1;13158:10:0;13166:2;13158:5;:10;:::i;:::-;13145:24;;:2;:24;:::i;:::-;13132:39;;13115:6;13122;13115:14;;;;;;-1:-1:-1;;;13115:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;13115:56:0;;;;;;;;-1:-1:-1;13186:11:0;13195:2;13186:11;;:::i;:::-;;;13055:154;;57938:163;58061:32;58067:2;58071:8;58081:5;58088:4;58061:5;:32::i;1223:326::-;-1:-1:-1;;;;;1518:19:0;;:23;;;1223:326::o;58360:1538::-;58499:20;58522:12;-1:-1:-1;;;;;58553:16:0;;58545:62;;;;-1:-1:-1;;;58545:62:0;;;;;;;:::i;:::-;58626:13;58618:66;;;;-1:-1:-1;;;58618:66:0;;;;;;;:::i;:::-;58697:61;58727:1;58731:2;58735:12;58749:8;58697:21;:61::i;:::-;-1:-1:-1;;;;;59036:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;59036:45:0;;-1:-1:-1;;;;;59036:45:0;;;;;;;;59096:50;;;-1:-1:-1;;;59096:50:0;;;;;;;;;;;;;;;59163:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;59163:35:0;;;;-1:-1:-1;;;;59213:66:0;-1:-1:-1;;;59263:15:0;59213:66;;;;;;;59163:25;;59348:415;59368:8;59364:1;:12;59348:415;;;59407:38;;59432:12;;-1:-1:-1;;;;;59407:38:0;;;59424:1;;59407:38;;59424:1;;59407:38;59468:4;59464:249;;;59531:59;59562:1;59566:2;59570:12;59584:5;59531:22;:59::i;:::-;59497:196;;;;-1:-1:-1;;;59497:196:0;;;;;;;:::i;:::-;59733:14;;;;;59378:3;59348:415;;;-1:-1:-1;59779:12:0;:27;;;59830:60;;59863:2;59867:12;59881:8;59830:20;:60::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:633:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;232:2;226:9;200:2;286:15;;-1:-1:-1;;282:24:1;;;308:2;278:33;274:42;262:55;;;332:18;;;352:22;;;329:46;326:2;;;378:18;;:::i;:::-;418:10;414:2;407:22;447:6;438:15;;477:6;469;462:22;517:3;508:6;503:3;499:16;496:25;493:2;;;534:1;531;524:12;493:2;584:6;579:3;572:4;564:6;560:17;547:44;639:1;632:4;623:6;615;611:19;607:30;600:41;;;;90:557;;;;;:::o;652:175::-;722:20;;-1:-1:-1;;;;;771:31:1;;761:42;;751:2;;817:1;814;807:12;832:162;899:20;;955:13;;948:21;938:32;;928:2;;984:1;981;974:12;999:198;;1111:2;1099:9;1090:7;1086:23;1082:32;1079:2;;;1132:6;1124;1117:22;1079:2;1160:31;1181:9;1160:31;:::i;1202:274::-;;;1331:2;1319:9;1310:7;1306:23;1302:32;1299:2;;;1352:6;1344;1337:22;1299:2;1380:31;1401:9;1380:31;:::i;:::-;1370:41;;1430:40;1466:2;1455:9;1451:18;1430:40;:::i;:::-;1420:50;;1289:187;;;;;:::o;1481:342::-;;;;1627:2;1615:9;1606:7;1602:23;1598:32;1595:2;;;1648:6;1640;1633:22;1595:2;1676:31;1697:9;1676:31;:::i;:::-;1666:41;;1726:40;1762:2;1751:9;1747:18;1726:40;:::i;:::-;1716:50;;1813:2;1802:9;1798:18;1785:32;1775:42;;1585:238;;;;;:::o;1828:702::-;;;;;2000:3;1988:9;1979:7;1975:23;1971:33;1968:2;;;2022:6;2014;2007:22;1968:2;2050:31;2071:9;2050:31;:::i;:::-;2040:41;;2100:40;2136:2;2125:9;2121:18;2100:40;:::i;:::-;2090:50;;2187:2;2176:9;2172:18;2159:32;2149:42;;2242:2;2231:9;2227:18;2214:32;2269:18;2261:6;2258:30;2255:2;;;2306:6;2298;2291:22;2255:2;2334:22;;2387:4;2379:13;;2375:27;-1:-1:-1;2365:2:1;;2421:6;2413;2406:22;2365:2;2449:75;2516:7;2511:2;2498:16;2493:2;2489;2485:11;2449:75;:::i;:::-;2439:85;;;1958:572;;;;;;;:::o;2535:268::-;;;2661:2;2649:9;2640:7;2636:23;2632:32;2629:2;;;2682:6;2674;2667:22;2629:2;2710:31;2731:9;2710:31;:::i;:::-;2700:41;;2760:37;2793:2;2782:9;2778:18;2760:37;:::i;2808:266::-;;;2937:2;2925:9;2916:7;2912:23;2908:32;2905:2;;;2958:6;2950;2943:22;2905:2;2986:31;3007:9;2986:31;:::i;:::-;2976:41;3064:2;3049:18;;;;3036:32;;-1:-1:-1;;;2895:179:1:o;3079:192::-;;3188:2;3176:9;3167:7;3163:23;3159:32;3156:2;;;3209:6;3201;3194:22;3156:2;3237:28;3255:9;3237:28;:::i;3276:257::-;;3387:2;3375:9;3366:7;3362:23;3358:32;3355:2;;;3408:6;3400;3393:22;3355:2;3452:9;3439:23;3471:32;3497:5;3471:32;:::i;3538:261::-;;3660:2;3648:9;3639:7;3635:23;3631:32;3628:2;;;3681:6;3673;3666:22;3628:2;3718:9;3712:16;3737:32;3763:5;3737:32;:::i;3804:482::-;;3926:2;3914:9;3905:7;3901:23;3897:32;3894:2;;;3947:6;3939;3932:22;3894:2;3992:9;3979:23;4025:18;4017:6;4014:30;4011:2;;;4062:6;4054;4047:22;4011:2;4090:22;;4143:4;4135:13;;4131:27;-1:-1:-1;4121:2:1;;4177:6;4169;4162:22;4121:2;4205:75;4272:7;4267:2;4254:16;4249:2;4245;4241:11;4205:75;:::i;4291:190::-;;4403:2;4391:9;4382:7;4378:23;4374:32;4371:2;;;4424:6;4416;4409:22;4371:2;-1:-1:-1;4452:23:1;;4361:120;-1:-1:-1;4361:120:1:o;4486:259::-;;4567:5;4561:12;4594:6;4589:3;4582:19;4610:63;4666:6;4659:4;4654:3;4650:14;4643:4;4636:5;4632:16;4610:63;:::i;:::-;4727:2;4706:15;-1:-1:-1;;4702:29:1;4693:39;;;;4734:4;4689:50;;4537:208;-1:-1:-1;;4537:208:1:o;4750:1532::-;;5012:6;5006:13;5038:4;5051:51;5095:6;5090:3;5085:2;5077:6;5073:15;5051:51;:::i;:::-;5165:13;;5124:16;;;;5187:55;5165:13;5124:16;5209:15;;;5187:55;:::i;:::-;5333:13;;5264:20;;;5304:3;;5410:1;5395:17;;5431:1;5467:18;;;;5494:2;;5572:4;5562:8;5558:19;5546:31;;5494:2;5635;5625:8;5622:16;5602:18;5599:40;5596:2;;;-1:-1:-1;;;5662:33:1;;5718:4;5715:1;5708:15;5748:4;5669:3;5736:17;5596:2;5779:18;5806:110;;;;5930:1;5925:332;;;;5772:485;;5806:110;-1:-1:-1;;5841:24:1;;5827:39;;5886:20;;;;-1:-1:-1;5806:110:1;;5925:332;5961:39;5993:6;5961:39;:::i;:::-;6022:3;6038:169;6052:8;6049:1;6046:15;6038:169;;;6134:14;;6119:13;;;6112:37;6177:16;;;;6069:10;;6038:169;;;6042:3;;6238:8;6231:5;6227:20;6220:27;;5772:485;-1:-1:-1;6273:3:1;;4982:1300;-1:-1:-1;;;;;;;;;;;4982:1300:1:o;6287:205::-;6487:3;6478:14::o;6497:203::-;-1:-1:-1;;;;;6661:32:1;;;;6643:51;;6631:2;6616:18;;6598:102::o;6705:490::-;-1:-1:-1;;;;;6974:15:1;;;6956:34;;7026:15;;7021:2;7006:18;;6999:43;7073:2;7058:18;;7051:34;;;7121:3;7116:2;7101:18;;7094:31;;;6705:490;;7142:47;;7169:19;;7161:6;7142:47;:::i;:::-;7134:55;6908:287;-1:-1:-1;;;;;;6908:287:1:o;7200:635::-;7371:2;7423:21;;;7493:13;;7396:18;;;7515:22;;;7200:635;;7371:2;7594:15;;;;7568:2;7553:18;;;7200:635;7640:169;7654:6;7651:1;7648:13;7640:169;;;7715:13;;7703:26;;7784:15;;;;7749:12;;;;7676:1;7669:9;7640:169;;;-1:-1:-1;7826:3:1;;7351:484;-1:-1:-1;;;;;;7351:484:1:o;7840:187::-;8005:14;;7998:22;7980:41;;7968:2;7953:18;;7935:92::o;8032:221::-;;8181:2;8170:9;8163:21;8201:46;8243:2;8232:9;8228:18;8220:6;8201:46;:::i;8258:398::-;8460:2;8442:21;;;8499:2;8479:18;;;8472:30;8538:34;8533:2;8518:18;;8511:62;-1:-1:-1;;;8604:2:1;8589:18;;8582:32;8646:3;8631:19;;8432:224::o;8661:410::-;8863:2;8845:21;;;8902:2;8882:18;;;8875:30;8941:34;8936:2;8921:18;;8914:62;-1:-1:-1;;;9007:2:1;8992:18;;8985:44;9061:3;9046:19;;8835:236::o;9076:402::-;9278:2;9260:21;;;9317:2;9297:18;;;9290:30;9356:34;9351:2;9336:18;;9329:62;-1:-1:-1;;;9422:2:1;9407:18;;9400:36;9468:3;9453:19;;9250:228::o;9483:406::-;9685:2;9667:21;;;9724:2;9704:18;;;9697:30;9763:34;9758:2;9743:18;;9736:62;-1:-1:-1;;;9829:2:1;9814:18;;9807:40;9879:3;9864:19;;9657:232::o;9894:399::-;10096:2;10078:21;;;10135:2;10115:18;;;10108:30;10174:34;10169:2;10154:18;;10147:62;-1:-1:-1;;;10240:2:1;10225:18;;10218:33;10283:3;10268:19;;10068:225::o;10298:401::-;10500:2;10482:21;;;10539:2;10519:18;;;10512:30;10578:34;10573:2;10558:18;;10551:62;-1:-1:-1;;;10644:2:1;10629:18;;10622:35;10689:3;10674:19;;10472:227::o;10704:331::-;10906:2;10888:21;;;10945:1;10925:18;;;10918:29;-1:-1:-1;;;10978:2:1;10963:18;;10956:38;11026:2;11011:18;;10878:157::o;11040:421::-;11242:2;11224:21;;;11281:2;11261:18;;;11254:30;11320:34;11315:2;11300:18;;11293:62;11391:27;11386:2;11371:18;;11364:55;11451:3;11436:19;;11214:247::o;11466:407::-;11668:2;11650:21;;;11707:2;11687:18;;;11680:30;11746:34;11741:2;11726:18;;11719:62;-1:-1:-1;;;11812:2:1;11797:18;;11790:41;11863:3;11848:19;;11640:233::o;11878:347::-;12080:2;12062:21;;;12119:2;12099:18;;;12092:30;12158:25;12153:2;12138:18;;12131:53;12216:2;12201:18;;12052:173::o;12230:402::-;12432:2;12414:21;;;12471:2;12451:18;;;12444:30;12510:34;12505:2;12490:18;;12483:62;-1:-1:-1;;;12576:2:1;12561:18;;12554:36;12622:3;12607:19;;12404:228::o;12637:356::-;12839:2;12821:21;;;12858:18;;;12851:30;12917:34;12912:2;12897:18;;12890:62;12984:2;12969:18;;12811:182::o;12998:347::-;13200:2;13182:21;;;13239:2;13219:18;;;13212:30;13278:25;13273:2;13258:18;;13251:53;13336:2;13321:18;;13172:173::o;13350:411::-;13552:2;13534:21;;;13591:2;13571:18;;;13564:30;13630:34;13625:2;13610:18;;13603:62;-1:-1:-1;;;13696:2:1;13681:18;;13674:45;13751:3;13736:19;;13524:237::o;13766:350::-;13968:2;13950:21;;;14007:2;13987:18;;;13980:30;14046:28;14041:2;14026:18;;14019:56;14107:2;14092:18;;13940:176::o;14121:414::-;14323:2;14305:21;;;14362:2;14342:18;;;14335:30;14401:34;14396:2;14381:18;;14374:62;-1:-1:-1;;;14467:2:1;14452:18;;14445:48;14525:3;14510:19;;14295:240::o;14540:353::-;14742:2;14724:21;;;14781:2;14761:18;;;14754:30;14820:31;14815:2;14800:18;;14793:59;14884:2;14869:18;;14714:179::o;14898:398::-;15100:2;15082:21;;;15139:2;15119:18;;;15112:30;15178:34;15173:2;15158:18;;15151:62;-1:-1:-1;;;15244:2:1;15229:18;;15222:32;15286:3;15271:19;;15072:224::o;15301:340::-;15503:2;15485:21;;;15542:2;15522:18;;;15515:30;-1:-1:-1;;;15576:2:1;15561:18;;15554:46;15632:2;15617:18;;15475:166::o;15646:415::-;15848:2;15830:21;;;15887:2;15867:18;;;15860:30;15926:34;15921:2;15906:18;;15899:62;-1:-1:-1;;;15992:2:1;15977:18;;15970:49;16051:3;16036:19;;15820:241::o;16066:343::-;16268:2;16250:21;;;16307:2;16287:18;;;16280:30;-1:-1:-1;;;16341:2:1;16326:18;;16319:49;16400:2;16385:18;;16240:169::o;16414:397::-;16616:2;16598:21;;;16655:2;16635:18;;;16628:30;16694:34;16689:2;16674:18;;16667:62;-1:-1:-1;;;16760:2:1;16745:18;;16738:31;16801:3;16786:19;;16588:223::o;16816:404::-;17018:2;17000:21;;;17057:2;17037:18;;;17030:30;17096:34;17091:2;17076:18;;17069:62;-1:-1:-1;;;17162:2:1;17147:18;;17140:38;17210:3;17195:19;;16990:230::o;17225:343::-;17427:2;17409:21;;;17466:2;17446:18;;;17439:30;-1:-1:-1;;;17500:2:1;17485:18;;17478:49;17559:2;17544:18;;17399:169::o;17573:410::-;17775:2;17757:21;;;17814:2;17794:18;;;17787:30;17853:34;17848:2;17833:18;;17826:62;-1:-1:-1;;;17919:2:1;17904:18;;17897:44;17973:3;17958:19;;17747:236::o;18404:409::-;18606:2;18588:21;;;18645:2;18625:18;;;18618:30;18684:34;18679:2;18664:18;;18657:62;-1:-1:-1;;;18750:2:1;18735:18;;18728:43;18803:3;18788:19;;18578:235::o;18818:177::-;18964:25;;;18952:2;18937:18;;18919:76::o;19000:129::-;;19068:17;;;19118:4;19102:21;;;19058:71::o;19134:128::-;;19205:1;19201:6;19198:1;19195:13;19192:2;;;19211:18;;:::i;:::-;-1:-1:-1;19247:9:1;;19182:80::o;19267:120::-;;19333:1;19323:2;;19338:18;;:::i;:::-;-1:-1:-1;19372:9:1;;19313:74::o;19392:168::-;;19498:1;19494;19490:6;19486:14;19483:1;19480:21;19475:1;19468:9;19461:17;19457:45;19454:2;;;19505:18;;:::i;:::-;-1:-1:-1;19545:9:1;;19444:116::o;19565:125::-;;19633:1;19630;19627:8;19624:2;;;19638:18;;:::i;:::-;-1:-1:-1;19675:9:1;;19614:76::o;19695:258::-;19767:1;19777:113;19791:6;19788:1;19785:13;19777:113;;;19867:11;;;19861:18;19848:11;;;19841:39;19813:2;19806:10;19777:113;;;19908:6;19905:1;19902:13;19899:2;;;-1:-1:-1;;19943:1:1;19925:16;;19918:27;19748:205::o;19958:380::-;20043:1;20033:12;;20090:1;20080:12;;;20101:2;;20155:4;20147:6;20143:17;20133:27;;20101:2;20208;20200:6;20197:14;20177:18;20174:38;20171:2;;;20254:10;20249:3;20245:20;20242:1;20235:31;20289:4;20286:1;20279:15;20317:4;20314:1;20307:15;20171:2;;20013:325;;;:::o;20343:135::-;;-1:-1:-1;;20403:17:1;;20400:2;;;20423:18;;:::i;:::-;-1:-1:-1;20470:1:1;20459:13;;20390:88::o;20483:112::-;;20541:1;20531:2;;20546:18;;:::i;:::-;-1:-1:-1;20580:9:1;;20521:74::o;20600:127::-;20661:10;20656:3;20652:20;20649:1;20642:31;20692:4;20689:1;20682:15;20716:4;20713:1;20706:15;20732:127;20793:10;20788:3;20784:20;20781:1;20774:31;20824:4;20821:1;20814:15;20848:4;20845:1;20838:15;20864:127;20925:10;20920:3;20916:20;20913:1;20906:31;20956:4;20953:1;20946:15;20980:4;20977:1;20970:15;20996:133;-1:-1:-1;;;;;;21072:32:1;;21062:43;;21052:2;;21119:1;21116;21109:12

Swarm Source

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