ETH Price: $1,974.54 (-4.56%)

Token

Black Shibaverse Genesis (BSG)
 

Overview

Max Total Supply

649 BSG

Holders

31

Transfers

-
0

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

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:
BSG

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : NFT.sol
//SPDX-License-Identifier: MIT

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

pragma solidity  0.8.9;

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

abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

library LibRoyaltiesV2 {
    /*
     * bytes4(keccak256('getRaribleV2Royalties(uint256)')) == 0xcad96cca
     */
    bytes4 constant _INTERFACE_ID_ROYALTIES = 0xcad96cca;
}

library LibPart {
    bytes32 public constant TYPE_HASH = keccak256("Part(address account,uint96 value)");

    struct Part {
        address payable account;
        uint96 value;
    }

    function hash(Part memory part) internal pure returns (bytes32) {
        return keccak256(abi.encode(TYPE_HASH, part.account, part.value));
    }
}

interface RoyaltiesV2 {
    event RoyaltiesSet(uint256 tokenId, LibPart.Part[] royalties);

    function getRaribleV2Royalties(uint256 id) external view returns (LibPart.Part[] memory);
}

abstract contract AbstractRoyalties {
    mapping (uint256 => LibPart.Part[]) internal royalties;

    function _saveRoyalties(uint256 id, LibPart.Part[] memory _royalties) internal {
        uint256 totalValue;
        for (uint i = 0; i < _royalties.length; i++) {
            require(_royalties[i].account != address(0x0), "Recipient should be present");
            require(_royalties[i].value != 0, "Royalty value should be positive");
            totalValue += _royalties[i].value;
            royalties[id].push(_royalties[i]);
        }
        require(totalValue < 10000, "Royalty total value should be < 10000");
        _onRoyaltiesSet(id, _royalties);
    }

    function _updateAccount(uint256 _id, address _from, address _to) internal {
        uint length = royalties[_id].length;
        for(uint i = 0; i < length; i++) {
            if (royalties[_id][i].account == _from) {
                royalties[_id][i].account = payable(address(uint160(_to)));
            }
        }
        
    }

    function _onRoyaltiesSet(uint256 id, LibPart.Part[] memory _royalties) virtual internal;
}

contract RoyaltiesV2Impl is AbstractRoyalties, RoyaltiesV2 {
    function getRaribleV2Royalties(uint256 id) override external view returns (LibPart.Part[] memory) {
        return royalties[id];
    }

    function _onRoyaltiesSet(uint256 id, LibPart.Part[] memory _royalties) override internal {
        emit RoyaltiesSet(id, _royalties);
    }
    
}

