ETH Price: $2,606.93 (-0.15%)

Token

Creep Kids Genesis (CRK)
 

Overview

Max Total Supply

0 CRK

Holders

70

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CRK
0x5C95a4c6f66964DF324Cc95418f8cC9eD6D25D7c
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CreepKidsNFT

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : CreepKidsNFT.sol
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract CreepKidsNFT is ERC721, ERC721URIStorage, Ownable {
    using Counters for Counters.Counter;

    Counters.Counter private TokenIds;
    uint CurrentMintIndex;
    uint PromoMintCount;
    bool Unlocked;
    
    uint constant public TotalCount = 1000;
    uint[TotalCount] private Indices;
    
    event TokenMintEvent(uint256 newID);
    
    string private metadataPath;  

    constructor() public ERC721("Creep Kids Genesis", "CRK") {
        //security
        Unlocked = false;
        PromoMintCount = 50;

        //nft.storage ipfs hash
        metadataPath = "ipfs://QmcrVNTcC9DTGia2YbdrYchzt26te94DkEGikPNd3q1Ug3";
    }
    
    //Thank you to the DerpyBirbs & NOOBS 
    function randomIndex() internal returns (uint) {
        uint totalSize = TotalCount - CurrentMintIndex;
        uint index = uint(keccak256(abi.encodePacked(CurrentMintIndex, msg.sender, block.difficulty, block.timestamp))) % totalSize;
        uint value = 0;

        if (Indices[index] != 0) {
            value = Indices[index];
        } else {
            value = index;
        }

        // Move last value to selected position
        if (Indices[totalSize - 1] == 0) {
            // Array position not initialized, so use position
            Indices[index] = totalSize - 1;
        } else {
            // Array position holds a value so use that
            Indices[index] = Indices[totalSize - 1];
        }
        return value;
    }

    function unlock() public onlyOwner {
        Unlocked = true;
    }

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

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

    function createCreepKid(address receiver, uint count)
        public payable
    {
        require(Unlocked, "Creep Kid Minting is still Locked :-/");
        require(count <= 10, "Not allowed to mint more than 10 at once!");
        require(msg.value >= 0.0666 ether * count, "Not enough eth paid! .0666 per creep");
        require((count + CurrentMintIndex-1) < 1000, "Unable to mint, not enough creep kids left :-(");

        for(uint i = 0; i < count; i++)
        {
            _mintCreepKid(receiver);
        }
    }

    function promoMint(address receiver, uint count)
    public onlyOwner 
    {
        require(PromoMintCount > 0, "Promo mints exhausted :-(");
        require(count <= 10, "Max per mint is 10!");
        require(PromoMintCount + 1 - count > 0, "Count exceeds promo count");

        PromoMintCount -= count;

        for(uint i = 0; i < count; i++)
        {
            _mintCreepKid(receiver);
        }
    }

    function _mintCreepKid(address receiver)
    private
    {
        uint256 newID = TokenIds.current();
        string memory randomID = uintToString(randomIndex());
        string memory tokenURI = string(abi.encodePacked(metadataPath,'/',randomID));
        _safeMint(receiver, newID);
        _setTokenURI(newID, tokenURI);

        TokenIds.increment();
        CurrentMintIndex++;
        TokenMintEvent(newID);
    }

    //PAYABLE
    function getBalance() public view returns (uint256){
        return address(this).balance;
    }

    function withdraw(uint256 amount)
    public onlyOwner
    {
        require(amount <= address(this).balance, "Amount requested is too much");
        payable(msg.sender).transfer(amount);
    }

    //ENCODING
    function concatenate(bytes32 x, bytes32 y) public pure returns (bytes memory) {
        return abi.encodePacked(x, y);
    }

    function bytes32ToString(bytes32 data) public pure returns (string memory) {
        uint8 i = 0;
        while(i < 32 && data[i] != 0){
            i++;
        }
        bytes memory bytesArray = new bytes(i);
        for(i = 0; i < 32 && data[i] != 0; i++) {
            bytesArray[i] = data[i];
        }

        return string(bytesArray);
    }

    function uintToString(uint _i) internal pure returns (string memory _uintAsString) {
        if (_i == 0) {
            return "0";
        }
        uint j = _i;
        uint len;
        while (j != 0) {
            len++;
            j /= 10;
        }
        bytes memory bstr = new bytes(len);
        uint k = len;
        while (_i != 0) {
            k = k-1;
            uint8 temp = (48 + uint8(_i - _i / 10 * 10));
            bytes1 b1 = bytes1(temp);
            bstr[k] = b1;
            _i /= 10;
        }
        return string(bstr);
    }
}

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

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "./extensions/IERC721Enumerable.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}. 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 || ERC721.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 || ERC721.isApprovedForAll(owner, spender));
    }

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

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

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

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

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

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(address from, address to, uint256 tokenId) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        private returns (bool)
    {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { }
}

File 3 of 14 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";

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

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

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

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

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

        return super.tokenURI(tokenId);
    }

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

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

File 4 of 14 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 6 of 14 : 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 7 of 14 : 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 8 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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

File 9 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 10 of 14 : 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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 11 of 14 : 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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 12 of 14 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

