ETH Price: $3,511.23 (+0.70%)
Gas: 2 Gwei

Token

Bettorverse (BTV)
 

Overview

Max Total Supply

4,000 BTV

Holders

461

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
kingbling.eth
Balance
2 BTV
0x346c28a7b75ea7f1f7935c8468793468f4aa7b4e
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Bettorverse is a collection of 1168 NFTs that act as a Membership Token. Owning a bettorverse token grants you access to the bettorverse discord. Check out https://Bettorverse.com for more information!

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BettorverseNFT

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : Bettorverse.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.6;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract BettorverseNFT is ERC721, Ownable { 
    
    string internal baseTokenURI = 'https://bettorverse.com/api/';
    uint public price = 0.05 ether;
    uint public totalSupply = 4000;
    uint public nonce = 0;
    uint public maxTx = 0;
    
    string private _mintPhrase;
    
    mapping(address => mapping(uint => uint)) internal blockMints;
    
    event Mint(address owner, uint qty);
    event Withdraw(uint amount);
    
    constructor() ERC721("Bettorverse", "BTV") {}
    
    function setPrice(uint newPrice) external onlyOwner {
        price = newPrice;
    }
    
    function setMintPhrase(string calldata phrase) external onlyOwner {
        _mintPhrase = phrase;
    }
    
    function setBaseTokenURI(string calldata _uri) external onlyOwner {
        baseTokenURI = _uri;
    }
    
    function setTotalSupply(uint newSupply) external onlyOwner {
        totalSupply = newSupply;
    }
    
    function setMaxTx(uint newMax) external onlyOwner {
        maxTx = newMax;
    }

    function _baseURI() internal override view returns (string memory) {
        return baseTokenURI;
    }
    
    function buy(uint qty, string calldata phrase) external payable {
        require(keccak256(bytes(phrase)) == keccak256(bytes(_mintPhrase)), "hmmmm");
        require(qty <= maxTx || qty > 0, "TRANSACTION: qty of mints not alowed");
        require((qty + blockMints[_msgSender()][block.number]) <= maxTx, "Asshole");
        require(qty + nonce <= totalSupply, "SUPPLY: Value exceeds totalSupply");
        require(msg.value == price * qty, "PAYMENT: invalid value");
        blockMints[_msgSender()][block.number] += qty;
        for(uint i = 0; i < qty; i++){
            nonce++;
            _safeMint(_msgSender(), nonce);
        }
        emit Mint(_msgSender(), qty);
    }
    
    function giveaway(address to, uint qty) external onlyOwner{
        require(qty + nonce <= totalSupply, "SUPPLY: Value exceeds totalSupply");
         for(uint i = 0; i < qty; i++){
            nonce++;
            _safeMint(to, nonce);
        }
    }
    
    function withdraw() external onlyOwner {
        payable(_msgSender()).transfer(address(this).balance);
    }
    
}

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

File 3 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 4 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 5 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 6 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);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