contract BSG is ERC721, ERC721Enumerable, Ownable, RoyaltiesV2Impl {

    address payable royaltiesRecipientAddress = payable(0x81C13d0b718711CBb8816f3f6f610f340b6D86FB);
    address public feeWallet = 0x81C13d0b718711CBb8816f3f6f610f340b6D86FB;
    bytes4 private constant _INTERFACE_ID_ERC2981 = 0x2a55205a;
    uint256 public mintFee = 1e17; //0.1 Ethereum
    uint256 public tokenId = 0;
    uint256 constant public maxMint = 1001;

    bool public mintStatus = false;

    string public baseURI = "https://ipfs.io/";
    string public COLLECTOIN_INFO = "ipfs/QmdbpEvimv1htLZpBMr9aTadfgPcg4pw8qfx21XRxo2KTJ";

    string[] public URIs = [
    "ipfs/QmTJxM4kUgTQNH9gJyww4pUBVC4GbHrzDysbdgLMZxXJDe/Common2.json",
    "ipfs/QmTJxM4kUgTQNH9gJyww4pUBVC4GbHrzDysbdgLMZxXJDe/Rare2.json",
    "ipfs/QmTJxM4kUgTQNH9gJyww4pUBVC4GbHrzDysbdgLMZxXJDe/Epic2.json",
    "ipfs/QmTJxM4kUgTQNH9gJyww4pUBVC4GbHrzDysbdgLMZxXJDe/Legendary2.json",
    "ipfs/QmTJxM4kUgTQNH9gJyww4pUBVC4GbHrzDysbdgLMZxXJDe/God2.json"];
    uint256[] public chances = [400, 320, 150, 88, 42];
    uint256 public totalNFTs = 1000;

    mapping(uint256=>uint256) public tokenURIs;

    constructor() ERC721("Black Shibaverse Genesis", "BSG"){
    }

    event MintEnabled(bool indexed status);

    function setCommonURI(string memory data) external onlyOwner{
        URIs[0] = data;
    }
    function setRareURI(string memory data) external onlyOwner{
        URIs[1] = data;
    }

    function setEpicURI(string memory data) external onlyOwner{
        URIs[2] = data;
    }

    function setLegendaryURI(string memory data) external onlyOwner{
        URIs[3] = data;
    }
    
    function setGodURI(string memory data) external onlyOwner{
        URIs[4] = data;
    }

    function mintNft() public payable {
        require(msg.sender == owner() || mintStatus, "minting is not enabled yet!");
        require(tokenId < maxMint, "reached max mint!");
        require(msg.value >= mintFee, "BSG: mint fee is 0.1 ETH!");
        payable(feeWallet).transfer(msg.value);
        uint256 result = pickARandomNumber();
        tokenId += 1;
        setRoyalties(tokenId, royaltiesRecipientAddress, 500);
        _safeMint(msg.sender, tokenId);
        _setTokenURI(tokenId, result);
        chances[result] = chances[result] - 1;
        totalNFTs -= 1;
    }

    function multiMint(uint256 number) public payable {
        require(msg.sender == owner() || mintStatus, "minting is not enabled yet!");
        require(tokenId + number < maxMint, "reached max mint!");
        require(msg.value >= mintFee * number, "BSG: mint fee is 0.1 ETH!");
        payable(feeWallet).transfer(msg.value);
        for(uint256 i = 0; i < number; i++){
            uint256 result = pickARandomNumber();
            tokenId += 1;
            setRoyalties(tokenId, royaltiesRecipientAddress, 500);
            _safeMint(msg.sender, tokenId);
            _setTokenURI(tokenId, result);
            chances[result] = chances[result] - 1;
            totalNFTs -= 1;
        }
    }
    
    function setRoyalties(uint _tokenId, address payable _royaltiesRecipientAddress,uint96 _percentageBasisPoints) internal{
        LibPart.Part[] memory _royalties = new LibPart.Part[](1);
        _royalties[0].value = _percentageBasisPoints;
        _royalties[0].account = _royaltiesRecipientAddress;
        _saveRoyalties(_tokenId, _royalties);
    }

    function setRoyaltyRecipientAddress(address payable _royaltiesRecipientAddress) public onlyOwner{
        royaltiesRecipientAddress = _royaltiesRecipientAddress;
    }

    function pickARandomNumber() internal view returns(uint256 result){
        uint256 randomNumber = uint256(keccak256(abi.encode(block.timestamp, block.difficulty, block.number, msg.sender, tokenId)));
        randomNumber = randomNumber % totalNFTs;
        uint256 acc = 0;
        for(uint256 i = 0; i < chances.length; i++){
            if(randomNumber >= acc && randomNumber <= acc + chances[i] && chances[i] != 0){
                result = i;
            }
            acc += chances[i];
        }
    }

    function tokensOfOwner(address _owner) external view returns (uint256[] memory ownerTokens) {
         uint256 tokenCount = balanceOf(_owner);
         
          if (tokenCount == 0) {
            // Return an empty array
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 totalTokens = totalSupply();
            uint256 resultIndex = 0;

            // We count on the fact that all Rats have IDs starting at 1 and increasing
            // sequentially up to the totalCat count.
            uint256 tokensId;

            for (tokensId = 1; tokensId <= totalTokens; tokensId++) {
                if (ownerOf(tokensId) == _owner) {
                    result[resultIndex] = tokensId;
                    resultIndex++;
                }
            }

            return result;
        }
    }

    function setFeeWallet(address newFee) public onlyOwner{
        feeWallet = newFee;
    }

    function getRoyaltyRecipientAddress() public view returns(address payable){
        return royaltiesRecipientAddress;
    }

    function setMintStatus(bool status) external onlyOwner{
        mintStatus = status;
        emit MintEnabled(status);
    }

    function setMintFee(uint256 _mintFee) external onlyOwner{
        mintFee = _mintFee;
    }

    function _setTokenURI(uint256 _tokenId, uint256 index) internal{
        tokenURIs[_tokenId] = index;
    }

    function tokenURI(uint256 _tokenId) public override view returns(string memory){
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
        return string(abi.encodePacked(_baseURI(), URIs[tokenURIs[_tokenId]]));
    }

    function contractURI() public view returns (string memory) { //Collection details
        return string(abi.encodePacked(_baseURI(), COLLECTOIN_INFO));
    }

    function updateContractURI(string memory data) public onlyOwner{
        COLLECTOIN_INFO = data;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function setBaseURI(string memory newBASE) external onlyOwner {
        baseURI = newBASE;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 _tokenId
    ) internal virtual override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, _tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool)
    {
        if(interfaceId == LibRoyaltiesV2._INTERFACE_ID_ROYALTIES){
            return true;
        }

        if(interfaceId == _INTERFACE_ID_ERC2981){
            return true;
        }

        return super.supportsInterface(interfaceId);
    }

}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 9 of 11 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

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

    /**
     * @dev 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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

API
[{"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":"bool","name":"status","type":"bool"}],"name":"MintEnabled","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":"tokenId","type":"uint256"},{"components":[{"internalType":"address payable","name":"account","type":"address"},{"internalType":"uint96","name":"value","type":"uint96"}],"indexed":false,"internalType":"struct LibPart.Part[]","name":"royalties","type":"tuple[]"}],"name":"RoyaltiesSet","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":"COLLECTOIN_INFO","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"URIs","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"chances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getRaribleV2Royalties","outputs":[{"components":[{"internalType":"address payable","name":"account","type":"address"},{"internalType":"uint96","name":"value","type":"uint96"}],"internalType":"struct LibPart.Part[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRoyaltyRecipientAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintNft","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"multiMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBASE","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"data","type":"string"}],"name":"setCommonURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"data","type":"string"}],"name":"setEpicURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newFee","type":"address"}],"name":"setFeeWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"data","type":"string"}],"name":"setGodURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"data","type":"string"}],"name":"setLegendaryURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintFee","type":"uint256"}],"name":"setMintFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"data","type":"string"}],"name":"setRareURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_royaltiesRecipientAddress","type":"address"}],"name":"setRoyaltyRecipientAddress","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenURIs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"ownerTokens","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalNFTs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"data","type":"string"}],"name":"updateContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040527381c13d0b718711cbb8816f3f6f610f340b6d86fb600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507381c13d0b718711cbb8816f3f6f610f340b6d86fb600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555067016345785d8a0000600e556000600f556000601060006101000a81548160ff0219169083151502179055506040518060400160405280601081526020017f68747470733a2f2f697066732e696f2f0000000000000000000000000000000081525060119080519060200190620001279291906200040e565b50604051806060016040528060338152602001620058136033913960129080519060200190620001599291906200040e565b506040518060a00160405280604051806060016040528060408152602001620058c16040913981526020016040518060600160405280603e815260200162005901603e913981526020016040518060600160405280603e815260200162005846603e913981526020016040518060800160405280604381526020016200593f6043913981526020016040518060600160405280603d815260200162005884603d91398152506013906005620002109291906200049f565b506040518060a0016040528061019061ffff16815260200161014061ffff168152602001609661ffff168152602001605861ffff168152602001602a61ffff1681525060149060056200026592919062000506565b506103e86015553480156200027957600080fd5b506040518060400160405280601881526020017f426c61636b20536869626176657273652047656e6573697300000000000000008152506040518060400160405280600381526020017f42534700000000000000000000000000000000000000000000000000000000008152508160009080519060200190620002fe9291906200040e565b508060019080519060200190620003179291906200040e565b5050506200033a6200032e6200034060201b60201c565b6200034860201b60201c565b62000650565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200041c906200061a565b90600052602060002090601f0160209004810192826200044057600085556200048c565b82601f106200045b57805160ff19168380011785556200048c565b828001600101855582156200048c579182015b828111156200048b5782518255916020019190600101906200046e565b5b5090506200049b91906200055e565b5090565b828054828255906000526020600020908101928215620004f3579160200282015b82811115620004f2578251829080519060200190620004e19291906200040e565b5091602001919060010190620004c0565b5b5090506200050291906200057d565b5090565b8280548282559060005260206000209081019282156200054b579160200282015b828111156200054a578251829061ffff1690559160200191906001019062000527565b5b5090506200055a91906200055e565b5090565b5b80821115620005795760008160009055506001016200055f565b5090565b5b80821115620005a15760008181620005979190620005a5565b506001016200057e565b5090565b508054620005b3906200061a565b6000825580601f10620005c75750620005e8565b601f016020900490600052602060002090810190620005e791906200055e565b5b50565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200063357607f821691505b602082108114156200064a5762000649620005eb565b5b50919050565b6151b380620006606000396000f3fe6080604052600436106102885760003560e01c8063715018a61161015a578063af9009e0116100c1578063e1c052a41161007a578063e1c052a4146109e6578063e8a3d48514610a11578063e985e9c514610a3c578063eddd0d9c14610a79578063f25f4b5614610aa2578063f2fde38b14610acd57610288565b8063af9009e0146108d3578063b88d4fde146108fc578063c2229fea14610925578063c40233a31461092f578063c87b56dd1461096c578063cad96cca146109a957610288565b8063953f97aa11610113578063953f97aa146107d257806395d89b411461080f5780639d11247c1461083a5780639da3f8fd14610863578063a22cb4651461088e578063ab00492f146108b757610288565b8063715018a6146106d65780637501f741146106ed5780637e5b1e24146107185780638462151c146107415780638da5cb5b1461077e57806390d49b9d146107a957610288565b806323f543fc116101fe5780636352211e116101b75780636352211e146105a257806368b5d2d8146105df5780636aeb4248146106085780636c0360eb146106315780636c8b703f1461065c57806370a082311461069957610288565b806323f543fc146104825780632f745c59146104ad57806342842e0e146104ea5780634f6ccce71461051357806355f804b31461055057806355fc98931461057957610288565b80630d0e96da116102505780630d0e96da1461038457806313966db5146103af57806317d70f7c146103da57806318160ddd146104055780631f85e3ca1461043057806323b872dd1461045957610288565b806301a27f531461028d57806301ffc9a7146102b657806306fdde03146102f3578063081812fc1461031e578063095ea7b31461035b575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af919061396d565b610af6565b005b3480156102c257600080fd5b506102dd60048036038101906102d89190613a0e565b610b35565b6040516102ea9190613a56565b60405180910390f35b3480156102ff57600080fd5b50610308610bf4565b6040516103159190613af9565b60405180910390f35b34801561032a57600080fd5b5061034560048036038101906103409190613b51565b610c86565b6040516103529190613bbf565b60405180910390f35b34801561036757600080fd5b50610382600480360381019061037d9190613c06565b610ccc565b005b34801561039057600080fd5b50610399610de4565b6040516103a69190613c55565b60405180910390f35b3480156103bb57600080fd5b506103c4610dea565b6040516103d19190613c55565b60405180910390f35b3480156103e657600080fd5b506103ef610df0565b6040516103fc9190613c55565b60405180910390f35b34801561041157600080fd5b5061041a610df6565b6040516104279190613c55565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190613c9c565b610e03565b005b34801561046557600080fd5b50610480600480360381019061047b9190613cc9565b610e57565b005b34801561048e57600080fd5b50610497610eb7565b6040516104a49190613af9565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf9190613c06565b610f45565b6040516104e19190613c55565b60405180910390f35b3480156104f657600080fd5b50610511600480360381019061050c9190613cc9565b610fea565b005b34801561051f57600080fd5b5061053a60048036038101906105359190613b51565b61100a565b6040516105479190613c55565b60405180910390f35b34801561055c57600080fd5b506105776004803603810190610572919061396d565b61107b565b005b34801561058557600080fd5b506105a0600480360381019061059b919061396d565b61109d565b005b3480156105ae57600080fd5b506105c960048036038101906105c49190613b51565b6110dc565b6040516105d69190613bbf565b60405180910390f35b3480156105eb57600080fd5b506106066004803603810190610601919061396d565b61118e565b005b34801561061457600080fd5b5061062f600480360381019061062a919061396d565b6111cd565b005b34801561063d57600080fd5b5061064661120c565b6040516106539190613af9565b60405180910390f35b34801561066857600080fd5b50610683600480360381019061067e9190613b51565b61129a565b6040516106909190613c55565b60405180910390f35b3480156106a557600080fd5b506106c060048036038101906106bb9190613d1c565b6112b2565b6040516106cd9190613c55565b60405180910390f35b3480156106e257600080fd5b506106eb61136a565b005b3480156106f957600080fd5b5061070261137e565b60405161070f9190613c55565b60405180910390f35b34801561072457600080fd5b5061073f600480360381019061073a919061396d565b611384565b005b34801561074d57600080fd5b5061076860048036038101906107639190613d1c565b6113a6565b6040516107759190613e07565b60405180910390f35b34801561078a57600080fd5b50610793611504565b6040516107a09190613bbf565b60405180910390f35b3480156107b557600080fd5b506107d060048036038101906107cb9190613d1c565b61152e565b005b3480156107de57600080fd5b506107f960048036038101906107f49190613b51565b61157a565b6040516108069190613af9565b60405180910390f35b34801561081b57600080fd5b50610824611626565b6040516108319190613af9565b60405180910390f35b34801561084657600080fd5b50610861600480360381019061085c919061396d565b6116b8565b005b34801561086f57600080fd5b506108786116f7565b6040516108859190613a56565b60405180910390f35b34801561089a57600080fd5b506108b560048036038101906108b09190613e29565b61170a565b005b6108d160048036038101906108cc9190613b51565b611720565b005b3480156108df57600080fd5b506108fa60048036038101906108f59190613ea7565b6119af565b005b34801561090857600080fd5b50610923600480360381019061091e9190613f75565b6119fb565b005b61092d611a5d565b005b34801561093b57600080fd5b5061095660048036038101906109519190613b51565b611cb6565b6040516109639190613c55565b60405180910390f35b34801561097857600080fd5b50610993600480360381019061098e9190613b51565b611cda565b6040516109a09190613af9565b60405180910390f35b3480156109b557600080fd5b506109d060048036038101906109cb9190613b51565b611d84565b6040516109dd919061410c565b60405180910390f35b3480156109f257600080fd5b506109fb611e86565b604051610a08919061413d565b60405180910390f35b348015610a1d57600080fd5b50610a26611eb0565b604051610a339190613af9565b60405180910390f35b348015610a4857600080fd5b50610a636004803603810190610a5e9190614158565b611ee1565b604051610a709190613a56565b60405180910390f35b348015610a8557600080fd5b50610aa06004803603810190610a9b9190613b51565b611f75565b005b348015610aae57600080fd5b50610ab7611f87565b604051610ac49190613bbf565b60405180910390f35b348015610ad957600080fd5b50610af46004803603810190610aef9190613d1c565b611fad565b005b610afe612031565b806013600481548110610b1457610b13614198565b5b906000526020600020019080519060200190610b31929190613732565b5050565b600063cad96cca60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415610b8d5760019050610bef565b632a55205a60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415610be35760019050610bef565b610bec826120af565b90505b919050565b606060008054610c03906141f6565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2f906141f6565b8015610c7c5780601f10610c5157610100808354040283529160200191610c7c565b820191906000526020600020905b815481529060010190602001808311610c5f57829003601f168201915b5050505050905090565b6000610c9182612129565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cd7826110dc565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f9061429a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d67612174565b73ffffffffffffffffffffffffffffffffffffffff161480610d965750610d9581610d90612174565b611ee1565b5b610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc9061432c565b60405180910390fd5b610ddf838361217c565b505050565b60155481565b600e5481565b600f5481565b6000600880549050905090565b610e0b612031565b80601060006101000a81548160ff0219169083151502179055508015157f30d46918504e7d4aa88713881c9c85ce8224770ba203947f54b221f303b6581e60405160405180910390a250565b610e68610e62612174565b82612235565b610ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9e906143be565b60405180910390fd5b610eb28383836122ca565b505050565b60128054610ec4906141f6565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef0906141f6565b8015610f3d5780601f10610f1257610100808354040283529160200191610f3d565b820191906000526020600020905b815481529060010190602001808311610f2057829003601f168201915b505050505081565b6000610f50836112b2565b8210610f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8890614450565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b611005838383604051806020016040528060008152506119fb565b505050565b6000611014610df6565b8210611055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104c906144e2565b60405180910390fd5b6008828154811061106957611068614198565b5b90600052602060002001549050919050565b611083612031565b8060119080519060200190611099929190613732565b5050565b6110a5612031565b8060136000815481106110bb576110ba614198565b5b9060005260206000200190805190602001906110d8929190613732565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117c9061454e565b60405180910390fd5b80915050919050565b611196612031565b8060136002815481106111ac576111ab614198565b5b9060005260206000200190805190602001906111c9929190613732565b5050565b6111d5612031565b8060136003815481106111eb576111ea614198565b5b906000526020600020019080519060200190611208929190613732565b5050565b60118054611219906141f6565b80601f0160208091040260200160405190810160405280929190818152602001828054611245906141f6565b80156112925780601f1061126757610100808354040283529160200191611292565b820191906000526020600020905b81548152906001019060200180831161127557829003601f168201915b505050505081565b60166020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131a906145e0565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611372612031565b61137c6000612531565b565b6103e981565b61138c612031565b80601290805190602001906113a2929190613732565b5050565b606060006113b3836112b2565b9050600081141561141057600067ffffffffffffffff8111156113d9576113d8613842565b5b6040519080825280602002602001820160405280156114075781602001602082028036833780820191505090505b509150506114ff565b60008167ffffffffffffffff81111561142c5761142b613842565b5b60405190808252806020026020018201604052801561145a5781602001602082028036833780820191505090505b5090506000611467610df6565b9050600080600190505b8281116114f6578673ffffffffffffffffffffffffffffffffffffffff16611498826110dc565b73ffffffffffffffffffffffffffffffffffffffff1614156114e357808483815181106114c8576114c7614198565b5b60200260200101818152505081806114df9061462f565b9250505b80806114ee9061462f565b915050611471565b83955050505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611536612031565b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6013818154811061158a57600080fd5b9060005260206000200160009150905080546115a5906141f6565b80601f01602080910402602001604051908101604052809291908181526020018280546115d1906141f6565b801561161e5780601f106115f35761010080835404028352916020019161161e565b820191906000526020600020905b81548152906001019060200180831161160157829003601f168201915b505050505081565b606060018054611635906141f6565b80601f0160208091040260200160405190810160405280929190818152602001828054611661906141f6565b80156116ae5780601f10611683576101008083540402835291602001916116ae565b820191906000526020600020905b81548152906001019060200180831161169157829003601f168201915b5050505050905090565b6116c0612031565b8060136001815481106116d6576116d5614198565b5b9060005260206000200190805190602001906116f3929190613732565b5050565b601060009054906101000a900460ff1681565b61171c611715612174565b83836125f7565b5050565b611728611504565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061176d5750601060009054906101000a900460ff165b6117ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a3906146c4565b60405180910390fd5b6103e981600f546117bd91906146e4565b106117fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f490614786565b60405180910390fd5b80600e5461180b91906147a6565b34101561184d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118449061484c565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f193505050501580156118b5573d6000803e3d6000fd5b5060005b818110156119ab5760006118cb612764565b90506001600f60008282546118e091906146e4565b92505081905550611918600f54600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166101f4612870565b61192433600f5461296f565b611930600f548261298d565b60016014828154811061194657611945614198565b5b906000526020600020015461195b919061486c565b6014828154811061196f5761196e614198565b5b9060005260206000200181905550600160156000828254611990919061486c565b925050819055505080806119a39061462f565b9150506118b9565b5050565b6119b7612031565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611a0c611a06612174565b83612235565b611a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a42906143be565b60405180910390fd5b611a57848484846129a9565b50505050565b611a65611504565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611aaa5750601060009054906101000a900460ff165b611ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae0906146c4565b60405180910390fd5b6103e9600f5410611b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2690614786565b60405180910390fd5b600e54341015611b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6b9061484c565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015611bdc573d6000803e3d6000fd5b506000611be7612764565b90506001600f6000828254611bfc91906146e4565b92505081905550611c34600f54600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166101f4612870565b611c4033600f5461296f565b611c4c600f548261298d565b600160148281548110611c6257611c61614198565b5b9060005260206000200154611c77919061486c565b60148281548110611c8b57611c8a614198565b5b9060005260206000200181905550600160156000828254611cac919061486c565b9250508190555050565b60148181548110611cc657600080fd5b906000526020600020016000915090505481565b6060611ce582612a05565b611d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1b90614912565b60405180910390fd5b611d2c612a71565b6013601660008581526020019081526020016000205481548110611d5357611d52614198565b5b90600052602060002001604051602001611d6e929190614a02565b6040516020818303038152906040529050919050565b6060600b6000838152602001908152602001600020805480602002602001604051908101604052809291908181526020016000905b82821015611e7b578382906000526020600020016040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505081526020019060010190611db9565b505050509050919050565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060611eba612a71565b6012604051602001611ecd929190614a02565b604051602081830303815290604052905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f7d612031565b80600e8190555050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611fb5612031565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201c90614a98565b60405180910390fd5b61202e81612531565b50565b612039612174565b73ffffffffffffffffffffffffffffffffffffffff16612057611504565b73ffffffffffffffffffffffffffffffffffffffff16146120ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a490614b04565b60405180910390fd5b565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612122575061212182612b03565b5b9050919050565b61213281612a05565b612171576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121689061454e565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166121ef836110dc565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080612241836110dc565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061228357506122828185611ee1565b5b806122c157508373ffffffffffffffffffffffffffffffffffffffff166122a984610c86565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122ea826110dc565b73ffffffffffffffffffffffffffffffffffffffff1614612340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233790614b96565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a790614c28565b60405180910390fd5b6123bb838383612be5565b6123c660008261217c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612416919061486c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461246d91906146e4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461252c838383612bf5565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265d90614c94565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127579190613a56565b60405180910390a3505050565b60008042444333600f54604051602001612782959493929190614cb4565b6040516020818303038152906040528051906020012060001c9050601554816127ab9190614d36565b90506000805b60148054905081101561286a578183101580156127f75750601481815481106127dd576127dc614198565b5b9060005260206000200154826127f391906146e4565b8311155b8015612822575060006014828154811061281457612813614198565b5b906000526020600020015414155b1561282b578093505b6014818154811061283f5761283e614198565b5b90600052602060002001548261285591906146e4565b915080806128629061462f565b9150506127b1565b50505090565b6000600167ffffffffffffffff81111561288d5761288c613842565b5b6040519080825280602002602001820160405280156128c657816020015b6128b36137b8565b8152602001906001900390816128ab5790505b50905081816000815181106128de576128dd614198565b5b6020026020010151602001906bffffffffffffffffffffffff1690816bffffffffffffffffffffffff1681525050828160008151811061292157612920614198565b5b60200260200101516000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506129698482612bfa565b50505050565b612989828260405180602001604052806000815250612e7d565b5050565b8060166000848152602001908152602001600020819055505050565b6129b48484846122ca565b6129c084848484612ed8565b6129ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f690614dd9565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060118054612a80906141f6565b80601f0160208091040260200160405190810160405280929190818152602001828054612aac906141f6565b8015612af95780601f10612ace57610100808354040283529160200191612af9565b820191906000526020600020905b815481529060010190602001808311612adc57829003601f168201915b5050505050905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612bce57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612bde5750612bdd8261306f565b5b9050919050565b612bf08383836130d9565b505050565b505050565b600080600090505b8251811015612e2957600073ffffffffffffffffffffffffffffffffffffffff16838281518110612c3657612c35614198565b5b60200260200101516000015173ffffffffffffffffffffffffffffffffffffffff161415612c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9090614e45565b60405180910390fd5b6000838281518110612cae57612cad614198565b5b6020026020010151602001516bffffffffffffffffffffffff161415612d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0090614eb1565b60405180910390fd5b828181518110612d1c57612d1b614198565b5b6020026020010151602001516bffffffffffffffffffffffff1682612d4191906146e4565b9150600b6000858152602001908152602001600020838281518110612d6957612d68614198565b5b60200260200101519080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555050508080612e219061462f565b915050612c02565b506127108110612e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6590614f43565b60405180910390fd5b612e7883836131ed565b505050565b612e87838361322a565b612e946000848484612ed8565b612ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eca90614dd9565b60405180910390fd5b505050565b6000612ef98473ffffffffffffffffffffffffffffffffffffffff16613404565b15613062578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f22612174565b8786866040518563ffffffff1660e01b8152600401612f449493929190614fb8565b602060405180830381600087803b158015612f5e57600080fd5b505af1925050508015612f8f57506040513d601f19601f82011682018060405250810190612f8c9190615019565b60015b613012573d8060008114612fbf576040519150601f19603f3d011682016040523d82523d6000602084013e612fc4565b606091505b5060008151141561300a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300190614dd9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613067565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6130e4838383613427565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613127576131228161342c565b613166565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613165576131648382613475565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131a9576131a4816135e2565b6131e8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146131e7576131e682826136b3565b5b5b505050565b7f3fa96d7b6bcbfe71ef171666d84db3cf52fa2d1c8afdb1cc8e486177f208b7df828260405161321e929190615046565b60405180910390a15050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561329a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613291906150c2565b60405180910390fd5b6132a381612a05565b156132e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132da9061512e565b60405180910390fd5b6132ef60008383612be5565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461333f91906146e4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461340060008383612bf5565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613482846112b2565b61348c919061486c565b9050600060076000848152602001908152602001600020549050818114613571576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506135f6919061486c565b905060006009600084815260200190815260200160002054905060006008838154811061362657613625614198565b5b90600052602060002001549050806008838154811061364857613647614198565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806136975761369661514e565b5b6001900381819060005260206000200160009055905550505050565b60006136be836112b2565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461373e906141f6565b90600052602060002090601f01602090048101928261376057600085556137a7565b82601f1061377957805160ff19168380011785556137a7565b828001600101855582156137a7579182015b828111156137a657825182559160200191906001019061378b565b5b5090506137b491906137f6565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff16815260200160006bffffffffffffffffffffffff1681525090565b5b8082111561380f5760008160009055506001016137f7565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61387a82613831565b810181811067ffffffffffffffff8211171561389957613898613842565b5b80604052505050565b60006138ac613813565b90506138b88282613871565b919050565b600067ffffffffffffffff8211156138d8576138d7613842565b5b6138e182613831565b9050602081019050919050565b82818337600083830152505050565b600061391061390b846138bd565b6138a2565b90508281526020810184848401111561392c5761392b61382c565b5b6139378482856138ee565b509392505050565b600082601f83011261395457613953613827565b5b81356139648482602086016138fd565b91505092915050565b6000602082840312156139835761398261381d565b5b600082013567ffffffffffffffff8111156139a1576139a0613822565b5b6139ad8482850161393f565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139eb816139b6565b81146139f657600080fd5b50565b600081359050613a08816139e2565b92915050565b600060208284031215613a2457613a2361381d565b5b6000613a32848285016139f9565b91505092915050565b60008115159050919050565b613a5081613a3b565b82525050565b6000602082019050613a6b6000830184613a47565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613aab578082015181840152602081019050613a90565b83811115613aba576000848401525b50505050565b6000613acb82613a71565b613ad58185613a7c565b9350613ae5818560208601613a8d565b613aee81613831565b840191505092915050565b60006020820190508181036000830152613b138184613ac0565b905092915050565b6000819050919050565b613b2e81613b1b565b8114613b3957600080fd5b50565b600081359050613b4b81613b25565b92915050565b600060208284031215613b6757613b6661381d565b5b6000613b7584828501613b3c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ba982613b7e565b9050919050565b613bb981613b9e565b82525050565b6000602082019050613bd46000830184613bb0565b92915050565b613be381613b9e565b8114613bee57600080fd5b50565b600081359050613c0081613bda565b92915050565b60008060408385031215613c1d57613c1c61381d565b5b6000613c2b85828601613bf1565b9250506020613c3c85828601613b3c565b9150509250929050565b613c4f81613b1b565b82525050565b6000602082019050613c6a6000830184613c46565b92915050565b613c7981613a3b565b8114613c8457600080fd5b50565b600081359050613c9681613c70565b92915050565b600060208284031215613cb257613cb161381d565b5b6000613cc084828501613c87565b91505092915050565b600080600060608486031215613ce257613ce161381d565b5b6000613cf086828701613bf1565b9350506020613d0186828701613bf1565b9250506040613d1286828701613b3c565b9150509250925092565b600060208284031215613d3257613d3161381d565b5b6000613d4084828501613bf1565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613d7e81613b1b565b82525050565b6000613d908383613d75565b60208301905092915050565b6000602082019050919050565b6000613db482613d49565b613dbe8185613d54565b9350613dc983613d65565b8060005b83811015613dfa578151613de18882613d84565b9750613dec83613d9c565b925050600181019050613dcd565b5085935050505092915050565b60006020820190508181036000830152613e218184613da9565b905092915050565b60008060408385031215613e4057613e3f61381d565b5b6000613e4e85828601613bf1565b9250506020613e5f85828601613c87565b9150509250929050565b6000613e7482613b7e565b9050919050565b613e8481613e69565b8114613e8f57600080fd5b50565b600081359050613ea181613e7b565b92915050565b600060208284031215613ebd57613ebc61381d565b5b6000613ecb84828501613e92565b91505092915050565b600067ffffffffffffffff821115613eef57613eee613842565b5b613ef882613831565b9050602081019050919050565b6000613f18613f1384613ed4565b6138a2565b905082815260208101848484011115613f3457613f3361382c565b5b613f3f8482856138ee565b509392505050565b600082601f830112613f5c57613f5b613827565b5b8135613f6c848260208601613f05565b91505092915050565b60008060008060808587031215613f8f57613f8e61381d565b5b6000613f9d87828801613bf1565b9450506020613fae87828801613bf1565b9350506040613fbf87828801613b3c565b925050606085013567ffffffffffffffff811115613fe057613fdf613822565b5b613fec87828801613f47565b91505092959194509250565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61402d81613e69565b82525050565b60006bffffffffffffffffffffffff82169050919050565b61405481614033565b82525050565b6040820160008201516140706000850182614024565b506020820151614083602085018261404b565b50505050565b6000614095838361405a565b60408301905092915050565b6000602082019050919050565b60006140b982613ff8565b6140c38185614003565b93506140ce83614014565b8060005b838110156140ff5781516140e68882614089565b97506140f1836140a1565b9250506001810190506140d2565b5085935050505092915050565b6000602082019050818103600083015261412681846140ae565b905092915050565b61413781613e69565b82525050565b6000602082019050614152600083018461412e565b92915050565b6000806040838503121561416f5761416e61381d565b5b600061417d85828601613bf1565b925050602061418e85828601613bf1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061420e57607f821691505b60208210811415614222576142216141c7565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614284602183613a7c565b915061428f82614228565b604082019050919050565b600060208201905081810360008301526142b381614277565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000614316603e83613a7c565b9150614321826142ba565b604082019050919050565b6000602082019050818103600083015261434581614309565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b60006143a8602e83613a7c565b91506143b38261434c565b604082019050919050565b600060208201905081810360008301526143d78161439b565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b600061443a602b83613a7c565b9150614445826143de565b604082019050919050565b600060208201905081810360008301526144698161442d565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006144cc602c83613a7c565b91506144d782614470565b604082019050919050565b600060208201905081810360008301526144fb816144bf565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000614538601883613a7c565b915061454382614502565b602082019050919050565b600060208201905081810360008301526145678161452b565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006145ca602983613a7c565b91506145d58261456e565b604082019050919050565b600060208201905081810360008301526145f9816145bd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061463a82613b1b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561466d5761466c614600565b5b600182019050919050565b7f6d696e74696e67206973206e6f7420656e61626c656420796574210000000000600082015250565b60006146ae601b83613a7c565b91506146b982614678565b602082019050919050565b600060208201905081810360008301526146dd816146a1565b9050919050565b60006146ef82613b1b565b91506146fa83613b1b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561472f5761472e614600565b5b828201905092915050565b7f72656163686564206d6178206d696e7421000000000000000000000000000000600082015250565b6000614770601183613a7c565b915061477b8261473a565b602082019050919050565b6000602082019050818103600083015261479f81614763565b9050919050565b60006147b182613b1b565b91506147bc83613b1b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147f5576147f4614600565b5b828202905092915050565b7f4253473a206d696e742066656520697320302e31204554482100000000000000600082015250565b6000614836601983613a7c565b915061484182614800565b602082019050919050565b6000602082019050818103600083015261486581614829565b9050919050565b600061487782613b1b565b915061488283613b1b565b92508282101561489557614894614600565b5b828203905092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006148fc602f83613a7c565b9150614907826148a0565b604082019050919050565b6000602082019050818103600083015261492b816148ef565b9050919050565b600081905092915050565b600061494882613a71565b6149528185614932565b9350614962818560208601613a8d565b80840191505092915050565b60008190508160005260206000209050919050565b60008154614990816141f6565b61499a8186614932565b945060018216600081146149b557600181146149c6576149f9565b60ff198316865281860193506149f9565b6149cf8561496e565b60005b838110156149f1578154818901526001820191506020810190506149d2565b838801955050505b50505092915050565b6000614a0e828561493d565b9150614a1a8284614983565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a82602683613a7c565b9150614a8d82614a26565b604082019050919050565b60006020820190508181036000830152614ab181614a75565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614aee602083613a7c565b9150614af982614ab8565b602082019050919050565b60006020820190508181036000830152614b1d81614ae1565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614b80602583613a7c565b9150614b8b82614b24565b604082019050919050565b60006020820190508181036000830152614baf81614b73565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614c12602483613a7c565b9150614c1d82614bb6565b604082019050919050565b60006020820190508181036000830152614c4181614c05565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614c7e601983613a7c565b9150614c8982614c48565b602082019050919050565b60006020820190508181036000830152614cad81614c71565b9050919050565b600060a082019050614cc96000830188613c46565b614cd66020830187613c46565b614ce36040830186613c46565b614cf06060830185613bb0565b614cfd6080830184613c46565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d4182613b1b565b9150614d4c83613b1b565b925082614d5c57614d5b614d07565b5b828206905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614dc3603283613a7c565b9150614dce82614d67565b604082019050919050565b60006020820190508181036000830152614df281614db6565b9050919050565b7f526563697069656e742073686f756c642062652070726573656e740000000000600082015250565b6000614e2f601b83613a7c565b9150614e3a82614df9565b602082019050919050565b60006020820190508181036000830152614e5e81614e22565b9050919050565b7f526f79616c74792076616c75652073686f756c6420626520706f736974697665600082015250565b6000614e9b602083613a7c565b9150614ea682614e65565b602082019050919050565b60006020820190508181036000830152614eca81614e8e565b9050919050565b7f526f79616c747920746f74616c2076616c75652073686f756c64206265203c2060008201527f3130303030000000000000000000000000000000000000000000000000000000602082015250565b6000614f2d602583613a7c565b9150614f3882614ed1565b604082019050919050565b60006020820190508181036000830152614f5c81614f20565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614f8a82614f63565b614f948185614f6e565b9350614fa4818560208601613a8d565b614fad81613831565b840191505092915050565b6000608082019050614fcd6000830187613bb0565b614fda6020830186613bb0565b614fe76040830185613c46565b8181036060830152614ff98184614f7f565b905095945050505050565b600081519050615013816139e2565b92915050565b60006020828403121561502f5761502e61381d565b5b600061503d84828501615004565b91505092915050565b600060408201905061505b6000830185613c46565b818103602083015261506d81846140ae565b90509392505050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006150ac602083613a7c565b91506150b782615076565b602082019050919050565b600060208201905081810360008301526150db8161509f565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615118601c83613a7c565b9150615123826150e2565b602082019050919050565b600060208201905081810360008301526151478161510b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea264697066735822122039d0206459b409e13c64882e9dc07b43dc5e17eec8d56917b8b1cf3f549f192564736f6c63430008090033697066732f516d6462704576696d763168744c5a70424d72396154616466675063673470773871667832315852786f324b544a697066732f516d544a784d346b556754514e4839674a79777734705542564334476248727a4479736264674c4d5a78584a44652f45706963322e6a736f6e697066732f516d544a784d346b556754514e4839674a79777734705542564334476248727a4479736264674c4d5a78584a44652f476f64322e6a736f6e697066732f516d544a784d346b556754514e4839674a79777734705542564334476248727a4479736264674c4d5a78584a44652f436f6d6d6f6e322e6a736f6e697066732f516d544a784d346b556754514e4839674a79777734705542564334476248727a4479736264674c4d5a78584a44652f52617265322e6a736f6e697066732f516d544a784d346b556754514e4839674a79777734705542564334476248727a4479736264674c4d5a78584a44652f4c6567656e64617279322e6a736f6e

Deployed Bytecode

0x6080604052600436106102885760003560e01c8063715018a61161015a578063af9009e0116100c1578063e1c052a41161007a578063e1c052a4146109e6578063e8a3d48514610a11578063e985e9c514610a3c578063eddd0d9c14610a79578063f25f4b5614610aa2578063f2fde38b14610acd57610288565b8063af9009e0146108d3578063b88d4fde146108fc578063c2229fea14610925578063c40233a31461092f578063c87b56dd1461096c578063cad96cca146109a957610288565b8063953f97aa11610113578063953f97aa146107d257806395d89b411461080f5780639d11247c1461083a5780639da3f8fd14610863578063a22cb4651461088e578063ab00492f146108b757610288565b8063715018a6146106d65780637501f741146106ed5780637e5b1e24146107185780638462151c146107415780638da5cb5b1461077e57806390d49b9d146107a957610288565b806323f543fc116101fe5780636352211e116101b75780636352211e146105a257806368b5d2d8146105df5780636aeb4248146106085780636c0360eb146106315780636c8b703f1461065c57806370a082311461069957610288565b806323f543fc146104825780632f745c59146104ad57806342842e0e146104ea5780634f6ccce71461051357806355f804b31461055057806355fc98931461057957610288565b80630d0e96da116102505780630d0e96da1461038457806313966db5146103af57806317d70f7c146103da57806318160ddd146104055780631f85e3ca1461043057806323b872dd1461045957610288565b806301a27f531461028d57806301ffc9a7146102b657806306fdde03146102f3578063081812fc1461031e578063095ea7b31461035b575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af919061396d565b610af6565b005b3480156102c257600080fd5b506102dd60048036038101906102d89190613a0e565b610b35565b6040516102ea9190613a56565b60405180910390f35b3480156102ff57600080fd5b50610308610bf4565b6040516103159190613af9565b60405180910390f35b34801561032a57600080fd5b5061034560048036038101906103409190613b51565b610c86565b6040516103529190613bbf565b60405180910390f35b34801561036757600080fd5b50610382600480360381019061037d9190613c06565b610ccc565b005b34801561039057600080fd5b50610399610de4565b6040516103a69190613c55565b60405180910390f35b3480156103bb57600080fd5b506103c4610dea565b6040516103d19190613c55565b60405180910390f35b3480156103e657600080fd5b506103ef610df0565b6040516103fc9190613c55565b60405180910390f35b34801561041157600080fd5b5061041a610df6565b6040516104279190613c55565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190613c9c565b610e03565b005b34801561046557600080fd5b50610480600480360381019061047b9190613cc9565b610e57565b005b34801561048e57600080fd5b50610497610eb7565b6040516104a49190613af9565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf9190613c06565b610f45565b6040516104e19190613c55565b60405180910390f35b3480156104f657600080fd5b50610511600480360381019061050c9190613cc9565b610fea565b005b34801561051f57600080fd5b5061053a60048036038101906105359190613b51565b61100a565b6040516105479190613c55565b60405180910390f35b34801561055c57600080fd5b506105776004803603810190610572919061396d565b61107b565b005b34801561058557600080fd5b506105a0600480360381019061059b919061396d565b61109d565b005b3480156105ae57600080fd5b506105c960048036038101906105c49190613b51565b6110dc565b6040516105d69190613bbf565b60405180910390f35b3480156105eb57600080fd5b506106066004803603810190610601919061396d565b61118e565b005b34801561061457600080fd5b5061062f600480360381019061062a919061396d565b6111cd565b005b34801561063d57600080fd5b5061064661120c565b6040516106539190613af9565b60405180910390f35b34801561066857600080fd5b50610683600480360381019061067e9190613b51565b61129a565b6040516106909190613c55565b60405180910390f35b3480156106a557600080fd5b506106c060048036038101906106bb9190613d1c565b6112b2565b6040516106cd9190613c55565b60405180910390f35b3480156106e257600080fd5b506106eb61136a565b005b3480156106f957600080fd5b5061070261137e565b60405161070f9190613c55565b60405180910390f35b34801561072457600080fd5b5061073f600480360381019061073a919061396d565b611384565b005b34801561074d57600080fd5b5061076860048036038101906107639190613d1c565b6113a6565b6040516107759190613e07565b60405180910390f35b34801561078a57600080fd5b50610793611504565b6040516107a09190613bbf565b60405180910390f35b3480156107b557600080fd5b506107d060048036038101906107cb9190613d1c565b61152e565b005b3480156107de57600080fd5b506107f960048036038101906107f49190613b51565b61157a565b6040516108069190613af9565b60405180910390f35b34801561081b57600080fd5b50610824611626565b6040516108319190613af9565b60405180910390f35b34801561084657600080fd5b50610861600480360381019061085c919061396d565b6116b8565b005b34801561086f57600080fd5b506108786116f7565b6040516108859190613a56565b60405180910390f35b34801561089a57600080fd5b506108b560048036038101906108b09190613e29565b61170a565b005b6108d160048036038101906108cc9190613b51565b611720565b005b3480156108df57600080fd5b506108fa60048036038101906108f59190613ea7565b6119af565b005b34801561090857600080fd5b50610923600480360381019061091e9190613f75565b6119fb565b005b61092d611a5d565b005b34801561093b57600080fd5b5061095660048036038101906109519190613b51565b611cb6565b6040516109639190613c55565b60405180910390f35b34801561097857600080fd5b50610993600480360381019061098e9190613b51565b611cda565b6040516109a09190613af9565b60405180910390f35b3480156109b557600080fd5b506109d060048036038101906109cb9190613b51565b611d84565b6040516109dd919061410c565b60405180910390f35b3480156109f257600080fd5b506109fb611e86565b604051610a08919061413d565b60405180910390f35b348015610a1d57600080fd5b50610a26611eb0565b604051610a339190613af9565b60405180910390f35b348015610a4857600080fd5b50610a636004803603810190610a5e9190614158565b611ee1565b604051610a709190613a56565b60405180910390f35b348015610a8557600080fd5b50610aa06004803603810190610a9b9190613b51565b611f75565b005b348015610aae57600080fd5b50610ab7611f87565b604051610ac49190613bbf565b60405180910390f35b348015610ad957600080fd5b50610af46004803603810190610aef9190613d1c565b611fad565b005b610afe612031565b806013600481548110610b1457610b13614198565b5b906000526020600020019080519060200190610b31929190613732565b5050565b600063cad96cca60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415610b8d5760019050610bef565b632a55205a60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415610be35760019050610bef565b610bec826120af565b90505b919050565b606060008054610c03906141f6565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2f906141f6565b8015610c7c5780601f10610c5157610100808354040283529160200191610c7c565b820191906000526020600020905b815481529060010190602001808311610c5f57829003601f168201915b5050505050905090565b6000610c9182612129565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cd7826110dc565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f9061429a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d67612174565b73ffffffffffffffffffffffffffffffffffffffff161480610d965750610d9581610d90612174565b611ee1565b5b610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc9061432c565b60405180910390fd5b610ddf838361217c565b505050565b60155481565b600e5481565b600f5481565b6000600880549050905090565b610e0b612031565b80601060006101000a81548160ff0219169083151502179055508015157f30d46918504e7d4aa88713881c9c85ce8224770ba203947f54b221f303b6581e60405160405180910390a250565b610e68610e62612174565b82612235565b610ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9e906143be565b60405180910390fd5b610eb28383836122ca565b505050565b60128054610ec4906141f6565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef0906141f6565b8015610f3d5780601f10610f1257610100808354040283529160200191610f3d565b820191906000526020600020905b815481529060010190602001808311610f2057829003601f168201915b505050505081565b6000610f50836112b2565b8210610f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8890614450565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b611005838383604051806020016040528060008152506119fb565b505050565b6000611014610df6565b8210611055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104c906144e2565b60405180910390fd5b6008828154811061106957611068614198565b5b90600052602060002001549050919050565b611083612031565b8060119080519060200190611099929190613732565b5050565b6110a5612031565b8060136000815481106110bb576110ba614198565b5b9060005260206000200190805190602001906110d8929190613732565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117c9061454e565b60405180910390fd5b80915050919050565b611196612031565b8060136002815481106111ac576111ab614198565b5b9060005260206000200190805190602001906111c9929190613732565b5050565b6111d5612031565b8060136003815481106111eb576111ea614198565b5b906000526020600020019080519060200190611208929190613732565b5050565b60118054611219906141f6565b80601f0160208091040260200160405190810160405280929190818152602001828054611245906141f6565b80156112925780601f1061126757610100808354040283529160200191611292565b820191906000526020600020905b81548152906001019060200180831161127557829003601f168201915b505050505081565b60166020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131a906145e0565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611372612031565b61137c6000612531565b565b6103e981565b61138c612031565b80601290805190602001906113a2929190613732565b5050565b606060006113b3836112b2565b9050600081141561141057600067ffffffffffffffff8111156113d9576113d8613842565b5b6040519080825280602002602001820160405280156114075781602001602082028036833780820191505090505b509150506114ff565b60008167ffffffffffffffff81111561142c5761142b613842565b5b60405190808252806020026020018201604052801561145a5781602001602082028036833780820191505090505b5090506000611467610df6565b9050600080600190505b8281116114f6578673ffffffffffffffffffffffffffffffffffffffff16611498826110dc565b73ffffffffffffffffffffffffffffffffffffffff1614156114e357808483815181106114c8576114c7614198565b5b60200260200101818152505081806114df9061462f565b9250505b80806114ee9061462f565b915050611471565b83955050505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611536612031565b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6013818154811061158a57600080fd5b9060005260206000200160009150905080546115a5906141f6565b80601f01602080910402602001604051908101604052809291908181526020018280546115d1906141f6565b801561161e5780601f106115f35761010080835404028352916020019161161e565b820191906000526020600020905b81548152906001019060200180831161160157829003601f168201915b505050505081565b606060018054611635906141f6565b80601f0160208091040260200160405190810160405280929190818152602001828054611661906141f6565b80156116ae5780601f10611683576101008083540402835291602001916116ae565b820191906000526020600020905b81548152906001019060200180831161169157829003601f168201915b5050505050905090565b6116c0612031565b8060136001815481106116d6576116d5614198565b5b9060005260206000200190805190602001906116f3929190613732565b5050565b601060009054906101000a900460ff1681565b61171c611715612174565b83836125f7565b5050565b611728611504565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061176d5750601060009054906101000a900460ff165b6117ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a3906146c4565b60405180910390fd5b6103e981600f546117bd91906146e4565b106117fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f490614786565b60405180910390fd5b80600e5461180b91906147a6565b34101561184d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118449061484c565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f193505050501580156118b5573d6000803e3d6000fd5b5060005b818110156119ab5760006118cb612764565b90506001600f60008282546118e091906146e4565b92505081905550611918600f54600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166101f4612870565b61192433600f5461296f565b611930600f548261298d565b60016014828154811061194657611945614198565b5b906000526020600020015461195b919061486c565b6014828154811061196f5761196e614198565b5b9060005260206000200181905550600160156000828254611990919061486c565b925050819055505080806119a39061462f565b9150506118b9565b5050565b6119b7612031565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611a0c611a06612174565b83612235565b611a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a42906143be565b60405180910390fd5b611a57848484846129a9565b50505050565b611a65611504565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611aaa5750601060009054906101000a900460ff165b611ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae0906146c4565b60405180910390fd5b6103e9600f5410611b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2690614786565b60405180910390fd5b600e54341015611b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6b9061484c565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015611bdc573d6000803e3d6000fd5b506000611be7612764565b90506001600f6000828254611bfc91906146e4565b92505081905550611c34600f54600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166101f4612870565b611c4033600f5461296f565b611c4c600f548261298d565b600160148281548110611c6257611c61614198565b5b9060005260206000200154611c77919061486c565b60148281548110611c8b57611c8a614198565b5b9060005260206000200181905550600160156000828254611cac919061486c565b9250508190555050565b60148181548110611cc657600080fd5b906000526020600020016000915090505481565b6060611ce582612a05565b611d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1b90614912565b60405180910390fd5b611d2c612a71565b6013601660008581526020019081526020016000205481548110611d5357611d52614198565b5b90600052602060002001604051602001611d6e929190614a02565b6040516020818303038152906040529050919050565b6060600b6000838152602001908152602001600020805480602002602001604051908101604052809291908181526020016000905b82821015611e7b578382906000526020600020016040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505081526020019060010190611db9565b505050509050919050565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060611eba612a71565b6012604051602001611ecd929190614a02565b604051602081830303815290604052905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f7d612031565b80600e8190555050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611fb5612031565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201c90614a98565b60405180910390fd5b61202e81612531565b50565b612039612174565b73ffffffffffffffffffffffffffffffffffffffff16612057611504565b73ffffffffffffffffffffffffffffffffffffffff16146120ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a490614b04565b60405180910390fd5b565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612122575061212182612b03565b5b9050919050565b61213281612a05565b612171576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121689061454e565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166121ef836110dc565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080612241836110dc565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061228357506122828185611ee1565b5b806122c157508373ffffffffffffffffffffffffffffffffffffffff166122a984610c86565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122ea826110dc565b73ffffffffffffffffffffffffffffffffffffffff1614612340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233790614b96565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a790614c28565b60405180910390fd5b6123bb838383612be5565b6123c660008261217c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612416919061486c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461246d91906146e4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461252c838383612bf5565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265d90614c94565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127579190613a56565b60405180910390a3505050565b60008042444333600f54604051602001612782959493929190614cb4565b6040516020818303038152906040528051906020012060001c9050601554816127ab9190614d36565b90506000805b60148054905081101561286a578183101580156127f75750601481815481106127dd576127dc614198565b5b9060005260206000200154826127f391906146e4565b8311155b8015612822575060006014828154811061281457612813614198565b5b906000526020600020015414155b1561282b578093505b6014818154811061283f5761283e614198565b5b90600052602060002001548261285591906146e4565b915080806128629061462f565b9150506127b1565b50505090565b6000600167ffffffffffffffff81111561288d5761288c613842565b5b6040519080825280602002602001820160405280156128c657816020015b6128b36137b8565b8152602001906001900390816128ab5790505b50905081816000815181106128de576128dd614198565b5b6020026020010151602001906bffffffffffffffffffffffff1690816bffffffffffffffffffffffff1681525050828160008151811061292157612920614198565b5b60200260200101516000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506129698482612bfa565b50505050565b612989828260405180602001604052806000815250612e7d565b5050565b8060166000848152602001908152602001600020819055505050565b6129b48484846122ca565b6129c084848484612ed8565b6129ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f690614dd9565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060118054612a80906141f6565b80601f0160208091040260200160405190810160405280929190818152602001828054612aac906141f6565b8015612af95780601f10612ace57610100808354040283529160200191612af9565b820191906000526020600020905b815481529060010190602001808311612adc57829003601f168201915b5050505050905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612bce57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612bde5750612bdd8261306f565b5b9050919050565b612bf08383836130d9565b505050565b505050565b600080600090505b8251811015612e2957600073ffffffffffffffffffffffffffffffffffffffff16838281518110612c3657612c35614198565b5b60200260200101516000015173ffffffffffffffffffffffffffffffffffffffff161415612c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9090614e45565b60405180910390fd5b6000838281518110612cae57612cad614198565b5b6020026020010151602001516bffffffffffffffffffffffff161415612d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0090614eb1565b60405180910390fd5b828181518110612d1c57612d1b614198565b5b6020026020010151602001516bffffffffffffffffffffffff1682612d4191906146e4565b9150600b6000858152602001908152602001600020838281518110612d6957612d68614198565b5b60200260200101519080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555050508080612e219061462f565b915050612c02565b506127108110612e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6590614f43565b60405180910390fd5b612e7883836131ed565b505050565b612e87838361322a565b612e946000848484612ed8565b612ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eca90614dd9565b60405180910390fd5b505050565b6000612ef98473ffffffffffffffffffffffffffffffffffffffff16613404565b15613062578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f22612174565b8786866040518563ffffffff1660e01b8152600401612f449493929190614fb8565b602060405180830381600087803b158015612f5e57600080fd5b505af1925050508015612f8f57506040513d601f19601f82011682018060405250810190612f8c9190615019565b60015b613012573d8060008114612fbf576040519150601f19603f3d011682016040523d82523d6000602084013e612fc4565b606091505b5060008151141561300a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300190614dd9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613067565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6130e4838383613427565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613127576131228161342c565b613166565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613165576131648382613475565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131a9576131a4816135e2565b6131e8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146131e7576131e682826136b3565b5b5b505050565b7f3fa96d7b6bcbfe71ef171666d84db3cf52fa2d1c8afdb1cc8e486177f208b7df828260405161321e929190615046565b60405180910390a15050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561329a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613291906150c2565b60405180910390fd5b6132a381612a05565b156132e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132da9061512e565b60405180910390fd5b6132ef60008383612be5565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461333f91906146e4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461340060008383612bf5565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613482846112b2565b61348c919061486c565b9050600060076000848152602001908152602001600020549050818114613571576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506135f6919061486c565b905060006009600084815260200190815260200160002054905060006008838154811061362657613625614198565b5b90600052602060002001549050806008838154811061364857613647614198565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806136975761369661514e565b5b6001900381819060005260206000200160009055905550505050565b60006136be836112b2565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461373e906141f6565b90600052602060002090601f01602090048101928261376057600085556137a7565b82601f1061377957805160ff19168380011785556137a7565b828001600101855582156137a7579182015b828111156137a657825182559160200191906001019061378b565b5b5090506137b491906137f6565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff16815260200160006bffffffffffffffffffffffff1681525090565b5b8082111561380f5760008160009055506001016137f7565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61387a82613831565b810181811067ffffffffffffffff8211171561389957613898613842565b5b80604052505050565b60006138ac613813565b90506138b88282613871565b919050565b600067ffffffffffffffff8211156138d8576138d7613842565b5b6138e182613831565b9050602081019050919050565b82818337600083830152505050565b600061391061390b846138bd565b6138a2565b90508281526020810184848401111561392c5761392b61382c565b5b6139378482856138ee565b509392505050565b600082601f83011261395457613953613827565b5b81356139648482602086016138fd565b91505092915050565b6000602082840312156139835761398261381d565b5b600082013567ffffffffffffffff8111156139a1576139a0613822565b5b6139ad8482850161393f565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139eb816139b6565b81146139f657600080fd5b50565b600081359050613a08816139e2565b92915050565b600060208284031215613a2457613a2361381d565b5b6000613a32848285016139f9565b91505092915050565b60008115159050919050565b613a5081613a3b565b82525050565b6000602082019050613a6b6000830184613a47565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613aab578082015181840152602081019050613a90565b83811115613aba576000848401525b50505050565b6000613acb82613a71565b613ad58185613a7c565b9350613ae5818560208601613a8d565b613aee81613831565b840191505092915050565b60006020820190508181036000830152613b138184613ac0565b905092915050565b6000819050919050565b613b2e81613b1b565b8114613b3957600080fd5b50565b600081359050613b4b81613b25565b92915050565b600060208284031215613b6757613b6661381d565b5b6000613b7584828501613b3c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ba982613b7e565b9050919050565b613bb981613b9e565b82525050565b6000602082019050613bd46000830184613bb0565b92915050565b613be381613b9e565b8114613bee57600080fd5b50565b600081359050613c0081613bda565b92915050565b60008060408385031215613c1d57613c1c61381d565b5b6000613c2b85828601613bf1565b9250506020613c3c85828601613b3c565b9150509250929050565b613c4f81613b1b565b82525050565b6000602082019050613c6a6000830184613c46565b92915050565b613c7981613a3b565b8114613c8457600080fd5b50565b600081359050613c9681613c70565b92915050565b600060208284031215613cb257613cb161381d565b5b6000613cc084828501613c87565b91505092915050565b600080600060608486031215613ce257613ce161381d565b5b6000613cf086828701613bf1565b9350506020613d0186828701613bf1565b9250506040613d1286828701613b3c565b9150509250925092565b600060208284031215613d3257613d3161381d565b5b6000613d4084828501613bf1565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613d7e81613b1b565b82525050565b6000613d908383613d75565b60208301905092915050565b6000602082019050919050565b6000613db482613d49565b613dbe8185613d54565b9350613dc983613d65565b8060005b83811015613dfa578151613de18882613d84565b9750613dec83613d9c565b925050600181019050613dcd565b5085935050505092915050565b60006020820190508181036000830152613e218184613da9565b905092915050565b60008060408385031215613e4057613e3f61381d565b5b6000613e4e85828601613bf1565b9250506020613e5f85828601613c87565b9150509250929050565b6000613e7482613b7e565b9050919050565b613e8481613e69565b8114613e8f57600080fd5b50565b600081359050613ea181613e7b565b92915050565b600060208284031215613ebd57613ebc61381d565b5b6000613ecb84828501613e92565b91505092915050565b600067ffffffffffffffff821115613eef57613eee613842565b5b613ef882613831565b9050602081019050919050565b6000613f18613f1384613ed4565b6138a2565b905082815260208101848484011115613f3457613f3361382c565b5b613f3f8482856138ee565b509392505050565b600082601f830112613f5c57613f5b613827565b5b8135613f6c848260208601613f05565b91505092915050565b60008060008060808587031215613f8f57613f8e61381d565b5b6000613f9d87828801613bf1565b9450506020613fae87828801613bf1565b9350506040613fbf87828801613b3c565b925050606085013567ffffffffffffffff811115613fe057613fdf613822565b5b613fec87828801613f47565b91505092959194509250565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61402d81613e69565b82525050565b60006bffffffffffffffffffffffff82169050919050565b61405481614033565b82525050565b6040820160008201516140706000850182614024565b506020820151614083602085018261404b565b50505050565b6000614095838361405a565b60408301905092915050565b6000602082019050919050565b60006140b982613ff8565b6140c38185614003565b93506140ce83614014565b8060005b838110156140ff5781516140e68882614089565b97506140f1836140a1565b9250506001810190506140d2565b5085935050505092915050565b6000602082019050818103600083015261412681846140ae565b905092915050565b61413781613e69565b82525050565b6000602082019050614152600083018461412e565b92915050565b6000806040838503121561416f5761416e61381d565b5b600061417d85828601613bf1565b925050602061418e85828601613bf1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061420e57607f821691505b60208210811415614222576142216141c7565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614284602183613a7c565b915061428f82614228565b604082019050919050565b600060208201905081810360008301526142b381614277565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000614316603e83613a7c565b9150614321826142ba565b604082019050919050565b6000602082019050818103600083015261434581614309565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b60006143a8602e83613a7c565b91506143b38261434c565b604082019050919050565b600060208201905081810360008301526143d78161439b565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b600061443a602b83613a7c565b9150614445826143de565b604082019050919050565b600060208201905081810360008301526144698161442d565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006144cc602c83613a7c565b91506144d782614470565b604082019050919050565b600060208201905081810360008301526144fb816144bf565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000614538601883613a7c565b915061454382614502565b602082019050919050565b600060208201905081810360008301526145678161452b565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006145ca602983613a7c565b91506145d58261456e565b604082019050919050565b600060208201905081810360008301526145f9816145bd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061463a82613b1b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561466d5761466c614600565b5b600182019050919050565b7f6d696e74696e67206973206e6f7420656e61626c656420796574210000000000600082015250565b60006146ae601b83613a7c565b91506146b982614678565b602082019050919050565b600060208201905081810360008301526146dd816146a1565b9050919050565b60006146ef82613b1b565b91506146fa83613b1b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561472f5761472e614600565b5b828201905092915050565b7f72656163686564206d6178206d696e7421000000000000000000000000000000600082015250565b6000614770601183613a7c565b915061477b8261473a565b602082019050919050565b6000602082019050818103600083015261479f81614763565b9050919050565b60006147b182613b1b565b91506147bc83613b1b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147f5576147f4614600565b5b828202905092915050565b7f4253473a206d696e742066656520697320302e31204554482100000000000000600082015250565b6000614836601983613a7c565b915061484182614800565b602082019050919050565b6000602082019050818103600083015261486581614829565b9050919050565b600061487782613b1b565b915061488283613b1b565b92508282101561489557614894614600565b5b828203905092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006148fc602f83613a7c565b9150614907826148a0565b604082019050919050565b6000602082019050818103600083015261492b816148ef565b9050919050565b600081905092915050565b600061494882613a71565b6149528185614932565b9350614962818560208601613a8d565b80840191505092915050565b60008190508160005260206000209050919050565b60008154614990816141f6565b61499a8186614932565b945060018216600081146149b557600181146149c6576149f9565b60ff198316865281860193506149f9565b6149cf8561496e565b60005b838110156149f1578154818901526001820191506020810190506149d2565b838801955050505b50505092915050565b6000614a0e828561493d565b9150614a1a8284614983565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a82602683613a7c565b9150614a8d82614a26565b604082019050919050565b60006020820190508181036000830152614ab181614a75565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614aee602083613a7c565b9150614af982614ab8565b602082019050919050565b60006020820190508181036000830152614b1d81614ae1565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614b80602583613a7c565b9150614b8b82614b24565b604082019050919050565b60006020820190508181036000830152614baf81614b73565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614c12602483613a7c565b9150614c1d82614bb6565b604082019050919050565b60006020820190508181036000830152614c4181614c05565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614c7e601983613a7c565b9150614c8982614c48565b602082019050919050565b60006020820190508181036000830152614cad81614c71565b9050919050565b600060a082019050614cc96000830188613c46565b614cd66020830187613c46565b614ce36040830186613c46565b614cf06060830185613bb0565b614cfd6080830184613c46565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d4182613b1b565b9150614d4c83613b1b565b925082614d5c57614d5b614d07565b5b828206905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614dc3603283613a7c565b9150614dce82614d67565b604082019050919050565b60006020820190508181036000830152614df281614db6565b9050919050565b7f526563697069656e742073686f756c642062652070726573656e740000000000600082015250565b6000614e2f601b83613a7c565b9150614e3a82614df9565b602082019050919050565b60006020820190508181036000830152614e5e81614e22565b9050919050565b7f526f79616c74792076616c75652073686f756c6420626520706f736974697665600082015250565b6000614e9b602083613a7c565b9150614ea682614e65565b602082019050919050565b60006020820190508181036000830152614eca81614e8e565b9050919050565b7f526f79616c747920746f74616c2076616c75652073686f756c64206265203c2060008201527f3130303030000000000000000000000000000000000000000000000000000000602082015250565b6000614f2d602583613a7c565b9150614f3882614ed1565b604082019050919050565b60006020820190508181036000830152614f5c81614f20565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614f8a82614f63565b614f948185614f6e565b9350614fa4818560208601613a8d565b614fad81613831565b840191505092915050565b6000608082019050614fcd6000830187613bb0565b614fda6020830186613bb0565b614fe76040830185613c46565b8181036060830152614ff98184614f7f565b905095945050505050565b600081519050615013816139e2565b92915050565b60006020828403121561502f5761502e61381d565b5b600061503d84828501615004565b91505092915050565b600060408201905061505b6000830185613c46565b818103602083015261506d81846140ae565b90509392505050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006150ac602083613a7c565b91506150b782615076565b602082019050919050565b600060208201905081810360008301526150db8161509f565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615118601c83613a7c565b9150615123826150e2565b602082019050919050565b600060208201905081810360008301526151478161510b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea264697066735822122039d0206459b409e13c64882e9dc07b43dc5e17eec8d56917b8b1cf3f549f192564736f6c63430008090033

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.