File 13 of 14 : 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 14 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newID","type":"uint256"}],"name":"TokenMintEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"TotalCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"data","type":"bytes32"}],"name":"bytes32ToString","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes32","name":"x","type":"bytes32"},{"internalType":"bytes32","name":"y","type":"bytes32"}],"name":"concatenate","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"createCreepKid","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":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"promoMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280601281526020017f4372656570204b6964732047656e6573697300000000000000000000000000008152506040518060400160405280600381526020017f43524b0000000000000000000000000000000000000000000000000000000000815250816000908051906020019062000096929190620001c7565b508060019080519060200190620000af929190620001c7565b5050506000620000c4620001bf60201b60201c565b905080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000600b60006101000a81548160ff0219169083151502179055506032600a8190555060405180606001604052806035815260200162004686603591396103f49080519060200190620001b8929190620001c7565b50620002dc565b600033905090565b828054620001d59062000277565b90600052602060002090601f016020900481019282620001f9576000855562000245565b82601f106200021457805160ff191683800117855562000245565b8280016001018555821562000245579182015b828111156200024457825182559160200191906001019062000227565b5b50905062000254919062000258565b5090565b5b808211156200027357600081600090555060010162000259565b5090565b600060028204905060018216806200029057607f821691505b60208210811415620002a757620002a6620002ad565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61439a80620002ec6000396000f3fe60806040526004361061014b5760003560e01c8063715018a6116100b6578063a69df4b51161006f578063a69df4b514610493578063b88d4fde146104aa578063c87b56dd146104d3578063e985e9c514610510578063f2fde38b1461054d578063fbd1df54146105765761014b565b8063715018a6146103975780638da5cb5b146103ae5780639201de55146103d957806395d89b4114610416578063a22cb46514610441578063a2a3eb4d1461046a5761014b565b80632e1a7d4d116101085780632e1a7d4d146102725780633edb5f6c1461029b57806342842e0e146102d8578063489625e3146103015780636352211e1461031d57806370a082311461035a5761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806312065fe01461021e57806323b872dd14610249575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190612dce565b6105a1565b6040516101849190613a7d565b60405180910390f35b34801561019957600080fd5b506101a2610683565b6040516101af9190613aba565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da9190612e20565b610715565b6040516101ec9190613a16565b60405180910390f35b34801561020157600080fd5b5061021c60048036038101906102179190612d2d565b61079a565b005b34801561022a57600080fd5b506102336108b2565b6040516102409190613e1c565b60405180910390f35b34801561025557600080fd5b50610270600480360381019061026b9190612c27565b6108ba565b005b34801561027e57600080fd5b5061029960048036038101906102949190612e20565b61091a565b005b3480156102a757600080fd5b506102c260048036038101906102bd9190612d92565b610a23565b6040516102cf9190613a98565b60405180910390f35b3480156102e457600080fd5b506102ff60048036038101906102fa9190612c27565b610a4f565b005b61031b60048036038101906103169190612d2d565b610a6f565b005b34801561032957600080fd5b50610344600480360381019061033f9190612e20565b610be0565b6040516103519190613a16565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190612bc2565b610c92565b60405161038e9190613e1c565b60405180910390f35b3480156103a357600080fd5b506103ac610d4a565b005b3480156103ba57600080fd5b506103c3610e87565b6040516103d09190613a16565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb9190612d69565b610eb1565b60405161040d9190613aba565b60405180910390f35b34801561042257600080fd5b5061042b61110a565b6040516104389190613aba565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190612cf1565b61119c565b005b34801561047657600080fd5b50610491600480360381019061048c9190612d2d565b61131d565b005b34801561049f57600080fd5b506104a86114c3565b005b3480156104b657600080fd5b506104d160048036038101906104cc9190612c76565b61155c565b005b3480156104df57600080fd5b506104fa60048036038101906104f59190612e20565b6115be565b6040516105079190613aba565b60405180910390f35b34801561051c57600080fd5b5061053760048036038101906105329190612beb565b6115d0565b6040516105449190613a7d565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f9190612bc2565b611664565b005b34801561058257600080fd5b5061058b611810565b6040516105989190613e1c565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061066c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061067c575061067b82611816565b5b9050919050565b60606000805461069290614109565b80601f01602080910402602001604051908101604052809291908181526020018280546106be90614109565b801561070b5780601f106106e05761010080835404028352916020019161070b565b820191906000526020600020905b8154815290600101906020018083116106ee57829003601f168201915b5050505050905090565b600061072082611880565b61075f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075690613cfc565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107a582610be0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080d90613d9c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108356118ec565b73ffffffffffffffffffffffffffffffffffffffff16148061086457506108638161085e6118ec565b6115d0565b5b6108a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089a90613c3c565b60405180910390fd5b6108ad83836118f4565b505050565b600047905090565b6108cb6108c56118ec565b826119ad565b61090a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090190613dbc565b60405180910390fd5b610915838383611a8b565b505050565b6109226118ec565b73ffffffffffffffffffffffffffffffffffffffff16610940610e87565b73ffffffffffffffffffffffffffffffffffffffff1614610996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098d90613d3c565b60405180910390fd5b478111156109d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d090613bfc565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610a1f573d6000803e3d6000fd5b5050565b60608282604051602001610a38929190613949565b604051602081830303815290604052905092915050565b610a6a8383836040518060200160405280600081525061155c565b505050565b600b60009054906101000a900460ff16610abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab590613ddc565b60405180910390fd5b600a811115610b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af990613c1c565b60405180910390fd5b8066ec9c58de0a8000610b159190613fae565b341015610b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4e90613adc565b60405180910390fd5b6103e8600160095483610b6a9190613ef0565b610b749190614008565b10610bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bab90613b5c565b60405180910390fd5b60005b81811015610bdb57610bc883611ce7565b8080610bd39061413b565b915050610bb7565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8090613c7c565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfa90613c5c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d526118ec565b73ffffffffffffffffffffffffffffffffffffffff16610d70610e87565b73ffffffffffffffffffffffffffffffffffffffff1614610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd90613d3c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060005b60208160ff16108015610f2e5750600060f81b838260ff1660208110610f05577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15610f46578080610f3e90614184565b915050610eb6565b60008160ff1667ffffffffffffffff811115610f8b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610fbd5781602001600182028036833780820191505090505b509050600091505b60208260ff1610801561103d5750600060f81b848360ff1660208110611014577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b1561110057838260ff166020811061107e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b818360ff16815181106110be577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535081806110f890614184565b925050610fc5565b8092505050919050565b60606001805461111990614109565b80601f016020809104026020016040519081016040528092919081815260200182805461114590614109565b80156111925780601f1061116757610100808354040283529160200191611192565b820191906000526020600020905b81548152906001019060200180831161117557829003601f168201915b5050505050905090565b6111a46118ec565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611212576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120990613b9c565b60405180910390fd5b806005600061121f6118ec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112cc6118ec565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113119190613a7d565b60405180910390a35050565b6113256118ec565b73ffffffffffffffffffffffffffffffffffffffff16611343610e87565b73ffffffffffffffffffffffffffffffffffffffff1614611399576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139090613d3c565b60405180910390fd5b6000600a54116113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d590613bbc565b60405180910390fd5b600a811115611422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141990613d1c565b60405180910390fd5b6000816001600a546114349190613ef0565b61143e9190614008565b1161147e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147590613dfc565b60405180910390fd5b80600a60008282546114909190614008565b9250508190555060005b818110156114be576114ab83611ce7565b80806114b69061413b565b91505061149a565b505050565b6114cb6118ec565b73ffffffffffffffffffffffffffffffffffffffff166114e9610e87565b73ffffffffffffffffffffffffffffffffffffffff161461153f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153690613d3c565b60405180910390fd5b6001600b60006101000a81548160ff021916908315150217905550565b61156d6115676118ec565b836119ad565b6115ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a390613dbc565b60405180910390fd5b6115b884848484611da4565b50505050565b60606115c982611e00565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61166c6118ec565b73ffffffffffffffffffffffffffffffffffffffff1661168a610e87565b73ffffffffffffffffffffffffffffffffffffffff16146116e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d790613d3c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174790613b1c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6103e881565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661196783610be0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006119b882611880565b6119f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ee90613bdc565b60405180910390fd5b6000611a0283610be0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a7157508373ffffffffffffffffffffffffffffffffffffffff16611a5984610715565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a825750611a8181856115d0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611aab82610be0565b73ffffffffffffffffffffffffffffffffffffffff1614611b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af890613d5c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6890613b7c565b60405180910390fd5b611b7c838383611f52565b611b876000826118f4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bd79190614008565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c2e9190613ef0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000611cf36008611f57565b90506000611d07611d02611f65565b61217e565b905060006103f482604051602001611d20929190613999565b6040516020818303038152906040529050611d3b8484612353565b611d458382612371565b611d4f60086123e5565b60096000815480929190611d629061413b565b91905055507f70e06c8737bddbe45574cfbad71184d91c9372bc8de27486b6e1bf1988df57a583604051611d969190613e1c565b60405180910390a150505050565b611daf848484611a8b565b611dbb848484846123fb565b611dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df190613afc565b60405180910390fd5b50505050565b6060611e0b82611880565b611e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4190613cdc565b60405180910390fd5b6000600660008481526020019081526020016000208054611e6a90614109565b80601f0160208091040260200160405190810160405280929190818152602001828054611e9690614109565b8015611ee35780601f10611eb857610100808354040283529160200191611ee3565b820191906000526020600020905b815481529060010190602001808311611ec657829003601f168201915b505050505090506000611ef4612592565b9050600081511415611f0a578192505050611f4d565b600082511115611f3f578082604051602001611f27929190613975565b60405160208183030381529060405292505050611f4d565b611f48846125a9565b925050505b919050565b505050565b600081600001549050919050565b6000806009546103e8611f789190614008565b9050600081600954334442604051602001611f9694939291906139c8565b6040516020818303038152906040528051906020012060001c611fb991906141e6565b9050600080600c836103e88110611ff9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b01541461204457600c826103e8811061203b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b01549050612048565b8190505b6000600c6001856120599190614008565b6103e88110612091577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b015414156120eb576001836120a69190614008565b600c836103e881106120e1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0181905550612175565b600c6001846120fa9190614008565b6103e88110612132577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154600c836103e8811061216f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b01819055505b80935050505090565b606060008214156121c6576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061234e565b600082905060005b600082146121f85780806121e19061413b565b915050600a826121f19190613f7d565b91506121ce565b60008167ffffffffffffffff81111561223a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561226c5781602001600182028036833780820191505090505b50905060008290505b600086146123465760018161228a9190614008565b90506000600a808861229c9190613f7d565b6122a69190613fae565b876122b19190614008565b60306122bd9190613f46565b905060008160f81b905080848481518110612301577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8861233d9190613f7d565b97505050612275565b819450505050505b919050565b61236d828260405180602001604052806000815250612650565b5050565b61237a82611880565b6123b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b090613c9c565b60405180910390fd5b806006600084815260200190815260200160002090805190602001906123e0929190612a39565b505050565b6001816000016000828254019250508190555050565b600061241c8473ffffffffffffffffffffffffffffffffffffffff166126ab565b15612585578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124456118ec565b8786866040518563ffffffff1660e01b81526004016124679493929190613a31565b602060405180830381600087803b15801561248157600080fd5b505af19250505080156124b257506040513d601f19601f820116820180604052508101906124af9190612df7565b60015b612535573d80600081146124e2576040519150601f19603f3d011682016040523d82523d6000602084013e6124e7565b606091505b5060008151141561252d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252490613afc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061258a565b600190505b949350505050565b606060405180602001604052806000815250905090565b60606125b482611880565b6125f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ea90613d7c565b60405180910390fd5b60006125fd612592565b9050600081511161261d5760405180602001604052806000815250612648565b80612627846126be565b604051602001612638929190613975565b6040516020818303038152906040525b915050919050565b61265a838361286b565b61266760008484846123fb565b6126a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269d90613afc565b60405180910390fd5b505050565b600080823b905060008111915050919050565b60606000821415612706576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612866565b600082905060005b600082146127385780806127219061413b565b915050600a826127319190613f7d565b915061270e565b60008167ffffffffffffffff81111561277a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127ac5781602001600182028036833780820191505090505b5090505b6000851461285f576001826127c59190614008565b9150600a856127d491906141e6565b60306127e09190613ef0565b60f81b81838151811061281c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128589190613f7d565b94506127b0565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d290613cbc565b60405180910390fd5b6128e481611880565b15612924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291b90613b3c565b60405180910390fd5b61293060008383611f52565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129809190613ef0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612a4590614109565b90600052602060002090601f016020900481019282612a675760008555612aae565b82601f10612a8057805160ff1916838001178555612aae565b82800160010185558215612aae579182015b82811115612aad578251825591602001919060010190612a92565b5b509050612abb9190612abf565b5090565b5b80821115612ad8576000816000905550600101612ac0565b5090565b6000612aef612aea84613e68565b613e37565b905082815260208101848484011115612b0757600080fd5b612b128482856140c7565b509392505050565b600081359050612b29816142f1565b92915050565b600081359050612b3e81614308565b92915050565b600081359050612b538161431f565b92915050565b600081359050612b6881614336565b92915050565b600081519050612b7d81614336565b92915050565b600082601f830112612b9457600080fd5b8135612ba4848260208601612adc565b91505092915050565b600081359050612bbc8161434d565b92915050565b600060208284031215612bd457600080fd5b6000612be284828501612b1a565b91505092915050565b60008060408385031215612bfe57600080fd5b6000612c0c85828601612b1a565b9250506020612c1d85828601612b1a565b9150509250929050565b600080600060608486031215612c3c57600080fd5b6000612c4a86828701612b1a565b9350506020612c5b86828701612b1a565b9250506040612c6c86828701612bad565b9150509250925092565b60008060008060808587031215612c8c57600080fd5b6000612c9a87828801612b1a565b9450506020612cab87828801612b1a565b9350506040612cbc87828801612bad565b925050606085013567ffffffffffffffff811115612cd957600080fd5b612ce587828801612b83565b91505092959194509250565b60008060408385031215612d0457600080fd5b6000612d1285828601612b1a565b9250506020612d2385828601612b2f565b9150509250929050565b60008060408385031215612d4057600080fd5b6000612d4e85828601612b1a565b9250506020612d5f85828601612bad565b9150509250929050565b600060208284031215612d7b57600080fd5b6000612d8984828501612b44565b91505092915050565b60008060408385031215612da557600080fd5b6000612db385828601612b44565b9250506020612dc485828601612b44565b9150509250929050565b600060208284031215612de057600080fd5b6000612dee84828501612b59565b91505092915050565b600060208284031215612e0957600080fd5b6000612e1784828501612b6e565b91505092915050565b600060208284031215612e3257600080fd5b6000612e4084828501612bad565b91505092915050565b612e528161403c565b82525050565b612e69612e648261403c565b6141ae565b82525050565b612e788161404e565b82525050565b612e8f612e8a8261405a565b6141c0565b82525050565b6000612ea082613ead565b612eaa8185613ec3565b9350612eba8185602086016140d6565b612ec3816142d3565b840191505092915050565b6000612ed982613eb8565b612ee38185613ed4565b9350612ef38185602086016140d6565b612efc816142d3565b840191505092915050565b6000612f1282613eb8565b612f1c8185613ee5565b9350612f2c8185602086016140d6565b80840191505092915050565b60008154612f4581614109565b612f4f8186613ee5565b94506001821660008114612f6a5760018114612f7b57612fae565b60ff19831686528186019350612fae565b612f8485613e98565b60005b83811015612fa657815481890152600182019150602081019050612f87565b838801955050505b50505092915050565b6000612fc4602483613ed4565b91507f4e6f7420656e6f75676820657468207061696421202e3036363620706572206360008301527f72656570000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061302a603283613ed4565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613090602683613ed4565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006130f6601c83613ed4565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613136602e83613ed4565b91507f556e61626c6520746f206d696e742c206e6f7420656e6f75676820637265657060008301527f206b696473206c656674203a2d280000000000000000000000000000000000006020830152604082019050919050565b600061319c602483613ed4565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613202601983613ed4565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613242601983613ed4565b91507f50726f6d6f206d696e747320657868617573746564203a2d28000000000000006000830152602082019050919050565b6000613282602c83613ed4565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006132e8601c83613ed4565b91507f416d6f756e742072657175657374656420697320746f6f206d756368000000006000830152602082019050919050565b6000613328602983613ed4565b91507f4e6f7420616c6c6f77656420746f206d696e74206d6f7265207468616e20313060008301527f206174206f6e63652100000000000000000000000000000000000000000000006020830152604082019050919050565b600061338e603883613ed4565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006133f4602a83613ed4565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061345a602983613ed4565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006134c0602e83613ed4565b91507f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008301527f6578697374656e7420746f6b656e0000000000000000000000000000000000006020830152604082019050919050565b6000613526602083613ed4565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613566603183613ed4565b91507f45524337323155524953746f726167653a2055524920717565727920666f722060008301527f6e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006020830152604082019050919050565b60006135cc602c83613ed4565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613632601383613ed4565b91507f4d617820706572206d696e7420697320313021000000000000000000000000006000830152602082019050919050565b6000613672602083613ed4565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006136b2602983613ed4565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613718602f83613ed4565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061377e602183613ed4565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137e4603183613ed4565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061384a602583613ed4565b91507f4372656570204b6964204d696e74696e67206973207374696c6c204c6f636b6560008301527f64203a2d2f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138b0601983613ed4565b91507f436f756e7420657863656564732070726f6d6f20636f756e74000000000000006000830152602082019050919050565b60006138f0600183613ee5565b91507f2f000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b61392c816140b0565b82525050565b61394361393e826140b0565b6141dc565b82525050565b60006139558285612e7e565b6020820191506139658284612e7e565b6020820191508190509392505050565b60006139818285612f07565b915061398d8284612f07565b91508190509392505050565b60006139a58285612f38565b91506139b0826138e3565b91506139bc8284612f07565b91508190509392505050565b60006139d48287613932565b6020820191506139e48286612e58565b6014820191506139f48285613932565b602082019150613a048284613932565b60208201915081905095945050505050565b6000602082019050613a2b6000830184612e49565b92915050565b6000608082019050613a466000830187612e49565b613a536020830186612e49565b613a606040830185613923565b8181036060830152613a728184612e95565b905095945050505050565b6000602082019050613a926000830184612e6f565b92915050565b60006020820190508181036000830152613ab28184612e95565b905092915050565b60006020820190508181036000830152613ad48184612ece565b905092915050565b60006020820190508181036000830152613af581612fb7565b9050919050565b60006020820190508181036000830152613b158161301d565b9050919050565b60006020820190508181036000830152613b3581613083565b9050919050565b60006020820190508181036000830152613b55816130e9565b9050919050565b60006020820190508181036000830152613b7581613129565b9050919050565b60006020820190508181036000830152613b958161318f565b9050919050565b60006020820190508181036000830152613bb5816131f5565b9050919050565b60006020820190508181036000830152613bd581613235565b9050919050565b60006020820190508181036000830152613bf581613275565b9050919050565b60006020820190508181036000830152613c15816132db565b9050919050565b60006020820190508181036000830152613c358161331b565b9050919050565b60006020820190508181036000830152613c5581613381565b9050919050565b60006020820190508181036000830152613c75816133e7565b9050919050565b60006020820190508181036000830152613c958161344d565b9050919050565b60006020820190508181036000830152613cb5816134b3565b9050919050565b60006020820190508181036000830152613cd581613519565b9050919050565b60006020820190508181036000830152613cf581613559565b9050919050565b60006020820190508181036000830152613d15816135bf565b9050919050565b60006020820190508181036000830152613d3581613625565b9050919050565b60006020820190508181036000830152613d5581613665565b9050919050565b60006020820190508181036000830152613d75816136a5565b9050919050565b60006020820190508181036000830152613d958161370b565b9050919050565b60006020820190508181036000830152613db581613771565b9050919050565b60006020820190508181036000830152613dd5816137d7565b9050919050565b60006020820190508181036000830152613df58161383d565b9050919050565b60006020820190508181036000830152613e15816138a3565b9050919050565b6000602082019050613e316000830184613923565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613e5e57613e5d6142a4565b5b8060405250919050565b600067ffffffffffffffff821115613e8357613e826142a4565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613efb826140b0565b9150613f06836140b0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f3b57613f3a614217565b5b828201905092915050565b6000613f51826140ba565b9150613f5c836140ba565b92508260ff03821115613f7257613f71614217565b5b828201905092915050565b6000613f88826140b0565b9150613f93836140b0565b925082613fa357613fa2614246565b5b828204905092915050565b6000613fb9826140b0565b9150613fc4836140b0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ffd57613ffc614217565b5b828202905092915050565b6000614013826140b0565b915061401e836140b0565b92508282101561403157614030614217565b5b828203905092915050565b600061404782614090565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156140f45780820151818401526020810190506140d9565b83811115614103576000848401525b50505050565b6000600282049050600182168061412157607f821691505b6020821081141561413557614134614275565b5b50919050565b6000614146826140b0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561417957614178614217565b5b600182019050919050565b600061418f826140ba565b915060ff8214156141a3576141a2614217565b5b600182019050919050565b60006141b9826141ca565b9050919050565b6000819050919050565b60006141d5826142e4565b9050919050565b6000819050919050565b60006141f1826140b0565b91506141fc836140b0565b92508261420c5761420b614246565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b6142fa8161403c565b811461430557600080fd5b50565b6143118161404e565b811461431c57600080fd5b50565b6143288161405a565b811461433357600080fd5b50565b61433f81614064565b811461434a57600080fd5b50565b614356816140b0565b811461436157600080fd5b5056fea2646970667358221220e4be1bbbda447417b5e1beaaa5ee6029252fe06d87a508fcdcbf1f1ed725d69a64736f6c63430008000033697066733a2f2f516d6372564e54634339445447696132596264725963687a74323674653934446b4547696b504e64337131556733

