ETH Price: $3,230.13 (+1.85%)
Gas: 7 Gwei

Token

CryptoRings (CRINGS)
 

Overview

Max Total Supply

0 CRINGS

Holders

174

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
despicably.eth
Balance
10 CRINGS
0x1be3bb226a8b60d101c973ffbeec66b3669de3d4
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

TheCryptoRings is the first NFT-style Diamond Ring collection to introduce Bling on the Blockchain. This 1st Edition Collection features 6,000 distinctively designed CryptoRings generated from over 160 traits all within a harmoniously bold color scheme.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CryptoRings

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : CryptoRings.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.2.0/contracts/access/Ownable.sol";
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.2.0/contracts/token/ERC721//ERC721.sol";

contract CryptoRings is ERC721, Ownable {

    uint256 public tokenCount;
    bool public paused = true;
    string _baseTokenURI;
    uint256 private price = 0.10 ether;

    constructor() ERC721("CryptoRings", "CRINGS")  {
        _baseTokenURI = "https://www.thecryptorings.com/api/";
        for (uint256 i = 0; i < 25; i++) {
            _safeMint(msg.sender, i);
        }
        tokenCount += 25;
    }

    function mint(uint256 num) public payable {
        require(!paused, "Minting has not begun");
        require(num < 11, "You can only mint 10 rings");
        require(tokenCount + num < 6001, "Exceeds maximum ring supply");
        require(msg.value >= price * num, "Ether sent is not correct" );

        for(uint256 i; i < num; i++) {
            _safeMint(msg.sender, tokenCount + i);
        }
        tokenCount += num;
    }

    function setPrice(uint256 _newPrice) public onlyOwner() {
        price = _newPrice;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }
    
    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

    function getPrice() public view returns (uint256) {
        return price;
    }

    function pause(bool val) public onlyOwner {
        paused = val;
    }

    function withdraw(uint256 amount) public payable onlyOwner {
        uint256 bal = address(this).balance;
        require(amount <= bal, "Withdrawal amount exceeds balance");
        require(payable(msg.sender).send(amount));
    }

    function withdrawAll() public payable onlyOwner {
        uint256 bal = address(this).balance;
        require(payable(msg.sender).send(bal));
    }
}

File 2 of 11 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

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

File 3 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

File 4 of 11 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 5 of 11 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 6 of 11 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 7 of 11 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 8 of 11 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 9 of 11 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 10 of 11 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

