ETH Price: $3,228.74 (+1.81%)

Token

Psylicys (LTA)
 

Overview

Max Total Supply

13 LTA

Holders

4

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
pipedreamin.eth
Balance
1 LTA
0x968137a1243e99A6D70afb8255F58191b26360a5
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:
Psylicys

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-15
*/

//SPDX-License-Identifier: MIT
// 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: @openzeppelin/contracts/utils/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/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (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/token/ERC721/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: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/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: @openzeppelin/contracts/token/ERC721/IERC721.sol


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

// File: @openzeppelin/contracts/token/ERC721/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 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())) : "";
    }

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = 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"
        );

        _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: @openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;


/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token");

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

// File: contracts/collectionOne.sol


pragma solidity ^0.8.10;






contract Psylicys is ERC721, ERC721URIStorage, ERC721Burnable, Ownable {
    using Counters for Counters.Counter;
    using Strings for uint256;
    Counters.Counter private supply;

    constructor() ERC721("Psylicys", "LTA") {}

    function totalSupply() external view returns (uint256) {
        return supply.current();
    }

    function mint(string memory _tokenUri) external onlyOwner {
        uint256 tokenId = supply.current();
        supply.increment();
        _safeMint(msg.sender, tokenId);
        _setTokenURI(tokenId, _tokenUri);
    }

    function updateTokenUri(string memory _tokenUri, uint256 _tokenId) external onlyOwner {
         _setTokenURI(_tokenId, _tokenUri);
    }

    function _burn(uint256 _tokenId) internal override(ERC721, ERC721URIStorage) {
        super._burn(_tokenId);
    }

    function tokenURI(uint256 _tokenId) 
        public
        view
        override(ERC721, ERC721URIStorage)
        returns (string memory)
    {
        return super.tokenURI(_tokenId);
    }
}

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":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenUri","type":"string"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenUri","type":"string"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"updateTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060408051808201825260088152675073796c6963797360c01b6020808301918252835180850190945260038452624c544160e81b9084015281519192916200005d91600091620000ec565b50805162000073906001906020840190620000ec565b505050620000906200008a6200009660201b60201c565b6200009a565b620001cf565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000fa9062000192565b90600052602060002090601f0160209004810192826200011e576000855562000169565b82601f106200013957805160ff191683800117855562000169565b8280016001018555821562000169579182015b82811115620001695782518255916020019190600101906200014c565b50620001779291506200017b565b5090565b5b808211156200017757600081556001016200017c565b600181811c90821680620001a757607f821691505b60208210811415620001c957634e487b7160e01b600052602260045260246000fd5b50919050565b611b5180620001df6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063b88d4fde11610071578063b88d4fde1461026a578063c87b56dd1461027d578063d85d3d2714610290578063e985e9c5146102a3578063f2fde38b146102df57600080fd5b8063715018a6146102235780638da5cb5b1461022b5780638fc224db1461023c57806395d89b411461024f578063a22cb4651461025757600080fd5b806323b872dd116100f457806323b872dd146101c457806342842e0e146101d757806342966c68146101ea5780636352211e146101fd57806370a082311461021057600080fd5b806301ffc9a71461013157806306fdde0314610159578063081812fc1461016e578063095ea7b31461019957806318160ddd146101ae575b600080fd5b61014461013f36600461157c565b6102f2565b60405190151581526020015b60405180910390f35b610161610344565b60405161015091906115f1565b61018161017c366004611604565b6103d6565b6040516001600160a01b039091168152602001610150565b6101ac6101a7366004611639565b610463565b005b6101b6610579565b604051908152602001610150565b6101ac6101d2366004611663565b610589565b6101ac6101e5366004611663565b6105bb565b6101ac6101f8366004611604565b6105d6565b61018161020b366004611604565b610650565b6101b661021e36600461169f565b6106c7565b6101ac61074e565b6007546001600160a01b0316610181565b6101ac61024a366004611766565b610784565b6101616107bc565b6101ac6102653660046117ab565b6107cb565b6101ac6102783660046117e7565b6107d6565b61016161028b366004611604565b61080e565b6101ac61029e366004611863565b610819565b6101446102b1366004611898565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101ac6102ed36600461169f565b610868565b60006001600160e01b031982166380ac58cd60e01b148061032357506001600160e01b03198216635b5e139f60e01b145b8061033e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610353906118cb565b80601f016020809104026020016040519081016040528092919081815260200182805461037f906118cb565b80156103cc5780601f106103a1576101008083540402835291602001916103cc565b820191906000526020600020905b8154815290600101906020018083116103af57829003601f168201915b5050505050905090565b60006103e182610900565b6104475760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061046e82610650565b9050806001600160a01b0316836001600160a01b031614156104dc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161043e565b336001600160a01b03821614806104f857506104f881336102b1565b61056a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161043e565b610574838361091d565b505050565b600061058460085490565b905090565b610594335b8261098b565b6105b05760405162461bcd60e51b815260040161043e90611906565b610574838383610a75565b610574838383604051806020016040528060008152506107d6565b6105df3361058e565b6106445760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b606482015260840161043e565b61064d81610c11565b50565b6000818152600260205260408120546001600160a01b03168061033e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161043e565b60006001600160a01b0382166107325760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161043e565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b031633146107785760405162461bcd60e51b815260040161043e90611957565b6107826000610c1a565b565b6007546001600160a01b031633146107ae5760405162461bcd60e51b815260040161043e90611957565b6107b88183610c6c565b5050565b606060018054610353906118cb565b6107b8338383610cf7565b6107e0338361098b565b6107fc5760405162461bcd60e51b815260040161043e90611906565b61080884848484610dc6565b50505050565b606061033e82610df9565b6007546001600160a01b031633146108435760405162461bcd60e51b815260040161043e90611957565b600061084e60085490565b905061085e600880546001019055565b6107ae3382610f68565b6007546001600160a01b031633146108925760405162461bcd60e51b815260040161043e90611957565b6001600160a01b0381166108f75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161043e565b61064d81610c1a565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061095282610650565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061099682610900565b6109f75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161043e565b6000610a0283610650565b9050806001600160a01b0316846001600160a01b03161480610a3d5750836001600160a01b0316610a32846103d6565b6001600160a01b0316145b80610a6d57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610a8882610650565b6001600160a01b031614610aec5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161043e565b6001600160a01b038216610b4e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161043e565b610b5960008261091d565b6001600160a01b0383166000908152600360205260408120805460019290610b829084906119a2565b90915550506001600160a01b0382166000908152600360205260408120805460019290610bb09084906119b9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61064d81610f82565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c7582610900565b610cd85760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b606482015260840161043e565b6000828152600660209081526040909120825161057492840190611497565b816001600160a01b0316836001600160a01b03161415610d595760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161043e565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610dd1848484610a75565b610ddd84848484610fc2565b6108085760405162461bcd60e51b815260040161043e906119d1565b6060610e0482610900565b610e6a5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b606482015260840161043e565b60008281526006602052604081208054610e83906118cb565b80601f0160208091040260200160405190810160405280929190818152602001828054610eaf906118cb565b8015610efc5780601f10610ed157610100808354040283529160200191610efc565b820191906000526020600020905b815481529060010190602001808311610edf57829003601f168201915b505050505090506000610f1a60408051602081019091526000815290565b9050805160001415610f2d575092915050565b815115610f5f578082604051602001610f47929190611a23565b60405160208183030381529060405292505050919050565b610a6d846110c0565b6107b8828260405180602001604052806000815250611198565b610f8b816111cb565b60008181526006602052604090208054610fa4906118cb565b15905061064d57600081815260066020526040812061064d9161151b565b60006001600160a01b0384163b156110b557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611006903390899088908890600401611a52565b6020604051808303816000875af1925050508015611041575060408051601f3d908101601f1916820190925261103e91810190611a8f565b60015b61109b573d80801561106f576040519150601f19603f3d011682016040523d82523d6000602084013e611074565b606091505b5080516110935760405162461bcd60e51b815260040161043e906119d1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610a6d565b506001949350505050565b60606110cb82610900565b61112f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161043e565b600061114660408051602081019091526000815290565b905060008151116111665760405180602001604052806000815250611191565b8061117084611266565b604051602001611181929190611a23565b6040516020818303038152906040525b9392505050565b6111a28383611364565b6111af6000848484610fc2565b6105745760405162461bcd60e51b815260040161043e906119d1565b60006111d682610650565b90506111e360008361091d565b6001600160a01b038116600090815260036020526040812080546001929061120c9084906119a2565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60608161128a5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112b4578061129e81611aac565b91506112ad9050600a83611add565b915061128e565b60008167ffffffffffffffff8111156112cf576112cf6116ba565b6040519080825280601f01601f1916602001820160405280156112f9576020820181803683370190505b5090505b8415610a6d5761130e6001836119a2565b915061131b600a86611af1565b6113269060306119b9565b60f81b81838151811061133b5761133b611b05565b60200101906001600160f81b031916908160001a90535061135d600a86611add565b94506112fd565b6001600160a01b0382166113ba5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161043e565b6113c381610900565b156114105760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161043e565b6001600160a01b03821660009081526003602052604081208054600192906114399084906119b9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546114a3906118cb565b90600052602060002090601f0160209004810192826114c5576000855561150b565b82601f106114de57805160ff191683800117855561150b565b8280016001018555821561150b579182015b8281111561150b5782518255916020019190600101906114f0565b50611517929150611551565b5090565b508054611527906118cb565b6000825580601f10611537575050565b601f01602090049060005260206000209081019061064d91905b5b808211156115175760008155600101611552565b6001600160e01b03198116811461064d57600080fd5b60006020828403121561158e57600080fd5b813561119181611566565b60005b838110156115b457818101518382015260200161159c565b838111156108085750506000910152565b600081518084526115dd816020860160208601611599565b601f01601f19169290920160200192915050565b60208152600061119160208301846115c5565b60006020828403121561161657600080fd5b5035919050565b80356001600160a01b038116811461163457600080fd5b919050565b6000806040838503121561164c57600080fd5b6116558361161d565b946020939093013593505050565b60008060006060848603121561167857600080fd5b6116818461161d565b925061168f6020850161161d565b9150604084013590509250925092565b6000602082840312156116b157600080fd5b6111918261161d565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156116eb576116eb6116ba565b604051601f8501601f19908116603f01168101908282118183101715611713576117136116ba565b8160405280935085815286868601111561172c57600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261175757600080fd5b611191838335602085016116d0565b6000806040838503121561177957600080fd5b823567ffffffffffffffff81111561179057600080fd5b61179c85828601611746565b95602094909401359450505050565b600080604083850312156117be57600080fd5b6117c78361161d565b9150602083013580151581146117dc57600080fd5b809150509250929050565b600080600080608085870312156117fd57600080fd5b6118068561161d565b93506118146020860161161d565b925060408501359150606085013567ffffffffffffffff81111561183757600080fd5b8501601f8101871361184857600080fd5b611857878235602084016116d0565b91505092959194509250565b60006020828403121561187557600080fd5b813567ffffffffffffffff81111561188c57600080fd5b610a6d84828501611746565b600080604083850312156118ab57600080fd5b6118b48361161d565b91506118c26020840161161d565b90509250929050565b600181811c908216806118df57607f821691505b6020821081141561190057634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000828210156119b4576119b461198c565b500390565b600082198211156119cc576119cc61198c565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008351611a35818460208801611599565b835190830190611a49818360208801611599565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a85908301846115c5565b9695505050505050565b600060208284031215611aa157600080fd5b815161119181611566565b6000600019821415611ac057611ac061198c565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611aec57611aec611ac7565b500490565b600082611b0057611b00611ac7565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212208b8f721a02aaefad3d43c6fb6728823ba753bf9127610141c5a7f0498e593c9664736f6c634300080a0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063b88d4fde11610071578063b88d4fde1461026a578063c87b56dd1461027d578063d85d3d2714610290578063e985e9c5146102a3578063f2fde38b146102df57600080fd5b8063715018a6146102235780638da5cb5b1461022b5780638fc224db1461023c57806395d89b411461024f578063a22cb4651461025757600080fd5b806323b872dd116100f457806323b872dd146101c457806342842e0e146101d757806342966c68146101ea5780636352211e146101fd57806370a082311461021057600080fd5b806301ffc9a71461013157806306fdde0314610159578063081812fc1461016e578063095ea7b31461019957806318160ddd146101ae575b600080fd5b61014461013f36600461157c565b6102f2565b60405190151581526020015b60405180910390f35b610161610344565b60405161015091906115f1565b61018161017c366004611604565b6103d6565b6040516001600160a01b039091168152602001610150565b6101ac6101a7366004611639565b610463565b005b6101b6610579565b604051908152602001610150565b6101ac6101d2366004611663565b610589565b6101ac6101e5366004611663565b6105bb565b6101ac6101f8366004611604565b6105d6565b61018161020b366004611604565b610650565b6101b661021e36600461169f565b6106c7565b6101ac61074e565b6007546001600160a01b0316610181565b6101ac61024a366004611766565b610784565b6101616107bc565b6101ac6102653660046117ab565b6107cb565b6101ac6102783660046117e7565b6107d6565b61016161028b366004611604565b61080e565b6101ac61029e366004611863565b610819565b6101446102b1366004611898565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101ac6102ed36600461169f565b610868565b60006001600160e01b031982166380ac58cd60e01b148061032357506001600160e01b03198216635b5e139f60e01b145b8061033e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610353906118cb565b80601f016020809104026020016040519081016040528092919081815260200182805461037f906118cb565b80156103cc5780601f106103a1576101008083540402835291602001916103cc565b820191906000526020600020905b8154815290600101906020018083116103af57829003601f168201915b5050505050905090565b60006103e182610900565b6104475760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061046e82610650565b9050806001600160a01b0316836001600160a01b031614156104dc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161043e565b336001600160a01b03821614806104f857506104f881336102b1565b61056a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161043e565b610574838361091d565b505050565b600061058460085490565b905090565b610594335b8261098b565b6105b05760405162461bcd60e51b815260040161043e90611906565b610574838383610a75565b610574838383604051806020016040528060008152506107d6565b6105df3361058e565b6106445760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b606482015260840161043e565b61064d81610c11565b50565b6000818152600260205260408120546001600160a01b03168061033e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161043e565b60006001600160a01b0382166107325760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161043e565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b031633146107785760405162461bcd60e51b815260040161043e90611957565b6107826000610c1a565b565b6007546001600160a01b031633146107ae5760405162461bcd60e51b815260040161043e90611957565b6107b88183610c6c565b5050565b606060018054610353906118cb565b6107b8338383610cf7565b6107e0338361098b565b6107fc5760405162461bcd60e51b815260040161043e90611906565b61080884848484610dc6565b50505050565b606061033e82610df9565b6007546001600160a01b031633146108435760405162461bcd60e51b815260040161043e90611957565b600061084e60085490565b905061085e600880546001019055565b6107ae3382610f68565b6007546001600160a01b031633146108925760405162461bcd60e51b815260040161043e90611957565b6001600160a01b0381166108f75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161043e565b61064d81610c1a565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061095282610650565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061099682610900565b6109f75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161043e565b6000610a0283610650565b9050806001600160a01b0316846001600160a01b03161480610a3d5750836001600160a01b0316610a32846103d6565b6001600160a01b0316145b80610a6d57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610a8882610650565b6001600160a01b031614610aec5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161043e565b6001600160a01b038216610b4e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161043e565b610b5960008261091d565b6001600160a01b0383166000908152600360205260408120805460019290610b829084906119a2565b90915550506001600160a01b0382166000908152600360205260408120805460019290610bb09084906119b9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61064d81610f82565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c7582610900565b610cd85760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b606482015260840161043e565b6000828152600660209081526040909120825161057492840190611497565b816001600160a01b0316836001600160a01b03161415610d595760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161043e565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610dd1848484610a75565b610ddd84848484610fc2565b6108085760405162461bcd60e51b815260040161043e906119d1565b6060610e0482610900565b610e6a5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b606482015260840161043e565b60008281526006602052604081208054610e83906118cb565b80601f0160208091040260200160405190810160405280929190818152602001828054610eaf906118cb565b8015610efc5780601f10610ed157610100808354040283529160200191610efc565b820191906000526020600020905b815481529060010190602001808311610edf57829003601f168201915b505050505090506000610f1a60408051602081019091526000815290565b9050805160001415610f2d575092915050565b815115610f5f578082604051602001610f47929190611a23565b60405160208183030381529060405292505050919050565b610a6d846110c0565b6107b8828260405180602001604052806000815250611198565b610f8b816111cb565b60008181526006602052604090208054610fa4906118cb565b15905061064d57600081815260066020526040812061064d9161151b565b60006001600160a01b0384163b156110b557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611006903390899088908890600401611a52565b6020604051808303816000875af1925050508015611041575060408051601f3d908101601f1916820190925261103e91810190611a8f565b60015b61109b573d80801561106f576040519150601f19603f3d011682016040523d82523d6000602084013e611074565b606091505b5080516110935760405162461bcd60e51b815260040161043e906119d1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610a6d565b506001949350505050565b60606110cb82610900565b61112f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161043e565b600061114660408051602081019091526000815290565b905060008151116111665760405180602001604052806000815250611191565b8061117084611266565b604051602001611181929190611a23565b6040516020818303038152906040525b9392505050565b6111a28383611364565b6111af6000848484610fc2565b6105745760405162461bcd60e51b815260040161043e906119d1565b60006111d682610650565b90506111e360008361091d565b6001600160a01b038116600090815260036020526040812080546001929061120c9084906119a2565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60608161128a5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112b4578061129e81611aac565b91506112ad9050600a83611add565b915061128e565b60008167ffffffffffffffff8111156112cf576112cf6116ba565b6040519080825280601f01601f1916602001820160405280156112f9576020820181803683370190505b5090505b8415610a6d5761130e6001836119a2565b915061131b600a86611af1565b6113269060306119b9565b60f81b81838151811061133b5761133b611b05565b60200101906001600160f81b031916908160001a90535061135d600a86611add565b94506112fd565b6001600160a01b0382166113ba5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161043e565b6113c381610900565b156114105760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161043e565b6001600160a01b03821660009081526003602052604081208054600192906114399084906119b9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546114a3906118cb565b90600052602060002090601f0160209004810192826114c5576000855561150b565b82601f106114de57805160ff191683800117855561150b565b8280016001018555821561150b579182015b8281111561150b5782518255916020019190600101906114f0565b50611517929150611551565b5090565b508054611527906118cb565b6000825580601f10611537575050565b601f01602090049060005260206000209081019061064d91905b5b808211156115175760008155600101611552565b6001600160e01b03198116811461064d57600080fd5b60006020828403121561158e57600080fd5b813561119181611566565b60005b838110156115b457818101518382015260200161159c565b838111156108085750506000910152565b600081518084526115dd816020860160208601611599565b601f01601f19169290920160200192915050565b60208152600061119160208301846115c5565b60006020828403121561161657600080fd5b5035919050565b80356001600160a01b038116811461163457600080fd5b919050565b6000806040838503121561164c57600080fd5b6116558361161d565b946020939093013593505050565b60008060006060848603121561167857600080fd5b6116818461161d565b925061168f6020850161161d565b9150604084013590509250925092565b6000602082840312156116b157600080fd5b6111918261161d565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156116eb576116eb6116ba565b604051601f8501601f19908116603f01168101908282118183101715611713576117136116ba565b8160405280935085815286868601111561172c57600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261175757600080fd5b611191838335602085016116d0565b6000806040838503121561177957600080fd5b823567ffffffffffffffff81111561179057600080fd5b61179c85828601611746565b95602094909401359450505050565b600080604083850312156117be57600080fd5b6117c78361161d565b9150602083013580151581146117dc57600080fd5b809150509250929050565b600080600080608085870312156117fd57600080fd5b6118068561161d565b93506118146020860161161d565b925060408501359150606085013567ffffffffffffffff81111561183757600080fd5b8501601f8101871361184857600080fd5b611857878235602084016116d0565b91505092959194509250565b60006020828403121561187557600080fd5b813567ffffffffffffffff81111561188c57600080fd5b610a6d84828501611746565b600080604083850312156118ab57600080fd5b6118b48361161d565b91506118c26020840161161d565b90509250929050565b600181811c908216806118df57607f821691505b6020821081141561190057634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000828210156119b4576119b461198c565b500390565b600082198211156119cc576119cc61198c565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008351611a35818460208801611599565b835190830190611a49818360208801611599565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a85908301846115c5565b9695505050505050565b600060208284031215611aa157600080fd5b815161119181611566565b6000600019821415611ac057611ac061198c565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611aec57611aec611ac7565b500490565b600082611b0057611b00611ac7565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212208b8f721a02aaefad3d43c6fb6728823ba753bf9127610141c5a7f0498e593c9664736f6c634300080a0033