Deployed Bytecode

0x60806040526004361061014b5760003560e01c8063715018a6116100b6578063a69df4b51161006f578063a69df4b514610493578063b88d4fde146104aa578063c87b56dd146104d3578063e985e9c514610510578063f2fde38b1461054d578063fbd1df54146105765761014b565b8063715018a6146103975780638da5cb5b146103ae5780639201de55146103d957806395d89b4114610416578063a22cb46514610441578063a2a3eb4d1461046a5761014b565b80632e1a7d4d116101085780632e1a7d4d146102725780633edb5f6c1461029b57806342842e0e146102d8578063489625e3146103015780636352211e1461031d57806370a082311461035a5761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806312065fe01461021e57806323b872dd14610249575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190612dce565b6105a1565b6040516101849190613a7d565b60405180910390f35b34801561019957600080fd5b506101a2610683565b6040516101af9190613aba565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da9190612e20565b610715565b6040516101ec9190613a16565b60405180910390f35b34801561020157600080fd5b5061021c60048036038101906102179190612d2d565b61079a565b005b34801561022a57600080fd5b506102336108b2565b6040516102409190613e1c565b60405180910390f35b34801561025557600080fd5b50610270600480360381019061026b9190612c27565b6108ba565b005b34801561027e57600080fd5b5061029960048036038101906102949190612e20565b61091a565b005b3480156102a757600080fd5b506102c260048036038101906102bd9190612d92565b610a23565b6040516102cf9190613a98565b60405180910390f35b3480156102e457600080fd5b506102ff60048036038101906102fa9190612c27565b610a4f565b005b61031b60048036038101906103169190612d2d565b610a6f565b005b34801561032957600080fd5b50610344600480360381019061033f9190612e20565b610be0565b6040516103519190613a16565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190612bc2565b610c92565b60405161038e9190613e1c565b60405180910390f35b3480156103a357600080fd5b506103ac610d4a565b005b3480156103ba57600080fd5b506103c3610e87565b6040516103d09190613a16565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb9190612d69565b610eb1565b60405161040d9190613aba565b60405180910390f35b34801561042257600080fd5b5061042b61110a565b6040516104389190613aba565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190612cf1565b61119c565b005b34801561047657600080fd5b50610491600480360381019061048c9190612d2d565b61131d565b005b34801561049f57600080fd5b506104a86114c3565b005b3480156104b657600080fd5b506104d160048036038101906104cc9190612c76565b61155c565b005b3480156104df57600080fd5b506104fa60048036038101906104f59190612e20565b6115be565b6040516105079190613aba565b60405180910390f35b34801561051c57600080fd5b5061053760048036038101906105329190612beb565b6115d0565b6040516105449190613a7d565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f9190612bc2565b611664565b005b34801561058257600080fd5b5061058b611810565b6040516105989190613e1c565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061066c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061067c575061067b82611816565b5b9050919050565b60606000805461069290614109565b80601f01602080910402602001604051908101604052809291908181526020018280546106be90614109565b801561070b5780601f106106e05761010080835404028352916020019161070b565b820191906000526020600020905b8154815290600101906020018083116106ee57829003601f168201915b5050505050905090565b600061072082611880565b61075f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075690613cfc565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107a582610be0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080d90613d9c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108356118ec565b73ffffffffffffffffffffffffffffffffffffffff16148061086457506108638161085e6118ec565b6115d0565b5b6108a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089a90613c3c565b60405180910390fd5b6108ad83836118f4565b505050565b600047905090565b6108cb6108c56118ec565b826119ad565b61090a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090190613dbc565b60405180910390fd5b610915838383611a8b565b505050565b6109226118ec565b73ffffffffffffffffffffffffffffffffffffffff16610940610e87565b73ffffffffffffffffffffffffffffffffffffffff1614610996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098d90613d3c565b60405180910390fd5b478111156109d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d090613bfc565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610a1f573d6000803e3d6000fd5b5050565b60608282604051602001610a38929190613949565b604051602081830303815290604052905092915050565b610a6a8383836040518060200160405280600081525061155c565b505050565b600b60009054906101000a900460ff16610abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab590613ddc565b60405180910390fd5b600a811115610b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af990613c1c565b60405180910390fd5b8066ec9c58de0a8000610b159190613fae565b341015610b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4e90613adc565b60405180910390fd5b6103e8600160095483610b6a9190613ef0565b610b749190614008565b10610bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bab90613b5c565b60405180910390fd5b60005b81811015610bdb57610bc883611ce7565b8080610bd39061413b565b915050610bb7565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8090613c7c565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfa90613c5c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d526118ec565b73ffffffffffffffffffffffffffffffffffffffff16610d70610e87565b73ffffffffffffffffffffffffffffffffffffffff1614610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd90613d3c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060005b60208160ff16108015610f2e5750600060f81b838260ff1660208110610f05577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15610f46578080610f3e90614184565b915050610eb6565b60008160ff1667ffffffffffffffff811115610f8b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610fbd5781602001600182028036833780820191505090505b509050600091505b60208260ff1610801561103d5750600060f81b848360ff1660208110611014577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b1561110057838260ff166020811061107e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b818360ff16815181106110be577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535081806110f890614184565b925050610fc5565b8092505050919050565b60606001805461111990614109565b80601f016020809104026020016040519081016040528092919081815260200182805461114590614109565b80156111925780601f1061116757610100808354040283529160200191611192565b820191906000526020600020905b81548152906001019060200180831161117557829003601f168201915b5050505050905090565b6111a46118ec565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611212576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120990613b9c565b60405180910390fd5b806005600061121f6118ec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112cc6118ec565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113119190613a7d565b60405180910390a35050565b6113256118ec565b73ffffffffffffffffffffffffffffffffffffffff16611343610e87565b73ffffffffffffffffffffffffffffffffffffffff1614611399576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139090613d3c565b60405180910390fd5b6000600a54116113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d590613bbc565b60405180910390fd5b600a811115611422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141990613d1c565b60405180910390fd5b6000816001600a546114349190613ef0565b61143e9190614008565b1161147e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147590613dfc565b60405180910390fd5b80600a60008282546114909190614008565b9250508190555060005b818110156114be576114ab83611ce7565b80806114b69061413b565b91505061149a565b505050565b6114cb6118ec565b73ffffffffffffffffffffffffffffffffffffffff166114e9610e87565b73ffffffffffffffffffffffffffffffffffffffff161461153f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153690613d3c565b60405180910390fd5b6001600b60006101000a81548160ff021916908315150217905550565b61156d6115676118ec565b836119ad565b6115ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a390613dbc565b60405180910390fd5b6115b884848484611da4565b50505050565b60606115c982611e00565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61166c6118ec565b73ffffffffffffffffffffffffffffffffffffffff1661168a610e87565b73ffffffffffffffffffffffffffffffffffffffff16146116e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d790613d3c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174790613b1c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6103e881565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661196783610be0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006119b882611880565b6119f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ee90613bdc565b60405180910390fd5b6000611a0283610be0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a7157508373ffffffffffffffffffffffffffffffffffffffff16611a5984610715565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a825750611a8181856115d0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611aab82610be0565b73ffffffffffffffffffffffffffffffffffffffff1614611b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af890613d5c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6890613b7c565b60405180910390fd5b611b7c838383611f52565b611b876000826118f4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bd79190614008565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c2e9190613ef0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000611cf36008611f57565b90506000611d07611d02611f65565b61217e565b905060006103f482604051602001611d20929190613999565b6040516020818303038152906040529050611d3b8484612353565b611d458382612371565b611d4f60086123e5565b60096000815480929190611d629061413b565b91905055507f70e06c8737bddbe45574cfbad71184d91c9372bc8de27486b6e1bf1988df57a583604051611d969190613e1c565b60405180910390a150505050565b611daf848484611a8b565b611dbb848484846123fb565b611dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df190613afc565b60405180910390fd5b50505050565b6060611e0b82611880565b611e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4190613cdc565b60405180910390fd5b6000600660008481526020019081526020016000208054611e6a90614109565b80601f0160208091040260200160405190810160405280929190818152602001828054611e9690614109565b8015611ee35780601f10611eb857610100808354040283529160200191611ee3565b820191906000526020600020905b815481529060010190602001808311611ec657829003601f168201915b505050505090506000611ef4612592565b9050600081511415611f0a578192505050611f4d565b600082511115611f3f578082604051602001611f27929190613975565b60405160208183030381529060405292505050611f4d565b611f48846125a9565b925050505b919050565b505050565b600081600001549050919050565b6000806009546103e8611f789190614008565b9050600081600954334442604051602001611f9694939291906139c8565b6040516020818303038152906040528051906020012060001c611fb991906141e6565b9050600080600c836103e88110611ff9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b01541461204457600c826103e8811061203b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b01549050612048565b8190505b6000600c6001856120599190614008565b6103e88110612091577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b015414156120eb576001836120a69190614008565b600c836103e881106120e1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0181905550612175565b600c6001846120fa9190614008565b6103e88110612132577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154600c836103e8811061216f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b01819055505b80935050505090565b606060008214156121c6576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061234e565b600082905060005b600082146121f85780806121e19061413b565b915050600a826121f19190613f7d565b91506121ce565b60008167ffffffffffffffff81111561223a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561226c5781602001600182028036833780820191505090505b50905060008290505b600086146123465760018161228a9190614008565b90506000600a808861229c9190613f7d565b6122a69190613fae565b876122b19190614008565b60306122bd9190613f46565b905060008160f81b905080848481518110612301577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8861233d9190613f7d565b97505050612275565b819450505050505b919050565b61236d828260405180602001604052806000815250612650565b5050565b61237a82611880565b6123b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b090613c9c565b60405180910390fd5b806006600084815260200190815260200160002090805190602001906123e0929190612a39565b505050565b6001816000016000828254019250508190555050565b600061241c8473ffffffffffffffffffffffffffffffffffffffff166126ab565b15612585578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124456118ec565b8786866040518563ffffffff1660e01b81526004016124679493929190613a31565b602060405180830381600087803b15801561248157600080fd5b505af19250505080156124b257506040513d601f19601f820116820180604052508101906124af9190612df7565b60015b612535573d80600081146124e2576040519150601f19603f3d011682016040523d82523d6000602084013e6124e7565b606091505b5060008151141561252d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252490613afc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061258a565b600190505b949350505050565b606060405180602001604052806000815250905090565b60606125b482611880565b6125f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ea90613d7c565b60405180910390fd5b60006125fd612592565b9050600081511161261d5760405180602001604052806000815250612648565b80612627846126be565b604051602001612638929190613975565b6040516020818303038152906040525b915050919050565b61265a838361286b565b61266760008484846123fb565b6126a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269d90613afc565b60405180910390fd5b505050565b600080823b905060008111915050919050565b60606000821415612706576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612866565b600082905060005b600082146127385780806127219061413b565b915050600a826127319190613f7d565b915061270e565b60008167ffffffffffffffff81111561277a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127ac5781602001600182028036833780820191505090505b5090505b6000851461285f576001826127c59190614008565b9150600a856127d491906141e6565b60306127e09190613ef0565b60f81b81838151811061281c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128589190613f7d565b94506127b0565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d290613cbc565b60405180910390fd5b6128e481611880565b15612924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291b90613b3c565b60405180910390fd5b61293060008383611f52565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129809190613ef0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612a4590614109565b90600052602060002090601f016020900481019282612a675760008555612aae565b82601f10612a8057805160ff1916838001178555612aae565b82800160010185558215612aae579182015b82811115612aad578251825591602001919060010190612a92565b5b509050612abb9190612abf565b5090565b5b80821115612ad8576000816000905550600101612ac0565b5090565b6000612aef612aea84613e68565b613e37565b905082815260208101848484011115612b0757600080fd5b612b128482856140c7565b509392505050565b600081359050612b29816142f1565b92915050565b600081359050612b3e81614308565b92915050565b600081359050612b538161431f565b92915050565b600081359050612b6881614336565b92915050565b600081519050612b7d81614336565b92915050565b600082601f830112612b9457600080fd5b8135612ba4848260208601612adc565b91505092915050565b600081359050612bbc8161434d565b92915050565b600060208284031215612bd457600080fd5b6000612be284828501612b1a565b91505092915050565b60008060408385031215612bfe57600080fd5b6000612c0c85828601612b1a565b9250506020612c1d85828601612b1a565b9150509250929050565b600080600060608486031215612c3c57600080fd5b6000612c4a86828701612b1a565b9350506020612c5b86828701612b1a565b9250506040612c6c86828701612bad565b9150509250925092565b60008060008060808587031215612c8c57600080fd5b6000612c9a87828801612b1a565b9450506020612cab87828801612b1a565b9350506040612cbc87828801612bad565b925050606085013567ffffffffffffffff811115612cd957600080fd5b612ce587828801612b83565b91505092959194509250565b60008060408385031215612d0457600080fd5b6000612d1285828601612b1a565b9250506020612d2385828601612b2f565b9150509250929050565b60008060408385031215612d4057600080fd5b6000612d4e85828601612b1a565b9250506020612d5f85828601612bad565b9150509250929050565b600060208284031215612d7b57600080fd5b6000612d8984828501612b44565b91505092915050565b60008060408385031215612da557600080fd5b6000612db385828601612b44565b9250506020612dc485828601612b44565b9150509250929050565b600060208284031215612de057600080fd5b6000612dee84828501612b59565b91505092915050565b600060208284031215612e0957600080fd5b6000612e1784828501612b6e565b91505092915050565b600060208284031215612e3257600080fd5b6000612e4084828501612bad565b91505092915050565b612e528161403c565b82525050565b612e69612e648261403c565b6141ae565b82525050565b612e788161404e565b82525050565b612e8f612e8a8261405a565b6141c0565b82525050565b6000612ea082613ead565b612eaa8185613ec3565b9350612eba8185602086016140d6565b612ec3816142d3565b840191505092915050565b6000612ed982613eb8565b612ee38185613ed4565b9350612ef38185602086016140d6565b612efc816142d3565b840191505092915050565b6000612f1282613eb8565b612f1c8185613ee5565b9350612f2c8185602086016140d6565b80840191505092915050565b60008154612f4581614109565b612f4f8186613ee5565b94506001821660008114612f6a5760018114612f7b57612fae565b60ff19831686528186019350612fae565b612f8485613e98565b60005b83811015612fa657815481890152600182019150602081019050612f87565b838801955050505b50505092915050565b6000612fc4602483613ed4565b91507f4e6f7420656e6f75676820657468207061696421202e3036363620706572206360008301527f72656570000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061302a603283613ed4565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613090602683613ed4565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006130f6601c83613ed4565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613136602e83613ed4565b91507f556e61626c6520746f206d696e742c206e6f7420656e6f75676820637265657060008301527f206b696473206c656674203a2d280000000000000000000000000000000000006020830152604082019050919050565b600061319c602483613ed4565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613202601983613ed4565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613242601983613ed4565b91507f50726f6d6f206d696e747320657868617573746564203a2d28000000000000006000830152602082019050919050565b6000613282602c83613ed4565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006132e8601c83613ed4565b91507f416d6f756e742072657175657374656420697320746f6f206d756368000000006000830152602082019050919050565b6000613328602983613ed4565b91507f4e6f7420616c6c6f77656420746f206d696e74206d6f7265207468616e20313060008301527f206174206f6e63652100000000000000000000000000000000000000000000006020830152604082019050919050565b600061338e603883613ed4565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006133f4602a83613ed4565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061345a602983613ed4565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006134c0602e83613ed4565b91507f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008301527f6578697374656e7420746f6b656e0000000000000000000000000000000000006020830152604082019050919050565b6000613526602083613ed4565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613566603183613ed4565b91507f45524337323155524953746f726167653a2055524920717565727920666f722060008301527f6e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006020830152604082019050919050565b60006135cc602c83613ed4565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613632601383613ed4565b91507f4d617820706572206d696e7420697320313021000000000000000000000000006000830152602082019050919050565b6000613672602083613ed4565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006136b2602983613ed4565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613718602f83613ed4565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061377e602183613ed4565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137e4603183613ed4565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061384a602583613ed4565b91507f4372656570204b6964204d696e74696e67206973207374696c6c204c6f636b6560008301527f64203a2d2f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138b0601983613ed4565b91507f436f756e7420657863656564732070726f6d6f20636f756e74000000000000006000830152602082019050919050565b60006138f0600183613ee5565b91507f2f000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b61392c816140b0565b82525050565b61394361393e826140b0565b6141dc565b82525050565b60006139558285612e7e565b6020820191506139658284612e7e565b6020820191508190509392505050565b60006139818285612f07565b915061398d8284612f07565b91508190509392505050565b60006139a58285612f38565b91506139b0826138e3565b91506139bc8284612f07565b91508190509392505050565b60006139d48287613932565b6020820191506139e48286612e58565b6014820191506139f48285613932565b602082019150613a048284613932565b60208201915081905095945050505050565b6000602082019050613a2b6000830184612e49565b92915050565b6000608082019050613a466000830187612e49565b613a536020830186612e49565b613a606040830185613923565b8181036060830152613a728184612e95565b905095945050505050565b6000602082019050613a926000830184612e6f565b92915050565b60006020820190508181036000830152613ab28184612e95565b905092915050565b60006020820190508181036000830152613ad48184612ece565b905092915050565b60006020820190508181036000830152613af581612fb7565b9050919050565b60006020820190508181036000830152613b158161301d565b9050919050565b60006020820190508181036000830152613b3581613083565b9050919050565b60006020820190508181036000830152613b55816130e9565b9050919050565b60006020820190508181036000830152613b7581613129565b9050919050565b60006020820190508181036000830152613b958161318f565b9050919050565b60006020820190508181036000830152613bb5816131f5565b9050919050565b60006020820190508181036000830152613bd581613235565b9050919050565b60006020820190508181036000830152613bf581613275565b9050919050565b60006020820190508181036000830152613c15816132db565b9050919050565b60006020820190508181036000830152613c358161331b565b9050919050565b60006020820190508181036000830152613c5581613381565b9050919050565b60006020820190508181036000830152613c75816133e7565b9050919050565b60006020820190508181036000830152613c958161344d565b9050919050565b60006020820190508181036000830152613cb5816134b3565b9050919050565b60006020820190508181036000830152613cd581613519565b9050919050565b60006020820190508181036000830152613cf581613559565b9050919050565b60006020820190508181036000830152613d15816135bf565b9050919050565b60006020820190508181036000830152613d3581613625565b9050919050565b60006020820190508181036000830152613d5581613665565b9050919050565b60006020820190508181036000830152613d75816136a5565b9050919050565b60006020820190508181036000830152613d958161370b565b9050919050565b60006020820190508181036000830152613db581613771565b9050919050565b60006020820190508181036000830152613dd5816137d7565b9050919050565b60006020820190508181036000830152613df58161383d565b9050919050565b60006020820190508181036000830152613e15816138a3565b9050919050565b6000602082019050613e316000830184613923565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613e5e57613e5d6142a4565b5b8060405250919050565b600067ffffffffffffffff821115613e8357613e826142a4565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613efb826140b0565b9150613f06836140b0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f3b57613f3a614217565b5b828201905092915050565b6000613f51826140ba565b9150613f5c836140ba565b92508260ff03821115613f7257613f71614217565b5b828201905092915050565b6000613f88826140b0565b9150613f93836140b0565b925082613fa357613fa2614246565b5b828204905092915050565b6000613fb9826140b0565b9150613fc4836140b0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ffd57613ffc614217565b5b828202905092915050565b6000614013826140b0565b915061401e836140b0565b92508282101561403157614030614217565b5b828203905092915050565b600061404782614090565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156140f45780820151818401526020810190506140d9565b83811115614103576000848401525b50505050565b6000600282049050600182168061412157607f821691505b6020821081141561413557614134614275565b5b50919050565b6000614146826140b0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561417957614178614217565b5b600182019050919050565b600061418f826140ba565b915060ff8214156141a3576141a2614217565b5b600182019050919050565b60006141b9826141ca565b9050919050565b6000819050919050565b60006141d5826142e4565b9050919050565b6000819050919050565b60006141f1826140b0565b91506141fc836140b0565b92508261420c5761420b614246565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b6142fa8161403c565b811461430557600080fd5b50565b6143118161404e565b811461431c57600080fd5b50565b6143288161405a565b811461433357600080fd5b50565b61433f81614064565b811461434a57600080fd5b50565b614356816140b0565b811461436157600080fd5b5056fea2646970667358221220e4be1bbbda447417b5e1beaaa5ee6029252fe06d87a508fcdcbf1f1ed725d69a64736f6c63430008000033

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.