File 11 of 11 : IERC165.sol
// 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);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526001600860006101000a81548160ff02191690831515021790555067016345785d8a0000600a553480156200003857600080fd5b506040518060400160405280600b81526020017f43727970746f52696e67730000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4352494e475300000000000000000000000000000000000000000000000000008152508160009080519060200190620000bd92919062000709565b508060019080519060200190620000d692919062000709565b505050620000f9620000ed6200018360201b60201c565b6200018b60201b60201c565b604051806060016040528060238152602001620043ba60239139600990805190602001906200012a92919062000709565b5060005b601981101562000160576200014a33826200025160201b60201c565b8080620001579062000af4565b9150506200012e565b50601960076000828254620001769190620009c1565b9250508190555062000c71565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002738282604051806020016040528060008152506200027760201b60201c565b5050565b620002898383620002e560201b60201c565b6200029e6000848484620004cb60201b60201c565b620002e0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002d7906200092e565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000358576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200034f9062000972565b60405180910390fd5b62000369816200068560201b60201c565b15620003ac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003a39062000950565b60405180910390fd5b620003c060008383620006f160201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620004129190620009c1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620004f98473ffffffffffffffffffffffffffffffffffffffff16620006f660201b620015201760201c565b1562000678578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200052b6200018360201b60201c565b8786866040518563ffffffff1660e01b81526004016200054f9493929190620008da565b602060405180830381600087803b1580156200056a57600080fd5b505af19250505080156200059e57506040513d601f19601f820116820180604052508101906200059b9190620007d0565b60015b62000627573d8060008114620005d1576040519150601f19603f3d011682016040523d82523d6000602084013e620005d6565b606091505b506000815114156200061f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000616906200092e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506200067d565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b600080823b905060008111915050919050565b828054620007179062000abe565b90600052602060002090601f0160209004810192826200073b576000855562000787565b82601f106200075657805160ff191683800117855562000787565b8280016001018555821562000787579182015b828111156200078657825182559160200191906001019062000769565b5b5090506200079691906200079a565b5090565b5b80821115620007b55760008160009055506001016200079b565b5090565b600081519050620007ca8162000c57565b92915050565b600060208284031215620007e957620007e862000ba0565b5b6000620007f984828501620007b9565b91505092915050565b6200080d8162000a1e565b82525050565b6000620008208262000994565b6200082c81856200099f565b93506200083e81856020860162000a88565b620008498162000ba5565b840191505092915050565b600062000863603283620009b0565b9150620008708262000bb6565b604082019050919050565b60006200088a601c83620009b0565b9150620008978262000c05565b602082019050919050565b6000620008b1602083620009b0565b9150620008be8262000c2e565b602082019050919050565b620008d48162000a7e565b82525050565b6000608082019050620008f1600083018762000802565b62000900602083018662000802565b6200090f6040830185620008c9565b818103606083015262000923818462000813565b905095945050505050565b60006020820190508181036000830152620009498162000854565b9050919050565b600060208201905081810360008301526200096b816200087b565b9050919050565b600060208201905081810360008301526200098d81620008a2565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000620009ce8262000a7e565b9150620009db8362000a7e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000a135762000a1262000b42565b5b828201905092915050565b600062000a2b8262000a5e565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000aa857808201518184015260208101905062000a8b565b8381111562000ab8576000848401525b50505050565b6000600282049050600182168062000ad757607f821691505b6020821081141562000aee5762000aed62000b71565b5b50919050565b600062000b018262000a7e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000b375762000b3662000b42565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b62000c628162000a32565b811462000c6e57600080fd5b50565b6137398062000c816000396000f3fe6080604052600436106101665760003560e01c8063715018a6116100d15780639f181b5e1161008a578063b88d4fde11610064578063b88d4fde146104d9578063c87b56dd14610502578063e985e9c51461053f578063f2fde38b1461057c57610166565b80639f181b5e14610469578063a0712d6814610494578063a22cb465146104b057610166565b8063715018a61461039e578063853828b6146103b55780638da5cb5b146103bf57806391b7f5ed146103ea57806395d89b411461041357806398d5fdca1461043e57610166565b80632e1a7d4d116101235780632e1a7d4d1461028b57806342842e0e146102a757806355f804b3146102d05780635c975abb146102f95780636352211e1461032457806370a082311461036157610166565b806301ffc9a71461016b57806302329a29146101a857806306fdde03146101d1578063081812fc146101fc578063095ea7b31461023957806323b872dd14610262575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d91906124d8565b6105a5565b60405161019f91906129e2565b60405180910390f35b3480156101b457600080fd5b506101cf60048036038101906101ca91906124ab565b610687565b005b3480156101dd57600080fd5b506101e6610720565b6040516101f391906129fd565b60405180910390f35b34801561020857600080fd5b50610223600480360381019061021e919061257b565b6107b2565b604051610230919061297b565b60405180910390f35b34801561024557600080fd5b50610260600480360381019061025b919061246b565b610837565b005b34801561026e57600080fd5b5061028960048036038101906102849190612355565b61094f565b005b6102a560048036038101906102a0919061257b565b6109af565b005b3480156102b357600080fd5b506102ce60048036038101906102c99190612355565b610ab5565b005b3480156102dc57600080fd5b506102f760048036038101906102f29190612532565b610ad5565b005b34801561030557600080fd5b5061030e610b6b565b60405161031b91906129e2565b60405180910390f35b34801561033057600080fd5b5061034b6004803603810190610346919061257b565b610b7e565b604051610358919061297b565b60405180910390f35b34801561036d57600080fd5b50610388600480360381019061038391906122e8565b610c30565b6040516103959190612cbf565b60405180910390f35b3480156103aa57600080fd5b506103b3610ce8565b005b6103bd610d70565b005b3480156103cb57600080fd5b506103d4610e32565b6040516103e1919061297b565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c919061257b565b610e5c565b005b34801561041f57600080fd5b50610428610ee2565b60405161043591906129fd565b60405180910390f35b34801561044a57600080fd5b50610453610f74565b6040516104609190612cbf565b60405180910390f35b34801561047557600080fd5b5061047e610f7e565b60405161048b9190612cbf565b60405180910390f35b6104ae60048036038101906104a9919061257b565b610f84565b005b3480156104bc57600080fd5b506104d760048036038101906104d2919061242b565b61110a565b005b3480156104e557600080fd5b5061050060048036038101906104fb91906123a8565b61128b565b005b34801561050e57600080fd5b506105296004803603810190610524919061257b565b6112ed565b60405161053691906129fd565b60405180910390f35b34801561054b57600080fd5b5061056660048036038101906105619190612315565b611394565b60405161057391906129e2565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e91906122e8565b611428565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610680575061067f82611533565b5b9050919050565b61068f61159d565b73ffffffffffffffffffffffffffffffffffffffff166106ad610e32565b73ffffffffffffffffffffffffffffffffffffffff1614610703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fa90612bbf565b60405180910390fd5b80600860006101000a81548160ff02191690831515021790555050565b60606000805461072f90612f6f565b80601f016020809104026020016040519081016040528092919081815260200182805461075b90612f6f565b80156107a85780601f1061077d576101008083540402835291602001916107a8565b820191906000526020600020905b81548152906001019060200180831161078b57829003601f168201915b5050505050905090565b60006107bd826115a5565b6107fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f390612b9f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061084282610b7e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108aa90612c3f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108d261159d565b73ffffffffffffffffffffffffffffffffffffffff1614806109015750610900816108fb61159d565b611394565b5b610940576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093790612aff565b60405180910390fd5b61094a8383611611565b505050565b61096061095a61159d565b826116ca565b61099f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099690612c7f565b60405180910390fd5b6109aa8383836117a8565b505050565b6109b761159d565b73ffffffffffffffffffffffffffffffffffffffff166109d5610e32565b73ffffffffffffffffffffffffffffffffffffffff1614610a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2290612bbf565b60405180910390fd5b600047905080821115610a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6a90612adf565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050610ab157600080fd5b5050565b610ad08383836040518060200160405280600081525061128b565b505050565b610add61159d565b73ffffffffffffffffffffffffffffffffffffffff16610afb610e32565b73ffffffffffffffffffffffffffffffffffffffff1614610b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4890612bbf565b60405180910390fd5b8060099080519060200190610b679291906120fc565b5050565b600860009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1e90612b3f565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9890612b1f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cf061159d565b73ffffffffffffffffffffffffffffffffffffffff16610d0e610e32565b73ffffffffffffffffffffffffffffffffffffffff1614610d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5b90612bbf565b60405180910390fd5b610d6e6000611a04565b565b610d7861159d565b73ffffffffffffffffffffffffffffffffffffffff16610d96610e32565b73ffffffffffffffffffffffffffffffffffffffff1614610dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de390612bbf565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610e2f57600080fd5b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e6461159d565b73ffffffffffffffffffffffffffffffffffffffff16610e82610e32565b73ffffffffffffffffffffffffffffffffffffffff1614610ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecf90612bbf565b60405180910390fd5b80600a8190555050565b606060018054610ef190612f6f565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1d90612f6f565b8015610f6a5780601f10610f3f57610100808354040283529160200191610f6a565b820191906000526020600020905b815481529060010190602001808311610f4d57829003601f168201915b5050505050905090565b6000600a54905090565b60075481565b600860009054906101000a900460ff1615610fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcb90612c9f565b60405180910390fd5b600b8110611017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100e90612b7f565b60405180910390fd5b611771816007546110289190612da4565b10611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f90612c1f565b60405180910390fd5b80600a546110769190612e2b565b3410156110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af90612c5f565b60405180910390fd5b60005b818110156110ed576110da33826007546110d59190612da4565b611aca565b80806110e590612fd2565b9150506110bb565b5080600760008282546111009190612da4565b9250508190555050565b61111261159d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117790612a9f565b60405180910390fd5b806005600061118d61159d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661123a61159d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161127f91906129e2565b60405180910390a35050565b61129c61129661159d565b836116ca565b6112db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d290612c7f565b60405180910390fd5b6112e784848484611ae8565b50505050565b60606112f8826115a5565b611337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132e90612bff565b60405180910390fd5b6000611341611b44565b90506000815111611361576040518060200160405280600081525061138c565b8061136b84611bd6565b60405160200161137c929190612957565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61143061159d565b73ffffffffffffffffffffffffffffffffffffffff1661144e610e32565b73ffffffffffffffffffffffffffffffffffffffff16146114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b90612bbf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150b90612a3f565b60405180910390fd5b61151d81611a04565b50565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661168483610b7e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006116d5826115a5565b611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b90612abf565b60405180910390fd5b600061171f83610b7e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061178e57508373ffffffffffffffffffffffffffffffffffffffff16611776846107b2565b73ffffffffffffffffffffffffffffffffffffffff16145b8061179f575061179e8185611394565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166117c882610b7e565b73ffffffffffffffffffffffffffffffffffffffff161461181e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181590612bdf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561188e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188590612a7f565b60405180910390fd5b611899838383611d37565b6118a4600082611611565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118f49190612e85565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461194b9190612da4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ae4828260405180602001604052806000815250611d3c565b5050565b611af38484846117a8565b611aff84848484611d97565b611b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3590612a1f565b60405180910390fd5b50505050565b606060098054611b5390612f6f565b80601f0160208091040260200160405190810160405280929190818152602001828054611b7f90612f6f565b8015611bcc5780601f10611ba157610100808354040283529160200191611bcc565b820191906000526020600020905b815481529060010190602001808311611baf57829003601f168201915b5050505050905090565b60606000821415611c1e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d32565b600082905060005b60008214611c50578080611c3990612fd2565b915050600a82611c499190612dfa565b9150611c26565b60008167ffffffffffffffff811115611c6c57611c6b613108565b5b6040519080825280601f01601f191660200182016040528015611c9e5781602001600182028036833780820191505090505b5090505b60008514611d2b57600182611cb79190612e85565b9150600a85611cc6919061301b565b6030611cd29190612da4565b60f81b818381518110611ce857611ce76130d9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d249190612dfa565b9450611ca2565b8093505050505b919050565b505050565b611d468383611f2e565b611d536000848484611d97565b611d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8990612a1f565b60405180910390fd5b505050565b6000611db88473ffffffffffffffffffffffffffffffffffffffff16611520565b15611f21578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611de161159d565b8786866040518563ffffffff1660e01b8152600401611e039493929190612996565b602060405180830381600087803b158015611e1d57600080fd5b505af1925050508015611e4e57506040513d601f19601f82011682018060405250810190611e4b9190612505565b60015b611ed1573d8060008114611e7e576040519150601f19603f3d011682016040523d82523d6000602084013e611e83565b606091505b50600081511415611ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec090612a1f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611f26565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9590612b5f565b60405180910390fd5b611fa7816115a5565b15611fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fde90612a5f565b60405180910390fd5b611ff360008383611d37565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120439190612da4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461210890612f6f565b90600052602060002090601f01602090048101928261212a5760008555612171565b82601f1061214357805160ff1916838001178555612171565b82800160010185558215612171579182015b82811115612170578251825591602001919060010190612155565b5b50905061217e9190612182565b5090565b5b8082111561219b576000816000905550600101612183565b5090565b60006121b26121ad84612cff565b612cda565b9050828152602081018484840111156121ce576121cd61313c565b5b6121d9848285612f2d565b509392505050565b60006121f46121ef84612d30565b612cda565b9050828152602081018484840111156122105761220f61313c565b5b61221b848285612f2d565b509392505050565b600081359050612232816136a7565b92915050565b600081359050612247816136be565b92915050565b60008135905061225c816136d5565b92915050565b600081519050612271816136d5565b92915050565b600082601f83011261228c5761228b613137565b5b813561229c84826020860161219f565b91505092915050565b600082601f8301126122ba576122b9613137565b5b81356122ca8482602086016121e1565b91505092915050565b6000813590506122e2816136ec565b92915050565b6000602082840312156122fe576122fd613146565b5b600061230c84828501612223565b91505092915050565b6000806040838503121561232c5761232b613146565b5b600061233a85828601612223565b925050602061234b85828601612223565b9150509250929050565b60008060006060848603121561236e5761236d613146565b5b600061237c86828701612223565b935050602061238d86828701612223565b925050604061239e868287016122d3565b9150509250925092565b600080600080608085870312156123c2576123c1613146565b5b60006123d087828801612223565b94505060206123e187828801612223565b93505060406123f2878288016122d3565b925050606085013567ffffffffffffffff81111561241357612412613141565b5b61241f87828801612277565b91505092959194509250565b6000806040838503121561244257612441613146565b5b600061245085828601612223565b925050602061246185828601612238565b9150509250929050565b6000806040838503121561248257612481613146565b5b600061249085828601612223565b92505060206124a1858286016122d3565b9150509250929050565b6000602082840312156124c1576124c0613146565b5b60006124cf84828501612238565b91505092915050565b6000602082840312156124ee576124ed613146565b5b60006124fc8482850161224d565b91505092915050565b60006020828403121561251b5761251a613146565b5b600061252984828501612262565b91505092915050565b60006020828403121561254857612547613146565b5b600082013567ffffffffffffffff81111561256657612565613141565b5b612572848285016122a5565b91505092915050565b60006020828403121561259157612590613146565b5b600061259f848285016122d3565b91505092915050565b6125b181612eb9565b82525050565b6125c081612ecb565b82525050565b60006125d182612d61565b6125db8185612d77565b93506125eb818560208601612f3c565b6125f48161314b565b840191505092915050565b600061260a82612d6c565b6126148185612d88565b9350612624818560208601612f3c565b61262d8161314b565b840191505092915050565b600061264382612d6c565b61264d8185612d99565b935061265d818560208601612f3c565b80840191505092915050565b6000612676603283612d88565b91506126818261315c565b604082019050919050565b6000612699602683612d88565b91506126a4826131ab565b604082019050919050565b60006126bc601c83612d88565b91506126c7826131fa565b602082019050919050565b60006126df602483612d88565b91506126ea82613223565b604082019050919050565b6000612702601983612d88565b915061270d82613272565b602082019050919050565b6000612725602c83612d88565b91506127308261329b565b604082019050919050565b6000612748602183612d88565b9150612753826132ea565b604082019050919050565b600061276b603883612d88565b915061277682613339565b604082019050919050565b600061278e602a83612d88565b915061279982613388565b604082019050919050565b60006127b1602983612d88565b91506127bc826133d7565b604082019050919050565b60006127d4602083612d88565b91506127df82613426565b602082019050919050565b60006127f7601a83612d88565b91506128028261344f565b602082019050919050565b600061281a602c83612d88565b915061282582613478565b604082019050919050565b600061283d602083612d88565b9150612848826134c7565b602082019050919050565b6000612860602983612d88565b915061286b826134f0565b604082019050919050565b6000612883602f83612d88565b915061288e8261353f565b604082019050919050565b60006128a6601b83612d88565b91506128b18261358e565b602082019050919050565b60006128c9602183612d88565b91506128d4826135b7565b604082019050919050565b60006128ec601983612d88565b91506128f782613606565b602082019050919050565b600061290f603183612d88565b915061291a8261362f565b604082019050919050565b6000612932601583612d88565b915061293d8261367e565b602082019050919050565b61295181612f23565b82525050565b60006129638285612638565b915061296f8284612638565b91508190509392505050565b600060208201905061299060008301846125a8565b92915050565b60006080820190506129ab60008301876125a8565b6129b860208301866125a8565b6129c56040830185612948565b81810360608301526129d781846125c6565b905095945050505050565b60006020820190506129f760008301846125b7565b92915050565b60006020820190508181036000830152612a1781846125ff565b905092915050565b60006020820190508181036000830152612a3881612669565b9050919050565b60006020820190508181036000830152612a588161268c565b9050919050565b60006020820190508181036000830152612a78816126af565b9050919050565b60006020820190508181036000830152612a98816126d2565b9050919050565b60006020820190508181036000830152612ab8816126f5565b9050919050565b60006020820190508181036000830152612ad881612718565b9050919050565b60006020820190508181036000830152612af88161273b565b9050919050565b60006020820190508181036000830152612b188161275e565b9050919050565b60006020820190508181036000830152612b3881612781565b9050919050565b60006020820190508181036000830152612b58816127a4565b9050919050565b60006020820190508181036000830152612b78816127c7565b9050919050565b60006020820190508181036000830152612b98816127ea565b9050919050565b60006020820190508181036000830152612bb88161280d565b9050919050565b60006020820190508181036000830152612bd881612830565b9050919050565b60006020820190508181036000830152612bf881612853565b9050919050565b60006020820190508181036000830152612c1881612876565b9050919050565b60006020820190508181036000830152612c3881612899565b9050919050565b60006020820190508181036000830152612c58816128bc565b9050919050565b60006020820190508181036000830152612c78816128df565b9050919050565b60006020820190508181036000830152612c9881612902565b9050919050565b60006020820190508181036000830152612cb881612925565b9050919050565b6000602082019050612cd46000830184612948565b92915050565b6000612ce4612cf5565b9050612cf08282612fa1565b919050565b6000604051905090565b600067ffffffffffffffff821115612d1a57612d19613108565b5b612d238261314b565b9050602081019050919050565b600067ffffffffffffffff821115612d4b57612d4a613108565b5b612d548261314b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612daf82612f23565b9150612dba83612f23565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612def57612dee61304c565b5b828201905092915050565b6000612e0582612f23565b9150612e1083612f23565b925082612e2057612e1f61307b565b5b828204905092915050565b6000612e3682612f23565b9150612e4183612f23565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e7a57612e7961304c565b5b828202905092915050565b6000612e9082612f23565b9150612e9b83612f23565b925082821015612eae57612ead61304c565b5b828203905092915050565b6000612ec482612f03565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f5a578082015181840152602081019050612f3f565b83811115612f69576000848401525b50505050565b60006002820490506001821680612f8757607f821691505b60208210811415612f9b57612f9a6130aa565b5b50919050565b612faa8261314b565b810181811067ffffffffffffffff82111715612fc957612fc8613108565b5b80604052505050565b6000612fdd82612f23565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130105761300f61304c565b5b600182019050919050565b600061302682612f23565b915061303183612f23565b9250826130415761304061307b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5769746864726177616c20616d6f756e7420657863656564732062616c616e6360008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f596f752063616e206f6e6c79206d696e742031302072696e6773000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d2072696e6720737570706c790000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d696e74696e6720686173206e6f7420626567756e0000000000000000000000600082015250565b6136b081612eb9565b81146136bb57600080fd5b50565b6136c781612ecb565b81146136d257600080fd5b50565b6136de81612ed7565b81146136e957600080fd5b50565b6136f581612f23565b811461370057600080fd5b5056fea264697066735822122067f2034461c4dfdee876bb9cd0e57d054232d34eb971f8712a1958a558a37f7664736f6c6343000807003368747470733a2f2f7777772e74686563727970746f72696e67732e636f6d2f6170692f

