ETH Price: $2,578.36 (+2.66%)

Token

Initials (Initials)
 

Overview

Max Total Supply

366 Initials

Holders

52

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
vekku.eth
Balance
24 Initials
0xee634fac59048a680b38837ae13c73748ad10dd9
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:
Initials

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-05
*/

// SPDX-License-Identifier: MIT

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);
}


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


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


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


/**
 * @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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


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


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


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

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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


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


/**
 * @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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public 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);
    }

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

    /**
     * @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 of token that is not own");
        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);
    }

    /**
     * @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 Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("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 {}
}


contract Initials is ERC721, ReentrancyGuard, Ownable {
    
    uint256 private totaltokenSupply = 0;
    uint256 public MAX_SUPPLY = 10000;
    
    string[] private firstLetter = [
        "W","B","C","D","E","S","G","H","I",
        "T","K","L","M","N","O","P","Q","R",
        "F","J","U","V","A","X","Y","Z" 
    ];
    
    string[] private midLetter = [
        "N","Y","X","W","V","U","H","S","R",
        "F","P","O","Z","","M","L","K","J","I",
        "T","G","Q","E","D","C","B","A"  
    ];
    
    string[] private lastLetter = [
        "O","K","L","S","N","J","P","Q","R",
        "M","T","U","V","W","X","Y","Z",
        "G","B","C","D","E","F","A","H","I"

    ];
    
    function random(string memory input) internal pure returns (uint256) {
        return uint256(keccak256(abi.encodePacked(input)));
    }
    
    function getfirstLetter (uint256 tokenId) internal view returns (string memory) {
        return getChar(tokenId, "N",firstLetter);
    }
    
    function getmidLetter(uint256 tokenId) internal view returns (string memory) {
        return getChar(tokenId, "F" , midLetter);
    }
    
    function getlastLetter(uint256 tokenId) internal view returns (string memory) {
        return getChar(tokenId, "T", lastLetter);
    }
    
    function getChar(uint256 tokenId, string memory keyPrefix,  string[] memory sourceArray) internal pure returns (string memory) {
        uint256 rand = random(string(abi.encodePacked(keyPrefix, toString(tokenId))));
        string memory output = sourceArray[rand % sourceArray.length];
       
        return output;
    }

    function tokenURI(uint256 tokenId) override public view returns (string memory) {
        
        string[5] memory parts;
        
        parts[0] = '<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 350 350"><style>.base { fill: white; font-family: serif; font-size: 100px; }</style><rect width="100%" height="100%" fill="black" /><text text-anchor="middle" x="175" y="200" class="base">';

        parts[1] = getfirstLetter(tokenId);

        parts[2] = getmidLetter(tokenId);

        parts[3] = getlastLetter(tokenId);

        parts[4] = '</text></svg>';

        string memory output = string(abi.encodePacked(parts[0], parts[1], parts[2], parts[3], parts[4]));
        
        string memory json = Base64.encode(bytes(string(abi.encodePacked('{"name": "Initials #', toString(tokenId),'", "description": "Initials is 3 Randomized Characters generated and stored on-chain.", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(output)), '"}'))));
       
        output = string(abi.encodePacked('data:application/json;base64,', json));

        return output;
    }

    function claim(uint256 tokenId) public nonReentrant {
        require(tokenId > 0 && tokenId <= MAX_SUPPLY, "Token ID invalid");
        _safeMint(_msgSender(), tokenId);
        totaltokenSupply += 1;
    }
    
    function toString(uint256 value) internal pure returns (string memory) {

        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);
    }

    constructor() ERC721("Initials", "Initials") {}
    
    function totalSupply() public view returns (uint256) {
        return totaltokenSupply; 
    }
    
    function setSupply(uint256 newSupply) public onlyOwner() {  
        MAX_SUPPLY = newSupply;
    }
}


library Base64 {
    bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /// @notice Encodes some bytes to the base64 representation
    function encode(bytes memory data) internal pure returns (string memory) {
        uint256 len = data.length;
        if (len == 0) return "";

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((len + 2) / 3);

        // Add some extra buffer at the end
        bytes memory result = new bytes(encodedLen + 32);

        bytes memory table = TABLE;

        assembly {
            let tablePtr := add(table, 1)
            let resultPtr := add(result, 32)

            for {
                let i := 0
            } lt(i, len) {

            } {
                i := add(i, 3)
                let input := and(mload(add(data, i)), 0xffffff)

                let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF))
                out := shl(224, out)

                mstore(resultPtr, out)

                resultPtr := add(resultPtr, 4)
            }

            switch mod(len, 3)
            case 1 {
                mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
            }
            case 2 {
                mstore(sub(resultPtr, 1), shl(248, 0x3d))
            }

            mstore(result, encodedLen)
        }

        return string(result);
    }
}

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":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"uint256","name":"newSupply","type":"uint256"}],"name":"setSupply","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"}]

600060085561271060095560016103c0818152605760f81b6103e0526080908152610400828152602160f91b6104205260a052610440828152604360f81b6104605260c052610480828152601160fa1b6104a05260e0526104c0828152604560f81b6104e05261010052610500828152605360f81b6105205261012052610540828152604760f81b6105605261014052610580828152600960fb1b6105a052610160526105c0828152604960f81b6105e05261018052610600828152601560fa1b610620526101a052610640828152604b60f81b610660526101c052610680828152601360fa1b6106a0526101e0526106c0828152604d60f81b6106e05261020052610700828152602760f91b6107205261022052610740828152604f60f81b6107605261024052610780828152600560fc1b6107a052610260526107c0828152605160f81b6107e05261028052610800828152602960f91b610820526102a052610840828152602360f91b610860526102c052610880828152602560f91b6108a0526102e0526108c0828152605560f81b6108e05261030052610900828152602b60f91b6109205261032052610940828152604160f81b6109605261034052610980828152600b60fb1b6109a052610360526109c0828152605960f81b6109e05261038052610a40604052610a00918252602d60f91b610a20526103a0919091526200021190600a90601a62000843565b50604080516103a08101825260016103608201818152602760f91b610380840152825282518084018452818152605960f81b6020828101919091528084019190915283518085018552828152600b60fb1b818301528385015283518085018552828152605760f81b81830152606084015283518085018552828152602b60f91b81830152608084015283518085018552828152605560f81b8183015260a084015283518085018552828152600960fb1b8183015260c084015283518085018552828152605360f81b8183015260e084015283518085018552828152602960f91b8183015261010084015283518085018552828152602360f91b8183015261012084015283518085018552828152600560fc1b8183015261014084015283518085018552828152604f60f81b8183015261016084015283518085018552828152602d60f91b8183015261018084015283518082018552600081526101a084015283518085018552828152604d60f81b818301526101c084015283518085018552828152601360fa1b818301526101e084015283518085018552828152604b60f81b8183015261020084015283518085018552828152602560f91b8183015261022084015283518085018552828152604960f81b8183015261024084015283518085018552828152601560fa1b8183015261026084015283518085018552828152604760f81b8183015261028084015283518085018552828152605160f81b818301526102a084015283518085018552828152604560f81b818301526102c084015283518085018552828152601160fa1b818301526102e084015283518085018552828152604360f81b8183015261030084015283518085018552828152602160f91b818301526103208401528351808501909452908352604160f81b90830152610340810191909152620004c990600b90601b620008a7565b50604080516103808101825260016103408201818152604f60f81b610360840152825282518084018452818152604b60f81b6020828101919091528084019190915283518085018552828152601360fa1b818301528385015283518085018552828152605360f81b81830152606084015283518085018552828152602760f91b81830152608084015283518085018552828152602560f91b8183015260a084015283518085018552828152600560fc1b8183015260c084015283518085018552828152605160f81b8183015260e084015283518085018552828152602960f91b8183015261010084015283518085018552828152604d60f81b8183015261012084015283518085018552828152601560fa1b8183015261014084015283518085018552828152605560f81b8183015261016084015283518085018552828152602b60f91b8183015261018084015283518085018552828152605760f81b818301526101a084015283518085018552828152600b60fb1b818301526101c084015283518085018552828152605960f81b818301526101e084015283518085018552828152602d60f91b8183015261020084015283518085018552828152604760f81b8183015261022084015283518085018552828152602160f91b8183015261024084015283518085018552828152604360f81b8183015261026084015283518085018552828152601160fa1b8183015261028084015283518085018552828152604560f81b818301526102a084015283518085018552828152602360f91b818301526102c084015283518085018552828152604160f81b818301526102e084015283518085018552828152600960fb1b818301526103008401528351808501909452908352604960f81b908301526103208101919091526200077090600c90601a62000843565b503480156200077e57600080fd5b50604080518082018252600880825267496e697469616c7360c01b602080840182815285518087019096529285528401528151919291620007c291600091620008f9565b508051620007d8906001906020840190620008f9565b5050600160065550620007eb33620007f1565b62000a3b565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805482825590600052602060002090810192821562000895579160200282015b8281111562000895578251805162000884918491602090910190620008f9565b509160200191906001019062000864565b50620008a392915062000984565b5090565b82805482825590600052602060002090810192821562000895579160200282015b82811115620008955782518051620008e8918491602090910190620008f9565b5091602001919060010190620008c8565b8280546200090790620009fe565b90600052602060002090601f0160209004810192826200092b576000855562000976565b82601f106200094657805160ff191683800117855562000976565b8280016001018555821562000976579182015b828111156200097657825182559160200191906001019062000959565b50620008a3929150620009a5565b80821115620008a35760006200099b8282620009bc565b5060010162000984565b5b80821115620008a35760008155600101620009a6565b508054620009ca90620009fe565b6000825580601f10620009db575050565b601f016020900490600052602060002090810190620009fb9190620009a5565b50565b600181811c9082168062000a1357607f821691505b6020821081141562000a3557634e487b7160e01b600052602260045260246000fd5b50919050565b611f618062000a4b6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c80636352211e116100ad578063a22cb46511610071578063a22cb4651461025c578063b88d4fde1461026f578063c87b56dd14610282578063e985e9c514610295578063f2fde38b146102d157600080fd5b80636352211e1461021557806370a0823114610228578063715018a61461023b5780638da5cb5b1461024357806395d89b411461025457600080fd5b806323b872dd116100f457806323b872dd146101c057806332cb6b0c146101d3578063379607f5146101dc5780633b4c4b25146101ef57806342842e0e1461020257600080fd5b806301ffc9a71461013157806306fdde0314610159578063081812fc1461016e578063095ea7b31461019957806318160ddd146101ae575b600080fd5b61014461013f3660046118d4565b6102e4565b60405190151581526020015b60405180910390f35b610161610336565b6040516101509190611b85565b61018161017c36600461190e565b6103c8565b6040516001600160a01b039091168152602001610150565b6101ac6101a73660046118aa565b610462565b005b6008545b604051908152602001610150565b6101ac6101ce366004611756565b610578565b6101b260095481565b6101ac6101ea36600461190e565b6105a9565b6101ac6101fd36600461190e565b61067b565b6101ac610210366004611756565b6106aa565b61018161022336600461190e565b6106c5565b6101b2610236366004611701565b61073c565b6101ac6107c3565b6007546001600160a01b0316610181565b6101616107f9565b6101ac61026a36600461186e565b610808565b6101ac61027d366004611792565b6108cd565b61016161029036600461190e565b610905565b6101446102a3366004611723565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101ac6102df366004611701565b610a23565b60006001600160e01b031982166380ac58cd60e01b148061031557506001600160e01b03198216635b5e139f60e01b145b8061033057506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461034590611cfe565b80601f016020809104026020016040519081016040528092919081815260200182805461037190611cfe565b80156103be5780601f10610393576101008083540402835291602001916103be565b820191906000526020600020905b8154815290600101906020018083116103a157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104465760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061046d826106c5565b9050806001600160a01b0316836001600160a01b031614156104db5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161043d565b336001600160a01b03821614806104f757506104f781336102a3565b6105695760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161043d565b6105738383610abe565b505050565b6105823382610b2c565b61059e5760405162461bcd60e51b815260040161043d90611c1f565b610573838383610c23565b600260065414156105fc5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161043d565b6002600655801580159061061257506009548111155b6106515760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881251081a5b9d985b1a5960821b604482015260640161043d565b61065b3382610dc3565b60016008600082825461066e9190611c70565b9091555050600160065550565b6007546001600160a01b031633146106a55760405162461bcd60e51b815260040161043d90611bea565b600955565b610573838383604051806020016040528060008152506108cd565b6000818152600260205260408120546001600160a01b0316806103305760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161043d565b60006001600160a01b0382166107a75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161043d565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b031633146107ed5760405162461bcd60e51b815260040161043d90611bea565b6107f76000610de1565b565b60606001805461034590611cfe565b6001600160a01b0382163314156108615760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161043d565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6108d73383610b2c565b6108f35760405162461bcd60e51b815260040161043d90611c1f565b6108ff84848484610e33565b50505050565b606061090f6116be565b6040518061014001604052806101158152602001611dd76101159139815261093683610e66565b602082015261094483610f5d565b60408201526109528361104b565b60608201908152604080518082018252600d81526c1e17ba32bc3a1f1e17b9bb339f60991b6020808301919091526080850182905284518186015184870151955194516000966109aa9693959294909392910161199e565b604051602081830303815290604052905060006109f76109c986611139565b6109d284611237565b6040516020016109e3929190611a09565b604051602081830303815290604052611237565b905080604051602001610a0a9190611b03565b60408051601f1981840301815291905295945050505050565b6007546001600160a01b03163314610a4d5760405162461bcd60e51b815260040161043d90611bea565b6001600160a01b038116610ab25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161043d565b610abb81610de1565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610af3826106c5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610ba55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161043d565b6000610bb0836106c5565b9050806001600160a01b0316846001600160a01b03161480610beb5750836001600160a01b0316610be0846103c8565b6001600160a01b0316145b80610c1b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610c36826106c5565b6001600160a01b031614610c9e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161043d565b6001600160a01b038216610d005760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161043d565b610d0b600082610abe565b6001600160a01b0383166000908152600360205260408120805460019290610d34908490611cbb565b90915550506001600160a01b0382166000908152600360205260408120805460019290610d62908490611c70565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610ddd82826040518060200160405280600081525061139d565b5050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610e3e848484610c23565b610e4a848484846113d0565b6108ff5760405162461bcd60e51b815260040161043d90611b98565b606061033082604051806040016040528060018152602001602760f91b815250600a805480602002602001604051908101604052809291908181526020016000905b82821015610f54578382906000526020600020018054610ec790611cfe565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef390611cfe565b8015610f405780601f10610f1557610100808354040283529160200191610f40565b820191906000526020600020905b815481529060010190602001808311610f2357829003601f168201915b505050505081526020019060010190610ea8565b505050506114dd565b606061033082604051806040016040528060018152602001602360f91b815250600b805480602002602001604051908101604052809291908181526020016000905b82821015610f54578382906000526020600020018054610fbe90611cfe565b80601f0160208091040260200160405190810160405280929190818152602001828054610fea90611cfe565b80156110375780601f1061100c57610100808354040283529160200191611037565b820191906000526020600020905b81548152906001019060200180831161101a57829003601f168201915b505050505081526020019060010190610f9f565b606061033082604051806040016040528060018152602001601560fa1b815250600c805480602002602001604051908101604052809291908181526020016000905b82821015610f545783829060005260206000200180546110ac90611cfe565b80601f01602080910402602001604051908101604052809291908181526020018280546110d890611cfe565b80156111255780601f106110fa57610100808354040283529160200191611125565b820191906000526020600020905b81548152906001019060200180831161110857829003601f168201915b50505050508152602001906001019061108d565b60608161115d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611187578061117181611d39565b91506111809050600a83611c88565b9150611161565b60008167ffffffffffffffff8111156111a2576111a2611daa565b6040519080825280601f01601f1916602001820160405280156111cc576020820181803683370190505b5090505b8415610c1b576111e1600183611cbb565b91506111ee600a86611d54565b6111f9906030611c70565b60f81b81838151811061120e5761120e611d94565b60200101906001600160f81b031916908160001a905350611230600a86611c88565b94506111d0565b805160609080611257575050604080516020810190915260008152919050565b60006003611266836002611c70565b6112709190611c88565b61127b906004611c9c565b9050600061128a826020611c70565b67ffffffffffffffff8111156112a2576112a2611daa565b6040519080825280601f01601f1916602001820160405280156112cc576020820181803683370190505b5090506000604051806060016040528060408152602001611eec604091399050600181016020830160005b86811015611358576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b8352600490920191016112f7565b50600386066001811461137257600281146113835761138f565b613d3d60f01b60011983015261138f565b603d60f81b6000198301525b505050918152949350505050565b6113a7838361154b565b6113b460008484846113d0565b6105735760405162461bcd60e51b815260040161043d90611b98565b60006001600160a01b0384163b156114d257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611414903390899088908890600401611b48565b602060405180830381600087803b15801561142e57600080fd5b505af192505050801561145e575060408051601f3d908101601f1916820190925261145b918101906118f1565b60015b6114b8573d80801561148c576040519150601f19603f3d011682016040523d82523d6000602084013e611491565b606091505b5080516114b05760405162461bcd60e51b815260040161043d90611b98565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610c1b565b506001949350505050565b60606000611513846114ee87611139565b6040516020016114ff92919061196f565b60405160208183030381529060405261168d565b90506000838451836115259190611d54565b8151811061153557611535611d94565b6020026020010151905080925050509392505050565b6001600160a01b0382166115a15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161043d565b6000818152600260205260409020546001600160a01b0316156116065760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161043d565b6001600160a01b038216600090815260036020526040812080546001929061162f908490611c70565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000816040516020016116a09190611953565b60408051601f19818403018152919052805160209091012092915050565b6040518060a001604052806005905b60608152602001906001900390816116cd5790505090565b80356001600160a01b03811681146116fc57600080fd5b919050565b60006020828403121561171357600080fd5b61171c826116e5565b9392505050565b6000806040838503121561173657600080fd5b61173f836116e5565b915061174d602084016116e5565b90509250929050565b60008060006060848603121561176b57600080fd5b611774846116e5565b9250611782602085016116e5565b9150604084013590509250925092565b600080600080608085870312156117a857600080fd5b6117b1856116e5565b93506117bf602086016116e5565b925060408501359150606085013567ffffffffffffffff808211156117e357600080fd5b818701915087601f8301126117f757600080fd5b81358181111561180957611809611daa565b604051601f8201601f19908116603f0116810190838211818310171561183157611831611daa565b816040528281528a602084870101111561184a57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561188157600080fd5b61188a836116e5565b91506020830135801515811461189f57600080fd5b809150509250929050565b600080604083850312156118bd57600080fd5b6118c6836116e5565b946020939093013593505050565b6000602082840312156118e657600080fd5b813561171c81611dc0565b60006020828403121561190357600080fd5b815161171c81611dc0565b60006020828403121561192057600080fd5b5035919050565b6000815180845261193f816020860160208601611cd2565b601f01601f19169290920160200192915050565b60008251611965818460208701611cd2565b9190910192915050565b60008351611981818460208801611cd2565b835190830190611995818360208801611cd2565b01949350505050565b600086516119b0818460208b01611cd2565b8651908301906119c4818360208b01611cd2565b86519101906119d7818360208a01611cd2565b85519101906119ea818360208901611cd2565b84519101906119fd818360208801611cd2565b01979650505050505050565b737b226e616d65223a2022496e697469616c73202360601b81528251600090611a39816014850160208801611cd2565b7f222c20226465736372697074696f6e223a2022496e697469616c7320697320336014918401918201527f2052616e646f6d697a656420436861726163746572732067656e65726174656460348201527f20616e642073746f726564206f6e2d636861696e2e222c2022696d616765223a60548201527f2022646174613a696d6167652f7376672b786d6c3b6261736536342c0000000060748201528351611ae8816090840160208801611cd2565b61227d60f01b60909290910191820152609201949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251611b3b81601d850160208701611cd2565b91909101601d0192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b7b90830184611927565b9695505050505050565b60208152600061171c6020830184611927565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611c8357611c83611d68565b500190565b600082611c9757611c97611d7e565b500490565b6000816000190483118215151615611cb657611cb6611d68565b500290565b600082821015611ccd57611ccd611d68565b500390565b60005b83811015611ced578181015183820152602001611cd5565b838111156108ff5750506000910152565b600181811c90821680611d1257607f821691505b60208210811415611d3357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d4d57611d4d611d68565b5060010190565b600082611d6357611d63611d7e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610abb57600080fdfe3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a2031303070783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22626c61636b22202f3e3c7465787420746578742d616e63686f723d226d6964646c652220783d223137352220793d223230302220636c6173733d2262617365223e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220d1309cd18d988beeda6c0c7a335c591f35511e370ce549c796e3aaeedc3ecda764736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c80636352211e116100ad578063a22cb46511610071578063a22cb4651461025c578063b88d4fde1461026f578063c87b56dd14610282578063e985e9c514610295578063f2fde38b146102d157600080fd5b80636352211e1461021557806370a0823114610228578063715018a61461023b5780638da5cb5b1461024357806395d89b411461025457600080fd5b806323b872dd116100f457806323b872dd146101c057806332cb6b0c146101d3578063379607f5146101dc5780633b4c4b25146101ef57806342842e0e1461020257600080fd5b806301ffc9a71461013157806306fdde0314610159578063081812fc1461016e578063095ea7b31461019957806318160ddd146101ae575b600080fd5b61014461013f3660046118d4565b6102e4565b60405190151581526020015b60405180910390f35b610161610336565b6040516101509190611b85565b61018161017c36600461190e565b6103c8565b6040516001600160a01b039091168152602001610150565b6101ac6101a73660046118aa565b610462565b005b6008545b604051908152602001610150565b6101ac6101ce366004611756565b610578565b6101b260095481565b6101ac6101ea36600461190e565b6105a9565b6101ac6101fd36600461190e565b61067b565b6101ac610210366004611756565b6106aa565b61018161022336600461190e565b6106c5565b6101b2610236366004611701565b61073c565b6101ac6107c3565b6007546001600160a01b0316610181565b6101616107f9565b6101ac61026a36600461186e565b610808565b6101ac61027d366004611792565b6108cd565b61016161029036600461190e565b610905565b6101446102a3366004611723565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101ac6102df366004611701565b610a23565b60006001600160e01b031982166380ac58cd60e01b148061031557506001600160e01b03198216635b5e139f60e01b145b8061033057506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461034590611cfe565b80601f016020809104026020016040519081016040528092919081815260200182805461037190611cfe565b80156103be5780601f10610393576101008083540402835291602001916103be565b820191906000526020600020905b8154815290600101906020018083116103a157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104465760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061046d826106c5565b9050806001600160a01b0316836001600160a01b031614156104db5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161043d565b336001600160a01b03821614806104f757506104f781336102a3565b6105695760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161043d565b6105738383610abe565b505050565b6105823382610b2c565b61059e5760405162461bcd60e51b815260040161043d90611c1f565b610573838383610c23565b600260065414156105fc5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161043d565b6002600655801580159061061257506009548111155b6106515760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881251081a5b9d985b1a5960821b604482015260640161043d565b61065b3382610dc3565b60016008600082825461066e9190611c70565b9091555050600160065550565b6007546001600160a01b031633146106a55760405162461bcd60e51b815260040161043d90611bea565b600955565b610573838383604051806020016040528060008152506108cd565b6000818152600260205260408120546001600160a01b0316806103305760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161043d565b60006001600160a01b0382166107a75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161043d565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b031633146107ed5760405162461bcd60e51b815260040161043d90611bea565b6107f76000610de1565b565b60606001805461034590611cfe565b6001600160a01b0382163314156108615760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161043d565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6108d73383610b2c565b6108f35760405162461bcd60e51b815260040161043d90611c1f565b6108ff84848484610e33565b50505050565b606061090f6116be565b6040518061014001604052806101158152602001611dd76101159139815261093683610e66565b602082015261094483610f5d565b60408201526109528361104b565b60608201908152604080518082018252600d81526c1e17ba32bc3a1f1e17b9bb339f60991b6020808301919091526080850182905284518186015184870151955194516000966109aa9693959294909392910161199e565b604051602081830303815290604052905060006109f76109c986611139565b6109d284611237565b6040516020016109e3929190611a09565b604051602081830303815290604052611237565b905080604051602001610a0a9190611b03565b60408051601f1981840301815291905295945050505050565b6007546001600160a01b03163314610a4d5760405162461bcd60e51b815260040161043d90611bea565b6001600160a01b038116610ab25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161043d565b610abb81610de1565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610af3826106c5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610ba55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161043d565b6000610bb0836106c5565b9050806001600160a01b0316846001600160a01b03161480610beb5750836001600160a01b0316610be0846103c8565b6001600160a01b0316145b80610c1b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610c36826106c5565b6001600160a01b031614610c9e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161043d565b6001600160a01b038216610d005760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161043d565b610d0b600082610abe565b6001600160a01b0383166000908152600360205260408120805460019290610d34908490611cbb565b90915550506001600160a01b0382166000908152600360205260408120805460019290610d62908490611c70565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610ddd82826040518060200160405280600081525061139d565b5050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610e3e848484610c23565b610e4a848484846113d0565b6108ff5760405162461bcd60e51b815260040161043d90611b98565b606061033082604051806040016040528060018152602001602760f91b815250600a805480602002602001604051908101604052809291908181526020016000905b82821015610f54578382906000526020600020018054610ec790611cfe565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef390611cfe565b8015610f405780601f10610f1557610100808354040283529160200191610f40565b820191906000526020600020905b815481529060010190602001808311610f2357829003601f168201915b505050505081526020019060010190610ea8565b505050506114dd565b606061033082604051806040016040528060018152602001602360f91b815250600b805480602002602001604051908101604052809291908181526020016000905b82821015610f54578382906000526020600020018054610fbe90611cfe565b80601f0160208091040260200160405190810160405280929190818152602001828054610fea90611cfe565b80156110375780601f1061100c57610100808354040283529160200191611037565b820191906000526020600020905b81548152906001019060200180831161101a57829003601f168201915b505050505081526020019060010190610f9f565b606061033082604051806040016040528060018152602001601560fa1b815250600c805480602002602001604051908101604052809291908181526020016000905b82821015610f545783829060005260206000200180546110ac90611cfe565b80601f01602080910402602001604051908101604052809291908181526020018280546110d890611cfe565b80156111255780601f106110fa57610100808354040283529160200191611125565b820191906000526020600020905b81548152906001019060200180831161110857829003601f168201915b50505050508152602001906001019061108d565b60608161115d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611187578061117181611d39565b91506111809050600a83611c88565b9150611161565b60008167ffffffffffffffff8111156111a2576111a2611daa565b6040519080825280601f01601f1916602001820160405280156111cc576020820181803683370190505b5090505b8415610c1b576111e1600183611cbb565b91506111ee600a86611d54565b6111f9906030611c70565b60f81b81838151811061120e5761120e611d94565b60200101906001600160f81b031916908160001a905350611230600a86611c88565b94506111d0565b805160609080611257575050604080516020810190915260008152919050565b60006003611266836002611c70565b6112709190611c88565b61127b906004611c9c565b9050600061128a826020611c70565b67ffffffffffffffff8111156112a2576112a2611daa565b6040519080825280601f01601f1916602001820160405280156112cc576020820181803683370190505b5090506000604051806060016040528060408152602001611eec604091399050600181016020830160005b86811015611358576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b8352600490920191016112f7565b50600386066001811461137257600281146113835761138f565b613d3d60f01b60011983015261138f565b603d60f81b6000198301525b505050918152949350505050565b6113a7838361154b565b6113b460008484846113d0565b6105735760405162461bcd60e51b815260040161043d90611b98565b60006001600160a01b0384163b156114d257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611414903390899088908890600401611b48565b602060405180830381600087803b15801561142e57600080fd5b505af192505050801561145e575060408051601f3d908101601f1916820190925261145b918101906118f1565b60015b6114b8573d80801561148c576040519150601f19603f3d011682016040523d82523d6000602084013e611491565b606091505b5080516114b05760405162461bcd60e51b815260040161043d90611b98565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610c1b565b506001949350505050565b60606000611513846114ee87611139565b6040516020016114ff92919061196f565b60405160208183030381529060405261168d565b90506000838451836115259190611d54565b8151811061153557611535611d94565b6020026020010151905080925050509392505050565b6001600160a01b0382166115a15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161043d565b6000818152600260205260409020546001600160a01b0316156116065760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161043d565b6001600160a01b038216600090815260036020526040812080546001929061162f908490611c70565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000816040516020016116a09190611953565b60408051601f19818403018152919052805160209091012092915050565b6040518060a001604052806005905b60608152602001906001900390816116cd5790505090565b80356001600160a01b03811681146116fc57600080fd5b919050565b60006020828403121561171357600080fd5b61171c826116e5565b9392505050565b6000806040838503121561173657600080fd5b61173f836116e5565b915061174d602084016116e5565b90509250929050565b60008060006060848603121561176b57600080fd5b611774846116e5565b9250611782602085016116e5565b9150604084013590509250925092565b600080600080608085870312156117a857600080fd5b6117b1856116e5565b93506117bf602086016116e5565b925060408501359150606085013567ffffffffffffffff808211156117e357600080fd5b818701915087601f8301126117f757600080fd5b81358181111561180957611809611daa565b604051601f8201601f19908116603f0116810190838211818310171561183157611831611daa565b816040528281528a602084870101111561184a57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561188157600080fd5b61188a836116e5565b91506020830135801515811461189f57600080fd5b809150509250929050565b600080604083850312156118bd57600080fd5b6118c6836116e5565b946020939093013593505050565b6000602082840312156118e657600080fd5b813561171c81611dc0565b60006020828403121561190357600080fd5b815161171c81611dc0565b60006020828403121561192057600080fd5b5035919050565b6000815180845261193f816020860160208601611cd2565b601f01601f19169290920160200192915050565b60008251611965818460208701611cd2565b9190910192915050565b60008351611981818460208801611cd2565b835190830190611995818360208801611cd2565b01949350505050565b600086516119b0818460208b01611cd2565b8651908301906119c4818360208b01611cd2565b86519101906119d7818360208a01611cd2565b85519101906119ea818360208901611cd2565b84519101906119fd818360208801611cd2565b01979650505050505050565b737b226e616d65223a2022496e697469616c73202360601b81528251600090611a39816014850160208801611cd2565b7f222c20226465736372697074696f6e223a2022496e697469616c7320697320336014918401918201527f2052616e646f6d697a656420436861726163746572732067656e65726174656460348201527f20616e642073746f726564206f6e2d636861696e2e222c2022696d616765223a60548201527f2022646174613a696d6167652f7376672b786d6c3b6261736536342c0000000060748201528351611ae8816090840160208801611cd2565b61227d60f01b60909290910191820152609201949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251611b3b81601d850160208701611cd2565b91909101601d0192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b7b90830184611927565b9695505050505050565b60208152600061171c6020830184611927565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611c8357611c83611d68565b500190565b600082611c9757611c97611d7e565b500490565b6000816000190483118215151615611cb657611cb6611d68565b500290565b600082821015611ccd57611ccd611d68565b500390565b60005b83811015611ced578181015183820152602001611cd5565b838111156108ff5750506000910152565b600181811c90821680611d1257607f821691505b60208210811415611d3357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d4d57611d4d611d68565b5060010190565b600082611d6357611d63611d7e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610abb57600080fdfe3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a2031303070783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22626c61636b22202f3e3c7465787420746578742d616e63686f723d226d6964646c652220783d223137352220793d223230302220636c6173733d2262617365223e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220d1309cd18d988beeda6c0c7a335c591f35511e370ce549c796e3aaeedc3ecda764736f6c63430008070033

Deployed Bytecode Sourcemap

36558:3834:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24429:305;;;;;;:::i;:::-;;:::i;:::-;;;8108:14:1;;8101:22;8083:41;;8071:2;8056:18;24429:305:0;;;;;;;;25374:100;;;:::i;:::-;;;;;;;:::i;26933:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7406:32:1;;;7388:51;;7376:2;7361:18;26933:221:0;7242:203:1;26456:411:0;;;;;;:::i;:::-;;:::i;:::-;;40181:96;40252:16;;40181:96;;;15176:25:1;;;15164:2;15149:18;40181:96:0;15030:177:1;27823:339:0;;;;;;:::i;:::-;;:::i;36668:33::-;;;;;;39357:211;;;;;;:::i;:::-;;:::i;40289:100::-;;;;;;:::i;:::-;;:::i;28233:185::-;;;;;;:::i;:::-;;:::i;25068:239::-;;;;;;:::i;:::-;;:::i;24798:208::-;;;;;;:::i;:::-;;:::i;9826:94::-;;;:::i;9175:87::-;9248:6;;-1:-1:-1;;;;;9248:6:0;9175:87;;25543:104;;;:::i;27226:295::-;;;;;;:::i;:::-;;:::i;28489:328::-;;;;;;:::i;:::-;;:::i;38208:1141::-;;;;;;:::i;:::-;;:::i;27592:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;27713:25:0;;;27689:4;27713:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27592:164;10075:192;;;;;;:::i;:::-;;:::i;24429:305::-;24531:4;-1:-1:-1;;;;;;24568:40:0;;-1:-1:-1;;;24568:40:0;;:105;;-1:-1:-1;;;;;;;24625:48:0;;-1:-1:-1;;;24625:48:0;24568:105;:158;;;-1:-1:-1;;;;;;;;;;23145:40:0;;;24690:36;24548:178;24429:305;-1:-1:-1;;24429:305:0:o;25374:100::-;25428:13;25461:5;25454:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25374:100;:::o;26933:221::-;27009:7;30416:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30416:16:0;27029:73;;;;-1:-1:-1;;;27029:73:0;;12523:2:1;27029:73:0;;;12505:21:1;12562:2;12542:18;;;12535:30;12601:34;12581:18;;;12574:62;-1:-1:-1;;;12652:18:1;;;12645:42;12704:19;;27029:73:0;;;;;;;;;-1:-1:-1;27122:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27122:24:0;;26933:221::o;26456:411::-;26537:13;26553:23;26568:7;26553:14;:23::i;:::-;26537:39;;26601:5;-1:-1:-1;;;;;26595:11:0;:2;-1:-1:-1;;;;;26595:11:0;;;26587:57;;;;-1:-1:-1;;;26587:57:0;;14052:2:1;26587:57:0;;;14034:21:1;14091:2;14071:18;;;14064:30;14130:34;14110:18;;;14103:62;-1:-1:-1;;;14181:18:1;;;14174:31;14222:19;;26587:57:0;13850:397:1;26587:57:0;8129:10;-1:-1:-1;;;;;26679:21:0;;;;:62;;-1:-1:-1;26704:37:0;26721:5;8129:10;27592:164;:::i;26704:37::-;26657:168;;;;-1:-1:-1;;;26657:168:0;;10916:2:1;26657:168:0;;;10898:21:1;10955:2;10935:18;;;10928:30;10994:34;10974:18;;;10967:62;11065:26;11045:18;;;11038:54;11109:19;;26657:168:0;10714:420:1;26657:168:0;26838:21;26847:2;26851:7;26838:8;:21::i;:::-;26526:341;26456:411;;:::o;27823:339::-;28018:41;8129:10;28051:7;28018:18;:41::i;:::-;28010:103;;;;-1:-1:-1;;;28010:103:0;;;;;;;:::i;:::-;28126:28;28136:4;28142:2;28146:7;28126:9;:28::i;39357:211::-;12108:1;12704:7;;:19;;12696:63;;;;-1:-1:-1;;;12696:63:0;;14872:2:1;12696:63:0;;;14854:21:1;14911:2;14891:18;;;14884:30;14950:33;14930:18;;;14923:61;15001:18;;12696:63:0;14670:355:1;12696:63:0;12108:1;12837:7;:18;39428:11;;;;;:36:::1;;;39454:10;;39443:7;:21;;39428:36;39420:65;;;::::0;-1:-1:-1;;;39420:65:0;;13297:2:1;39420:65:0::1;::::0;::::1;13279:21:1::0;13336:2;13316:18;;;13309:30;-1:-1:-1;;;13355:18:1;;;13348:46;13411:18;;39420:65:0::1;13095:340:1::0;39420:65:0::1;39496:32;8129:10:::0;39520:7:::1;39496:9;:32::i;:::-;39559:1;39539:16;;:21;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;12064:1:0;13016:7;:22;-1:-1:-1;39357:211:0:o;40289:100::-;9248:6;;-1:-1:-1;;;;;9248:6:0;8129:10;9395:23;9387:68;;;;-1:-1:-1;;;9387:68:0;;;;;;;:::i;:::-;40359:10:::1;:22:::0;40289:100::o;28233:185::-;28371:39;28388:4;28394:2;28398:7;28371:39;;;;;;;;;;;;:16;:39::i;25068:239::-;25140:7;25176:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25176:16:0;25211:19;25203:73;;;;-1:-1:-1;;;25203:73:0;;11752:2:1;25203:73:0;;;11734:21:1;11791:2;11771:18;;;11764:30;11830:34;11810:18;;;11803:62;-1:-1:-1;;;11881:18:1;;;11874:39;11930:19;;25203:73:0;11550:405:1;24798:208:0;24870:7;-1:-1:-1;;;;;24898:19:0;;24890:74;;;;-1:-1:-1;;;24890:74:0;;11341:2:1;24890:74:0;;;11323:21:1;11380:2;11360:18;;;11353:30;11419:34;11399:18;;;11392:62;-1:-1:-1;;;11470:18:1;;;11463:40;11520:19;;24890:74:0;11139:406:1;24890:74:0;-1:-1:-1;;;;;;24982:16:0;;;;;:9;:16;;;;;;;24798:208::o;9826:94::-;9248:6;;-1:-1:-1;;;;;9248:6:0;8129:10;9395:23;9387:68;;;;-1:-1:-1;;;9387:68:0;;;;;;;:::i;:::-;9891:21:::1;9909:1;9891:9;:21::i;:::-;9826:94::o:0;25543:104::-;25599:13;25632:7;25625:14;;;;;:::i;27226:295::-;-1:-1:-1;;;;;27329:24:0;;8129:10;27329:24;;27321:62;;;;-1:-1:-1;;;27321:62:0;;10149:2:1;27321:62:0;;;10131:21:1;10188:2;10168:18;;;10161:30;10227:27;10207:18;;;10200:55;10272:18;;27321:62:0;9947:349:1;27321:62:0;8129:10;27396:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27396:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27396:53:0;;;;;;;;;;27465:48;;8083:41:1;;;27396:42:0;;8129:10;27465:48;;8056:18:1;27465:48:0;;;;;;;27226:295;;:::o;28489:328::-;28664:41;8129:10;28697:7;28664:18;:41::i;:::-;28656:103;;;;-1:-1:-1;;;28656:103:0;;;;;;;:::i;:::-;28770:39;28784:4;28790:2;28794:7;28803:5;28770:13;:39::i;:::-;28489:328;;;;:::o;38208:1141::-;38273:13;38309:22;;:::i;:::-;38352:290;;;;;;;;;;;;;;;;;;;38666:23;38681:7;38666:14;:23::i;:::-;38655:8;;;:34;38713:21;38726:7;38713:12;:21::i;:::-;38702:8;;;:32;38758:22;38772:7;38758:13;:22::i;:::-;38747:8;;;:33;;;38793:26;;;;;;;;;;;-1:-1:-1;;;;38793:26:0;;;;;;;:8;;;:26;;;38879:8;;-1:-1:-1;;;38889:8:0;38899;;;;38909;;38862:66;;-1:-1:-1;;38862:66:0;;38879:8;;38889;;38899;;38909;38793:26;38862:66;;:::i;:::-;;;;;;;;;;;;;38832:97;;38950:18;38971:252;39039:17;39048:7;39039:8;:17::i;:::-;39185:28;39205:6;39185:13;:28::i;:::-;38998:222;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38971:13;:252::i;:::-;38950:273;;39309:4;39259:55;;;;;;;;:::i;:::-;;;;-1:-1:-1;;39259:55:0;;;;;;;;;;38208:1141;-1:-1:-1;;;;;38208:1141:0:o;10075:192::-;9248:6;;-1:-1:-1;;;;;9248:6:0;8129:10;9395:23;9387:68;;;;-1:-1:-1;;;9387:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10164:22:0;::::1;10156:73;;;::::0;-1:-1:-1;;;10156:73:0;;8980:2:1;10156:73:0::1;::::0;::::1;8962:21:1::0;9019:2;8999:18;;;8992:30;9058:34;9038:18;;;9031:62;-1:-1:-1;;;9109:18:1;;;9102:36;9155:19;;10156:73:0::1;8778:402:1::0;10156:73:0::1;10240:19;10250:8;10240:9;:19::i;:::-;10075:192:::0;:::o;34309:174::-;34384:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34384:29:0;-1:-1:-1;;;;;34384:29:0;;;;;;;;:24;;34438:23;34384:24;34438:14;:23::i;:::-;-1:-1:-1;;;;;34429:46:0;;;;;;;;;;;34309:174;;:::o;30621:348::-;30714:4;30416:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30416:16:0;30731:73;;;;-1:-1:-1;;;30731:73:0;;10503:2:1;30731:73:0;;;10485:21:1;10542:2;10522:18;;;10515:30;10581:34;10561:18;;;10554:62;-1:-1:-1;;;10632:18:1;;;10625:42;10684:19;;30731:73:0;10301:408:1;30731:73:0;30815:13;30831:23;30846:7;30831:14;:23::i;:::-;30815:39;;30884:5;-1:-1:-1;;;;;30873:16:0;:7;-1:-1:-1;;;;;30873:16:0;;:51;;;;30917:7;-1:-1:-1;;;;;30893:31:0;:20;30905:7;30893:11;:20::i;:::-;-1:-1:-1;;;;;30893:31:0;;30873:51;:87;;;-1:-1:-1;;;;;;27713:25:0;;;27689:4;27713:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30928:32;30865:96;30621:348;-1:-1:-1;;;;30621:348:0:o;33613:578::-;33772:4;-1:-1:-1;;;;;33745:31:0;:23;33760:7;33745:14;:23::i;:::-;-1:-1:-1;;;;;33745:31:0;;33737:85;;;;-1:-1:-1;;;33737:85:0;;13642:2:1;33737:85:0;;;13624:21:1;13681:2;13661:18;;;13654:30;13720:34;13700:18;;;13693:62;-1:-1:-1;;;13771:18:1;;;13764:39;13820:19;;33737:85:0;13440:405:1;33737:85:0;-1:-1:-1;;;;;33841:16:0;;33833:65;;;;-1:-1:-1;;;33833:65:0;;9744:2:1;33833:65:0;;;9726:21:1;9783:2;9763:18;;;9756:30;9822:34;9802:18;;;9795:62;-1:-1:-1;;;9873:18:1;;;9866:34;9917:19;;33833:65:0;9542:400:1;33833:65:0;34015:29;34032:1;34036:7;34015:8;:29::i;:::-;-1:-1:-1;;;;;34057:15:0;;;;;;:9;:15;;;;;:20;;34076:1;;34057:15;:20;;34076:1;;34057:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34088:13:0;;;;;;:9;:13;;;;;:18;;34105:1;;34088:13;:18;;34105:1;;34088:18;:::i;:::-;;;;-1:-1:-1;;34117:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34117:21:0;-1:-1:-1;;;;;34117:21:0;;;;;;;;;34156:27;;34117:16;;34156:27;;;;;;;33613:578;;;:::o;31311:110::-;31387:26;31397:2;31401:7;31387:26;;;;;;;;;;;;:9;:26::i;:::-;31311:110;;:::o;10275:173::-;10350:6;;;-1:-1:-1;;;;;10367:17:0;;;-1:-1:-1;;;;;;10367:17:0;;;;;;;10400:40;;10350:6;;;10367:17;10350:6;;10400:40;;10331:16;;10400:40;10320:128;10275:173;:::o;29699:315::-;29856:28;29866:4;29872:2;29876:7;29856:9;:28::i;:::-;29903:48;29926:4;29932:2;29936:7;29945:5;29903:22;:48::i;:::-;29895:111;;;;-1:-1:-1;;;29895:111:0;;;;;;;:::i;37424:139::-;37489:13;37522:33;37530:7;37522:33;;;;;;;;;;;;;-1:-1:-1;;;37522:33:0;;;37543:11;37522:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:7;:33::i;37575:136::-;37637:13;37670:33;37678:7;37670:33;;;;;;;;;;;;;-1:-1:-1;;;37670:33:0;;;37693:9;37670:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37723:137;37786:13;37819:33;37827:7;37819:33;;;;;;;;;;;;;-1:-1:-1;;;37819:33:0;;;37841:10;37819:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39580:534;39636:13;39668:10;39664:53;;-1:-1:-1;;39695:10:0;;;;;;;;;;;;-1:-1:-1;;;39695:10:0;;;;;39580:534::o;39664:53::-;39742:5;39727:12;39783:78;39790:9;;39783:78;;39816:8;;;;:::i;:::-;;-1:-1:-1;39839:10:0;;-1:-1:-1;39847:2:0;39839:10;;:::i;:::-;;;39783:78;;;39871:19;39903:6;39893:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39893:17:0;;39871:39;;39921:154;39928:10;;39921:154;;39955:11;39965:1;39955:11;;:::i;:::-;;-1:-1:-1;40024:10:0;40032:2;40024:5;:10;:::i;:::-;40011:24;;:2;:24;:::i;:::-;39998:39;;39981:6;39988;39981:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;39981:56:0;;;;;;;;-1:-1:-1;40052:11:0;40061:2;40052:11;;:::i;:::-;;;39921:154;;40592:1607;40690:11;;40650:13;;40716:8;40712:23;;-1:-1:-1;;40726:9:0;;;;;;;;;-1:-1:-1;40726:9:0;;;40592:1607;-1:-1:-1;40592:1607:0:o;40712:23::-;40787:18;40825:1;40814:7;:3;40820:1;40814:7;:::i;:::-;40813:13;;;;:::i;:::-;40808:19;;:1;:19;:::i;:::-;40787:40;-1:-1:-1;40885:19:0;40917:15;40787:40;40930:2;40917:15;:::i;:::-;40907:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40907:26:0;;40885:48;;40946:18;40967:5;;;;;;;;;;;;;;;;;40946:26;;41036:1;41029:5;41025:13;41081:2;41073:6;41069:15;41132:1;41100:777;41155:3;41152:1;41149:10;41100:777;;;41210:1;41253:12;;;;;41247:19;41348:4;41336:2;41332:14;;;;;41314:40;;41308:47;41457:2;41453:14;;;41449:25;;41435:40;;41429:47;41586:1;41582:13;;;41578:24;;41564:39;;41558:46;41706:16;;;;41692:31;;41686:38;41384:1;41380:11;;;41478:4;41425:58;;;41416:68;41509:11;;41554:57;;;41545:67;;;;41637:11;;41682:49;;41673:59;41761:3;41757:13;41790:22;;41860:1;41845:17;;;;41203:9;41100:777;;;41104:44;41909:1;41904:3;41900:11;41930:1;41925:84;;;;42028:1;42023:82;;;;41893:212;;41925:84;-1:-1:-1;;;;;41958:17:0;;41951:43;41925:84;;42023:82;-1:-1:-1;;;;;42056:17:0;;42049:41;41893:212;-1:-1:-1;;;42121:26:0;;;42128:6;40592:1607;-1:-1:-1;;;;40592:1607:0:o;31648:321::-;31778:18;31784:2;31788:7;31778:5;:18::i;:::-;31829:54;31860:1;31864:2;31868:7;31877:5;31829:22;:54::i;:::-;31807:154;;;;-1:-1:-1;;;31807:154:0;;;;;;;:::i;35048:803::-;35203:4;-1:-1:-1;;;;;35224:13:0;;15545:20;15593:8;35220:624;;35260:72;;-1:-1:-1;;;35260:72:0;;-1:-1:-1;;;;;35260:36:0;;;;;:72;;8129:10;;35311:4;;35317:7;;35326:5;;35260:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35260:72:0;;;;;;;;-1:-1:-1;;35260:72:0;;;;;;;;;;;;:::i;:::-;;;35256:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35506:13:0;;35502:272;;35549:60;;-1:-1:-1;;;35549:60:0;;;;;;;:::i;35502:272::-;35724:6;35718:13;35709:6;35705:2;35701:15;35694:38;35256:533;-1:-1:-1;;;;;;35383:55:0;-1:-1:-1;;;35383:55:0;;-1:-1:-1;35376:62:0;;35220:624;-1:-1:-1;35828:4:0;35048:803;;;;;;:::o;37872:328::-;37984:13;38010:12;38025:62;38056:9;38067:17;38076:7;38067:8;:17::i;:::-;38039:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38025:6;:62::i;:::-;38010:77;;38098:20;38121:11;38140;:18;38133:4;:25;;;;:::i;:::-;38121:38;;;;;;;;:::i;:::-;;;;;;;38098:61;;38186:6;38179:13;;;;37872:328;;;;;:::o;32305:382::-;-1:-1:-1;;;;;32385:16:0;;32377:61;;;;-1:-1:-1;;;32377:61:0;;12162:2:1;32377:61:0;;;12144:21:1;;;12181:18;;;12174:30;12240:34;12220:18;;;12213:62;12292:18;;32377:61:0;11960:356:1;32377:61:0;30392:4;30416:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30416:16:0;:30;32449:58;;;;-1:-1:-1;;;32449:58:0;;9387:2:1;32449:58:0;;;9369:21:1;9426:2;9406:18;;;9399:30;9465;9445:18;;;9438:58;9513:18;;32449:58:0;9185:352:1;32449:58:0;-1:-1:-1;;;;;32578:13:0;;;;;;:9;:13;;;;;:18;;32595:1;;32578:13;:18;;32595:1;;32578:18;:::i;:::-;;;;-1:-1:-1;;32607:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32607:21:0;-1:-1:-1;;;;;32607:21:0;;;;;;;;32646:33;;32607:16;;;32646:33;;32607:16;;32646:33;32305:382;;:::o;37274:138::-;37334:7;37396:5;37379:23;;;;;;;;:::i;:::-;;;;-1:-1:-1;;37379:23:0;;;;;;;;;37369:34;;37379:23;37369:34;;;;;37274:138;-1:-1:-1;;37274:138:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:52;;;3123:1;3120;3113:12;3075:52;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:180::-;3298:6;3351:2;3339:9;3330:7;3326:23;3322:32;3319:52;;;3367:1;3364;3357:12;3319:52;-1:-1:-1;3390:23:1;;3239:180;-1:-1:-1;3239:180:1:o;3424:257::-;3465:3;3503:5;3497:12;3530:6;3525:3;3518:19;3546:63;3602:6;3595:4;3590:3;3586:14;3579:4;3572:5;3568:16;3546:63;:::i;:::-;3663:2;3642:15;-1:-1:-1;;3638:29:1;3629:39;;;;3670:4;3625:50;;3424:257;-1:-1:-1;;3424:257:1:o;3686:276::-;3817:3;3855:6;3849:13;3871:53;3917:6;3912:3;3905:4;3897:6;3893:17;3871:53;:::i;:::-;3940:16;;;;;3686:276;-1:-1:-1;;3686:276:1:o;3967:470::-;4146:3;4184:6;4178:13;4200:53;4246:6;4241:3;4234:4;4226:6;4222:17;4200:53;:::i;:::-;4316:13;;4275:16;;;;4338:57;4316:13;4275:16;4372:4;4360:17;;4338:57;:::i;:::-;4411:20;;3967:470;-1:-1:-1;;;;3967:470:1:o;4442:1052::-;4765:3;4803:6;4797:13;4819:53;4865:6;4860:3;4853:4;4845:6;4841:17;4819:53;:::i;:::-;4935:13;;4894:16;;;;4957:57;4935:13;4894:16;4991:4;4979:17;;4957:57;:::i;:::-;5081:13;;5036:20;;;5103:57;5081:13;5036:20;5137:4;5125:17;;5103:57;:::i;:::-;5227:13;;5182:20;;;5249:57;5227:13;5182:20;5283:4;5271:17;;5249:57;:::i;:::-;5373:13;;5328:20;;;5395:57;5373:13;5328:20;5429:4;5417:17;;5395:57;:::i;:::-;5468:20;;4442:1052;-1:-1:-1;;;;;;;4442:1052:1:o;5499:1285::-;-1:-1:-1;;;5999:64:1;;6086:13;;5981:3;;6108:62;6086:13;6158:2;6149:12;;6142:4;6130:17;;6108:62;:::i;:::-;6234:66;6229:2;6189:16;;;6221:11;;;6214:87;6330:34;6325:2;6317:11;;6310:55;6394:66;6389:2;6381:11;;6374:87;6491:66;6485:3;6477:12;;6470:88;6583:13;;6605:64;6583:13;6654:3;6646:12;;6639:4;6627:17;;6605:64;:::i;:::-;-1:-1:-1;;;6729:3:1;6688:17;;;;6721:12;;;6714:36;6774:3;6766:12;;5499:1285;-1:-1:-1;;;;5499:1285:1:o;6789:448::-;7051:31;7046:3;7039:44;7021:3;7112:6;7106:13;7128:62;7183:6;7178:2;7173:3;7169:12;7162:4;7154:6;7150:17;7128:62;:::i;:::-;7210:16;;;;7228:2;7206:25;;6789:448;-1:-1:-1;;6789:448:1:o;7450:488::-;-1:-1:-1;;;;;7719:15:1;;;7701:34;;7771:15;;7766:2;7751:18;;7744:43;7818:2;7803:18;;7796:34;;;7866:3;7861:2;7846:18;;7839:31;;;7644:4;;7887:45;;7912:19;;7904:6;7887:45;:::i;:::-;7879:53;7450:488;-1:-1:-1;;;;;;7450:488:1:o;8135:219::-;8284:2;8273:9;8266:21;8247:4;8304:44;8344:2;8333:9;8329:18;8321:6;8304:44;:::i;8359:414::-;8561:2;8543:21;;;8600:2;8580:18;;;8573:30;8639:34;8634:2;8619:18;;8612:62;-1:-1:-1;;;8705:2:1;8690:18;;8683:48;8763:3;8748:19;;8359:414::o;12734:356::-;12936:2;12918:21;;;12955:18;;;12948:30;13014:34;13009:2;12994:18;;12987:62;13081:2;13066:18;;12734:356::o;14252:413::-;14454:2;14436:21;;;14493:2;14473:18;;;14466:30;14532:34;14527:2;14512:18;;14505:62;-1:-1:-1;;;14598:2:1;14583:18;;14576:47;14655:3;14640:19;;14252:413::o;15212:128::-;15252:3;15283:1;15279:6;15276:1;15273:13;15270:39;;;15289:18;;:::i;:::-;-1:-1:-1;15325:9:1;;15212:128::o;15345:120::-;15385:1;15411;15401:35;;15416:18;;:::i;:::-;-1:-1:-1;15450:9:1;;15345:120::o;15470:168::-;15510:7;15576:1;15572;15568:6;15564:14;15561:1;15558:21;15553:1;15546:9;15539:17;15535:45;15532:71;;;15583:18;;:::i;:::-;-1:-1:-1;15623:9:1;;15470:168::o;15643:125::-;15683:4;15711:1;15708;15705:8;15702:34;;;15716:18;;:::i;:::-;-1:-1:-1;15753:9:1;;15643:125::o;15773:258::-;15845:1;15855:113;15869:6;15866:1;15863:13;15855:113;;;15945:11;;;15939:18;15926:11;;;15919:39;15891:2;15884:10;15855:113;;;15986:6;15983:1;15980:13;15977:48;;;-1:-1:-1;;16021:1:1;16003:16;;15996:27;15773:258::o;16036:380::-;16115:1;16111:12;;;;16158;;;16179:61;;16233:4;16225:6;16221:17;16211:27;;16179:61;16286:2;16278:6;16275:14;16255:18;16252:38;16249:161;;;16332:10;16327:3;16323:20;16320:1;16313:31;16367:4;16364:1;16357:15;16395:4;16392:1;16385:15;16249:161;;16036:380;;;:::o;16421:135::-;16460:3;-1:-1:-1;;16481:17:1;;16478:43;;;16501:18;;:::i;:::-;-1:-1:-1;16548:1:1;16537:13;;16421:135::o;16561:112::-;16593:1;16619;16609:35;;16624:18;;:::i;:::-;-1:-1:-1;16658:9:1;;16561:112::o;16678:127::-;16739:10;16734:3;16730:20;16727:1;16720:31;16770:4;16767:1;16760:15;16794:4;16791:1;16784:15;16810:127;16871:10;16866:3;16862:20;16859:1;16852:31;16902:4;16899:1;16892:15;16926:4;16923:1;16916:15;16942:127;17003:10;16998:3;16994:20;16991:1;16984:31;17034:4;17031:1;17024:15;17058:4;17055:1;17048:15;17074:127;17135:10;17130:3;17126:20;17123:1;17116:31;17166:4;17163:1;17156:15;17190:4;17187:1;17180:15;17206:131;-1:-1:-1;;;;;;17280:32:1;;17270:43;;17260:71;;17327:1;17324;17317:12

Swarm Source

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