File 7 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 8 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 9 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 10 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.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 11 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);
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "berlin",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "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":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"qty","type":"uint256"}],"name":"Mint","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","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":"qty","type":"uint256"},{"internalType":"string","name":"phrase","type":"string"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"giveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"phrase","type":"string"}],"name":"setMintPhrase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280601c81526020017f68747470733a2f2f626574746f7276657273652e636f6d2f6170692f0000000081525060079080519060200190620000519291906200020f565b5066b1a2bc2ec50000600855610fa06009556000600a556000600b553480156200007a57600080fd5b506040518060400160405280600b81526020017f426574746f7276657273650000000000000000000000000000000000000000008152506040518060400160405280600381526020017f42545600000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000ff9291906200020f565b508060019080519060200190620001189291906200020f565b5050506200013b6200012f6200014160201b60201c565b6200014960201b60201c565b62000324565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021d90620002bf565b90600052602060002090601f0160209004810192826200024157600085556200028d565b82601f106200025c57805160ff19168380011785556200028d565b828001600101855582156200028d579182015b828111156200028c5782518255916020019190600101906200026f565b5b5090506200029c9190620002a0565b5090565b5b80821115620002bb576000816000905550600101620002a1565b5090565b60006002820490506001821680620002d857607f821691505b60208210811415620002ef57620002ee620002f5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613be780620003346000396000f3fe6080604052600436106101b75760003560e01c80638da5cb5b116100ec578063b88d4fde1161008a578063c87b56dd11610064578063c87b56dd146105c1578063e985e9c5146105fe578063f2fde38b1461063b578063f7ea7a3d14610664576101b7565b8063b88d4fde14610546578063b97a37771461056f578063bc33718214610598576101b7565b8063a035b1fe116100c6578063a035b1fe146104ab578063a22cb465146104d6578063affed0e0146104ff578063b7dc3b181461052a576101b7565b80638da5cb5b1461042c57806391b7f5ed1461045757806395d89b4114610480576101b7565b806330176e13116101595780636352211e116101335780636352211e1461037057806370a08231146103ad578063715018a6146103ea5780637437681e14610401576101b7565b806330176e13146103075780633ccfd60b1461033057806342842e0e14610347576101b7565b8063081812fc11610195578063081812fc1461024d578063095ea7b31461028a57806318160ddd146102b357806323b872dd146102de576101b7565b806301ffc9a7146101bc578063050225ea146101f957806306fdde0314610222575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612806565b61068d565b6040516101f09190612e71565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b91906127c6565b61076f565b005b34801561022e57600080fd5b50610237610884565b6040516102449190612e8c565b60405180910390f35b34801561025957600080fd5b50610274600480360381019061026f91906128ad565b610916565b6040516102819190612de1565b60405180910390f35b34801561029657600080fd5b506102b160048036038101906102ac91906127c6565b61099b565b005b3480156102bf57600080fd5b506102c8610ab3565b6040516102d5919061314e565b60405180910390f35b3480156102ea57600080fd5b50610305600480360381019061030091906126b0565b610ab9565b005b34801561031357600080fd5b5061032e60048036038101906103299190612860565b610b19565b005b34801561033c57600080fd5b50610345610bab565b005b34801561035357600080fd5b5061036e600480360381019061036991906126b0565b610c77565b005b34801561037c57600080fd5b50610397600480360381019061039291906128ad565b610c97565b6040516103a49190612de1565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf9190612643565b610d49565b6040516103e1919061314e565b60405180910390f35b3480156103f657600080fd5b506103ff610e01565b005b34801561040d57600080fd5b50610416610e89565b604051610423919061314e565b60405180910390f35b34801561043857600080fd5b50610441610e8f565b60405161044e9190612de1565b60405180910390f35b34801561046357600080fd5b5061047e600480360381019061047991906128ad565b610eb9565b005b34801561048c57600080fd5b50610495610f3f565b6040516104a29190612e8c565b60405180910390f35b3480156104b757600080fd5b506104c0610fd1565b6040516104cd919061314e565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f89190612786565b610fd7565b005b34801561050b57600080fd5b50610514611158565b604051610521919061314e565b60405180910390f35b610544600480360381019061053f91906128da565b61115e565b005b34801561055257600080fd5b5061056d60048036038101906105689190612703565b611462565b005b34801561057b57600080fd5b5061059660048036038101906105919190612860565b6114c4565b005b3480156105a457600080fd5b506105bf60048036038101906105ba91906128ad565b611556565b005b3480156105cd57600080fd5b506105e860048036038101906105e391906128ad565b6115dc565b6040516105f59190612e8c565b60405180910390f35b34801561060a57600080fd5b5061062560048036038101906106209190612670565b611683565b6040516106329190612e71565b60405180910390f35b34801561064757600080fd5b50610662600480360381019061065d9190612643565b611717565b005b34801561067057600080fd5b5061068b600480360381019061068691906128ad565b61180f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610768575061076782611895565b5b9050919050565b6107776118ff565b73ffffffffffffffffffffffffffffffffffffffff16610795610e8f565b73ffffffffffffffffffffffffffffffffffffffff16146107eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e29061308e565b60405180910390fd5b600954600a54826107fc9190613222565b111561083d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108349061310e565b60405180910390fd5b60005b8181101561087f57600a600081548092919061085b90613450565b919050555061086c83600a54611907565b808061087790613450565b915050610840565b505050565b606060008054610893906133ed565b80601f01602080910402602001604051908101604052809291908181526020018280546108bf906133ed565b801561090c5780601f106108e15761010080835404028352916020019161090c565b820191906000526020600020905b8154815290600101906020018083116108ef57829003601f168201915b5050505050905090565b600061092182611925565b610960576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109579061306e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109a682610c97565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0e906130ee565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a366118ff565b73ffffffffffffffffffffffffffffffffffffffff161480610a655750610a6481610a5f6118ff565b611683565b5b610aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9b90612fce565b60405180910390fd5b610aae8383611991565b505050565b60095481565b610aca610ac46118ff565b82611a4a565b610b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b009061312e565b60405180910390fd5b610b14838383611b28565b505050565b610b216118ff565b73ffffffffffffffffffffffffffffffffffffffff16610b3f610e8f565b73ffffffffffffffffffffffffffffffffffffffff1614610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c9061308e565b60405180910390fd5b818160079190610ba6929190612471565b505050565b610bb36118ff565b73ffffffffffffffffffffffffffffffffffffffff16610bd1610e8f565b73ffffffffffffffffffffffffffffffffffffffff1614610c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1e9061308e565b60405180910390fd5b610c2f6118ff565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c74573d6000803e3d6000fd5b50565b610c9283838360405180602001604052806000815250611462565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d379061300e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db190612fee565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e096118ff565b73ffffffffffffffffffffffffffffffffffffffff16610e27610e8f565b73ffffffffffffffffffffffffffffffffffffffff1614610e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e749061308e565b60405180910390fd5b610e876000611d84565b565b600b5481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ec16118ff565b73ffffffffffffffffffffffffffffffffffffffff16610edf610e8f565b73ffffffffffffffffffffffffffffffffffffffff1614610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c9061308e565b60405180910390fd5b8060088190555050565b606060018054610f4e906133ed565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7a906133ed565b8015610fc75780601f10610f9c57610100808354040283529160200191610fc7565b820191906000526020600020905b815481529060010190602001808311610faa57829003601f168201915b5050505050905090565b60085481565b610fdf6118ff565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561104d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104490612f8e565b60405180910390fd5b806005600061105a6118ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111076118ff565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161114c9190612e71565b60405180910390a35050565b600a5481565b600c60405161116d9190612da6565b60405180910390208282604051611185929190612d8d565b6040518091039020146111cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c490612eee565b60405180910390fd5b600b54831115806111de5750600083115b61121d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121490612f2e565b60405180910390fd5b600b54600d600061122c6118ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600043815260200190815260200160002054846112839190613222565b11156112c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bb9061302e565b60405180910390fd5b600954600a54846112d59190613222565b1115611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d9061310e565b60405180910390fd5b8260085461132491906132a9565b3414611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135c90612f4e565b60405180910390fd5b82600d60006113726118ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600043815260200190815260200160002060008282546113cc9190613222565b9250508190555060005b8381101561141c57600a60008154809291906113f190613450565b91905055506114096114016118ff565b600a54611907565b808061141490613450565b9150506113d6565b507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968856114466118ff565b84604051611455929190612e48565b60405180910390a1505050565b61147361146d6118ff565b83611a4a565b6114b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a99061312e565b60405180910390fd5b6114be84848484611e4a565b50505050565b6114cc6118ff565b73ffffffffffffffffffffffffffffffffffffffff166114ea610e8f565b73ffffffffffffffffffffffffffffffffffffffff1614611540576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115379061308e565b60405180910390fd5b8181600c9190611551929190612471565b505050565b61155e6118ff565b73ffffffffffffffffffffffffffffffffffffffff1661157c610e8f565b73ffffffffffffffffffffffffffffffffffffffff16146115d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c99061308e565b60405180910390fd5b80600b8190555050565b60606115e782611925565b611626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161d906130ce565b60405180910390fd5b6000611630611ea6565b90506000815111611650576040518060200160405280600081525061167b565b8061165a84611f38565b60405160200161166b929190612dbd565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61171f6118ff565b73ffffffffffffffffffffffffffffffffffffffff1661173d610e8f565b73ffffffffffffffffffffffffffffffffffffffff1614611793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178a9061308e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fa90612ece565b60405180910390fd5b61180c81611d84565b50565b6118176118ff565b73ffffffffffffffffffffffffffffffffffffffff16611835610e8f565b73ffffffffffffffffffffffffffffffffffffffff161461188b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118829061308e565b60405180910390fd5b8060098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b611921828260405180602001604052806000815250612099565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a0483610c97565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611a5582611925565b611a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8b90612fae565b60405180910390fd5b6000611a9f83610c97565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b0e57508373ffffffffffffffffffffffffffffffffffffffff16611af684610916565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b1f5750611b1e8185611683565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b4882610c97565b73ffffffffffffffffffffffffffffffffffffffff1614611b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b95906130ae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0590612f6e565b60405180910390fd5b611c198383836120f4565b611c24600082611991565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c749190613303565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ccb9190613222565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e55848484611b28565b611e61848484846120f9565b611ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9790612eae565b60405180910390fd5b50505050565b606060078054611eb5906133ed565b80601f0160208091040260200160405190810160405280929190818152602001828054611ee1906133ed565b8015611f2e5780601f10611f0357610100808354040283529160200191611f2e565b820191906000526020600020905b815481529060010190602001808311611f1157829003601f168201915b5050505050905090565b60606000821415611f80576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612094565b600082905060005b60008214611fb2578080611f9b90613450565b915050600a82611fab9190613278565b9150611f88565b60008167ffffffffffffffff811115611fce57611fcd613586565b5b6040519080825280601f01601f1916602001820160405280156120005781602001600182028036833780820191505090505b5090505b6000851461208d576001826120199190613303565b9150600a856120289190613499565b60306120349190613222565b60f81b81838151811061204a57612049613557565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120869190613278565b9450612004565b8093505050505b919050565b6120a38383612290565b6120b060008484846120f9565b6120ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e690612eae565b60405180910390fd5b505050565b505050565b600061211a8473ffffffffffffffffffffffffffffffffffffffff1661245e565b15612283578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121436118ff565b8786866040518563ffffffff1660e01b81526004016121659493929190612dfc565b602060405180830381600087803b15801561217f57600080fd5b505af19250505080156121b057506040513d601f19601f820116820180604052508101906121ad9190612833565b60015b612233573d80600081146121e0576040519150601f19603f3d011682016040523d82523d6000602084013e6121e5565b606091505b5060008151141561222b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222290612eae565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612288565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f79061304e565b60405180910390fd5b61230981611925565b15612349576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234090612f0e565b60405180910390fd5b612355600083836120f4565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123a59190613222565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461247d906133ed565b90600052602060002090601f01602090048101928261249f57600085556124e6565b82601f106124b857803560ff19168380011785556124e6565b828001600101855582156124e6579182015b828111156124e55782358255916020019190600101906124ca565b5b5090506124f391906124f7565b5090565b5b808211156125105760008160009055506001016124f8565b5090565b60006125276125228461318e565b613169565b905082815260208101848484011115612543576125426135c4565b5b61254e8482856133ab565b509392505050565b60008135905061256581613b55565b92915050565b60008135905061257a81613b6c565b92915050565b60008135905061258f81613b83565b92915050565b6000815190506125a481613b83565b92915050565b600082601f8301126125bf576125be6135ba565b5b81356125cf848260208601612514565b91505092915050565b60008083601f8401126125ee576125ed6135ba565b5b8235905067ffffffffffffffff81111561260b5761260a6135b5565b5b602083019150836001820283011115612627576126266135bf565b5b9250929050565b60008135905061263d81613b9a565b92915050565b600060208284031215612659576126586135ce565b5b600061266784828501612556565b91505092915050565b60008060408385031215612687576126866135ce565b5b600061269585828601612556565b92505060206126a685828601612556565b9150509250929050565b6000806000606084860312156126c9576126c86135ce565b5b60006126d786828701612556565b93505060206126e886828701612556565b92505060406126f98682870161262e565b9150509250925092565b6000806000806080858703121561271d5761271c6135ce565b5b600061272b87828801612556565b945050602061273c87828801612556565b935050604061274d8782880161262e565b925050606085013567ffffffffffffffff81111561276e5761276d6135c9565b5b61277a878288016125aa565b91505092959194509250565b6000806040838503121561279d5761279c6135ce565b5b60006127ab85828601612556565b92505060206127bc8582860161256b565b9150509250929050565b600080604083850312156127dd576127dc6135ce565b5b60006127eb85828601612556565b92505060206127fc8582860161262e565b9150509250929050565b60006020828403121561281c5761281b6135ce565b5b600061282a84828501612580565b91505092915050565b600060208284031215612849576128486135ce565b5b600061285784828501612595565b91505092915050565b60008060208385031215612877576128766135ce565b5b600083013567ffffffffffffffff811115612895576128946135c9565b5b6128a1858286016125d8565b92509250509250929050565b6000602082840312156128c3576128c26135ce565b5b60006128d18482850161262e565b91505092915050565b6000806000604084860312156128f3576128f26135ce565b5b60006129018682870161262e565b935050602084013567ffffffffffffffff811115612922576129216135c9565b5b61292e868287016125d8565b92509250509250925092565b61294381613337565b82525050565b61295281613349565b82525050565b600061296483856131fb565b93506129718385846133ab565b82840190509392505050565b6000612988826131d4565b61299281856131ea565b93506129a28185602086016133ba565b6129ab816135d3565b840191505092915050565b600081546129c3816133ed565b6129cd81866131fb565b945060018216600081146129e857600181146129f957612a2c565b60ff19831686528186019350612a2c565b612a02856131bf565b60005b83811015612a2457815481890152600182019150602081019050612a05565b838801955050505b50505092915050565b6000612a40826131df565b612a4a8185613206565b9350612a5a8185602086016133ba565b612a63816135d3565b840191505092915050565b6000612a79826131df565b612a838185613217565b9350612a938185602086016133ba565b80840191505092915050565b6000612aac603283613206565b9150612ab7826135e4565b604082019050919050565b6000612acf602683613206565b9150612ada82613633565b604082019050919050565b6000612af2600583613206565b9150612afd82613682565b602082019050919050565b6000612b15601c83613206565b9150612b20826136ab565b602082019050919050565b6000612b38602483613206565b9150612b43826136d4565b604082019050919050565b6000612b5b601683613206565b9150612b6682613723565b602082019050919050565b6000612b7e602483613206565b9150612b898261374c565b604082019050919050565b6000612ba1601983613206565b9150612bac8261379b565b602082019050919050565b6000612bc4602c83613206565b9150612bcf826137c4565b604082019050919050565b6000612be7603883613206565b9150612bf282613813565b604082019050919050565b6000612c0a602a83613206565b9150612c1582613862565b604082019050919050565b6000612c2d602983613206565b9150612c38826138b1565b604082019050919050565b6000612c50600783613206565b9150612c5b82613900565b602082019050919050565b6000612c73602083613206565b9150612c7e82613929565b602082019050919050565b6000612c96602c83613206565b9150612ca182613952565b604082019050919050565b6000612cb9602083613206565b9150612cc4826139a1565b602082019050919050565b6000612cdc602983613206565b9150612ce7826139ca565b604082019050919050565b6000612cff602f83613206565b9150612d0a82613a19565b604082019050919050565b6000612d22602183613206565b9150612d2d82613a68565b604082019050919050565b6000612d45602183613206565b9150612d5082613ab7565b604082019050919050565b6000612d68603183613206565b9150612d7382613b06565b604082019050919050565b612d87816133a1565b82525050565b6000612d9a828486612958565b91508190509392505050565b6000612db282846129b6565b915081905092915050565b6000612dc98285612a6e565b9150612dd58284612a6e565b91508190509392505050565b6000602082019050612df6600083018461293a565b92915050565b6000608082019050612e11600083018761293a565b612e1e602083018661293a565b612e2b6040830185612d7e565b8181036060830152612e3d818461297d565b905095945050505050565b6000604082019050612e5d600083018561293a565b612e6a6020830184612d7e565b9392505050565b6000602082019050612e866000830184612949565b92915050565b60006020820190508181036000830152612ea68184612a35565b905092915050565b60006020820190508181036000830152612ec781612a9f565b9050919050565b60006020820190508181036000830152612ee781612ac2565b9050919050565b60006020820190508181036000830152612f0781612ae5565b9050919050565b60006020820190508181036000830152612f2781612b08565b9050919050565b60006020820190508181036000830152612f4781612b2b565b9050919050565b60006020820190508181036000830152612f6781612b4e565b9050919050565b60006020820190508181036000830152612f8781612b71565b9050919050565b60006020820190508181036000830152612fa781612b94565b9050919050565b60006020820190508181036000830152612fc781612bb7565b9050919050565b60006020820190508181036000830152612fe781612bda565b9050919050565b6000602082019050818103600083015261300781612bfd565b9050919050565b6000602082019050818103600083015261302781612c20565b9050919050565b6000602082019050818103600083015261304781612c43565b9050919050565b6000602082019050818103600083015261306781612c66565b9050919050565b6000602082019050818103600083015261308781612c89565b9050919050565b600060208201905081810360008301526130a781612cac565b9050919050565b600060208201905081810360008301526130c781612ccf565b9050919050565b600060208201905081810360008301526130e781612cf2565b9050919050565b6000602082019050818103600083015261310781612d15565b9050919050565b6000602082019050818103600083015261312781612d38565b9050919050565b6000602082019050818103600083015261314781612d5b565b9050919050565b60006020820190506131636000830184612d7e565b92915050565b6000613173613184565b905061317f828261341f565b919050565b6000604051905090565b600067ffffffffffffffff8211156131a9576131a8613586565b5b6131b2826135d3565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061322d826133a1565b9150613238836133a1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561326d5761326c6134ca565b5b828201905092915050565b6000613283826133a1565b915061328e836133a1565b92508261329e5761329d6134f9565b5b828204905092915050565b60006132b4826133a1565b91506132bf836133a1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132f8576132f76134ca565b5b828202905092915050565b600061330e826133a1565b9150613319836133a1565b92508282101561332c5761332b6134ca565b5b828203905092915050565b600061334282613381565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156133d85780820151818401526020810190506133bd565b838111156133e7576000848401525b50505050565b6000600282049050600182168061340557607f821691505b6020821081141561341957613418613528565b5b50919050565b613428826135d3565b810181811067ffffffffffffffff8211171561344757613446613586565b5b80604052505050565b600061345b826133a1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561348e5761348d6134ca565b5b600182019050919050565b60006134a4826133a1565b91506134af836133a1565b9250826134bf576134be6134f9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f686d6d6d6d000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f417373686f6c6500000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b613b5e81613337565b8114613b6957600080fd5b50565b613b7581613349565b8114613b8057600080fd5b50565b613b8c81613355565b8114613b9757600080fd5b50565b613ba3816133a1565b8114613bae57600080fd5b5056fea2646970667358221220805bac4eb7c5abc1cce1bd295da09527d79d3cfd84fc8c96e33680f2b382f00164736f6c63430008060033

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80638da5cb5b116100ec578063b88d4fde1161008a578063c87b56dd11610064578063c87b56dd146105c1578063e985e9c5146105fe578063f2fde38b1461063b578063f7ea7a3d14610664576101b7565b8063b88d4fde14610546578063b97a37771461056f578063bc33718214610598576101b7565b8063a035b1fe116100c6578063a035b1fe146104ab578063a22cb465146104d6578063affed0e0146104ff578063b7dc3b181461052a576101b7565b80638da5cb5b1461042c57806391b7f5ed1461045757806395d89b4114610480576101b7565b806330176e13116101595780636352211e116101335780636352211e1461037057806370a08231146103ad578063715018a6146103ea5780637437681e14610401576101b7565b806330176e13146103075780633ccfd60b1461033057806342842e0e14610347576101b7565b8063081812fc11610195578063081812fc1461024d578063095ea7b31461028a57806318160ddd146102b357806323b872dd146102de576101b7565b806301ffc9a7146101bc578063050225ea146101f957806306fdde0314610222575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612806565b61068d565b6040516101f09190612e71565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b91906127c6565b61076f565b005b34801561022e57600080fd5b50610237610884565b6040516102449190612e8c565b60405180910390f35b34801561025957600080fd5b50610274600480360381019061026f91906128ad565b610916565b6040516102819190612de1565b60405180910390f35b34801561029657600080fd5b506102b160048036038101906102ac91906127c6565b61099b565b005b3480156102bf57600080fd5b506102c8610ab3565b6040516102d5919061314e565b60405180910390f35b3480156102ea57600080fd5b50610305600480360381019061030091906126b0565b610ab9565b005b34801561031357600080fd5b5061032e60048036038101906103299190612860565b610b19565b005b34801561033c57600080fd5b50610345610bab565b005b34801561035357600080fd5b5061036e600480360381019061036991906126b0565b610c77565b005b34801561037c57600080fd5b50610397600480360381019061039291906128ad565b610c97565b6040516103a49190612de1565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf9190612643565b610d49565b6040516103e1919061314e565b60405180910390f35b3480156103f657600080fd5b506103ff610e01565b005b34801561040d57600080fd5b50610416610e89565b604051610423919061314e565b60405180910390f35b34801561043857600080fd5b50610441610e8f565b60405161044e9190612de1565b60405180910390f35b34801561046357600080fd5b5061047e600480360381019061047991906128ad565b610eb9565b005b34801561048c57600080fd5b50610495610f3f565b6040516104a29190612e8c565b60405180910390f35b3480156104b757600080fd5b506104c0610fd1565b6040516104cd919061314e565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f89190612786565b610fd7565b005b34801561050b57600080fd5b50610514611158565b604051610521919061314e565b60405180910390f35b610544600480360381019061053f91906128da565b61115e565b005b34801561055257600080fd5b5061056d60048036038101906105689190612703565b611462565b005b34801561057b57600080fd5b5061059660048036038101906105919190612860565b6114c4565b005b3480156105a457600080fd5b506105bf60048036038101906105ba91906128ad565b611556565b005b3480156105cd57600080fd5b506105e860048036038101906105e391906128ad565b6115dc565b6040516105f59190612e8c565b60405180910390f35b34801561060a57600080fd5b5061062560048036038101906106209190612670565b611683565b6040516106329190612e71565b60405180910390f35b34801561064757600080fd5b50610662600480360381019061065d9190612643565b611717565b005b34801561067057600080fd5b5061068b600480360381019061068691906128ad565b61180f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610768575061076782611895565b5b9050919050565b6107776118ff565b73ffffffffffffffffffffffffffffffffffffffff16610795610e8f565b73ffffffffffffffffffffffffffffffffffffffff16146107eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e29061308e565b60405180910390fd5b600954600a54826107fc9190613222565b111561083d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108349061310e565b60405180910390fd5b60005b8181101561087f57600a600081548092919061085b90613450565b919050555061086c83600a54611907565b808061087790613450565b915050610840565b505050565b606060008054610893906133ed565b80601f01602080910402602001604051908101604052809291908181526020018280546108bf906133ed565b801561090c5780601f106108e15761010080835404028352916020019161090c565b820191906000526020600020905b8154815290600101906020018083116108ef57829003601f168201915b5050505050905090565b600061092182611925565b610960576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109579061306e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109a682610c97565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0e906130ee565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a366118ff565b73ffffffffffffffffffffffffffffffffffffffff161480610a655750610a6481610a5f6118ff565b611683565b5b610aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9b90612fce565b60405180910390fd5b610aae8383611991565b505050565b60095481565b610aca610ac46118ff565b82611a4a565b610b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b009061312e565b60405180910390fd5b610b14838383611b28565b505050565b610b216118ff565b73ffffffffffffffffffffffffffffffffffffffff16610b3f610e8f565b73ffffffffffffffffffffffffffffffffffffffff1614610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c9061308e565b60405180910390fd5b818160079190610ba6929190612471565b505050565b610bb36118ff565b73ffffffffffffffffffffffffffffffffffffffff16610bd1610e8f565b73ffffffffffffffffffffffffffffffffffffffff1614610c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1e9061308e565b60405180910390fd5b610c2f6118ff565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c74573d6000803e3d6000fd5b50565b610c9283838360405180602001604052806000815250611462565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d379061300e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db190612fee565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e096118ff565b73ffffffffffffffffffffffffffffffffffffffff16610e27610e8f565b73ffffffffffffffffffffffffffffffffffffffff1614610e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e749061308e565b60405180910390fd5b610e876000611d84565b565b600b5481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ec16118ff565b73ffffffffffffffffffffffffffffffffffffffff16610edf610e8f565b73ffffffffffffffffffffffffffffffffffffffff1614610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c9061308e565b60405180910390fd5b8060088190555050565b606060018054610f4e906133ed565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7a906133ed565b8015610fc75780601f10610f9c57610100808354040283529160200191610fc7565b820191906000526020600020905b815481529060010190602001808311610faa57829003601f168201915b5050505050905090565b60085481565b610fdf6118ff565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561104d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104490612f8e565b60405180910390fd5b806005600061105a6118ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111076118ff565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161114c9190612e71565b60405180910390a35050565b600a5481565b600c60405161116d9190612da6565b60405180910390208282604051611185929190612d8d565b6040518091039020146111cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c490612eee565b60405180910390fd5b600b54831115806111de5750600083115b61121d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121490612f2e565b60405180910390fd5b600b54600d600061122c6118ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600043815260200190815260200160002054846112839190613222565b11156112c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bb9061302e565b60405180910390fd5b600954600a54846112d59190613222565b1115611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d9061310e565b60405180910390fd5b8260085461132491906132a9565b3414611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135c90612f4e565b60405180910390fd5b82600d60006113726118ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600043815260200190815260200160002060008282546113cc9190613222565b9250508190555060005b8381101561141c57600a60008154809291906113f190613450565b91905055506114096114016118ff565b600a54611907565b808061141490613450565b9150506113d6565b507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968856114466118ff565b84604051611455929190612e48565b60405180910390a1505050565b61147361146d6118ff565b83611a4a565b6114b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a99061312e565b60405180910390fd5b6114be84848484611e4a565b50505050565b6114cc6118ff565b73ffffffffffffffffffffffffffffffffffffffff166114ea610e8f565b73ffffffffffffffffffffffffffffffffffffffff1614611540576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115379061308e565b60405180910390fd5b8181600c9190611551929190612471565b505050565b61155e6118ff565b73ffffffffffffffffffffffffffffffffffffffff1661157c610e8f565b73ffffffffffffffffffffffffffffffffffffffff16146115d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c99061308e565b60405180910390fd5b80600b8190555050565b60606115e782611925565b611626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161d906130ce565b60405180910390fd5b6000611630611ea6565b90506000815111611650576040518060200160405280600081525061167b565b8061165a84611f38565b60405160200161166b929190612dbd565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61171f6118ff565b73ffffffffffffffffffffffffffffffffffffffff1661173d610e8f565b73ffffffffffffffffffffffffffffffffffffffff1614611793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178a9061308e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fa90612ece565b60405180910390fd5b61180c81611d84565b50565b6118176118ff565b73ffffffffffffffffffffffffffffffffffffffff16611835610e8f565b73ffffffffffffffffffffffffffffffffffffffff161461188b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118829061308e565b60405180910390fd5b8060098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b611921828260405180602001604052806000815250612099565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a0483610c97565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611a5582611925565b611a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8b90612fae565b60405180910390fd5b6000611a9f83610c97565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b0e57508373ffffffffffffffffffffffffffffffffffffffff16611af684610916565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b1f5750611b1e8185611683565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b4882610c97565b73ffffffffffffffffffffffffffffffffffffffff1614611b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b95906130ae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0590612f6e565b60405180910390fd5b611c198383836120f4565b611c24600082611991565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c749190613303565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ccb9190613222565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e55848484611b28565b611e61848484846120f9565b611ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9790612eae565b60405180910390fd5b50505050565b606060078054611eb5906133ed565b80601f0160208091040260200160405190810160405280929190818152602001828054611ee1906133ed565b8015611f2e5780601f10611f0357610100808354040283529160200191611f2e565b820191906000526020600020905b815481529060010190602001808311611f1157829003601f168201915b5050505050905090565b60606000821415611f80576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612094565b600082905060005b60008214611fb2578080611f9b90613450565b915050600a82611fab9190613278565b9150611f88565b60008167ffffffffffffffff811115611fce57611fcd613586565b5b6040519080825280601f01601f1916602001820160405280156120005781602001600182028036833780820191505090505b5090505b6000851461208d576001826120199190613303565b9150600a856120289190613499565b60306120349190613222565b60f81b81838151811061204a57612049613557565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120869190613278565b9450612004565b8093505050505b919050565b6120a38383612290565b6120b060008484846120f9565b6120ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e690612eae565b60405180910390fd5b505050565b505050565b600061211a8473ffffffffffffffffffffffffffffffffffffffff1661245e565b15612283578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121436118ff565b8786866040518563ffffffff1660e01b81526004016121659493929190612dfc565b602060405180830381600087803b15801561217f57600080fd5b505af19250505080156121b057506040513d601f19601f820116820180604052508101906121ad9190612833565b60015b612233573d80600081146121e0576040519150601f19603f3d011682016040523d82523d6000602084013e6121e5565b606091505b5060008151141561222b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222290612eae565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612288565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f79061304e565b60405180910390fd5b61230981611925565b15612349576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234090612f0e565b60405180910390fd5b612355600083836120f4565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123a59190613222565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461247d906133ed565b90600052602060002090601f01602090048101928261249f57600085556124e6565b82601f106124b857803560ff19168380011785556124e6565b828001600101855582156124e6579182015b828111156124e55782358255916020019190600101906124ca565b5b5090506124f391906124f7565b5090565b5b808211156125105760008160009055506001016124f8565b5090565b60006125276125228461318e565b613169565b905082815260208101848484011115612543576125426135c4565b5b61254e8482856133ab565b509392505050565b60008135905061256581613b55565b92915050565b60008135905061257a81613b6c565b92915050565b60008135905061258f81613b83565b92915050565b6000815190506125a481613b83565b92915050565b600082601f8301126125bf576125be6135ba565b5b81356125cf848260208601612514565b91505092915050565b60008083601f8401126125ee576125ed6135ba565b5b8235905067ffffffffffffffff81111561260b5761260a6135b5565b5b602083019150836001820283011115612627576126266135bf565b5b9250929050565b60008135905061263d81613b9a565b92915050565b600060208284031215612659576126586135ce565b5b600061266784828501612556565b91505092915050565b60008060408385031215612687576126866135ce565b5b600061269585828601612556565b92505060206126a685828601612556565b9150509250929050565b6000806000606084860312156126c9576126c86135ce565b5b60006126d786828701612556565b93505060206126e886828701612556565b92505060406126f98682870161262e565b9150509250925092565b6000806000806080858703121561271d5761271c6135ce565b5b600061272b87828801612556565b945050602061273c87828801612556565b935050604061274d8782880161262e565b925050606085013567ffffffffffffffff81111561276e5761276d6135c9565b5b61277a878288016125aa565b91505092959194509250565b6000806040838503121561279d5761279c6135ce565b5b60006127ab85828601612556565b92505060206127bc8582860161256b565b9150509250929050565b600080604083850312156127dd576127dc6135ce565b5b60006127eb85828601612556565b92505060206127fc8582860161262e565b9150509250929050565b60006020828403121561281c5761281b6135ce565b5b600061282a84828501612580565b91505092915050565b600060208284031215612849576128486135ce565b5b600061285784828501612595565b91505092915050565b60008060208385031215612877576128766135ce565b5b600083013567ffffffffffffffff811115612895576128946135c9565b5b6128a1858286016125d8565b92509250509250929050565b6000602082840312156128c3576128c26135ce565b5b60006128d18482850161262e565b91505092915050565b6000806000604084860312156128f3576128f26135ce565b5b60006129018682870161262e565b935050602084013567ffffffffffffffff811115612922576129216135c9565b5b61292e868287016125d8565b92509250509250925092565b61294381613337565b82525050565b61295281613349565b82525050565b600061296483856131fb565b93506129718385846133ab565b82840190509392505050565b6000612988826131d4565b61299281856131ea565b93506129a28185602086016133ba565b6129ab816135d3565b840191505092915050565b600081546129c3816133ed565b6129cd81866131fb565b945060018216600081146129e857600181146129f957612a2c565b60ff19831686528186019350612a2c565b612a02856131bf565b60005b83811015612a2457815481890152600182019150602081019050612a05565b838801955050505b50505092915050565b6000612a40826131df565b612a4a8185613206565b9350612a5a8185602086016133ba565b612a63816135d3565b840191505092915050565b6000612a79826131df565b612a838185613217565b9350612a938185602086016133ba565b80840191505092915050565b6000612aac603283613206565b9150612ab7826135e4565b604082019050919050565b6000612acf602683613206565b9150612ada82613633565b604082019050919050565b6000612af2600583613206565b9150612afd82613682565b602082019050919050565b6000612b15601c83613206565b9150612b20826136ab565b602082019050919050565b6000612b38602483613206565b9150612b43826136d4565b604082019050919050565b6000612b5b601683613206565b9150612b6682613723565b602082019050919050565b6000612b7e602483613206565b9150612b898261374c565b604082019050919050565b6000612ba1601983613206565b9150612bac8261379b565b602082019050919050565b6000612bc4602c83613206565b9150612bcf826137c4565b604082019050919050565b6000612be7603883613206565b9150612bf282613813565b604082019050919050565b6000612c0a602a83613206565b9150612c1582613862565b604082019050919050565b6000612c2d602983613206565b9150612c38826138b1565b604082019050919050565b6000612c50600783613206565b9150612c5b82613900565b602082019050919050565b6000612c73602083613206565b9150612c7e82613929565b602082019050919050565b6000612c96602c83613206565b9150612ca182613952565b604082019050919050565b6000612cb9602083613206565b9150612cc4826139a1565b602082019050919050565b6000612cdc602983613206565b9150612ce7826139ca565b604082019050919050565b6000612cff602f83613206565b9150612d0a82613a19565b604082019050919050565b6000612d22602183613206565b9150612d2d82613a68565b604082019050919050565b6000612d45602183613206565b9150612d5082613ab7565b604082019050919050565b6000612d68603183613206565b9150612d7382613b06565b604082019050919050565b612d87816133a1565b82525050565b6000612d9a828486612958565b91508190509392505050565b6000612db282846129b6565b915081905092915050565b6000612dc98285612a6e565b9150612dd58284612a6e565b91508190509392505050565b6000602082019050612df6600083018461293a565b92915050565b6000608082019050612e11600083018761293a565b612e1e602083018661293a565b612e2b6040830185612d7e565b8181036060830152612e3d818461297d565b905095945050505050565b6000604082019050612e5d600083018561293a565b612e6a6020830184612d7e565b9392505050565b6000602082019050612e866000830184612949565b92915050565b60006020820190508181036000830152612ea68184612a35565b905092915050565b60006020820190508181036000830152612ec781612a9f565b9050919050565b60006020820190508181036000830152612ee781612ac2565b9050919050565b60006020820190508181036000830152612f0781612ae5565b9050919050565b60006020820190508181036000830152612f2781612b08565b9050919050565b60006020820190508181036000830152612f4781612b2b565b9050919050565b60006020820190508181036000830152612f6781612b4e565b9050919050565b60006020820190508181036000830152612f8781612b71565b9050919050565b60006020820190508181036000830152612fa781612b94565b9050919050565b60006020820190508181036000830152612fc781612bb7565b9050919050565b60006020820190508181036000830152612fe781612bda565b9050919050565b6000602082019050818103600083015261300781612bfd565b9050919050565b6000602082019050818103600083015261302781612c20565b9050919050565b6000602082019050818103600083015261304781612c43565b9050919050565b6000602082019050818103600083015261306781612c66565b9050919050565b6000602082019050818103600083015261308781612c89565b9050919050565b600060208201905081810360008301526130a781612cac565b9050919050565b600060208201905081810360008301526130c781612ccf565b9050919050565b600060208201905081810360008301526130e781612cf2565b9050919050565b6000602082019050818103600083015261310781612d15565b9050919050565b6000602082019050818103600083015261312781612d38565b9050919050565b6000602082019050818103600083015261314781612d5b565b9050919050565b60006020820190506131636000830184612d7e565b92915050565b6000613173613184565b905061317f828261341f565b919050565b6000604051905090565b600067ffffffffffffffff8211156131a9576131a8613586565b5b6131b2826135d3565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061322d826133a1565b9150613238836133a1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561326d5761326c6134ca565b5b828201905092915050565b6000613283826133a1565b915061328e836133a1565b92508261329e5761329d6134f9565b5b828204905092915050565b60006132b4826133a1565b91506132bf836133a1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132f8576132f76134ca565b5b828202905092915050565b600061330e826133a1565b9150613319836133a1565b92508282101561332c5761332b6134ca565b5b828203905092915050565b600061334282613381565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156133d85780820151818401526020810190506133bd565b838111156133e7576000848401525b50505050565b6000600282049050600182168061340557607f821691505b6020821081141561341957613418613528565b5b50919050565b613428826135d3565b810181811067ffffffffffffffff8211171561344757613446613586565b5b80604052505050565b600061345b826133a1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561348e5761348d6134ca565b5b600182019050919050565b60006134a4826133a1565b91506134af836133a1565b9250826134bf576134be6134f9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f686d6d6d6d000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f417373686f6c6500000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b613b5e81613337565b8114613b6957600080fd5b50565b613b7581613349565b8114613b8057600080fd5b50565b613b8c81613355565b8114613b9757600080fd5b50565b613ba3816133a1565b8114613bae57600080fd5b5056fea2646970667358221220805bac4eb7c5abc1cce1bd295da09527d79d3cfd84fc8c96e33680f2b382f00164736f6c63430008060033

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.