Deployed Bytecode

0x6080604052600436106101665760003560e01c8063715018a6116100d15780639f181b5e1161008a578063b88d4fde11610064578063b88d4fde146104d9578063c87b56dd14610502578063e985e9c51461053f578063f2fde38b1461057c57610166565b80639f181b5e14610469578063a0712d6814610494578063a22cb465146104b057610166565b8063715018a61461039e578063853828b6146103b55780638da5cb5b146103bf57806391b7f5ed146103ea57806395d89b411461041357806398d5fdca1461043e57610166565b80632e1a7d4d116101235780632e1a7d4d1461028b57806342842e0e146102a757806355f804b3146102d05780635c975abb146102f95780636352211e1461032457806370a082311461036157610166565b806301ffc9a71461016b57806302329a29146101a857806306fdde03146101d1578063081812fc146101fc578063095ea7b31461023957806323b872dd14610262575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d91906124d8565b6105a5565b60405161019f91906129e2565b60405180910390f35b3480156101b457600080fd5b506101cf60048036038101906101ca91906124ab565b610687565b005b3480156101dd57600080fd5b506101e6610720565b6040516101f391906129fd565b60405180910390f35b34801561020857600080fd5b50610223600480360381019061021e919061257b565b6107b2565b604051610230919061297b565b60405180910390f35b34801561024557600080fd5b50610260600480360381019061025b919061246b565b610837565b005b34801561026e57600080fd5b5061028960048036038101906102849190612355565b61094f565b005b6102a560048036038101906102a0919061257b565b6109af565b005b3480156102b357600080fd5b506102ce60048036038101906102c99190612355565b610ab5565b005b3480156102dc57600080fd5b506102f760048036038101906102f29190612532565b610ad5565b005b34801561030557600080fd5b5061030e610b6b565b60405161031b91906129e2565b60405180910390f35b34801561033057600080fd5b5061034b6004803603810190610346919061257b565b610b7e565b604051610358919061297b565b60405180910390f35b34801561036d57600080fd5b50610388600480360381019061038391906122e8565b610c30565b6040516103959190612cbf565b60405180910390f35b3480156103aa57600080fd5b506103b3610ce8565b005b6103bd610d70565b005b3480156103cb57600080fd5b506103d4610e32565b6040516103e1919061297b565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c919061257b565b610e5c565b005b34801561041f57600080fd5b50610428610ee2565b60405161043591906129fd565b60405180910390f35b34801561044a57600080fd5b50610453610f74565b6040516104609190612cbf565b60405180910390f35b34801561047557600080fd5b5061047e610f7e565b60405161048b9190612cbf565b60405180910390f35b6104ae60048036038101906104a9919061257b565b610f84565b005b3480156104bc57600080fd5b506104d760048036038101906104d2919061242b565b61110a565b005b3480156104e557600080fd5b5061050060048036038101906104fb91906123a8565b61128b565b005b34801561050e57600080fd5b506105296004803603810190610524919061257b565b6112ed565b60405161053691906129fd565b60405180910390f35b34801561054b57600080fd5b5061056660048036038101906105619190612315565b611394565b60405161057391906129e2565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e91906122e8565b611428565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610680575061067f82611533565b5b9050919050565b61068f61159d565b73ffffffffffffffffffffffffffffffffffffffff166106ad610e32565b73ffffffffffffffffffffffffffffffffffffffff1614610703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fa90612bbf565b60405180910390fd5b80600860006101000a81548160ff02191690831515021790555050565b60606000805461072f90612f6f565b80601f016020809104026020016040519081016040528092919081815260200182805461075b90612f6f565b80156107a85780601f1061077d576101008083540402835291602001916107a8565b820191906000526020600020905b81548152906001019060200180831161078b57829003601f168201915b5050505050905090565b60006107bd826115a5565b6107fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f390612b9f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061084282610b7e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108aa90612c3f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108d261159d565b73ffffffffffffffffffffffffffffffffffffffff1614806109015750610900816108fb61159d565b611394565b5b610940576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093790612aff565b60405180910390fd5b61094a8383611611565b505050565b61096061095a61159d565b826116ca565b61099f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099690612c7f565b60405180910390fd5b6109aa8383836117a8565b505050565b6109b761159d565b73ffffffffffffffffffffffffffffffffffffffff166109d5610e32565b73ffffffffffffffffffffffffffffffffffffffff1614610a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2290612bbf565b60405180910390fd5b600047905080821115610a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6a90612adf565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050610ab157600080fd5b5050565b610ad08383836040518060200160405280600081525061128b565b505050565b610add61159d565b73ffffffffffffffffffffffffffffffffffffffff16610afb610e32565b73ffffffffffffffffffffffffffffffffffffffff1614610b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4890612bbf565b60405180910390fd5b8060099080519060200190610b679291906120fc565b5050565b600860009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1e90612b3f565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9890612b1f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cf061159d565b73ffffffffffffffffffffffffffffffffffffffff16610d0e610e32565b73ffffffffffffffffffffffffffffffffffffffff1614610d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5b90612bbf565b60405180910390fd5b610d6e6000611a04565b565b610d7861159d565b73ffffffffffffffffffffffffffffffffffffffff16610d96610e32565b73ffffffffffffffffffffffffffffffffffffffff1614610dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de390612bbf565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610e2f57600080fd5b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e6461159d565b73ffffffffffffffffffffffffffffffffffffffff16610e82610e32565b73ffffffffffffffffffffffffffffffffffffffff1614610ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecf90612bbf565b60405180910390fd5b80600a8190555050565b606060018054610ef190612f6f565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1d90612f6f565b8015610f6a5780601f10610f3f57610100808354040283529160200191610f6a565b820191906000526020600020905b815481529060010190602001808311610f4d57829003601f168201915b5050505050905090565b6000600a54905090565b60075481565b600860009054906101000a900460ff1615610fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcb90612c9f565b60405180910390fd5b600b8110611017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100e90612b7f565b60405180910390fd5b611771816007546110289190612da4565b10611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f90612c1f565b60405180910390fd5b80600a546110769190612e2b565b3410156110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af90612c5f565b60405180910390fd5b60005b818110156110ed576110da33826007546110d59190612da4565b611aca565b80806110e590612fd2565b9150506110bb565b5080600760008282546111009190612da4565b9250508190555050565b61111261159d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117790612a9f565b60405180910390fd5b806005600061118d61159d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661123a61159d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161127f91906129e2565b60405180910390a35050565b61129c61129661159d565b836116ca565b6112db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d290612c7f565b60405180910390fd5b6112e784848484611ae8565b50505050565b60606112f8826115a5565b611337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132e90612bff565b60405180910390fd5b6000611341611b44565b90506000815111611361576040518060200160405280600081525061138c565b8061136b84611bd6565b60405160200161137c929190612957565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61143061159d565b73ffffffffffffffffffffffffffffffffffffffff1661144e610e32565b73ffffffffffffffffffffffffffffffffffffffff16146114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b90612bbf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150b90612a3f565b60405180910390fd5b61151d81611a04565b50565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661168483610b7e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006116d5826115a5565b611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b90612abf565b60405180910390fd5b600061171f83610b7e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061178e57508373ffffffffffffffffffffffffffffffffffffffff16611776846107b2565b73ffffffffffffffffffffffffffffffffffffffff16145b8061179f575061179e8185611394565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166117c882610b7e565b73ffffffffffffffffffffffffffffffffffffffff161461181e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181590612bdf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561188e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188590612a7f565b60405180910390fd5b611899838383611d37565b6118a4600082611611565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118f49190612e85565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461194b9190612da4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ae4828260405180602001604052806000815250611d3c565b5050565b611af38484846117a8565b611aff84848484611d97565b611b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3590612a1f565b60405180910390fd5b50505050565b606060098054611b5390612f6f565b80601f0160208091040260200160405190810160405280929190818152602001828054611b7f90612f6f565b8015611bcc5780601f10611ba157610100808354040283529160200191611bcc565b820191906000526020600020905b815481529060010190602001808311611baf57829003601f168201915b5050505050905090565b60606000821415611c1e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d32565b600082905060005b60008214611c50578080611c3990612fd2565b915050600a82611c499190612dfa565b9150611c26565b60008167ffffffffffffffff811115611c6c57611c6b613108565b5b6040519080825280601f01601f191660200182016040528015611c9e5781602001600182028036833780820191505090505b5090505b60008514611d2b57600182611cb79190612e85565b9150600a85611cc6919061301b565b6030611cd29190612da4565b60f81b818381518110611ce857611ce76130d9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d249190612dfa565b9450611ca2565b8093505050505b919050565b505050565b611d468383611f2e565b611d536000848484611d97565b611d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8990612a1f565b60405180910390fd5b505050565b6000611db88473ffffffffffffffffffffffffffffffffffffffff16611520565b15611f21578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611de161159d565b8786866040518563ffffffff1660e01b8152600401611e039493929190612996565b602060405180830381600087803b158015611e1d57600080fd5b505af1925050508015611e4e57506040513d601f19601f82011682018060405250810190611e4b9190612505565b60015b611ed1573d8060008114611e7e576040519150601f19603f3d011682016040523d82523d6000602084013e611e83565b606091505b50600081511415611ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec090612a1f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611f26565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9590612b5f565b60405180910390fd5b611fa7816115a5565b15611fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fde90612a5f565b60405180910390fd5b611ff360008383611d37565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120439190612da4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461210890612f6f565b90600052602060002090601f01602090048101928261212a5760008555612171565b82601f1061214357805160ff1916838001178555612171565b82800160010185558215612171579182015b82811115612170578251825591602001919060010190612155565b5b50905061217e9190612182565b5090565b5b8082111561219b576000816000905550600101612183565b5090565b60006121b26121ad84612cff565b612cda565b9050828152602081018484840111156121ce576121cd61313c565b5b6121d9848285612f2d565b509392505050565b60006121f46121ef84612d30565b612cda565b9050828152602081018484840111156122105761220f61313c565b5b61221b848285612f2d565b509392505050565b600081359050612232816136a7565b92915050565b600081359050612247816136be565b92915050565b60008135905061225c816136d5565b92915050565b600081519050612271816136d5565b92915050565b600082601f83011261228c5761228b613137565b5b813561229c84826020860161219f565b91505092915050565b600082601f8301126122ba576122b9613137565b5b81356122ca8482602086016121e1565b91505092915050565b6000813590506122e2816136ec565b92915050565b6000602082840312156122fe576122fd613146565b5b600061230c84828501612223565b91505092915050565b6000806040838503121561232c5761232b613146565b5b600061233a85828601612223565b925050602061234b85828601612223565b9150509250929050565b60008060006060848603121561236e5761236d613146565b5b600061237c86828701612223565b935050602061238d86828701612223565b925050604061239e868287016122d3565b9150509250925092565b600080600080608085870312156123c2576123c1613146565b5b60006123d087828801612223565b94505060206123e187828801612223565b93505060406123f2878288016122d3565b925050606085013567ffffffffffffffff81111561241357612412613141565b5b61241f87828801612277565b91505092959194509250565b6000806040838503121561244257612441613146565b5b600061245085828601612223565b925050602061246185828601612238565b9150509250929050565b6000806040838503121561248257612481613146565b5b600061249085828601612223565b92505060206124a1858286016122d3565b9150509250929050565b6000602082840312156124c1576124c0613146565b5b60006124cf84828501612238565b91505092915050565b6000602082840312156124ee576124ed613146565b5b60006124fc8482850161224d565b91505092915050565b60006020828403121561251b5761251a613146565b5b600061252984828501612262565b91505092915050565b60006020828403121561254857612547613146565b5b600082013567ffffffffffffffff81111561256657612565613141565b5b612572848285016122a5565b91505092915050565b60006020828403121561259157612590613146565b5b600061259f848285016122d3565b91505092915050565b6125b181612eb9565b82525050565b6125c081612ecb565b82525050565b60006125d182612d61565b6125db8185612d77565b93506125eb818560208601612f3c565b6125f48161314b565b840191505092915050565b600061260a82612d6c565b6126148185612d88565b9350612624818560208601612f3c565b61262d8161314b565b840191505092915050565b600061264382612d6c565b61264d8185612d99565b935061265d818560208601612f3c565b80840191505092915050565b6000612676603283612d88565b91506126818261315c565b604082019050919050565b6000612699602683612d88565b91506126a4826131ab565b604082019050919050565b60006126bc601c83612d88565b91506126c7826131fa565b602082019050919050565b60006126df602483612d88565b91506126ea82613223565b604082019050919050565b6000612702601983612d88565b915061270d82613272565b602082019050919050565b6000612725602c83612d88565b91506127308261329b565b604082019050919050565b6000612748602183612d88565b9150612753826132ea565b604082019050919050565b600061276b603883612d88565b915061277682613339565b604082019050919050565b600061278e602a83612d88565b915061279982613388565b604082019050919050565b60006127b1602983612d88565b91506127bc826133d7565b604082019050919050565b60006127d4602083612d88565b91506127df82613426565b602082019050919050565b60006127f7601a83612d88565b91506128028261344f565b602082019050919050565b600061281a602c83612d88565b915061282582613478565b604082019050919050565b600061283d602083612d88565b9150612848826134c7565b602082019050919050565b6000612860602983612d88565b915061286b826134f0565b604082019050919050565b6000612883602f83612d88565b915061288e8261353f565b604082019050919050565b60006128a6601b83612d88565b91506128b18261358e565b602082019050919050565b60006128c9602183612d88565b91506128d4826135b7565b604082019050919050565b60006128ec601983612d88565b91506128f782613606565b602082019050919050565b600061290f603183612d88565b915061291a8261362f565b604082019050919050565b6000612932601583612d88565b915061293d8261367e565b602082019050919050565b61295181612f23565b82525050565b60006129638285612638565b915061296f8284612638565b91508190509392505050565b600060208201905061299060008301846125a8565b92915050565b60006080820190506129ab60008301876125a8565b6129b860208301866125a8565b6129c56040830185612948565b81810360608301526129d781846125c6565b905095945050505050565b60006020820190506129f760008301846125b7565b92915050565b60006020820190508181036000830152612a1781846125ff565b905092915050565b60006020820190508181036000830152612a3881612669565b9050919050565b60006020820190508181036000830152612a588161268c565b9050919050565b60006020820190508181036000830152612a78816126af565b9050919050565b60006020820190508181036000830152612a98816126d2565b9050919050565b60006020820190508181036000830152612ab8816126f5565b9050919050565b60006020820190508181036000830152612ad881612718565b9050919050565b60006020820190508181036000830152612af88161273b565b9050919050565b60006020820190508181036000830152612b188161275e565b9050919050565b60006020820190508181036000830152612b3881612781565b9050919050565b60006020820190508181036000830152612b58816127a4565b9050919050565b60006020820190508181036000830152612b78816127c7565b9050919050565b60006020820190508181036000830152612b98816127ea565b9050919050565b60006020820190508181036000830152612bb88161280d565b9050919050565b60006020820190508181036000830152612bd881612830565b9050919050565b60006020820190508181036000830152612bf881612853565b9050919050565b60006020820190508181036000830152612c1881612876565b9050919050565b60006020820190508181036000830152612c3881612899565b9050919050565b60006020820190508181036000830152612c58816128bc565b9050919050565b60006020820190508181036000830152612c78816128df565b9050919050565b60006020820190508181036000830152612c9881612902565b9050919050565b60006020820190508181036000830152612cb881612925565b9050919050565b6000602082019050612cd46000830184612948565b92915050565b6000612ce4612cf5565b9050612cf08282612fa1565b919050565b6000604051905090565b600067ffffffffffffffff821115612d1a57612d19613108565b5b612d238261314b565b9050602081019050919050565b600067ffffffffffffffff821115612d4b57612d4a613108565b5b612d548261314b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612daf82612f23565b9150612dba83612f23565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612def57612dee61304c565b5b828201905092915050565b6000612e0582612f23565b9150612e1083612f23565b925082612e2057612e1f61307b565b5b828204905092915050565b6000612e3682612f23565b9150612e4183612f23565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e7a57612e7961304c565b5b828202905092915050565b6000612e9082612f23565b9150612e9b83612f23565b925082821015612eae57612ead61304c565b5b828203905092915050565b6000612ec482612f03565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f5a578082015181840152602081019050612f3f565b83811115612f69576000848401525b50505050565b60006002820490506001821680612f8757607f821691505b60208210811415612f9b57612f9a6130aa565b5b50919050565b612faa8261314b565b810181811067ffffffffffffffff82111715612fc957612fc8613108565b5b80604052505050565b6000612fdd82612f23565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130105761300f61304c565b5b600182019050919050565b600061302682612f23565b915061303183612f23565b9250826130415761304061307b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5769746864726177616c20616d6f756e7420657863656564732062616c616e6360008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f596f752063616e206f6e6c79206d696e742031302072696e6773000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d2072696e6720737570706c790000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d696e74696e6720686173206e6f7420626567756e0000000000000000000000600082015250565b6136b081612eb9565b81146136bb57600080fd5b50565b6136c781612ecb565b81146136d257600080fd5b50565b6136de81612ed7565b81146136e957600080fd5b50565b6136f581612f23565b811461370057600080fd5b5056fea264697066735822122067f2034461c4dfdee876bb9cd0e57d054232d34eb971f8712a1958a558a37f7664736f6c63430008070033

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.