ETH Price: $3,042.05 (-8.69%)
 

Overview

Max Total Supply

242 SpaceEggzNFT

Holders

48

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
6 SpaceEggzNFT
0xe005d1cf4c3f0864ae12db50002dd70c5a18bf86
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:
SpaceEggzNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.8.4;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";

//            _ _              __  __      _
//      /\   | (_)            |  \/  |    | |
//     /  \  | |_  ___ _ __   | \  / | ___| |_ __ _
//    / /\ \ | | |/ _ \ '_ \  | |\/| |/ _ \ __/ _` |
//   / ____ \| | |  __/ | | | | |  | |  __/ || (_| |
//  /_/    \_\_|_|\___|_| |_| |_|  |_|\___|\__\__,_|

// AlienMeta.wtf - Mowgli + Dev Lrrr

contract SpaceEggzNFT is
    ERC721,
    ERC721Enumerable,
    ERC721URIStorage,
    Pausable,
    Ownable,
    ERC721Burnable
{
    using Counters for Counters.Counter;
    using Strings for uint256;
    Counters.Counter private _tokenIdCounter;

    uint256 private price = 0.1 ether;

    uint256 private totalFreeMints = 1;

    bool private isRevealed = false;
    bool private isStarted = false;
    uint256 private maxFreeMintQuantity = 222;
    string public baseURI;
    address public breeding;
    address public upg;

    mapping(address => uint256) public promoCode;

    constructor() ERC721("SpaceEggzNFT", "SpaceEggzNFT") {}

    event Minted(uint256 indexed idMinted, address indexed minter);

    function getMaxFreeMintQuantity() external view returns (uint256) {
        return maxFreeMintQuantity;
    }

    function setMaxFreeMintQuantity(uint256 _newQuantity) external onlyOwner {
        maxFreeMintQuantity = _newQuantity;
    }

    function getTotalFreeMints() external view returns (uint256) {
        return totalFreeMints;
    }

    function getABTotalFreeMints() external view returns (uint256) {
        return (totalFreeMints - 1);
    }

    function setTheTotalFreeMints(uint256 _newTotalFreeMints)
        external
        onlyOwner
    {
        totalFreeMints = _newTotalFreeMints;
    }

    function getCurrentPrice(address _userAddress)
        external
        view
        returns (uint256)
    {
        uint256 currentPrice = 0;
        uint256 currentId = getCurrentId();
        if (currentId > (totalFreeMints - 1)) {
            currentPrice = price;
            uint256 promo = promoCode[_userAddress];
            if (promo > 0) {
                if (promo == 100) {
                    currentPrice = 0;
                } else {
                    currentPrice = (price * promo) / 100;
                }
            }
        }

        return currentPrice;
    }

    function getMultipleNFTsPrice(address _user, uint256 _qte)
        public
        view
        returns (uint256)
    {
        uint256 currentPrice = 0;
        uint256 currentId = getCurrentId();
        if (currentId + _qte > (totalFreeMints - 1)) {
            currentPrice = price * _qte;
            uint256 promo = promoCode[_user];
            if (promo > 0) {
                if (promo == 100) {
                    currentPrice = (price * _qte) - price;
                } else {
                    currentPrice = (price * _qte) - ((price * promo) / 100);
                }
            }
        }
        return currentPrice;
    }

    function setTheNewPrice(uint256 _newPrice) external onlyOwner {
        price = _newPrice;
    }

    function isRevealedFunction() external view returns (bool) {
        return isRevealed;
    }

    function changeRevealed() external onlyOwner {
        isRevealed = true;
    }

    function getStartStatus() external view returns (bool) {
        return isStarted;
    }

    function changeStatus() external onlyOwner {
        isStarted = !isStarted;
    }

    function setPromoCode(uint256 _promoCode, address user) external onlyOwner {
        promoCode[user] = _promoCode;
    }

    function getCurrentId() public view returns (uint256) {
        return _tokenIdCounter.current();
    }

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

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function addBreeding(address _address) external onlyOwner {
        require(_address != address(0), "not allowed");
        breeding = _address;
    }

    function addUpg(address _address) external onlyOwner {
        require(_address != address(0), "not allowed");
        upg = _address;
    }

    modifier onlyContract() {
        require(msg.sender == breeding || msg.sender == upg, "not contract");
        _;
    }

    function breedingMint(address _user, uint256 id) external onlyContract {
        _safeMint(_user, id);
    }

    function breedingBurn(uint256 id) external onlyContract {
        _burn(id);
    }

    function getNft(uint256 _quantity) external payable {
        require(isStarted == true, "not started");
        require(
            IERC721(address(this)).balanceOf(msg.sender) + _quantity <=
                maxFreeMintQuantity,
            "not allowed"
        );
        uint256 currentId = _tokenIdCounter.current();

        require(
            msg.value >= getMultipleNFTsPrice(msg.sender, _quantity),
            "not enough"
        );
        promoCode[msg.sender] = 0;
        for (uint256 i = 0; i <= _quantity; i++) {
            _tokenIdCounter.increment();
            uint256 the_current_id = _tokenIdCounter.current();
            _safeMint(msg.sender, the_current_id);
        }

        emit Minted(currentId, msg.sender);
    }

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

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

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721, ERC721URIStorage)
        returns (string memory)
    {
        if (isRevealed == false) {
            return
                string(
                    string(
                        abi.encodePacked(
                            "https://nft.nftpeel.com/spaceeggz/gen1/meta/",
                            tokenId.toString(),
                            ".json"
                        )
                    )
                );
        } else {
            return
                string(abi.encodePacked(baseURI, tokenId.toString(), ".json"));
        }
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    function withdraw() external onlyOwner {
        (bool sent, ) = payable(owner()).call{value: address(this).balance}("");
        require(sent, "failed to send ether");
    }

    function getBalance() external view returns (uint256) {
        return address(this).balance;
    }

    receive() external payable {}
}

File 2 of 17 : IERC721.sol
// 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);
}

File 3 of 17 : Strings.sol
// 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);
    }
}

File 4 of 17 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 5 of 17 : ERC721Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;

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

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
        _burn(tokenId);
    }
}

File 6 of 17 : Ownable.sol
// 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);
    }
}