Deployed Bytecode Sourcemap

41593:1053:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25606:305;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;25606:305:0;;;;;;;;26551:100;;;:::i;:::-;;;;;;;:::i;28110:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;28110:221:0;1528:203:1;27633:411:0;;;;;;:::i;:::-;;:::i;:::-;;41835:97;;;:::i;:::-;;;2319:25:1;;;2307:2;2292:18;41835:97:0;2173:177:1;28860:339:0;;;;;;:::i;:::-;;:::i;29270:185::-;;;;;;:::i;:::-;;:::i;39256:245::-;;;;;;:::i;:::-;;:::i;26245:239::-;;;;;;:::i;:::-;;:::i;25975:208::-;;;;;;:::i;:::-;;:::i;6227:103::-;;;:::i;5576:87::-;5649:6;;-1:-1:-1;;;;;5649:6:0;5576:87;;42172:139;;;;;;:::i;:::-;;:::i;26720:104::-;;;:::i;28403:155::-;;;;;;:::i;:::-;;:::i;29526:328::-;;;;;;:::i;:::-;;:::i;42444:199::-;;;;;;:::i;:::-;;:::i;41940:224::-;;;;;;:::i;:::-;;:::i;28629:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;28750:25:0;;;28726:4;28750:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28629:164;6485:201;;;;;;:::i;:::-;;:::i;25606:305::-;25708:4;-1:-1:-1;;;;;;25745:40:0;;-1:-1:-1;;;25745:40:0;;:105;;-1:-1:-1;;;;;;;25802:48:0;;-1:-1:-1;;;25802:48:0;25745:105;:158;;;-1:-1:-1;;;;;;;;;;18469:40:0;;;25867:36;25725:178;25606:305;-1:-1:-1;;25606:305:0:o;26551:100::-;26605:13;26638:5;26631:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26551:100;:::o;28110:221::-;28186:7;28214:16;28222:7;28214;:16::i;:::-;28206:73;;;;-1:-1:-1;;;28206:73:0;;6473:2:1;28206:73:0;;;6455:21:1;6512:2;6492:18;;;6485:30;6551:34;6531:18;;;6524:62;-1:-1:-1;;;6602:18:1;;;6595:42;6654:19;;28206:73:0;;;;;;;;;-1:-1:-1;28299:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28299:24:0;;28110:221::o;27633:411::-;27714:13;27730:23;27745:7;27730:14;:23::i;:::-;27714:39;;27778:5;-1:-1:-1;;;;;27772:11:0;:2;-1:-1:-1;;;;;27772:11:0;;;27764:57;;;;-1:-1:-1;;;27764:57:0;;6886:2:1;27764:57:0;;;6868:21:1;6925:2;6905:18;;;6898:30;6964:34;6944:18;;;6937:62;-1:-1:-1;;;7015:18:1;;;7008:31;7056:19;;27764:57:0;6684:397:1;27764:57:0;4380:10;-1:-1:-1;;;;;27856:21:0;;;;:62;;-1:-1:-1;27881:37:0;27898:5;4380:10;28629:164;:::i;27881:37::-;27834:168;;;;-1:-1:-1;;;27834:168:0;;7288:2:1;27834:168:0;;;7270:21:1;7327:2;7307:18;;;7300:30;7366:34;7346:18;;;7339:62;7437:26;7417:18;;;7410:54;7481:19;;27834:168:0;7086:420:1;27834:168:0;28015:21;28024:2;28028:7;28015:8;:21::i;:::-;27703:341;27633:411;;:::o;41835:97::-;41881:7;41908:16;:6;996:14;;904:114;41908:16;41901:23;;41835:97;:::o;28860:339::-;29055:41;4380:10;29074:12;29088:7;29055:18;:41::i;:::-;29047:103;;;;-1:-1:-1;;;29047:103:0;;;;;;;:::i;:::-;29163:28;29173:4;29179:2;29183:7;29163:9;:28::i;29270:185::-;29408:39;29425:4;29431:2;29435:7;29408:39;;;;;;;;;;;;:16;:39::i;39256:245::-;39374:41;4380:10;39393:12;4300:98;39374:41;39366:102;;;;-1:-1:-1;;;39366:102:0;;8131:2:1;39366:102:0;;;8113:21:1;8170:2;8150:18;;;8143:30;8209:34;8189:18;;;8182:62;-1:-1:-1;;;8260:18:1;;;8253:46;8316:19;;39366:102:0;7929:412:1;39366:102:0;39479:14;39485:7;39479:5;:14::i;:::-;39256:245;:::o;26245:239::-;26317:7;26353:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26353:16:0;26388:19;26380:73;;;;-1:-1:-1;;;26380:73:0;;8548:2:1;26380:73:0;;;8530:21:1;8587:2;8567:18;;;8560:30;8626:34;8606:18;;;8599:62;-1:-1:-1;;;8677:18:1;;;8670:39;8726:19;;26380:73:0;8346:405:1;25975:208:0;26047:7;-1:-1:-1;;;;;26075:19:0;;26067:74;;;;-1:-1:-1;;;26067:74:0;;8958:2:1;26067:74:0;;;8940:21:1;8997:2;8977:18;;;8970:30;9036:34;9016:18;;;9009:62;-1:-1:-1;;;9087:18:1;;;9080:40;9137:19;;26067:74:0;8756:406:1;26067:74:0;-1:-1:-1;;;;;;26159:16:0;;;;;:9;:16;;;;;;;25975:208::o;6227:103::-;5649:6;;-1:-1:-1;;;;;5649:6:0;4380:10;5796:23;5788:68;;;;-1:-1:-1;;;5788:68:0;;;;;;;:::i;:::-;6292:30:::1;6319:1;6292:18;:30::i;:::-;6227:103::o:0;42172:139::-;5649:6;;-1:-1:-1;;;;;5649:6:0;4380:10;5796:23;5788:68;;;;-1:-1:-1;;;5788:68:0;;;;;;;:::i;:::-;42270:33:::1;42283:8;42293:9;42270:12;:33::i;:::-;42172:139:::0;;:::o;26720:104::-;26776:13;26809:7;26802:14;;;;;:::i;28403:155::-;28498:52;4380:10;28531:8;28541;28498:18;:52::i;29526:328::-;29701:41;4380:10;29734:7;29701:18;:41::i;:::-;29693:103;;;;-1:-1:-1;;;29693:103:0;;;;;;;:::i;:::-;29807:39;29821:4;29827:2;29831:7;29840:5;29807:13;:39::i;:::-;29526:328;;;;:::o;42444:199::-;42573:13;42611:24;42626:8;42611:14;:24::i;41940:224::-;5649:6;;-1:-1:-1;;;;;5649:6:0;4380:10;5796:23;5788:68;;;;-1:-1:-1;;;5788:68:0;;;;;;;:::i;:::-;42009:15:::1;42027:16;:6;996:14:::0;;904:114;42027:16:::1;42009:34;;42054:18;:6;1115:19:::0;;1133:1;1115:19;;;1026:127;42054:18:::1;42083:30;42093:10;42105:7;42083:9;:30::i;6485:201::-:0;5649:6;;-1:-1:-1;;;;;5649:6:0;4380:10;5796:23;5788:68;;;;-1:-1:-1;;;5788:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6574:22:0;::::1;6566:73;;;::::0;-1:-1:-1;;;6566:73:0;;9730:2:1;6566:73:0::1;::::0;::::1;9712:21:1::0;9769:2;9749:18;;;9742:30;9808:34;9788:18;;;9781:62;-1:-1:-1;;;9859:18:1;;;9852:36;9905:19;;6566:73:0::1;9528:402:1::0;6566:73:0::1;6650:28;6669:8;6650:18;:28::i;31364:127::-:0;31429:4;31453:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31453:16:0;:30;;;31364:127::o;35510:174::-;35585:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35585:29:0;-1:-1:-1;;;;;35585:29:0;;;;;;;;:24;;35639:23;35585:24;35639:14;:23::i;:::-;-1:-1:-1;;;;;35630:46:0;;;;;;;;;;;35510:174;;:::o;31658:348::-;31751:4;31776:16;31784:7;31776;:16::i;:::-;31768:73;;;;-1:-1:-1;;;31768:73:0;;10137:2:1;31768:73:0;;;10119:21:1;10176:2;10156:18;;;10149:30;10215:34;10195:18;;;10188:62;-1:-1:-1;;;10266:18:1;;;10259:42;10318:19;;31768:73:0;9935:408:1;31768:73:0;31852:13;31868:23;31883:7;31868:14;:23::i;:::-;31852:39;;31921:5;-1:-1:-1;;;;;31910:16:0;:7;-1:-1:-1;;;;;31910:16:0;;:51;;;;31954:7;-1:-1:-1;;;;;31930:31:0;:20;31942:7;31930:11;:20::i;:::-;-1:-1:-1;;;;;31930:31:0;;31910:51;:87;;;-1:-1:-1;;;;;;28750:25:0;;;28726:4;28750:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31965:32;31902:96;31658:348;-1:-1:-1;;;;31658:348:0:o;34767:625::-;34926:4;-1:-1:-1;;;;;34899:31:0;:23;34914:7;34899:14;:23::i;:::-;-1:-1:-1;;;;;34899:31:0;;34891:81;;;;-1:-1:-1;;;34891:81:0;;10550:2:1;34891:81:0;;;10532:21:1;10589:2;10569:18;;;10562:30;10628:34;10608:18;;;10601:62;-1:-1:-1;;;10679:18:1;;;10672:35;10724:19;;34891:81:0;10348:401:1;34891:81:0;-1:-1:-1;;;;;34991:16:0;;34983:65;;;;-1:-1:-1;;;34983:65:0;;10956:2:1;34983:65:0;;;10938:21:1;10995:2;10975:18;;;10968:30;11034:34;11014:18;;;11007:62;-1:-1:-1;;;11085:18:1;;;11078:34;11129:19;;34983:65:0;10754:400:1;34983:65:0;35165:29;35182:1;35186:7;35165:8;:29::i;:::-;-1:-1:-1;;;;;35207:15:0;;;;;;:9;:15;;;;;:20;;35226:1;;35207:15;:20;;35226:1;;35207:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35238:13:0;;;;;;:9;:13;;;;;:18;;35255:1;;35238:13;:18;;35255:1;;35238:18;:::i;:::-;;;;-1:-1:-1;;35267:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35267:21:0;-1:-1:-1;;;;;35267:21:0;;;;;;;;;35306:27;;35267:16;;35306:27;;;;;;;27703:341;27633:411;;:::o;42319:117::-;42407:21;42419:8;42407:11;:21::i;6846:191::-;6939:6;;;-1:-1:-1;;;;;6956:17:0;;;-1:-1:-1;;;;;;6956:17:0;;;;;;;6989:40;;6939:6;;;6956:17;6939:6;;6989:40;;6920:16;;6989:40;6909:128;6846:191;:::o;40854:217::-;40954:16;40962:7;40954;:16::i;:::-;40946:75;;;;-1:-1:-1;;;40946:75:0;;11756:2:1;40946:75:0;;;11738:21:1;11795:2;11775:18;;;11768:30;11834:34;11814:18;;;11807:62;-1:-1:-1;;;11885:18:1;;;11878:44;11939:19;;40946:75:0;11554:410:1;40946:75:0;41032:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;35826:315::-;35981:8;-1:-1:-1;;;;;35972:17:0;:5;-1:-1:-1;;;;;35972:17:0;;;35964:55;;;;-1:-1:-1;;;35964:55:0;;12171:2:1;35964:55:0;;;12153:21:1;12210:2;12190:18;;;12183:30;12249:27;12229:18;;;12222:55;12294:18;;35964:55:0;11969:349:1;35964:55:0;-1:-1:-1;;;;;36030:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36030:46:0;;;;;;;;;;36092:41;;540::1;;;36092::0;;513:18:1;36092:41:0;;;;;;;35826:315;;;:::o;30736:::-;30893:28;30903:4;30909:2;30913:7;30893:9;:28::i;:::-;30940:48;30963:4;30969:2;30973:7;30982:5;30940:22;:48::i;:::-;30932:111;;;;-1:-1:-1;;;30932:111:0;;;;;;;:::i;40019:679::-;40092:13;40126:16;40134:7;40126;:16::i;:::-;40118:78;;;;-1:-1:-1;;;40118:78:0;;12944:2:1;40118:78:0;;;12926:21:1;12983:2;12963:18;;;12956:30;13022:34;13002:18;;;12995:62;-1:-1:-1;;;13073:18:1;;;13066:47;13130:19;;40118:78:0;12742:413:1;40118:78:0;40209:23;40235:19;;;:10;:19;;;;;40209:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40265:18;40286:10;27554:9;;;;;;;;;-1:-1:-1;27554:9:0;;;27477:94;40286:10;40265:31;;40378:4;40372:18;40394:1;40372:23;40368:72;;;-1:-1:-1;40419:9:0;40019:679;-1:-1:-1;;40019:679:0:o;40368:72::-;40544:23;;:27;40540:108;;40619:4;40625:9;40602:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40588:48;;;;40019:679;;;:::o;40540:108::-;40667:23;40682:7;40667:14;:23::i;32348:110::-;32424:26;32434:2;32438:7;32424:26;;;;;;;;;;;;:9;:26::i;41300:206::-;41369:20;41381:7;41369:11;:20::i;:::-;41412:19;;;;:10;:19;;;;;41406:33;;;;;:::i;:::-;:38;;-1:-1:-1;41402:97:0;;41468:19;;;;:10;:19;;;;;41461:26;;;:::i;36706:799::-;36861:4;-1:-1:-1;;;;;36882:13:0;;8572:19;:23;36878:620;;36918:72;;-1:-1:-1;;;36918:72:0;;-1:-1:-1;;;;;36918:36:0;;;;;:72;;4380:10;;36969:4;;36975:7;;36984:5;;36918:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36918:72:0;;;;;;;;-1:-1:-1;;36918:72:0;;;;;;;;;;;;:::i;:::-;;;36914:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37160:13:0;;37156:272;;37203:60;;-1:-1:-1;;;37203:60:0;;;;;;;:::i;37156:272::-;37378:6;37372:13;37363:6;37359:2;37355:15;37348:38;36914:529;-1:-1:-1;;;;;;37041:51:0;-1:-1:-1;;;37041:51:0;;-1:-1:-1;37034:58:0;;36878:620;-1:-1:-1;37482:4:0;36706:799;;;;;;:::o;26895:334::-;26968:13;27002:16;27010:7;27002;:16::i;:::-;26994:76;;;;-1:-1:-1;;;26994:76:0;;14585:2:1;26994:76:0;;;14567:21:1;14624:2;14604:18;;;14597:30;14663:34;14643:18;;;14636:62;-1:-1:-1;;;14714:18:1;;;14707:45;14769:19;;26994:76:0;14383:411:1;26994:76:0;27083:21;27107:10;27554:9;;;;;;;;;-1:-1:-1;27554:9:0;;;27477:94;27107:10;27083:34;;27159:1;27141:7;27135:21;:25;:86;;;;;;;;;;;;;;;;;27187:7;27196:18;:7;:16;:18::i;:::-;27170:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27135:86;27128:93;26895:334;-1:-1:-1;;;26895:334:0:o;32685:321::-;32815:18;32821:2;32825:7;32815:5;:18::i;:::-;32866:54;32897:1;32901:2;32905:7;32914:5;32866:22;:54::i;:::-;32844:154;;;;-1:-1:-1;;;32844:154:0;;;;;;;:::i;34010:420::-;34070:13;34086:23;34101:7;34086:14;:23::i;:::-;34070:39;;34211:29;34228:1;34232:7;34211:8;:29::i;:::-;-1:-1:-1;;;;;34253:16:0;;;;;;:9;:16;;;;;:21;;34273:1;;34253:16;:21;;34273:1;;34253:21;:::i;:::-;;;;-1:-1:-1;;34292:16:0;;;;:7;:16;;;;;;34285:23;;-1:-1:-1;;;;;;34285:23:0;;;34326:36;34300:7;;34292:16;-1:-1:-1;;;;;34326:36:0;;;;;34292:16;;34326:36;42172:139;;:::o;1862:723::-;1918:13;2139:10;2135:53;;-1:-1:-1;;2166:10:0;;;;;;;;;;;;-1:-1:-1;;;2166:10:0;;;;;1862:723::o;2135:53::-;2213:5;2198:12;2254:78;2261:9;;2254:78;;2287:8;;;;:::i;:::-;;-1:-1:-1;2310:10:0;;-1:-1:-1;2318:2:0;2310:10;;:::i;:::-;;;2254:78;;;2342:19;2374:6;2364:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2364:17:0;;2342:39;;2392:154;2399:10;;2392:154;;2426:11;2436:1;2426:11;;:::i;:::-;;-1:-1:-1;2495:10:0;2503:2;2495:5;:10;:::i;:::-;2482:24;;:2;:24;:::i;:::-;2469:39;;2452:6;2459;2452:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2452:56:0;;;;;;;;-1:-1:-1;2523:11:0;2532:2;2523:11;;:::i;:::-;;;2392:154;;33342:439;-1:-1:-1;;;;;33422:16:0;;33414:61;;;;-1:-1:-1;;;33414:61:0;;15647:2:1;33414:61:0;;;15629:21:1;;;15666:18;;;15659:30;15725:34;15705:18;;;15698:62;15777:18;;33414:61:0;15445:356:1;33414:61:0;33495:16;33503:7;33495;:16::i;:::-;33494:17;33486:58;;;;-1:-1:-1;;;33486:58:0;;16008:2:1;33486:58:0;;;15990:21:1;16047:2;16027:18;;;16020:30;16086;16066:18;;;16059:58;16134:18;;33486:58:0;15806:352:1;33486:58:0;-1:-1:-1;;;;;33615:13:0;;;;;;:9;:13;;;;;:18;;33632:1;;33615:13;:18;;33632:1;;33615:18;:::i;:::-;;;;-1:-1:-1;;33644:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33644:21:0;-1:-1:-1;;;;;33644:21:0;;;;;;;;33683:33;;33644:16;;;33683:33;;33644:16;;33683:33;42172:139;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:127::-;2940:10;2935:3;2931:20;2928:1;2921:31;2971:4;2968:1;2961:15;2995:4;2992:1;2985:15;3011:632;3076:5;3106:18;3147:2;3139:6;3136:14;3133:40;;;3153:18;;:::i;:::-;3228:2;3222:9;3196:2;3282:15;;-1:-1:-1;;3278:24:1;;;3304:2;3274:33;3270:42;3258:55;;;3328:18;;;3348:22;;;3325:46;3322:72;;;3374:18;;:::i;:::-;3414:10;3410:2;3403:22;3443:6;3434:15;;3473:6;3465;3458:22;3513:3;3504:6;3499:3;3495:16;3492:25;3489:45;;;3530:1;3527;3520:12;3489:45;3580:6;3575:3;3568:4;3560:6;3556:17;3543:44;3635:1;3628:4;3619:6;3611;3607:19;3603:30;3596:41;;;;3011:632;;;;;:::o;3648:222::-;3691:5;3744:3;3737:4;3729:6;3725:17;3721:27;3711:55;;3762:1;3759;3752:12;3711:55;3784:80;3860:3;3851:6;3838:20;3831:4;3823:6;3819:17;3784:80;:::i;3875:390::-;3953:6;3961;4014:2;4002:9;3993:7;3989:23;3985:32;3982:52;;;4030:1;4027;4020:12;3982:52;4070:9;4057:23;4103:18;4095:6;4092:30;4089:50;;;4135:1;4132;4125:12;4089:50;4158;4200:7;4191:6;4180:9;4176:22;4158:50;:::i;:::-;4148:60;4255:2;4240:18;;;;4227:32;;-1:-1:-1;;;;3875:390:1:o;4270:347::-;4335:6;4343;4396:2;4384:9;4375:7;4371:23;4367:32;4364:52;;;4412:1;4409;4402:12;4364:52;4435:29;4454:9;4435:29;:::i;:::-;4425:39;;4514:2;4503:9;4499:18;4486:32;4561:5;4554:13;4547:21;4540:5;4537:32;4527:60;;4583:1;4580;4573:12;4527:60;4606:5;4596:15;;;4270:347;;;;;:::o;4622:667::-;4717:6;4725;4733;4741;4794:3;4782:9;4773:7;4769:23;4765:33;4762:53;;;4811:1;4808;4801:12;4762:53;4834:29;4853:9;4834:29;:::i;:::-;4824:39;;4882:38;4916:2;4905:9;4901:18;4882:38;:::i;:::-;4872:48;;4967:2;4956:9;4952:18;4939:32;4929:42;;5022:2;5011:9;5007:18;4994:32;5049:18;5041:6;5038:30;5035:50;;;5081:1;5078;5071:12;5035:50;5104:22;;5157:4;5149:13;;5145:27;-1:-1:-1;5135:55:1;;5186:1;5183;5176:12;5135:55;5209:74;5275:7;5270:2;5257:16;5252:2;5248;5244:11;5209:74;:::i;:::-;5199:84;;;4622:667;;;;;;;:::o;5294:322::-;5363:6;5416:2;5404:9;5395:7;5391:23;5387:32;5384:52;;;5432:1;5429;5422:12;5384:52;5472:9;5459:23;5505:18;5497:6;5494:30;5491:50;;;5537:1;5534;5527:12;5491:50;5560;5602:7;5593:6;5582:9;5578:22;5560:50;:::i;5621:260::-;5689:6;5697;5750:2;5738:9;5729:7;5725:23;5721:32;5718:52;;;5766:1;5763;5756:12;5718:52;5789:29;5808:9;5789:29;:::i;:::-;5779:39;;5837:38;5871:2;5860:9;5856:18;5837:38;:::i;:::-;5827:48;;5621:260;;;;;:::o;5886:380::-;5965:1;5961:12;;;;6008;;;6029:61;;6083:4;6075:6;6071:17;6061:27;;6029:61;6136:2;6128:6;6125:14;6105:18;6102:38;6099:161;;;6182:10;6177:3;6173:20;6170:1;6163:31;6217:4;6214:1;6207:15;6245:4;6242:1;6235:15;6099:161;;5886:380;;;:::o;7511:413::-;7713:2;7695:21;;;7752:2;7732:18;;;7725:30;7791:34;7786:2;7771:18;;7764:62;-1:-1:-1;;;7857:2:1;7842:18;;7835:47;7914:3;7899:19;;7511:413::o;9167:356::-;9369:2;9351:21;;;9388:18;;;9381:30;9447:34;9442:2;9427:18;;9420:62;9514:2;9499:18;;9167:356::o;11159:127::-;11220:10;11215:3;11211:20;11208:1;11201:31;11251:4;11248:1;11241:15;11275:4;11272:1;11265:15;11291:125;11331:4;11359:1;11356;11353:8;11350:34;;;11364:18;;:::i;:::-;-1:-1:-1;11401:9:1;;11291:125::o;11421:128::-;11461:3;11492:1;11488:6;11485:1;11482:13;11479:39;;;11498:18;;:::i;:::-;-1:-1:-1;11534:9:1;;11421:128::o;12323:414::-;12525:2;12507:21;;;12564:2;12544:18;;;12537:30;12603:34;12598:2;12583:18;;12576:62;-1:-1:-1;;;12669:2:1;12654:18;;12647:48;12727:3;12712:19;;12323:414::o;13160:470::-;13339:3;13377:6;13371:13;13393:53;13439:6;13434:3;13427:4;13419:6;13415:17;13393:53;:::i;:::-;13509:13;;13468:16;;;;13531:57;13509:13;13468:16;13565:4;13553:17;;13531:57;:::i;:::-;13604:20;;13160:470;-1:-1:-1;;;;13160:470:1:o;13635:489::-;-1:-1:-1;;;;;13904:15:1;;;13886:34;;13956:15;;13951:2;13936:18;;13929:43;14003:2;13988:18;;13981:34;;;14051:3;14046:2;14031:18;;14024:31;;;13829:4;;14072:46;;14098:19;;14090:6;14072:46;:::i;:::-;14064:54;13635:489;-1:-1:-1;;;;;;13635:489:1:o;14129:249::-;14198:6;14251:2;14239:9;14230:7;14226:23;14222:32;14219:52;;;14267:1;14264;14257:12;14219:52;14299:9;14293:16;14318:30;14342:5;14318:30;:::i;14799:135::-;14838:3;-1:-1:-1;;14859:17:1;;14856:43;;;14879:18;;:::i;:::-;-1:-1:-1;14926:1:1;14915:13;;14799:135::o;14939:127::-;15000:10;14995:3;14991:20;14988:1;14981:31;15031:4;15028:1;15021:15;15055:4;15052:1;15045:15;15071:120;15111:1;15137;15127:35;;15142:18;;:::i;:::-;-1:-1:-1;15176:9:1;;15071:120::o;15196:112::-;15228:1;15254;15244:35;;15259:18;;:::i;:::-;-1:-1:-1;15293:9:1;;15196:112::o;15313:127::-;15374:10;15369:3;15365:20;15362:1;15355:31;15405:4;15402:1;15395:15;15429:4;15426:1;15419:15

Swarm Source

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