File 7 of 17 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 8 of 17 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

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

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

        return super.tokenURI(tokenId);
    }

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

    /**
     * @dev See {ERC721-_burn}. This override additionally checks to see if a
     * token-specific URI was set for the token, and if so, it deletes the token URI from
     * the storage mapping.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

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

File 9 of 17 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
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();
    }
}

File 10 of 17 : ERC721.sol
// 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 {}
}

File 11 of 17 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

File 12 of 17 : Context.sol
// 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;
    }
}

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

File 14 of 17 : ERC165.sol
// 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;
    }
}

File 15 of 17 : Address.sol
// 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);
            }
        }
    }
}

File 16 of 17 : IERC721Metadata.sol
// 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 17 of 17 : 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"idMinted","type":"uint256"},{"indexed":true,"internalType":"address","name":"minter","type":"address"}],"name":"Minted","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":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addBreeding","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addUpg","outputs":[],"stateMutability":"nonpayable","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":[],"name":"breeding","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"breedingBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"breedingMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"changeRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"changeStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getABTotalFreeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_userAddress","type":"address"}],"name":"getCurrentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxFreeMintQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_qte","type":"uint256"}],"name":"getMultipleNFTsPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"getNft","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"getStartStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalFreeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealedFunction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"promoCode","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newQuantity","type":"uint256"}],"name":"setMaxFreeMintQuantity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_promoCode","type":"uint256"},{"internalType":"address","name":"user","type":"address"}],"name":"setPromoCode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setTheNewPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newTotalFreeMints","type":"uint256"}],"name":"setTheTotalFreeMints","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":[{"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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"upg","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405267016345785d8a0000600d556001600e556000600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff02191690831515021790555060de6010553480156200005d57600080fd5b506040518060400160405280600c81526020017f53706163654567677a4e465400000000000000000000000000000000000000008152506040518060400160405280600c81526020017f53706163654567677a4e465400000000000000000000000000000000000000008152508160009080519060200190620000e29291906200020d565b508060019080519060200190620000fb9291906200020d565b5050506000600b60006101000a81548160ff021916908315150217905550620001396200012d6200013f60201b60201c565b6200014760201b60201c565b62000322565b600033905090565b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021b90620002bd565b90600052602060002090601f0160209004810192826200023f57600085556200028b565b82601f106200025a57805160ff19168380011785556200028b565b828001600101855582156200028b579182015b828111156200028a5782518255916020019190600101906200026d565b5b5090506200029a91906200029e565b5090565b5b80821115620002b95760008160009055506001016200029f565b5090565b60006002820490506001821680620002d657607f821691505b60208210811415620002ed57620002ec620002f3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614ce380620003326000396000f3fe6080604052600436106102b25760003560e01c80636c0360eb1161017557806395d89b41116100dc578063bdfdea1b11610095578063e4be77b01161006f578063e4be77b014610a5c578063e985e9c514610a87578063f1fc349514610ac4578063f2fde38b14610aef576102b9565b8063bdfdea1b146109cd578063c87b56dd146109f6578063e1b5eba914610a33576102b9565b806395d89b41146108bf578063a22cb465146108ea578063a70df7ab14610913578063b4ae96661461093e578063b7a8738014610967578063b88d4fde146109a4576102b9565b8063796843731161012e57806379684373146107c157806383207c77146107ec5780638456cb591461082957806384cc315b1461084057806385d998021461087d5780638da5cb5b14610894576102b9565b80636c0360eb146106c35780636c143862146106ee5780636d0623631461071957806370a0823114610744578063715018a6146107815780637851cb1614610798576102b9565b80632f745c591161021957806347f08ba8116101d257806347f08ba8146105a15780634f6ccce7146105cc57806355f804b3146106095780635c975abb146106325780635f83609e1461065d5780636352211e14610686576102b9565b80632f745c59146104c85780633ccfd60b146105055780633f4ba83a1461051c57806341f63bfd1461053357806342842e0e1461054f57806342966c6814610578576102b9565b806311eae0901161026b57806311eae090146103cc57806312065fe0146103f557806318160ddd1461042057806323b872dd1461044b57806326e221111461047457806328556bbb1461049d576102b9565b806301ffc9a7146102be57806306fdde03146102fb578063081812fc14610326578063085634ec14610363578063095ea7b31461037a57806310f39823146103a3576102b9565b366102b957005b600080fd5b3480156102ca57600080fd5b506102e560048036038101906102e0919061381c565b610b18565b6040516102f29190613eeb565b60405180910390f35b34801561030757600080fd5b50610310610b2a565b60405161031d9190613f06565b60405180910390f35b34801561033257600080fd5b5061034d600480360381019061034891906138bf565b610bbc565b60405161035a9190613e84565b60405180910390f35b34801561036f57600080fd5b50610378610c02565b005b34801561038657600080fd5b506103a1600480360381019061039c91906137dc565b610c36565b005b3480156103af57600080fd5b506103ca60048036038101906103c59190613659565b610d4e565b005b3480156103d857600080fd5b506103f360048036038101906103ee91906138bf565b610e0a565b005b34801561040157600080fd5b5061040a610e1c565b60405161041791906141e8565b60405180910390f35b34801561042c57600080fd5b50610435610e24565b60405161044291906141e8565b60405180910390f35b34801561045757600080fd5b50610472600480360381019061046d91906136c6565b610e31565b005b34801561048057600080fd5b5061049b600480360381019061049691906138bf565b610e91565b005b3480156104a957600080fd5b506104b2610ea3565b6040516104bf9190613e84565b60405180910390f35b3480156104d457600080fd5b506104ef60048036038101906104ea91906137dc565b610ec9565b6040516104fc91906141e8565b60405180910390f35b34801561051157600080fd5b5061051a610f6e565b005b34801561052857600080fd5b5061053161102c565b005b61054d600480360381019061054891906138bf565b61103e565b005b34801561055b57600080fd5b50610576600480360381019061057191906136c6565b611294565b005b34801561058457600080fd5b5061059f600480360381019061059a91906138bf565b6112b4565b005b3480156105ad57600080fd5b506105b6611310565b6040516105c391906141e8565b60405180910390f35b3480156105d857600080fd5b506105f360048036038101906105ee91906138bf565b611326565b60405161060091906141e8565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b9190613876565b611397565b005b34801561063e57600080fd5b506106476113b9565b6040516106549190613eeb565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f91906138bf565b6113d0565b005b34801561069257600080fd5b506106ad60048036038101906106a891906138bf565b6113e2565b6040516106ba9190613e84565b60405180910390f35b3480156106cf57600080fd5b506106d8611494565b6040516106e59190613f06565b60405180910390f35b3480156106fa57600080fd5b50610703611522565b60405161071091906141e8565b60405180910390f35b34801561072557600080fd5b5061072e611533565b60405161073b9190613e84565b60405180910390f35b34801561075057600080fd5b5061076b60048036038101906107669190613659565b611559565b60405161077891906141e8565b60405180910390f35b34801561078d57600080fd5b50610796611611565b005b3480156107a457600080fd5b506107bf60048036038101906107ba91906138bf565b611625565b005b3480156107cd57600080fd5b506107d6611719565b6040516107e39190613eeb565b60405180910390f35b3480156107f857600080fd5b50610813600480360381019061080e91906137dc565b611730565b60405161082091906141e8565b60405180910390f35b34801561083557600080fd5b5061083e61182f565b005b34801561084c57600080fd5b5061086760048036038101906108629190613659565b611841565b60405161087491906141e8565b60405180910390f35b34801561088957600080fd5b506108926118f8565b005b3480156108a057600080fd5b506108a961191d565b6040516108b69190613e84565b60405180910390f35b3480156108cb57600080fd5b506108d4611947565b6040516108e19190613f06565b60405180910390f35b3480156108f657600080fd5b50610911600480360381019061090c919061379c565b6119d9565b005b34801561091f57600080fd5b506109286119ef565b6040516109359190613eeb565b60405180910390f35b34801561094a57600080fd5b5061096560048036038101906109609190613919565b611a06565b005b34801561097357600080fd5b5061098e60048036038101906109899190613659565b611a56565b60405161099b91906141e8565b60405180910390f35b3480156109b057600080fd5b506109cb60048036038101906109c69190613719565b611a6e565b005b3480156109d957600080fd5b506109f460048036038101906109ef91906137dc565b611ad0565b005b348015610a0257600080fd5b50610a1d6004803603810190610a1891906138bf565b611bc6565b604051610a2a9190613f06565b60405180910390f35b348015610a3f57600080fd5b50610a5a6004803603810190610a559190613659565b611c46565b005b348015610a6857600080fd5b50610a71611d02565b604051610a7e91906141e8565b60405180910390f35b348015610a9357600080fd5b50610aae6004803603810190610aa99190613686565b611d0c565b604051610abb9190613eeb565b60405180910390f35b348015610ad057600080fd5b50610ad9611da0565b604051610ae691906141e8565b60405180910390f35b348015610afb57600080fd5b50610b166004803603810190610b119190613659565b611daa565b005b6000610b2382611e2e565b9050919050565b606060008054610b39906144b8565b80601f0160208091040260200160405190810160405280929190818152602001828054610b65906144b8565b8015610bb25780601f10610b8757610100808354040283529160200191610bb2565b820191906000526020600020905b815481529060010190602001808311610b9557829003601f168201915b5050505050905090565b6000610bc782611ea8565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610c0a611ef3565b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b6000610c41826113e2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca990614148565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cd1611f71565b73ffffffffffffffffffffffffffffffffffffffff161480610d005750610cff81610cfa611f71565b611d0c565b5b610d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d36906140c8565b60405180910390fd5b610d498383611f79565b505050565b610d56611ef3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd90614048565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610e12611ef3565b80600d8190555050565b600047905090565b6000600880549050905090565b610e42610e3c611f71565b82612032565b610e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e78906141c8565b60405180910390fd5b610e8c8383836120c7565b505050565b610e99611ef3565b8060108190555050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610ed483611559565b8210610f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0c90613f48565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610f76611ef3565b6000610f8061191d565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fa390613e6f565b60006040518083038185875af1925050503d8060008114610fe0576040519150601f19603f3d011682016040523d82523d6000602084013e610fe5565b606091505b5050905080611029576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611020906140a8565b60405180910390fd5b50565b611034611ef3565b61103c61232e565b565b60011515600f60019054906101000a900460ff16151514611094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108b906141a8565b60405180910390fd5b601054813073ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016110d19190613e84565b60206040518083038186803b1580156110e957600080fd5b505afa1580156110fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061112191906138ec565b61112b91906142ed565b111561116c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116390614048565b60405180910390fd5b6000611178600c612391565b90506111843383611730565b3410156111c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bd90613fe8565b60405180910390fd5b6000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b82811161124b5761121f600c61239f565b600061122b600c612391565b905061123733826123b5565b5080806112439061451b565b91505061120e565b503373ffffffffffffffffffffffffffffffffffffffff16817fb9203d657e9c0ec8274c818292ab0f58b04e1970050716891770eb1bab5d655e60405160405180910390a35050565b6112af83838360405180602001604052806000815250611a6e565b505050565b6112c56112bf611f71565b82612032565b611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb906141c8565b60405180910390fd5b61130d816123d3565b50565b60006001600e5461132191906143ce565b905090565b6000611330610e24565b8210611371576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136890614188565b60405180910390fd5b6008828154811061138557611384614651565b5b90600052602060002001549050919050565b61139f611ef3565b80601190805190602001906113b5929190613418565b5050565b6000600b60009054906101000a900460ff16905090565b6113d8611ef3565b80600e8190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561148b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148290614128565b60405180910390fd5b80915050919050565b601180546114a1906144b8565b80601f01602080910402602001604051908101604052809291908181526020018280546114cd906144b8565b801561151a5780601f106114ef5761010080835404028352916020019161151a565b820191906000526020600020905b8154815290600101906020018083116114fd57829003601f168201915b505050505081565b600061152e600c612391565b905090565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c190614088565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611619611ef3565b61162360006123df565b565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806116ce5750601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61170d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170490614168565b60405180910390fd5b611716816123d3565b50565b6000600f60019054906101000a900460ff16905090565b600080600090506000611741611522565b90506001600e5461175291906143ce565b848261175e91906142ed565b11156118245783600d546117729190614374565b91506000601460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008111156118225760648114156117ec57600d5485600d546117db9190614374565b6117e591906143ce565b9250611821565b606481600d546117fc9190614374565b6118069190614343565b85600d546118149190614374565b61181e91906143ce565b92505b5b505b819250505092915050565b611837611ef3565b61183f6124a5565b565b600080600090506000611852611522565b90506001600e5461186391906143ce565b8111156118ee57600d5491506000601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008111156118ec5760648114156118ce57600092506118eb565b606481600d546118de9190614374565b6118e89190614343565b92505b5b505b8192505050919050565b611900611ef3565b6001600f60006101000a81548160ff021916908315150217905550565b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611956906144b8565b80601f0160208091040260200160405190810160405280929190818152602001828054611982906144b8565b80156119cf5780601f106119a4576101008083540402835291602001916119cf565b820191906000526020600020905b8154815290600101906020018083116119b257829003601f168201915b5050505050905090565b6119eb6119e4611f71565b8383612508565b5050565b6000600f60009054906101000a900460ff16905090565b611a0e611ef3565b81601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b60146020528060005260406000206000915090505481565b611a7f611a79611f71565b83612032565b611abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab5906141c8565b60405180910390fd5b611aca84848484612675565b50505050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611b795750601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baf90614168565b60405180910390fd5b611bc282826123b5565b5050565b606060001515600f60009054906101000a900460ff1615151415611c1357611bed826126d1565b604051602001611bfd9190613e42565b6040516020818303038152906040529050611c41565b6011611c1e836126d1565b604051602001611c2f929190613e13565b60405160208183030381529060405290505b919050565b611c4e611ef3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb590614048565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600e54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000601054905090565b611db2611ef3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1990613f88565b60405180910390fd5b611e2b816123df565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ea15750611ea082612832565b5b9050919050565b611eb181612914565b611ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee790614128565b60405180910390fd5b50565b611efb611f71565b73ffffffffffffffffffffffffffffffffffffffff16611f1961191d565b73ffffffffffffffffffffffffffffffffffffffff1614611f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6690614108565b60405180910390fd5b565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611fec836113e2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061203e836113e2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612080575061207f8185611d0c565b5b806120be57508373ffffffffffffffffffffffffffffffffffffffff166120a684610bbc565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166120e7826113e2565b73ffffffffffffffffffffffffffffffffffffffff161461213d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213490613fa8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a490614008565b60405180910390fd5b6121b8838383612980565b6121c3600082611f79565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461221391906143ce565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461226a91906142ed565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612329838383612998565b505050565b61233661299d565b6000600b60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61237a611f71565b6040516123879190613e84565b60405180910390a1565b600081600001549050919050565b6001816000016000828254019250508190555050565b6123cf8282604051806020016040528060008152506129e6565b5050565b6123dc81612a41565b50565b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124ad612a94565b6001600b60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586124f1611f71565b6040516124fe9190613e84565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256e90614028565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516126689190613eeb565b60405180910390a3505050565b6126808484846120c7565b61268c84848484612ade565b6126cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c290613f68565b60405180910390fd5b50505050565b60606000821415612719576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061282d565b600082905060005b6000821461274b5780806127349061451b565b915050600a826127449190614343565b9150612721565b60008167ffffffffffffffff81111561276757612766614680565b5b6040519080825280601f01601f1916602001820160405280156127995781602001600182028036833780820191505090505b5090505b60008514612826576001826127b291906143ce565b9150600a856127c19190614564565b60306127cd91906142ed565b60f81b8183815181106127e3576127e2614651565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561281f9190614343565b945061279d565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806128fd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061290d575061290c82612c75565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b612988612a94565b612993838383612cdf565b505050565b505050565b6129a56113b9565b6129e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129db90613f28565b60405180910390fd5b565b6129f08383612df3565b6129fd6000848484612ade565b612a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3390613f68565b60405180910390fd5b505050565b612a4a81612fcd565b6000600a60008381526020019081526020016000208054612a6a906144b8565b905014612a9157600a60008281526020019081526020016000206000612a90919061349e565b5b50565b612a9c6113b9565b15612adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad390614068565b60405180910390fd5b565b6000612aff8473ffffffffffffffffffffffffffffffffffffffff166130ea565b15612c68578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b28611f71565b8786866040518563ffffffff1660e01b8152600401612b4a9493929190613e9f565b602060405180830381600087803b158015612b6457600080fd5b505af1925050508015612b9557506040513d601f19601f82011682018060405250810190612b929190613849565b60015b612c18573d8060008114612bc5576040519150601f19603f3d011682016040523d82523d6000602084013e612bca565b606091505b50600081511415612c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0790613f68565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c6d565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612cea83838361310d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d2d57612d2881613112565b612d6c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612d6b57612d6a838261315b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612daf57612daa816132c8565b612dee565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ded57612dec8282613399565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5a906140e8565b60405180910390fd5b612e6c81612914565b15612eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea390613fc8565b60405180910390fd5b612eb860008383612980565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f0891906142ed565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fc960008383612998565b5050565b6000612fd8826113e2565b9050612fe681600084612980565b612ff1600083611f79565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461304191906143ce565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130e681600084612998565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161316884611559565b61317291906143ce565b9050600060076000848152602001908152602001600020549050818114613257576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506132dc91906143ce565b905060006009600084815260200190815260200160002054905060006008838154811061330c5761330b614651565b5b90600052602060002001549050806008838154811061332e5761332d614651565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061337d5761337c614622565b5b6001900381819060005260206000200160009055905550505050565b60006133a483611559565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054613424906144b8565b90600052602060002090601f016020900481019282613446576000855561348d565b82601f1061345f57805160ff191683800117855561348d565b8280016001018555821561348d579182015b8281111561348c578251825591602001919060010190613471565b5b50905061349a91906134de565b5090565b5080546134aa906144b8565b6000825580601f106134bc57506134db565b601f0160209004906000526020600020908101906134da91906134de565b5b50565b5b808211156134f75760008160009055506001016134df565b5090565b600061350e61350984614228565b614203565b90508281526020810184848401111561352a576135296146b4565b5b613535848285614476565b509392505050565b600061355061354b84614259565b614203565b90508281526020810184848401111561356c5761356b6146b4565b5b613577848285614476565b509392505050565b60008135905061358e81614c51565b92915050565b6000813590506135a381614c68565b92915050565b6000813590506135b881614c7f565b92915050565b6000815190506135cd81614c7f565b92915050565b600082601f8301126135e8576135e76146af565b5b81356135f88482602086016134fb565b91505092915050565b600082601f830112613616576136156146af565b5b813561362684826020860161353d565b91505092915050565b60008135905061363e81614c96565b92915050565b60008151905061365381614c96565b92915050565b60006020828403121561366f5761366e6146be565b5b600061367d8482850161357f565b91505092915050565b6000806040838503121561369d5761369c6146be565b5b60006136ab8582860161357f565b92505060206136bc8582860161357f565b9150509250929050565b6000806000606084860312156136df576136de6146be565b5b60006136ed8682870161357f565b93505060206136fe8682870161357f565b925050604061370f8682870161362f565b9150509250925092565b60008060008060808587031215613733576137326146be565b5b60006137418782880161357f565b94505060206137528782880161357f565b93505060406137638782880161362f565b925050606085013567ffffffffffffffff811115613784576137836146b9565b5b613790878288016135d3565b91505092959194509250565b600080604083850312156137b3576137b26146be565b5b60006137c18582860161357f565b92505060206137d285828601613594565b9150509250929050565b600080604083850312156137f3576137f26146be565b5b60006138018582860161357f565b92505060206138128582860161362f565b9150509250929050565b600060208284031215613832576138316146be565b5b6000613840848285016135a9565b91505092915050565b60006020828403121561385f5761385e6146be565b5b600061386d848285016135be565b91505092915050565b60006020828403121561388c5761388b6146be565b5b600082013567ffffffffffffffff8111156138aa576138a96146b9565b5b6138b684828501613601565b91505092915050565b6000602082840312156138d5576138d46146be565b5b60006138e38482850161362f565b91505092915050565b600060208284031215613902576139016146be565b5b600061391084828501613644565b91505092915050565b600080604083850312156139305761392f6146be565b5b600061393e8582860161362f565b925050602061394f8582860161357f565b9150509250929050565b61396281614402565b82525050565b61397181614414565b82525050565b60006139828261429f565b61398c81856142b5565b935061399c818560208601614485565b6139a5816146c3565b840191505092915050565b60006139bb826142aa565b6139c581856142d1565b93506139d5818560208601614485565b6139de816146c3565b840191505092915050565b60006139f4826142aa565b6139fe81856142e2565b9350613a0e818560208601614485565b80840191505092915050565b60008154613a27816144b8565b613a3181866142e2565b94506001821660008114613a4c5760018114613a5d57613a90565b60ff19831686528186019350613a90565b613a668561428a565b60005b83811015613a8857815481890152600182019150602081019050613a69565b838801955050505b50505092915050565b6000613aa66014836142d1565b9150613ab1826146d4565b602082019050919050565b6000613ac9602b836142d1565b9150613ad4826146fd565b604082019050919050565b6000613aec6032836142d1565b9150613af78261474c565b604082019050919050565b6000613b0f6026836142d1565b9150613b1a8261479b565b604082019050919050565b6000613b326025836142d1565b9150613b3d826147ea565b604082019050919050565b6000613b55601c836142d1565b9150613b6082614839565b602082019050919050565b6000613b78600a836142d1565b9150613b8382614862565b602082019050919050565b6000613b9b6024836142d1565b9150613ba68261488b565b604082019050919050565b6000613bbe6019836142d1565b9150613bc9826148da565b602082019050919050565b6000613be1602c836142e2565b9150613bec82614903565b602c82019050919050565b6000613c04600b836142d1565b9150613c0f82614952565b602082019050919050565b6000613c276010836142d1565b9150613c328261497b565b602082019050919050565b6000613c4a6029836142d1565b9150613c55826149a4565b604082019050919050565b6000613c6d6014836142d1565b9150613c78826149f3565b602082019050919050565b6000613c90603e836142d1565b9150613c9b82614a1c565b604082019050919050565b6000613cb36020836142d1565b9150613cbe82614a6b565b602082019050919050565b6000613cd66005836142e2565b9150613ce182614a94565b600582019050919050565b6000613cf96020836142d1565b9150613d0482614abd565b602082019050919050565b6000613d1c6018836142d1565b9150613d2782614ae6565b602082019050919050565b6000613d3f6021836142d1565b9150613d4a82614b0f565b604082019050919050565b6000613d626000836142c6565b9150613d6d82614b5e565b600082019050919050565b6000613d85600c836142d1565b9150613d9082614b61565b602082019050919050565b6000613da8602c836142d1565b9150613db382614b8a565b604082019050919050565b6000613dcb600b836142d1565b9150613dd682614bd9565b602082019050919050565b6000613dee602e836142d1565b9150613df982614c02565b604082019050919050565b613e0d8161446c565b82525050565b6000613e1f8285613a1a565b9150613e2b82846139e9565b9150613e3682613cc9565b91508190509392505050565b6000613e4d82613bd4565b9150613e5982846139e9565b9150613e6482613cc9565b915081905092915050565b6000613e7a82613d55565b9150819050919050565b6000602082019050613e996000830184613959565b92915050565b6000608082019050613eb46000830187613959565b613ec16020830186613959565b613ece6040830185613e04565b8181036060830152613ee08184613977565b905095945050505050565b6000602082019050613f006000830184613968565b92915050565b60006020820190508181036000830152613f2081846139b0565b905092915050565b60006020820190508181036000830152613f4181613a99565b9050919050565b60006020820190508181036000830152613f6181613abc565b9050919050565b60006020820190508181036000830152613f8181613adf565b9050919050565b60006020820190508181036000830152613fa181613b02565b9050919050565b60006020820190508181036000830152613fc181613b25565b9050919050565b60006020820190508181036000830152613fe181613b48565b9050919050565b6000602082019050818103600083015261400181613b6b565b9050919050565b6000602082019050818103600083015261402181613b8e565b9050919050565b6000602082019050818103600083015261404181613bb1565b9050919050565b6000602082019050818103600083015261406181613bf7565b9050919050565b6000602082019050818103600083015261408181613c1a565b9050919050565b600060208201905081810360008301526140a181613c3d565b9050919050565b600060208201905081810360008301526140c181613c60565b9050919050565b600060208201905081810360008301526140e181613c83565b9050919050565b6000602082019050818103600083015261410181613ca6565b9050919050565b6000602082019050818103600083015261412181613cec565b9050919050565b6000602082019050818103600083015261414181613d0f565b9050919050565b6000602082019050818103600083015261416181613d32565b9050919050565b6000602082019050818103600083015261418181613d78565b9050919050565b600060208201905081810360008301526141a181613d9b565b9050919050565b600060208201905081810360008301526141c181613dbe565b9050919050565b600060208201905081810360008301526141e181613de1565b9050919050565b60006020820190506141fd6000830184613e04565b92915050565b600061420d61421e565b905061421982826144ea565b919050565b6000604051905090565b600067ffffffffffffffff82111561424357614242614680565b5b61424c826146c3565b9050602081019050919050565b600067ffffffffffffffff82111561427457614273614680565b5b61427d826146c3565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006142f88261446c565b91506143038361446c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561433857614337614595565b5b828201905092915050565b600061434e8261446c565b91506143598361446c565b925082614369576143686145c4565b5b828204905092915050565b600061437f8261446c565b915061438a8361446c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143c3576143c2614595565b5b828202905092915050565b60006143d98261446c565b91506143e48361446c565b9250828210156143f7576143f6614595565b5b828203905092915050565b600061440d8261444c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156144a3578082015181840152602081019050614488565b838111156144b2576000848401525b50505050565b600060028204905060018216806144d057607f821691505b602082108114156144e4576144e36145f3565b5b50919050565b6144f3826146c3565b810181811067ffffffffffffffff8211171561451257614511614680565b5b80604052505050565b60006145268261446c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561455957614558614595565b5b600182019050919050565b600061456f8261446c565b915061457a8361446c565b92508261458a576145896145c4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6e6f7420656e6f75676800000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f68747470733a2f2f6e66742e6e66747065656c2e636f6d2f737061636565676760008201527f7a2f67656e312f6d6574612f0000000000000000000000000000000000000000602082015250565b7f6e6f7420616c6c6f776564000000000000000000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f6661696c656420746f2073656e64206574686572000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f6e6f7420636f6e74726163740000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f6e6f742073746172746564000000000000000000000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b614c5a81614402565b8114614c6557600080fd5b50565b614c7181614414565b8114614c7c57600080fd5b50565b614c8881614420565b8114614c9357600080fd5b50565b614c9f8161446c565b8114614caa57600080fd5b5056fea2646970667358221220f151dd11f1ab354a3e1bdf1cf751093406f190eac81c8964de314d7617f6582b64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102b25760003560e01c80636c0360eb1161017557806395d89b41116100dc578063bdfdea1b11610095578063e4be77b01161006f578063e4be77b014610a5c578063e985e9c514610a87578063f1fc349514610ac4578063f2fde38b14610aef576102b9565b8063bdfdea1b146109cd578063c87b56dd146109f6578063e1b5eba914610a33576102b9565b806395d89b41146108bf578063a22cb465146108ea578063a70df7ab14610913578063b4ae96661461093e578063b7a8738014610967578063b88d4fde146109a4576102b9565b8063796843731161012e57806379684373146107c157806383207c77146107ec5780638456cb591461082957806384cc315b1461084057806385d998021461087d5780638da5cb5b14610894576102b9565b80636c0360eb146106c35780636c143862146106ee5780636d0623631461071957806370a0823114610744578063715018a6146107815780637851cb1614610798576102b9565b80632f745c591161021957806347f08ba8116101d257806347f08ba8146105a15780634f6ccce7146105cc57806355f804b3146106095780635c975abb146106325780635f83609e1461065d5780636352211e14610686576102b9565b80632f745c59146104c85780633ccfd60b146105055780633f4ba83a1461051c57806341f63bfd1461053357806342842e0e1461054f57806342966c6814610578576102b9565b806311eae0901161026b57806311eae090146103cc57806312065fe0146103f557806318160ddd1461042057806323b872dd1461044b57806326e221111461047457806328556bbb1461049d576102b9565b806301ffc9a7146102be57806306fdde03146102fb578063081812fc14610326578063085634ec14610363578063095ea7b31461037a57806310f39823146103a3576102b9565b366102b957005b600080fd5b3480156102ca57600080fd5b506102e560048036038101906102e0919061381c565b610b18565b6040516102f29190613eeb565b60405180910390f35b34801561030757600080fd5b50610310610b2a565b60405161031d9190613f06565b60405180910390f35b34801561033257600080fd5b5061034d600480360381019061034891906138bf565b610bbc565b60405161035a9190613e84565b60405180910390f35b34801561036f57600080fd5b50610378610c02565b005b34801561038657600080fd5b506103a1600480360381019061039c91906137dc565b610c36565b005b3480156103af57600080fd5b506103ca60048036038101906103c59190613659565b610d4e565b005b3480156103d857600080fd5b506103f360048036038101906103ee91906138bf565b610e0a565b005b34801561040157600080fd5b5061040a610e1c565b60405161041791906141e8565b60405180910390f35b34801561042c57600080fd5b50610435610e24565b60405161044291906141e8565b60405180910390f35b34801561045757600080fd5b50610472600480360381019061046d91906136c6565b610e31565b005b34801561048057600080fd5b5061049b600480360381019061049691906138bf565b610e91565b005b3480156104a957600080fd5b506104b2610ea3565b6040516104bf9190613e84565b60405180910390f35b3480156104d457600080fd5b506104ef60048036038101906104ea91906137dc565b610ec9565b6040516104fc91906141e8565b60405180910390f35b34801561051157600080fd5b5061051a610f6e565b005b34801561052857600080fd5b5061053161102c565b005b61054d600480360381019061054891906138bf565b61103e565b005b34801561055b57600080fd5b50610576600480360381019061057191906136c6565b611294565b005b34801561058457600080fd5b5061059f600480360381019061059a91906138bf565b6112b4565b005b3480156105ad57600080fd5b506105b6611310565b6040516105c391906141e8565b60405180910390f35b3480156105d857600080fd5b506105f360048036038101906105ee91906138bf565b611326565b60405161060091906141e8565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b9190613876565b611397565b005b34801561063e57600080fd5b506106476113b9565b6040516106549190613eeb565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f91906138bf565b6113d0565b005b34801561069257600080fd5b506106ad60048036038101906106a891906138bf565b6113e2565b6040516106ba9190613e84565b60405180910390f35b3480156106cf57600080fd5b506106d8611494565b6040516106e59190613f06565b60405180910390f35b3480156106fa57600080fd5b50610703611522565b60405161071091906141e8565b60405180910390f35b34801561072557600080fd5b5061072e611533565b60405161073b9190613e84565b60405180910390f35b34801561075057600080fd5b5061076b60048036038101906107669190613659565b611559565b60405161077891906141e8565b60405180910390f35b34801561078d57600080fd5b50610796611611565b005b3480156107a457600080fd5b506107bf60048036038101906107ba91906138bf565b611625565b005b3480156107cd57600080fd5b506107d6611719565b6040516107e39190613eeb565b60405180910390f35b3480156107f857600080fd5b50610813600480360381019061080e91906137dc565b611730565b60405161082091906141e8565b60405180910390f35b34801561083557600080fd5b5061083e61182f565b005b34801561084c57600080fd5b5061086760048036038101906108629190613659565b611841565b60405161087491906141e8565b60405180910390f35b34801561088957600080fd5b506108926118f8565b005b3480156108a057600080fd5b506108a961191d565b6040516108b69190613e84565b60405180910390f35b3480156108cb57600080fd5b506108d4611947565b6040516108e19190613f06565b60405180910390f35b3480156108f657600080fd5b50610911600480360381019061090c919061379c565b6119d9565b005b34801561091f57600080fd5b506109286119ef565b6040516109359190613eeb565b60405180910390f35b34801561094a57600080fd5b5061096560048036038101906109609190613919565b611a06565b005b34801561097357600080fd5b5061098e60048036038101906109899190613659565b611a56565b60405161099b91906141e8565b60405180910390f35b3480156109b057600080fd5b506109cb60048036038101906109c69190613719565b611a6e565b005b3480156109d957600080fd5b506109f460048036038101906109ef91906137dc565b611ad0565b005b348015610a0257600080fd5b50610a1d6004803603810190610a1891906138bf565b611bc6565b604051610a2a9190613f06565b60405180910390f35b348015610a3f57600080fd5b50610a5a6004803603810190610a559190613659565b611c46565b005b348015610a6857600080fd5b50610a71611d02565b604051610a7e91906141e8565b60405180910390f35b348015610a9357600080fd5b50610aae6004803603810190610aa99190613686565b611d0c565b604051610abb9190613eeb565b60405180910390f35b348015610ad057600080fd5b50610ad9611da0565b604051610ae691906141e8565b60405180910390f35b348015610afb57600080fd5b50610b166004803603810190610b119190613659565b611daa565b005b6000610b2382611e2e565b9050919050565b606060008054610b39906144b8565b80601f0160208091040260200160405190810160405280929190818152602001828054610b65906144b8565b8015610bb25780601f10610b8757610100808354040283529160200191610bb2565b820191906000526020600020905b815481529060010190602001808311610b9557829003601f168201915b5050505050905090565b6000610bc782611ea8565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610c0a611ef3565b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b6000610c41826113e2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca990614148565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cd1611f71565b73ffffffffffffffffffffffffffffffffffffffff161480610d005750610cff81610cfa611f71565b611d0c565b5b610d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d36906140c8565b60405180910390fd5b610d498383611f79565b505050565b610d56611ef3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd90614048565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610e12611ef3565b80600d8190555050565b600047905090565b6000600880549050905090565b610e42610e3c611f71565b82612032565b610e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e78906141c8565b60405180910390fd5b610e8c8383836120c7565b505050565b610e99611ef3565b8060108190555050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610ed483611559565b8210610f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0c90613f48565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610f76611ef3565b6000610f8061191d565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fa390613e6f565b60006040518083038185875af1925050503d8060008114610fe0576040519150601f19603f3d011682016040523d82523d6000602084013e610fe5565b606091505b5050905080611029576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611020906140a8565b60405180910390fd5b50565b611034611ef3565b61103c61232e565b565b60011515600f60019054906101000a900460ff16151514611094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108b906141a8565b60405180910390fd5b601054813073ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016110d19190613e84565b60206040518083038186803b1580156110e957600080fd5b505afa1580156110fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061112191906138ec565b61112b91906142ed565b111561116c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116390614048565b60405180910390fd5b6000611178600c612391565b90506111843383611730565b3410156111c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bd90613fe8565b60405180910390fd5b6000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b82811161124b5761121f600c61239f565b600061122b600c612391565b905061123733826123b5565b5080806112439061451b565b91505061120e565b503373ffffffffffffffffffffffffffffffffffffffff16817fb9203d657e9c0ec8274c818292ab0f58b04e1970050716891770eb1bab5d655e60405160405180910390a35050565b6112af83838360405180602001604052806000815250611a6e565b505050565b6112c56112bf611f71565b82612032565b611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb906141c8565b60405180910390fd5b61130d816123d3565b50565b60006001600e5461132191906143ce565b905090565b6000611330610e24565b8210611371576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136890614188565b60405180910390fd5b6008828154811061138557611384614651565b5b90600052602060002001549050919050565b61139f611ef3565b80601190805190602001906113b5929190613418565b5050565b6000600b60009054906101000a900460ff16905090565b6113d8611ef3565b80600e8190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561148b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148290614128565b60405180910390fd5b80915050919050565b601180546114a1906144b8565b80601f01602080910402602001604051908101604052809291908181526020018280546114cd906144b8565b801561151a5780601f106114ef5761010080835404028352916020019161151a565b820191906000526020600020905b8154815290600101906020018083116114fd57829003601f168201915b505050505081565b600061152e600c612391565b905090565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c190614088565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611619611ef3565b61162360006123df565b565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806116ce5750601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61170d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170490614168565b60405180910390fd5b611716816123d3565b50565b6000600f60019054906101000a900460ff16905090565b600080600090506000611741611522565b90506001600e5461175291906143ce565b848261175e91906142ed565b11156118245783600d546117729190614374565b91506000601460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008111156118225760648114156117ec57600d5485600d546117db9190614374565b6117e591906143ce565b9250611821565b606481600d546117fc9190614374565b6118069190614343565b85600d546118149190614374565b61181e91906143ce565b92505b5b505b819250505092915050565b611837611ef3565b61183f6124a5565b565b600080600090506000611852611522565b90506001600e5461186391906143ce565b8111156118ee57600d5491506000601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008111156118ec5760648114156118ce57600092506118eb565b606481600d546118de9190614374565b6118e89190614343565b92505b5b505b8192505050919050565b611900611ef3565b6001600f60006101000a81548160ff021916908315150217905550565b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611956906144b8565b80601f0160208091040260200160405190810160405280929190818152602001828054611982906144b8565b80156119cf5780601f106119a4576101008083540402835291602001916119cf565b820191906000526020600020905b8154815290600101906020018083116119b257829003601f168201915b5050505050905090565b6119eb6119e4611f71565b8383612508565b5050565b6000600f60009054906101000a900460ff16905090565b611a0e611ef3565b81601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b60146020528060005260406000206000915090505481565b611a7f611a79611f71565b83612032565b611abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab5906141c8565b60405180910390fd5b611aca84848484612675565b50505050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611b795750601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baf90614168565b60405180910390fd5b611bc282826123b5565b5050565b606060001515600f60009054906101000a900460ff1615151415611c1357611bed826126d1565b604051602001611bfd9190613e42565b6040516020818303038152906040529050611c41565b6011611c1e836126d1565b604051602001611c2f929190613e13565b60405160208183030381529060405290505b919050565b611c4e611ef3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb590614048565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600e54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000601054905090565b611db2611ef3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1990613f88565b60405180910390fd5b611e2b816123df565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ea15750611ea082612832565b5b9050919050565b611eb181612914565b611ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee790614128565b60405180910390fd5b50565b611efb611f71565b73ffffffffffffffffffffffffffffffffffffffff16611f1961191d565b73ffffffffffffffffffffffffffffffffffffffff1614611f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6690614108565b60405180910390fd5b565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611fec836113e2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061203e836113e2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612080575061207f8185611d0c565b5b806120be57508373ffffffffffffffffffffffffffffffffffffffff166120a684610bbc565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166120e7826113e2565b73ffffffffffffffffffffffffffffffffffffffff161461213d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213490613fa8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a490614008565b60405180910390fd5b6121b8838383612980565b6121c3600082611f79565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461221391906143ce565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461226a91906142ed565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612329838383612998565b505050565b61233661299d565b6000600b60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61237a611f71565b6040516123879190613e84565b60405180910390a1565b600081600001549050919050565b6001816000016000828254019250508190555050565b6123cf8282604051806020016040528060008152506129e6565b5050565b6123dc81612a41565b50565b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124ad612a94565b6001600b60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586124f1611f71565b6040516124fe9190613e84565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256e90614028565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516126689190613eeb565b60405180910390a3505050565b6126808484846120c7565b61268c84848484612ade565b6126cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c290613f68565b60405180910390fd5b50505050565b60606000821415612719576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061282d565b600082905060005b6000821461274b5780806127349061451b565b915050600a826127449190614343565b9150612721565b60008167ffffffffffffffff81111561276757612766614680565b5b6040519080825280601f01601f1916602001820160405280156127995781602001600182028036833780820191505090505b5090505b60008514612826576001826127b291906143ce565b9150600a856127c19190614564565b60306127cd91906142ed565b60f81b8183815181106127e3576127e2614651565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561281f9190614343565b945061279d565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806128fd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061290d575061290c82612c75565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b612988612a94565b612993838383612cdf565b505050565b505050565b6129a56113b9565b6129e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129db90613f28565b60405180910390fd5b565b6129f08383612df3565b6129fd6000848484612ade565b612a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3390613f68565b60405180910390fd5b505050565b612a4a81612fcd565b6000600a60008381526020019081526020016000208054612a6a906144b8565b905014612a9157600a60008281526020019081526020016000206000612a90919061349e565b5b50565b612a9c6113b9565b15612adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad390614068565b60405180910390fd5b565b6000612aff8473ffffffffffffffffffffffffffffffffffffffff166130ea565b15612c68578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b28611f71565b8786866040518563ffffffff1660e01b8152600401612b4a9493929190613e9f565b602060405180830381600087803b158015612b6457600080fd5b505af1925050508015612b9557506040513d601f19601f82011682018060405250810190612b929190613849565b60015b612c18573d8060008114612bc5576040519150601f19603f3d011682016040523d82523d6000602084013e612bca565b606091505b50600081511415612c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0790613f68565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c6d565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612cea83838361310d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d2d57612d2881613112565b612d6c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612d6b57612d6a838261315b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612daf57612daa816132c8565b612dee565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ded57612dec8282613399565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5a906140e8565b60405180910390fd5b612e6c81612914565b15612eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea390613fc8565b60405180910390fd5b612eb860008383612980565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f0891906142ed565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fc960008383612998565b5050565b6000612fd8826113e2565b9050612fe681600084612980565b612ff1600083611f79565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461304191906143ce565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130e681600084612998565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161316884611559565b61317291906143ce565b9050600060076000848152602001908152602001600020549050818114613257576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506132dc91906143ce565b905060006009600084815260200190815260200160002054905060006008838154811061330c5761330b614651565b5b90600052602060002001549050806008838154811061332e5761332d614651565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061337d5761337c614622565b5b6001900381819060005260206000200160009055905550505050565b60006133a483611559565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054613424906144b8565b90600052602060002090601f016020900481019282613446576000855561348d565b82601f1061345f57805160ff191683800117855561348d565b8280016001018555821561348d579182015b8281111561348c578251825591602001919060010190613471565b5b50905061349a91906134de565b5090565b5080546134aa906144b8565b6000825580601f106134bc57506134db565b601f0160209004906000526020600020908101906134da91906134de565b5b50565b5b808211156134f75760008160009055506001016134df565b5090565b600061350e61350984614228565b614203565b90508281526020810184848401111561352a576135296146b4565b5b613535848285614476565b509392505050565b600061355061354b84614259565b614203565b90508281526020810184848401111561356c5761356b6146b4565b5b613577848285614476565b509392505050565b60008135905061358e81614c51565b92915050565b6000813590506135a381614c68565b92915050565b6000813590506135b881614c7f565b92915050565b6000815190506135cd81614c7f565b92915050565b600082601f8301126135e8576135e76146af565b5b81356135f88482602086016134fb565b91505092915050565b600082601f830112613616576136156146af565b5b813561362684826020860161353d565b91505092915050565b60008135905061363e81614c96565b92915050565b60008151905061365381614c96565b92915050565b60006020828403121561366f5761366e6146be565b5b600061367d8482850161357f565b91505092915050565b6000806040838503121561369d5761369c6146be565b5b60006136ab8582860161357f565b92505060206136bc8582860161357f565b9150509250929050565b6000806000606084860312156136df576136de6146be565b5b60006136ed8682870161357f565b93505060206136fe8682870161357f565b925050604061370f8682870161362f565b9150509250925092565b60008060008060808587031215613733576137326146be565b5b60006137418782880161357f565b94505060206137528782880161357f565b93505060406137638782880161362f565b925050606085013567ffffffffffffffff811115613784576137836146b9565b5b613790878288016135d3565b91505092959194509250565b600080604083850312156137b3576137b26146be565b5b60006137c18582860161357f565b92505060206137d285828601613594565b9150509250929050565b600080604083850312156137f3576137f26146be565b5b60006138018582860161357f565b92505060206138128582860161362f565b9150509250929050565b600060208284031215613832576138316146be565b5b6000613840848285016135a9565b91505092915050565b60006020828403121561385f5761385e6146be565b5b600061386d848285016135be565b91505092915050565b60006020828403121561388c5761388b6146be565b5b600082013567ffffffffffffffff8111156138aa576138a96146b9565b5b6138b684828501613601565b91505092915050565b6000602082840312156138d5576138d46146be565b5b60006138e38482850161362f565b91505092915050565b600060208284031215613902576139016146be565b5b600061391084828501613644565b91505092915050565b600080604083850312156139305761392f6146be565b5b600061393e8582860161362f565b925050602061394f8582860161357f565b9150509250929050565b61396281614402565b82525050565b61397181614414565b82525050565b60006139828261429f565b61398c81856142b5565b935061399c818560208601614485565b6139a5816146c3565b840191505092915050565b60006139bb826142aa565b6139c581856142d1565b93506139d5818560208601614485565b6139de816146c3565b840191505092915050565b60006139f4826142aa565b6139fe81856142e2565b9350613a0e818560208601614485565b80840191505092915050565b60008154613a27816144b8565b613a3181866142e2565b94506001821660008114613a4c5760018114613a5d57613a90565b60ff19831686528186019350613a90565b613a668561428a565b60005b83811015613a8857815481890152600182019150602081019050613a69565b838801955050505b50505092915050565b6000613aa66014836142d1565b9150613ab1826146d4565b602082019050919050565b6000613ac9602b836142d1565b9150613ad4826146fd565b604082019050919050565b6000613aec6032836142d1565b9150613af78261474c565b604082019050919050565b6000613b0f6026836142d1565b9150613b1a8261479b565b604082019050919050565b6000613b326025836142d1565b9150613b3d826147ea565b604082019050919050565b6000613b55601c836142d1565b9150613b6082614839565b602082019050919050565b6000613b78600a836142d1565b9150613b8382614862565b602082019050919050565b6000613b9b6024836142d1565b9150613ba68261488b565b604082019050919050565b6000613bbe6019836142d1565b9150613bc9826148da565b602082019050919050565b6000613be1602c836142e2565b9150613bec82614903565b602c82019050919050565b6000613c04600b836142d1565b9150613c0f82614952565b602082019050919050565b6000613c276010836142d1565b9150613c328261497b565b602082019050919050565b6000613c4a6029836142d1565b9150613c55826149a4565b604082019050919050565b6000613c6d6014836142d1565b9150613c78826149f3565b602082019050919050565b6000613c90603e836142d1565b9150613c9b82614a1c565b604082019050919050565b6000613cb36020836142d1565b9150613cbe82614a6b565b602082019050919050565b6000613cd66005836142e2565b9150613ce182614a94565b600582019050919050565b6000613cf96020836142d1565b9150613d0482614abd565b602082019050919050565b6000613d1c6018836142d1565b9150613d2782614ae6565b602082019050919050565b6000613d3f6021836142d1565b9150613d4a82614b0f565b604082019050919050565b6000613d626000836142c6565b9150613d6d82614b5e565b600082019050919050565b6000613d85600c836142d1565b9150613d9082614b61565b602082019050919050565b6000613da8602c836142d1565b9150613db382614b8a565b604082019050919050565b6000613dcb600b836142d1565b9150613dd682614bd9565b602082019050919050565b6000613dee602e836142d1565b9150613df982614c02565b604082019050919050565b613e0d8161446c565b82525050565b6000613e1f8285613a1a565b9150613e2b82846139e9565b9150613e3682613cc9565b91508190509392505050565b6000613e4d82613bd4565b9150613e5982846139e9565b9150613e6482613cc9565b915081905092915050565b6000613e7a82613d55565b9150819050919050565b6000602082019050613e996000830184613959565b92915050565b6000608082019050613eb46000830187613959565b613ec16020830186613959565b613ece6040830185613e04565b8181036060830152613ee08184613977565b905095945050505050565b6000602082019050613f006000830184613968565b92915050565b60006020820190508181036000830152613f2081846139b0565b905092915050565b60006020820190508181036000830152613f4181613a99565b9050919050565b60006020820190508181036000830152613f6181613abc565b9050919050565b60006020820190508181036000830152613f8181613adf565b9050919050565b60006020820190508181036000830152613fa181613b02565b9050919050565b60006020820190508181036000830152613fc181613b25565b9050919050565b60006020820190508181036000830152613fe181613b48565b9050919050565b6000602082019050818103600083015261400181613b6b565b9050919050565b6000602082019050818103600083015261402181613b8e565b9050919050565b6000602082019050818103600083015261404181613bb1565b9050919050565b6000602082019050818103600083015261406181613bf7565b9050919050565b6000602082019050818103600083015261408181613c1a565b9050919050565b600060208201905081810360008301526140a181613c3d565b9050919050565b600060208201905081810360008301526140c181613c60565b9050919050565b600060208201905081810360008301526140e181613c83565b9050919050565b6000602082019050818103600083015261410181613ca6565b9050919050565b6000602082019050818103600083015261412181613cec565b9050919050565b6000602082019050818103600083015261414181613d0f565b9050919050565b6000602082019050818103600083015261416181613d32565b9050919050565b6000602082019050818103600083015261418181613d78565b9050919050565b600060208201905081810360008301526141a181613d9b565b9050919050565b600060208201905081810360008301526141c181613dbe565b9050919050565b600060208201905081810360008301526141e181613de1565b9050919050565b60006020820190506141fd6000830184613e04565b92915050565b600061420d61421e565b905061421982826144ea565b919050565b6000604051905090565b600067ffffffffffffffff82111561424357614242614680565b5b61424c826146c3565b9050602081019050919050565b600067ffffffffffffffff82111561427457614273614680565b5b61427d826146c3565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006142f88261446c565b91506143038361446c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561433857614337614595565b5b828201905092915050565b600061434e8261446c565b91506143598361446c565b925082614369576143686145c4565b5b828204905092915050565b600061437f8261446c565b915061438a8361446c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143c3576143c2614595565b5b828202905092915050565b60006143d98261446c565b91506143e48361446c565b9250828210156143f7576143f6614595565b5b828203905092915050565b600061440d8261444c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156144a3578082015181840152602081019050614488565b838111156144b2576000848401525b50505050565b600060028204905060018216806144d057607f821691505b602082108114156144e4576144e36145f3565b5b50919050565b6144f3826146c3565b810181811067ffffffffffffffff8211171561451257614511614680565b5b80604052505050565b60006145268261446c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561455957614558614595565b5b600182019050919050565b600061456f8261446c565b915061457a8361446c565b92508261458a576145896145c4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6e6f7420656e6f75676800000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f68747470733a2f2f6e66742e6e66747065656c2e636f6d2f737061636565676760008201527f7a2f67656e312f6d6574612f0000000000000000000000000000000000000000602082015250565b7f6e6f7420616c6c6f776564000000000000000000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f6661696c656420746f2073656e64206574686572000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f6e6f7420636f6e74726163740000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f6e6f742073746172746564000000000000000000000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b614c5a81614402565b8114614c6557600080fd5b50565b614c7181614414565b8114614c7c57600080fd5b50565b614c8881614420565b8114614c9357600080fd5b50565b614c9f8161446c565b8114614caa57600080fd5b5056fea2646970667358221220f151dd11f1ab354a3e1bdf1cf751093406f190eac81c8964de314d7617f6582b64736f6c63430008070033

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.