Address Details
contract

0x1A11C9E9353949F115fe72b357308619DCb06B27

Contract Name
StarNFTLogic
Creator
0x7d6740–c9cfce at 0x866a6c–94cf3c
Balance
0 CELO ( )
Locked CELO Balance
0.00 CELO
Voting CELO Balance
0.00 CELO
Pending Unlocked Gold
0.00 CELO
Tokens
Fetching tokens...
Transactions
0 Transactions
Transfers
0 Transfers
Gas Used
Fetching gas used...
Last Balance Update
8979143
This contract has been verified via Sourcify. View contract in Sourcify repository
Contract name:
StarNFTLogic




Optimization enabled
false
Compiler version
v0.8.7+commit.e28d00a7




EVM Version
london




Verified at
2022-08-21T16:52:32.414571Z

contracts/StarNFTLogic.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/CountersUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/math/SafeMathUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC721/IERC721Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol";
import "./IStarNFT.sol";

interface IERC20Burnable is IERC20Upgradeable {
    function burnFrom(address account, uint256 amount) external;
}

interface IBonus {
    function getlockRatio() view external returns (uint256);
    function getlockAddress() view external returns (address);
}

contract StarNFTLogic is ContextUpgradeable, OwnableUpgradeable {
    using SafeERC20Upgradeable for IERC20Upgradeable;
    using SafeMathUpgradeable for uint256;

    using CountersUpgradeable for CountersUpgradeable.Counter;
    CountersUpgradeable.Counter private cateIds;

    struct StarCate {
        uint256 maxUnit;
        uint256 multiple;
        uint256 usedUnit;
    }

    struct StarMeta {
        StarLevel level;
        uint256 cateId;
        uint256 price;
        uint256 multiple;
    }

    struct LevelMethod {
        uint256 usedUnit;
        uint256 burned;
        uint256 price;
        bool isInc;
        uint256 base;
        uint256 step;
        bool isUnique;
    }

    enum StarLevel {
        COMMON,
        SPECIAL,
        EXCLUSIVE
    }

    IERC20Burnable public starToken;
    IBonus private Bonus;
    IStarNFT public starNFT;
    address public bonusAddr;
    uint256 public totalPrice;
    uint256 public fee;
    uint256[] private _allTokensId;
    mapping(uint256 => StarCate) public cateId;
    mapping(StarLevel => uint256[]) public starCate;
    mapping(StarLevel => LevelMethod) public levelMethod;
    mapping(uint256 => StarMeta) public starMeta;
    mapping (uint256 => uint256) public bonusToken;

    function initialize(address _starToken, address _bonus, address _starNFT, uint256 _fee) public initializer {
        __starNFTLogic_init(_starToken, _bonus, _starNFT, _fee);
    }

    function __starNFTLogic_init(address _starToken, address _bonus, address _starNFT, uint256 _fee) internal initializer {
        __Context_init_unchained();
        __Ownable_init_unchained();
        __starNFTLogic_init_unchained(_starToken, _bonus, _starNFT, _fee);
    }

    function __starNFTLogic_init_unchained(address _starToken, address _bonus, address _starNFT, uint256 _fee) internal initializer {
        starToken = IERC20Burnable(_starToken);
        starNFT = IStarNFT(_starNFT);
        bonusAddr = _bonus;
        Bonus = IBonus(bonusAddr);
        fee = _fee;
    }

    //mint function
    function mint() public returns (uint256) {
        uint256 _cateId = starCate[StarLevel.COMMON][getRndCateIndex(StarLevel.COMMON)];
        LevelMethod storage _levelMethod = levelMethod[StarLevel.COMMON];
        uint256 _price = _levelMethod.price;
        require(_price > 0, "level price error");
        if (_levelMethod.isInc && _levelMethod.base > 0) {
            _price = _price.add(_levelMethod.usedUnit.mod(_levelMethod.base).mul(_levelMethod.step));
        }
        uint256 indexLength = _allTokensId.length;
        uint256 _fee = _price.mul(fee).div(100);
        uint256 lockRatio = Bonus.getlockRatio();
        starToken.transfer(Bonus.getlockAddress(), _fee.mul(lockRatio).div(100));
        starToken.transferFrom(_msgSender(), address(this), _price);
        starToken.burnFrom(address(this), _price.sub(_fee));
        starToken.transfer(bonusAddr, _fee);
        uint256 _starId = starNFT.mint(_msgSender(), _cateId);
        uint256 _multi = cateId[_cateId].multiple;
        starMeta[_starId] = StarMeta(StarLevel.COMMON, _cateId, _price, _multi);
        cateId[_cateId].usedUnit += 1;
        _levelMethod.usedUnit += 1;
        totalPrice = totalPrice.add(_price.mul(_multi).div(100));
        uint256 amountBonus = _fee.mul(100 - lockRatio).div(100);
        if(indexLength > 0){
            uint256 divAmountBonus = amountBonus.mul(1e12).div(indexLength);
            for(uint256 i = 0;i< indexLength;i++){
                uint256 tokenId = _allTokensId[i];
                uint256 UserBonusToken = bonusToken[tokenId];
                bonusToken[tokenId] = divAmountBonus.div(1e12).add(UserBonusToken);
            }
        }
        _allTokensId.push(_starId);
        return _starId;
    }

    function melt(uint256[] memory _tokenIds, StarLevel _from, StarLevel _to) public returns (uint256) {
        require(uint256(_to) == uint256(_from) + 1, "melt level error");
        require(starNFT.massVerifyOwner(_msgSender(), _tokenIds), "not your tokens");
        (uint256 _price, uint256 _multiple) = verifyTokens(_from, _to, _tokenIds);
        require(_price != 0, "token error");
        starNFT.massBurn(_tokenIds);
        levelMethod[_from].burned += _tokenIds.length;
        uint256 _cateId = starCate[_to][getRndCateIndex(_to)];
        uint256 _starId = starNFT.mint(_msgSender(), _cateId);
        uint256 _multi = _multiple.mul(cateId[_cateId].multiple).div(100);
        starMeta[_starId] = StarMeta(_to, _cateId, _price, _multi);
        cateId[_cateId].usedUnit += 1;
        levelMethod[_to].usedUnit += 1;
        totalPrice = totalPrice.add(_price.mul(_multi).div(100));
        return _starId;
    }

    function verifyTokens(StarLevel _level, StarLevel _newLevel, uint256[] memory _tokenIds) view internal returns (uint256, uint256) {
        LevelMethod memory _levelMethod = levelMethod[_newLevel];
        uint256 _price = _levelMethod.price;
        if (_levelMethod.isInc && _levelMethod.base > 0) {
            _price = _price.add(_levelMethod.usedUnit.div(_levelMethod.base).mul(_levelMethod.step));
        }
        require(_tokenIds.length == _price, "token amount error");
        uint256 multiple;
        uint256 price;
        uint256[] memory _cateIds = new uint256[](_tokenIds.length);
        for (uint256 i = 0; i < _tokenIds.length; i ++) {
            require(starMeta[_tokenIds[i]].level == _level, "error level");
            price = price.add(starMeta[_tokenIds[i]].price);
            multiple = multiple.add(starMeta[_tokenIds[i]].multiple);
            if (!_levelMethod.isUnique) {
            require(!indexOf(_cateIds, starMeta[_tokenIds[i]].cateId), "must be unique cate");
            }
            _cateIds[i] = starMeta[_tokenIds[i]].cateId;
        }
        return (price, multiple.div(_tokenIds.length));
    }

    function getCateLength(StarLevel _level) internal view returns (uint256) {
        return starCate[_level].length;
    }

    function getRndCateIndex(StarLevel _level) view public returns (uint256) {
        uint256[] storage _cate = starCate[_level];
        require(_cate.length > 0, "no cate");
        uint256 _rndCateIndex;
        uint256 _rndCateIndex2;
        uint256 nonce;
        do {
            _rndCateIndex = uint256(keccak256(abi.encodePacked(block.coinbase, msg.sender, nonce, block.timestamp))) % (_cate.length -1);
            _rndCateIndex2 = uint256(keccak256(abi.encodePacked(block.coinbase, msg.sender, nonce, block.timestamp))) % (_cate.length -1) + 1;
            if (cateId[_cate[_rndCateIndex2]].maxUnit > cateId[_cate[_rndCateIndex2]].usedUnit){
                _rndCateIndex = _rndCateIndex2;
            }
            if (cateId[_cate[_rndCateIndex]].maxUnit > cateId[_cate[_rndCateIndex]].usedUnit) break;
            nonce ++;
        } while (true);
        return _rndCateIndex;
    }

    function addCate(StarLevel _level, uint256 _maxUnit, uint256 _multiple, string memory _cateUri) onlyOwner public {
        cateIds.increment();
        uint256 _cateId = cateIds.current();
        cateId[_cateId] = StarCate(_maxUnit, _multiple, 0);
        starCate[_level].push(_cateId);
        starNFT.setCateURI(_cateId, _cateUri);
    }

    function editCate(uint256 _cateId, uint256 _maxUnit, uint256 _multiple, string memory _cateUri) onlyOwner public {
        StarCate storage _cate = cateId[_cateId];
        _cate.maxUnit = _maxUnit;
        _cate.multiple = _multiple;
        starNFT.setCateURI(_cateId, _cateUri);
    }

    function setLevelMethod(StarLevel _level, uint256 _price, bool _isInc, uint256 _base, uint256 _step, bool _isUnique) onlyOwner public {
        LevelMethod storage _levelMethod = levelMethod[_level];
        _levelMethod.price = _price;
        _levelMethod.isInc = _isInc;
        _levelMethod.base = _base;
        _levelMethod.step = _step;
        _levelMethod.isUnique = _isUnique;
    }

    function disposeBonusToke(uint256 _tokenId) view external returns (uint256) {
        return bonusToken[_tokenId];
    }

    function getTokensId(uint256 _index) view public returns(uint256){
        return _allTokensId[_index];
    }

    function getAllTokenId() view external returns(uint256[] memory){
        return  _allTokensId;
    }

    function setBonusToke(uint256 _tokenId,uint256 _amountBonus) external {
        bonusToken[_tokenId] = _amountBonus;
    }

    function setStarNFT(address _starNFT) onlyOwner public {
        require(_starNFT != address(0), "address error");
        starNFT = IStarNFT(_starNFT);
    }

    function setBonus(address _bonus) onlyOwner public {
        require(_bonus != address(0), "address error");
        bonusAddr = _bonus;
        Bonus = IBonus(bonusAddr);
    }

    function setStarToken(address _starToken) onlyOwner public {
        require(_starToken != address(0), "address error");
        starToken = IERC20Burnable(_starToken);
    }

    function indexOf(uint256[] memory A, uint256 a) internal pure returns (bool) {
        uint256 length = A.length;
        for (uint256 i = 0; i < length; i++) {
            if (A[i] == a) {
                return true;
            }
        }
        return false;
    }
}
        

/_openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol

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

pragma solidity ^0.8.0;

import "../utils/ContextUpgradeable.sol";
import "../proxy/utils/Initializable.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 OwnableUpgradeable is Initializable, ContextUpgradeable {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    function __Ownable_init() internal onlyInitializing {
        __Context_init_unchained();
        __Ownable_init_unchained();
    }

    function __Ownable_init_unchained() internal onlyInitializing {
        _transferOwnership(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _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);
    }
    uint256[49] private __gap;
}
          

/_openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol

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

pragma solidity ^0.8.0;

import "../../utils/AddressUpgradeable.sol";

/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 *
 * [CAUTION]
 * ====
 * Avoid leaving a contract uninitialized.
 *
 * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
 * contract, which may impact the proxy. To initialize the implementation contract, you can either invoke the
 * initializer manually, or you can include a constructor to automatically mark it as initialized when it is deployed:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * /// @custom:oz-upgrades-unsafe-allow constructor
 * constructor() initializer {}
 * ```
 * ====
 */
abstract contract Initializable {
    /**
     * @dev Indicates that the contract has been initialized.
     */
    bool private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Modifier to protect an initializer function from being invoked twice.
     */
    modifier initializer() {
        // If the contract is initializing we ignore whether _initialized is set in order to support multiple
        // inheritance patterns, but we only do this in the context of a constructor, because in other contexts the
        // contract may have been reentered.
        require(_initializing ? _isConstructor() : !_initialized, "Initializable: contract is already initialized");

        bool isTopLevelCall = !_initializing;
        if (isTopLevelCall) {
            _initializing = true;
            _initialized = true;
        }

        _;

        if (isTopLevelCall) {
            _initializing = false;
        }
    }

    /**
     * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
     * {initializer} modifier, directly or indirectly.
     */
    modifier onlyInitializing() {
        require(_initializing, "Initializable: contract is not initializing");
        _;
    }

    function _isConstructor() private view returns (bool) {
        return !AddressUpgradeable.isContract(address(this));
    }
}
          

/_openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20Upgradeable {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}
          

/_openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol

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

pragma solidity ^0.8.0;

import "../IERC20Upgradeable.sol";
import "../../../utils/AddressUpgradeable.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20Upgradeable {
    using AddressUpgradeable for address;

    function safeTransfer(
        IERC20Upgradeable token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20Upgradeable token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20Upgradeable token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20Upgradeable token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20Upgradeable token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20Upgradeable token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}
          

/_openzeppelin/contracts-upgradeable/token/ERC721/IERC721Upgradeable.sol

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

/_openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol

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

pragma solidity ^0.8.0;

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

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

/_openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol

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

pragma solidity ^0.8.0;
import "../proxy/utils/Initializable.sol";

/**
 * @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 ContextUpgradeable is Initializable {
    function __Context_init() internal onlyInitializing {
        __Context_init_unchained();
    }

    function __Context_init_unchained() internal onlyInitializing {
    }
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
    uint256[50] private __gap;
}
          

/_openzeppelin/contracts-upgradeable/utils/CountersUpgradeable.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 CountersUpgradeable {
    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;
    }
}
          

/_openzeppelin/contracts-upgradeable/utils/introspection/IERC165Upgradeable.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 IERC165Upgradeable {
    /**
     * @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);
}
          

/_openzeppelin/contracts-upgradeable/utils/math/SafeMathUpgradeable.sol

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

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMathUpgradeable {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}
          

/contracts/IStarNFT.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface IStarNFT {
    function mint(address _owner, uint256 _cateId) external returns (uint256);
    function setCateURI(uint256 _cateId, string memory _cateUri) external;
    function massVerifyOwner(address owner, uint256[] memory _tokenIds) view external returns (bool);
    function massBurn(uint256[] memory _tokenIds) external;
    function setSale(bool _sale) external;
    function balanceOf(address owner) view external returns (uint256);
    function tokenOfOwnerByIndex(address owner,uint256 tokenid) view external returns (uint256);
}
          

Contract ABI

[{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"addCate","inputs":[{"type":"uint8","name":"_level","internalType":"enum StarNFTLogic.StarLevel"},{"type":"uint256","name":"_maxUnit","internalType":"uint256"},{"type":"uint256","name":"_multiple","internalType":"uint256"},{"type":"string","name":"_cateUri","internalType":"string"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"bonusAddr","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"bonusToken","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"maxUnit","internalType":"uint256"},{"type":"uint256","name":"multiple","internalType":"uint256"},{"type":"uint256","name":"usedUnit","internalType":"uint256"}],"name":"cateId","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"disposeBonusToke","inputs":[{"type":"uint256","name":"_tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"editCate","inputs":[{"type":"uint256","name":"_cateId","internalType":"uint256"},{"type":"uint256","name":"_maxUnit","internalType":"uint256"},{"type":"uint256","name":"_multiple","internalType":"uint256"},{"type":"string","name":"_cateUri","internalType":"string"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"fee","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256[]","name":"","internalType":"uint256[]"}],"name":"getAllTokenId","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"getRndCateIndex","inputs":[{"type":"uint8","name":"_level","internalType":"enum StarNFTLogic.StarLevel"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"getTokensId","inputs":[{"type":"uint256","name":"_index","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"initialize","inputs":[{"type":"address","name":"_starToken","internalType":"address"},{"type":"address","name":"_bonus","internalType":"address"},{"type":"address","name":"_starNFT","internalType":"address"},{"type":"uint256","name":"_fee","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"usedUnit","internalType":"uint256"},{"type":"uint256","name":"burned","internalType":"uint256"},{"type":"uint256","name":"price","internalType":"uint256"},{"type":"bool","name":"isInc","internalType":"bool"},{"type":"uint256","name":"base","internalType":"uint256"},{"type":"uint256","name":"step","internalType":"uint256"},{"type":"bool","name":"isUnique","internalType":"bool"}],"name":"levelMethod","inputs":[{"type":"uint8","name":"","internalType":"enum StarNFTLogic.StarLevel"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"melt","inputs":[{"type":"uint256[]","name":"_tokenIds","internalType":"uint256[]"},{"type":"uint8","name":"_from","internalType":"enum StarNFTLogic.StarLevel"},{"type":"uint8","name":"_to","internalType":"enum StarNFTLogic.StarLevel"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"mint","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setBonus","inputs":[{"type":"address","name":"_bonus","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setBonusToke","inputs":[{"type":"uint256","name":"_tokenId","internalType":"uint256"},{"type":"uint256","name":"_amountBonus","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setLevelMethod","inputs":[{"type":"uint8","name":"_level","internalType":"enum StarNFTLogic.StarLevel"},{"type":"uint256","name":"_price","internalType":"uint256"},{"type":"bool","name":"_isInc","internalType":"bool"},{"type":"uint256","name":"_base","internalType":"uint256"},{"type":"uint256","name":"_step","internalType":"uint256"},{"type":"bool","name":"_isUnique","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setStarNFT","inputs":[{"type":"address","name":"_starNFT","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setStarToken","inputs":[{"type":"address","name":"_starToken","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"starCate","inputs":[{"type":"uint8","name":"","internalType":"enum StarNFTLogic.StarLevel"},{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"level","internalType":"enum StarNFTLogic.StarLevel"},{"type":"uint256","name":"cateId","internalType":"uint256"},{"type":"uint256","name":"price","internalType":"uint256"},{"type":"uint256","name":"multiple","internalType":"uint256"}],"name":"starMeta","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IStarNFT"}],"name":"starNFT","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IERC20Burnable"}],"name":"starToken","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalPrice","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]}]
              

Contract Creation Code

0x608060405234801561001057600080fd5b506141a1806100206000396000f3fe608060405234801561001057600080fd5b50600436106101a85760003560e01c8063715018a6116100f9578063b7ca51e811610097578063cf756fdf11610071578063cf756fdf146104d8578063dd6fd842146104f4578063ddca3f4314610524578063f2fde38b14610542576101a8565b8063b7ca51e81461045a578063c9f09b9c14610478578063ca7c15d4146104a8576101a8565b8063971276ae116100d3578063971276ae146103d15780639c2fc62314610404578063ab0d92dd14610420578063b0bf74e31461043e576101a8565b8063715018a614610373578063866285421461037d5780638da5cb5b146103b3576101a8565b80631d7cf6c611610166578063334d491d11610140578063334d491d146103015780634d85ca261461031d5780636b57d9bd1461033957806370dca97414610355576101a8565b80631d7cf6c6146102835780631e2f2912146102b35780632018ce8b146102cf576101a8565b80621917d7146101ad57806304764089146101dd578063069f2c0d146101fb5780631249c58b1461022b57806312dcff7a1461024957806313eaabb814610265575b600080fd5b6101c760048036038101906101c29190613111565b61055e565b6040516101d49190613888565b60405180910390f35b6101e5610576565b6040516101f2919061364b565b60405180910390f35b61021560048036038101906102109190612fc1565b6105ce565b6040516102229190613888565b60405180910390f35b6102336105ff565b6040516102409190613888565b60405180910390f35b610263600480360381019061025e9190612e37565b610f0a565b005b61026d61109d565b60405161027a91906135a0565b60405180910390f35b61029d60048036038101906102989190612ef8565b6110c3565b6040516102aa9190613888565b60405180910390f35b6102cd60048036038101906102c8919061316b565b61161f565b005b6102e960048036038101906102e49190613111565b61163b565b6040516102f8939291906138d3565b60405180910390f35b61031b60048036038101906103169190612e37565b611665565b005b610337600480360381019061033291906131ab565b611795565b005b610353600480360381019061034e9190613001565b6118d0565b005b61035d6119e3565b60405161036a9190613688565b60405180910390f35b61037b611a09565b005b61039760048036038101906103929190612f94565b611a91565b6040516103aa979695949392919061390a565b60405180910390f35b6103bb611aed565b6040516103c891906135a0565b60405180910390f35b6103eb60048036038101906103e69190613111565b611b17565b6040516103fb94939291906136a3565b60405180910390f35b61041e6004803603810190610419919061308e565b611b54565b005b610428611d2c565b6040516104359190613888565b60405180910390f35b61045860048036038101906104539190612e37565b611d32565b005b610462611e62565b60405161046f919061366d565b60405180910390f35b610492600480360381019061048d9190613111565b611e88565b60405161049f9190613888565b60405180910390f35b6104c260048036038101906104bd9190612f94565b611ea5565b6040516104cf9190613888565b60405180910390f35b6104f260048036038101906104ed9190612e91565b6120d9565b005b61050e60048036038101906105099190613111565b6121cd565b60405161051b9190613888565b60405180910390f35b61052c6121f5565b6040516105399190613888565b60405180910390f35b61055c60048036038101906105579190612e37565b6121fb565b005b60716020528060005260406000206000915090505481565b6060606c8054806020026020016040519081016040528092919081815260200182805480156105c457602002820191906000526020600020905b8154815260200190600101908083116105b0575b5050505050905090565b606e60205281600052604060002081815481106105ea57600080fd5b90600052602060002001600091509150505481565b600080606e600080600281111561061957610618613db7565b5b600281111561062b5761062a613db7565b5b81526020019081526020016000206106436000611ea5565b8154811061065457610653613de6565b5b906000526020600020015490506000606f600080600281111561067a57610679613db7565b5b600281111561068c5761068b613db7565b5b81526020019081526020016000209050600081600201549050600081116106e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106df90613788565b60405180910390fd5b8160030160009054906101000a900460ff16801561070a575060008260040154115b15610755576107526107438360050154610735856004015486600001546122f390919063ffffffff16565b61230990919063ffffffff16565b8261231f90919063ffffffff16565b90505b6000606c8054905090506000610789606461077b606b548661230990919063ffffffff16565b61233590919063ffffffff16565b90506000606760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340ee7ce26040518163ffffffff1660e01b815260040160206040518083038186803b1580156107f557600080fd5b505afa158015610809573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061082d919061313e565b9050606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb606760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638b6e15e56040518163ffffffff1660e01b815260040160206040518083038186803b1580156108d557600080fd5b505afa1580156108e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061090d9190612e64565b6109336064610925868861230990919063ffffffff16565b61233590919063ffffffff16565b6040518363ffffffff1660e01b8152600401610950929190613622565b602060405180830381600087803b15801561096a57600080fd5b505af115801561097e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a29190612f67565b50606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd6109e961234b565b30876040518463ffffffff1660e01b8152600401610a09939291906135bb565b602060405180830381600087803b158015610a2357600080fd5b505af1158015610a37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5b9190612f67565b50606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166379cc679030610aae858861235390919063ffffffff16565b6040518363ffffffff1660e01b8152600401610acb929190613622565b600060405180830381600087803b158015610ae557600080fd5b505af1158015610af9573d6000803e3d6000fd5b50505050606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb606960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401610b7c929190613622565b602060405180830381600087803b158015610b9657600080fd5b505af1158015610baa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bce9190612f67565b506000606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f19610c1761234b565b896040518363ffffffff1660e01b8152600401610c35929190613622565b602060405180830381600087803b158015610c4f57600080fd5b505af1158015610c63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c87919061313e565b90506000606d6000898152602001908152602001600020600101549050604051806080016040528060006002811115610cc357610cc2613db7565b5b8152602001898152602001878152602001828152506070600084815260200190815260200160002060008201518160000160006101000a81548160ff02191690836002811115610d1657610d15613db7565b5b02179055506020820151816001015560408201518160020155606082015181600301559050506001606d60008a81526020019081526020016000206002016000828254610d639190613a50565b925050819055506001876000016000828254610d7f9190613a50565b92505081905550610dc0610daf6064610da1848a61230990919063ffffffff16565b61233590919063ffffffff16565b606a5461231f90919063ffffffff16565b606a819055506000610dfa6064610dec866064610ddd9190613b31565b8861230990919063ffffffff16565b61233590919063ffffffff16565b90506000861115610ed2576000610e3187610e2364e8d4a510008561230990919063ffffffff16565b61233590919063ffffffff16565b905060005b87811015610ecf576000606c8281548110610e5457610e53613de6565b5b90600052602060002001549050600060716000838152602001908152602001600020549050610ea381610e9564e8d4a510008761233590919063ffffffff16565b61231f90919063ffffffff16565b607160008481526020019081526020016000208190555050508080610ec790613c9f565b915050610e36565b50505b606c83908060018154018082558091505060019003906000526020600020016000909190919091505582995050505050505050505090565b610f1261234b565b73ffffffffffffffffffffffffffffffffffffffff16610f30611aed565b73ffffffffffffffffffffffffffffffffffffffff1614610f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7d906137e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fed90613708565b60405180910390fd5b80606960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16606760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600060018360028111156110da576110d9613db7565b5b6110e49190613a50565b8260028111156110f7576110f6613db7565b5b14611137576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112e906137a8565b60405180910390fd5b606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634f69b86261117d61234b565b866040518363ffffffff1660e01b815260040161119b9291906135f2565b60206040518083038186803b1580156111b357600080fd5b505afa1580156111c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111eb9190612f67565b61122a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122190613848565b60405180910390fd5b600080611238858588612369565b915091506000821415611280576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611277906136e8565b60405180910390fd5b606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b1d73026876040518263ffffffff1660e01b81526004016112db919061364b565b600060405180830381600087803b1580156112f557600080fd5b505af1158015611309573d6000803e3d6000fd5b505050508551606f600087600281111561132657611325613db7565b5b600281111561133857611337613db7565b5b815260200190815260200160002060010160008282546113589190613a50565b925050819055506000606e600086600281111561137857611377613db7565b5b600281111561138a57611389613db7565b5b81526020019081526020016000206113a186611ea5565b815481106113b2576113b1613de6565b5b906000526020600020015490506000606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f1961140761234b565b846040518363ffffffff1660e01b8152600401611425929190613622565b602060405180830381600087803b15801561143f57600080fd5b505af1158015611453573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611477919061313e565b905060006114b760646114a9606d6000878152602001908152602001600020600101548761230990919063ffffffff16565b61233590919063ffffffff16565b905060405180608001604052808860028111156114d7576114d6613db7565b5b8152602001848152602001868152602001828152506070600084815260200190815260200160002060008201518160000160006101000a81548160ff0219169083600281111561152a57611529613db7565b5b02179055506020820151816001015560408201518160020155606082015181600301559050506001606d600085815260200190815260200160002060020160008282546115779190613a50565b925050819055506001606f600089600281111561159757611596613db7565b5b60028111156115a9576115a8613db7565b5b815260200190815260200160002060000160008282546115c99190613a50565b9250508190555061160a6115f960646115eb848961230990919063ffffffff16565b61233590919063ffffffff16565b606a5461231f90919063ffffffff16565b606a8190555081955050505050509392505050565b8060716000848152602001908152602001600020819055505050565b606d6020528060005260406000206000915090508060000154908060010154908060020154905083565b61166d61234b565b73ffffffffffffffffffffffffffffffffffffffff1661168b611aed565b73ffffffffffffffffffffffffffffffffffffffff16146116e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d8906137e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611751576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174890613708565b60405180910390fd5b80606660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61179d61234b565b73ffffffffffffffffffffffffffffffffffffffff166117bb611aed565b73ffffffffffffffffffffffffffffffffffffffff1614611811576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611808906137e8565b60405180910390fd5b6000606d60008681526020019081526020016000209050838160000181905550828160010181905550606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663adc84d2e86846040518363ffffffff1660e01b81526004016118979291906138a3565b600060405180830381600087803b1580156118b157600080fd5b505af11580156118c5573d6000803e3d6000fd5b505050505050505050565b6118d861234b565b73ffffffffffffffffffffffffffffffffffffffff166118f6611aed565b73ffffffffffffffffffffffffffffffffffffffff161461194c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611943906137e8565b60405180910390fd5b6000606f600088600281111561196557611964613db7565b5b600281111561197757611976613db7565b5b81526020019081526020016000209050858160020181905550848160030160006101000a81548160ff021916908315150217905550838160040181905550828160050181905550818160060160006101000a81548160ff02191690831515021790555050505050505050565b606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611a1161234b565b73ffffffffffffffffffffffffffffffffffffffff16611a2f611aed565b73ffffffffffffffffffffffffffffffffffffffff1614611a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7c906137e8565b60405180910390fd5b611a8f600061275e565b565b606f6020528060005260406000206000915090508060000154908060010154908060020154908060030160009054906101000a900460ff16908060040154908060050154908060060160009054906101000a900460ff16905087565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60706020528060005260406000206000915090508060000160009054906101000a900460ff16908060010154908060020154908060030154905084565b611b5c61234b565b73ffffffffffffffffffffffffffffffffffffffff16611b7a611aed565b73ffffffffffffffffffffffffffffffffffffffff1614611bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc7906137e8565b60405180910390fd5b611bda6065612824565b6000611be6606561283a565b905060405180606001604052808581526020018481526020016000815250606d6000838152602001908152602001600020600082015181600001556020820151816001015560408201518160020155905050606e6000866002811115611c4f57611c4e613db7565b5b6002811115611c6157611c60613db7565b5b8152602001908152602001600020819080600181540180825580915050600190039060005260206000200160009091909190915055606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663adc84d2e82846040518363ffffffff1660e01b8152600401611cf39291906138a3565b600060405180830381600087803b158015611d0d57600080fd5b505af1158015611d21573d6000803e3d6000fd5b505050505050505050565b606a5481565b611d3a61234b565b73ffffffffffffffffffffffffffffffffffffffff16611d58611aed565b73ffffffffffffffffffffffffffffffffffffffff1614611dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da5906137e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1590613708565b60405180910390fd5b80606860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600060716000838152602001908152602001600020549050919050565b600080606e6000846002811115611ebf57611ebe613db7565b5b6002811115611ed157611ed0613db7565b5b815260200190815260200160002090506000818054905011611f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1f90613768565b60405180910390fd5b60008060005b60018480549050611f3f9190613b31565b41338342604051602001611f569493929190613552565b6040516020818303038152906040528051906020012060001c611f799190613d28565b92506001808580549050611f8d9190613b31565b41338442604051602001611fa49493929190613552565b6040516020818303038152906040528051906020012060001c611fc79190613d28565b611fd19190613a50565b9150606d6000858481548110611fea57611fe9613de6565b5b9060005260206000200154815260200190815260200160002060020154606d600086858154811061201e5761201d613de6565b5b90600052602060002001548152602001908152602001600020600001541115612045578192505b606d600085858154811061205c5761205b613de6565b5b9060005260206000200154815260200190815260200160002060020154606d60008686815481106120905761208f613de6565b5b906000526020600020015481526020019081526020016000206000015411156120b8576120cd565b80806120c390613c9f565b9150506001611f2e575b82945050505050919050565b600060019054906101000a900460ff166121015760008054906101000a900460ff161561210a565b612109612848565b5b612149576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612140906137c8565b60405180910390fd5b60008060019054906101000a900460ff161590508015612199576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6121a585858585612859565b80156121c65760008060016101000a81548160ff0219169083151502179055505b5050505050565b6000606c82815481106121e3576121e2613de6565b5b90600052602060002001549050919050565b606b5481565b61220361234b565b73ffffffffffffffffffffffffffffffffffffffff16612221611aed565b73ffffffffffffffffffffffffffffffffffffffff1614612277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226e906137e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122de90613728565b60405180910390fd5b6122f08161275e565b50565b600081836123019190613d28565b905092915050565b600081836123179190613ad7565b905092915050565b6000818361232d9190613a50565b905092915050565b600081836123439190613aa6565b905092915050565b600033905090565b600081836123619190613b31565b905092915050565b6000806000606f600086600281111561238557612384613db7565b5b600281111561239757612396613db7565b5b81526020019081526020016000206040518060e00160405290816000820154815260200160018201548152602001600282015481526020016003820160009054906101000a900460ff1615151515815260200160048201548152602001600582015481526020016006820160009054906101000a900460ff161515151581525050905060008160400151905081606001518015612438575060008260800151115b15612483576124806124718360a001516124638560800151866000015161233590919063ffffffff16565b61230990919063ffffffff16565b8261231f90919063ffffffff16565b90505b808551146124c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bd90613868565b60405180910390fd5b6000806000875167ffffffffffffffff8111156124e6576124e5613e15565b5b6040519080825280602002602001820160405280156125145781602001602082028036833780820191505090505b50905060005b8851811015612737578a600281111561253657612535613db7565b5b607060008b848151811061254d5761254c613de6565b5b6020026020010151815260200190815260200160002060000160009054906101000a900460ff16600281111561258657612585613db7565b5b146125c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bd90613748565b60405180910390fd5b612609607060008b84815181106125e0576125df613de6565b5b60200260200101518152602001908152602001600020600201548461231f90919063ffffffff16565b925061264e607060008b848151811061262557612624613de6565b5b60200260200101518152602001908152602001600020600301548561231f90919063ffffffff16565b93508560c001516126d45761269382607060008c858151811061267457612673613de6565b5b602002602001015181526020019081526020016000206001015461295d565b156126d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ca90613808565b60405180910390fd5b5b607060008a83815181106126eb576126ea613de6565b5b602002602001015181526020019081526020016000206001015482828151811061271857612717613de6565b5b602002602001018181525050808061272f90613c9f565b91505061251a565b508161274d89518561233590919063ffffffff16565b965096505050505050935093915050565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b600081600001549050919050565b6000612853306129bc565b15905090565b600060019054906101000a900460ff166128815760008054906101000a900460ff161561288a565b612889612848565b5b6128c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c0906137c8565b60405180910390fd5b60008060019054906101000a900460ff161590508015612919576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6129216129cf565b612929612a20565b61293585858585612a81565b80156129565760008060016101000a81548160ff0219169083151502179055505b5050505050565b6000808351905060005b818110156129af578385828151811061298357612982613de6565b5b6020026020010151141561299c576001925050506129b6565b80806129a790613c9f565b915050612967565b5060009150505b92915050565b600080823b905060008111915050919050565b600060019054906101000a900460ff16612a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1590613828565b60405180910390fd5b565b600060019054906101000a900460ff16612a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6690613828565b60405180910390fd5b612a7f612a7a61234b565b61275e565b565b600060019054906101000a900460ff16612aa95760008054906101000a900460ff1615612ab2565b612ab1612848565b5b612af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae8906137c8565b60405180910390fd5b60008060019054906101000a900460ff161590508015612b41576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b84606660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082606860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083606960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16606760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081606b819055508015612c8f5760008060016101000a81548160ff0219169083151502179055505b5050505050565b6000612ca9612ca48461399e565b613979565b90508083825260208201905082856020860282011115612ccc57612ccb613e49565b5b60005b85811015612cfc5781612ce28882612e0d565b845260208401935060208301925050600181019050612ccf565b5050509392505050565b6000612d19612d14846139ca565b613979565b905082815260208101848484011115612d3557612d34613e4e565b5b612d40848285613c2c565b509392505050565b600081359050612d5781614116565b92915050565b600081519050612d6c81614116565b92915050565b600082601f830112612d8757612d86613e44565b5b8135612d97848260208601612c96565b91505092915050565b600081359050612daf8161412d565b92915050565b600081519050612dc48161412d565b92915050565b600081359050612dd981614144565b92915050565b600082601f830112612df457612df3613e44565b5b8135612e04848260208601612d06565b91505092915050565b600081359050612e1c81614154565b92915050565b600081519050612e3181614154565b92915050565b600060208284031215612e4d57612e4c613e58565b5b6000612e5b84828501612d48565b91505092915050565b600060208284031215612e7a57612e79613e58565b5b6000612e8884828501612d5d565b91505092915050565b60008060008060808587031215612eab57612eaa613e58565b5b6000612eb987828801612d48565b9450506020612eca87828801612d48565b9350506040612edb87828801612d48565b9250506060612eec87828801612e0d565b91505092959194509250565b600080600060608486031215612f1157612f10613e58565b5b600084013567ffffffffffffffff811115612f2f57612f2e613e53565b5b612f3b86828701612d72565b9350506020612f4c86828701612dca565b9250506040612f5d86828701612dca565b9150509250925092565b600060208284031215612f7d57612f7c613e58565b5b6000612f8b84828501612db5565b91505092915050565b600060208284031215612faa57612fa9613e58565b5b6000612fb884828501612dca565b91505092915050565b60008060408385031215612fd857612fd7613e58565b5b6000612fe685828601612dca565b9250506020612ff785828601612e0d565b9150509250929050565b60008060008060008060c0878903121561301e5761301d613e58565b5b600061302c89828a01612dca565b965050602061303d89828a01612e0d565b955050604061304e89828a01612da0565b945050606061305f89828a01612e0d565b935050608061307089828a01612e0d565b92505060a061308189828a01612da0565b9150509295509295509295565b600080600080608085870312156130a8576130a7613e58565b5b60006130b687828801612dca565b94505060206130c787828801612e0d565b93505060406130d887828801612e0d565b925050606085013567ffffffffffffffff8111156130f9576130f8613e53565b5b61310587828801612ddf565b91505092959194509250565b60006020828403121561312757613126613e58565b5b600061313584828501612e0d565b91505092915050565b60006020828403121561315457613153613e58565b5b600061316284828501612e22565b91505092915050565b6000806040838503121561318257613181613e58565b5b600061319085828601612e0d565b92505060206131a185828601612e0d565b9150509250929050565b600080600080608085870312156131c5576131c4613e58565b5b60006131d387828801612e0d565b94505060206131e487828801612e0d565b93505060406131f587828801612e0d565b925050606085013567ffffffffffffffff81111561321657613215613e53565b5b61322287828801612ddf565b91505092959194509250565b600061323a838361351d565b60208301905092915050565b61325761325282613b77565b613cfa565b82525050565b61326681613b65565b82525050565b61327d61327882613b65565b613ce8565b82525050565b600061328e82613a0b565b6132988185613a2e565b93506132a3836139fb565b8060005b838110156132d45781516132bb888261322e565b97506132c683613a21565b9250506001810190506132a7565b5085935050505092915050565b6132ea81613b89565b82525050565b6132f981613bd2565b82525050565b61330881613be4565b82525050565b61331781613bf6565b82525050565b600061332882613a16565b6133328185613a3f565b9350613342818560208601613c3b565b61334b81613e5d565b840191505092915050565b6000613363600b83613a3f565b915061336e82613e7b565b602082019050919050565b6000613386600d83613a3f565b915061339182613ea4565b602082019050919050565b60006133a9602683613a3f565b91506133b482613ecd565b604082019050919050565b60006133cc600b83613a3f565b91506133d782613f1c565b602082019050919050565b60006133ef600783613a3f565b91506133fa82613f45565b602082019050919050565b6000613412601183613a3f565b915061341d82613f6e565b602082019050919050565b6000613435601083613a3f565b915061344082613f97565b602082019050919050565b6000613458602e83613a3f565b915061346382613fc0565b604082019050919050565b600061347b602083613a3f565b91506134868261400f565b602082019050919050565b600061349e601383613a3f565b91506134a982614038565b602082019050919050565b60006134c1602b83613a3f565b91506134cc82614061565b604082019050919050565b60006134e4600f83613a3f565b91506134ef826140b0565b602082019050919050565b6000613507601283613a3f565b9150613512826140d9565b602082019050919050565b61352681613bc8565b82525050565b61353581613bc8565b82525050565b61354c61354782613bc8565b613d1e565b82525050565b600061355e8287613246565b60148201915061356e828661326c565b60148201915061357e828561353b565b60208201915061358e828461353b565b60208201915081905095945050505050565b60006020820190506135b5600083018461325d565b92915050565b60006060820190506135d0600083018661325d565b6135dd602083018561325d565b6135ea604083018461352c565b949350505050565b6000604082019050613607600083018561325d565b81810360208301526136198184613283565b90509392505050565b6000604082019050613637600083018561325d565b613644602083018461352c565b9392505050565b600060208201905081810360008301526136658184613283565b905092915050565b600060208201905061368260008301846132f0565b92915050565b600060208201905061369d60008301846132ff565b92915050565b60006080820190506136b8600083018761330e565b6136c5602083018661352c565b6136d2604083018561352c565b6136df606083018461352c565b95945050505050565b6000602082019050818103600083015261370181613356565b9050919050565b6000602082019050818103600083015261372181613379565b9050919050565b600060208201905081810360008301526137418161339c565b9050919050565b60006020820190508181036000830152613761816133bf565b9050919050565b60006020820190508181036000830152613781816133e2565b9050919050565b600060208201905081810360008301526137a181613405565b9050919050565b600060208201905081810360008301526137c181613428565b9050919050565b600060208201905081810360008301526137e18161344b565b9050919050565b600060208201905081810360008301526138018161346e565b9050919050565b6000602082019050818103600083015261382181613491565b9050919050565b60006020820190508181036000830152613841816134b4565b9050919050565b60006020820190508181036000830152613861816134d7565b9050919050565b60006020820190508181036000830152613881816134fa565b9050919050565b600060208201905061389d600083018461352c565b92915050565b60006040820190506138b8600083018561352c565b81810360208301526138ca818461331d565b90509392505050565b60006060820190506138e8600083018661352c565b6138f5602083018561352c565b613902604083018461352c565b949350505050565b600060e08201905061391f600083018a61352c565b61392c602083018961352c565b613939604083018861352c565b61394660608301876132e1565b613953608083018661352c565b61396060a083018561352c565b61396d60c08301846132e1565b98975050505050505050565b6000613983613994565b905061398f8282613c6e565b919050565b6000604051905090565b600067ffffffffffffffff8211156139b9576139b8613e15565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156139e5576139e4613e15565b5b6139ee82613e5d565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613a5b82613bc8565b9150613a6683613bc8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a9b57613a9a613d59565b5b828201905092915050565b6000613ab182613bc8565b9150613abc83613bc8565b925082613acc57613acb613d88565b5b828204905092915050565b6000613ae282613bc8565b9150613aed83613bc8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b2657613b25613d59565b5b828202905092915050565b6000613b3c82613bc8565b9150613b4783613bc8565b925082821015613b5a57613b59613d59565b5b828203905092915050565b6000613b7082613ba8565b9050919050565b6000613b8282613ba8565b9050919050565b60008115159050919050565b6000819050613ba382614102565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613bdd82613c08565b9050919050565b6000613bef82613c08565b9050919050565b6000613c0182613b95565b9050919050565b6000613c1382613c1a565b9050919050565b6000613c2582613ba8565b9050919050565b82818337600083830152505050565b60005b83811015613c59578082015181840152602081019050613c3e565b83811115613c68576000848401525b50505050565b613c7782613e5d565b810181811067ffffffffffffffff82111715613c9657613c95613e15565b5b80604052505050565b6000613caa82613bc8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cdd57613cdc613d59565b5b600182019050919050565b6000613cf382613d0c565b9050919050565b6000613d0582613d0c565b9050919050565b6000613d1782613e6e565b9050919050565b6000819050919050565b6000613d3382613bc8565b9150613d3e83613bc8565b925082613d4e57613d4d613d88565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f746f6b656e206572726f72000000000000000000000000000000000000000000600082015250565b7f61646472657373206572726f7200000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6572726f72206c6576656c000000000000000000000000000000000000000000600082015250565b7f6e6f206361746500000000000000000000000000000000000000000000000000600082015250565b7f6c6576656c207072696365206572726f72000000000000000000000000000000600082015250565b7f6d656c74206c6576656c206572726f7200000000000000000000000000000000600082015250565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f6d75737420626520756e69717565206361746500000000000000000000000000600082015250565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b7f6e6f7420796f757220746f6b656e730000000000000000000000000000000000600082015250565b7f746f6b656e20616d6f756e74206572726f720000000000000000000000000000600082015250565b6003811061411357614112613db7565b5b50565b61411f81613b65565b811461412a57600080fd5b50565b61413681613b89565b811461414157600080fd5b50565b6003811061415157600080fd5b50565b61415d81613bc8565b811461416857600080fd5b5056fea2646970667358221220d36a10e5d8e95a913b250c2a4e31eb49a567c71d7badadb8ef0bf2c339c3875364736f6c63430008070033

Deployed ByteCode

0x608060405234801561001057600080fd5b50600436106101a85760003560e01c8063715018a6116100f9578063b7ca51e811610097578063cf756fdf11610071578063cf756fdf146104d8578063dd6fd842146104f4578063ddca3f4314610524578063f2fde38b14610542576101a8565b8063b7ca51e81461045a578063c9f09b9c14610478578063ca7c15d4146104a8576101a8565b8063971276ae116100d3578063971276ae146103d15780639c2fc62314610404578063ab0d92dd14610420578063b0bf74e31461043e576101a8565b8063715018a614610373578063866285421461037d5780638da5cb5b146103b3576101a8565b80631d7cf6c611610166578063334d491d11610140578063334d491d146103015780634d85ca261461031d5780636b57d9bd1461033957806370dca97414610355576101a8565b80631d7cf6c6146102835780631e2f2912146102b35780632018ce8b146102cf576101a8565b80621917d7146101ad57806304764089146101dd578063069f2c0d146101fb5780631249c58b1461022b57806312dcff7a1461024957806313eaabb814610265575b600080fd5b6101c760048036038101906101c29190613111565b61055e565b6040516101d49190613888565b60405180910390f35b6101e5610576565b6040516101f2919061364b565b60405180910390f35b61021560048036038101906102109190612fc1565b6105ce565b6040516102229190613888565b60405180910390f35b6102336105ff565b6040516102409190613888565b60405180910390f35b610263600480360381019061025e9190612e37565b610f0a565b005b61026d61109d565b60405161027a91906135a0565b60405180910390f35b61029d60048036038101906102989190612ef8565b6110c3565b6040516102aa9190613888565b60405180910390f35b6102cd60048036038101906102c8919061316b565b61161f565b005b6102e960048036038101906102e49190613111565b61163b565b6040516102f8939291906138d3565b60405180910390f35b61031b60048036038101906103169190612e37565b611665565b005b610337600480360381019061033291906131ab565b611795565b005b610353600480360381019061034e9190613001565b6118d0565b005b61035d6119e3565b60405161036a9190613688565b60405180910390f35b61037b611a09565b005b61039760048036038101906103929190612f94565b611a91565b6040516103aa979695949392919061390a565b60405180910390f35b6103bb611aed565b6040516103c891906135a0565b60405180910390f35b6103eb60048036038101906103e69190613111565b611b17565b6040516103fb94939291906136a3565b60405180910390f35b61041e6004803603810190610419919061308e565b611b54565b005b610428611d2c565b6040516104359190613888565b60405180910390f35b61045860048036038101906104539190612e37565b611d32565b005b610462611e62565b60405161046f919061366d565b60405180910390f35b610492600480360381019061048d9190613111565b611e88565b60405161049f9190613888565b60405180910390f35b6104c260048036038101906104bd9190612f94565b611ea5565b6040516104cf9190613888565b60405180910390f35b6104f260048036038101906104ed9190612e91565b6120d9565b005b61050e60048036038101906105099190613111565b6121cd565b60405161051b9190613888565b60405180910390f35b61052c6121f5565b6040516105399190613888565b60405180910390f35b61055c60048036038101906105579190612e37565b6121fb565b005b60716020528060005260406000206000915090505481565b6060606c8054806020026020016040519081016040528092919081815260200182805480156105c457602002820191906000526020600020905b8154815260200190600101908083116105b0575b5050505050905090565b606e60205281600052604060002081815481106105ea57600080fd5b90600052602060002001600091509150505481565b600080606e600080600281111561061957610618613db7565b5b600281111561062b5761062a613db7565b5b81526020019081526020016000206106436000611ea5565b8154811061065457610653613de6565b5b906000526020600020015490506000606f600080600281111561067a57610679613db7565b5b600281111561068c5761068b613db7565b5b81526020019081526020016000209050600081600201549050600081116106e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106df90613788565b60405180910390fd5b8160030160009054906101000a900460ff16801561070a575060008260040154115b15610755576107526107438360050154610735856004015486600001546122f390919063ffffffff16565b61230990919063ffffffff16565b8261231f90919063ffffffff16565b90505b6000606c8054905090506000610789606461077b606b548661230990919063ffffffff16565b61233590919063ffffffff16565b90506000606760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340ee7ce26040518163ffffffff1660e01b815260040160206040518083038186803b1580156107f557600080fd5b505afa158015610809573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061082d919061313e565b9050606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb606760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638b6e15e56040518163ffffffff1660e01b815260040160206040518083038186803b1580156108d557600080fd5b505afa1580156108e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061090d9190612e64565b6109336064610925868861230990919063ffffffff16565b61233590919063ffffffff16565b6040518363ffffffff1660e01b8152600401610950929190613622565b602060405180830381600087803b15801561096a57600080fd5b505af115801561097e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a29190612f67565b50606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd6109e961234b565b30876040518463ffffffff1660e01b8152600401610a09939291906135bb565b602060405180830381600087803b158015610a2357600080fd5b505af1158015610a37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5b9190612f67565b50606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166379cc679030610aae858861235390919063ffffffff16565b6040518363ffffffff1660e01b8152600401610acb929190613622565b600060405180830381600087803b158015610ae557600080fd5b505af1158015610af9573d6000803e3d6000fd5b50505050606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb606960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401610b7c929190613622565b602060405180830381600087803b158015610b9657600080fd5b505af1158015610baa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bce9190612f67565b506000606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f19610c1761234b565b896040518363ffffffff1660e01b8152600401610c35929190613622565b602060405180830381600087803b158015610c4f57600080fd5b505af1158015610c63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c87919061313e565b90506000606d6000898152602001908152602001600020600101549050604051806080016040528060006002811115610cc357610cc2613db7565b5b8152602001898152602001878152602001828152506070600084815260200190815260200160002060008201518160000160006101000a81548160ff02191690836002811115610d1657610d15613db7565b5b02179055506020820151816001015560408201518160020155606082015181600301559050506001606d60008a81526020019081526020016000206002016000828254610d639190613a50565b925050819055506001876000016000828254610d7f9190613a50565b92505081905550610dc0610daf6064610da1848a61230990919063ffffffff16565b61233590919063ffffffff16565b606a5461231f90919063ffffffff16565b606a819055506000610dfa6064610dec866064610ddd9190613b31565b8861230990919063ffffffff16565b61233590919063ffffffff16565b90506000861115610ed2576000610e3187610e2364e8d4a510008561230990919063ffffffff16565b61233590919063ffffffff16565b905060005b87811015610ecf576000606c8281548110610e5457610e53613de6565b5b90600052602060002001549050600060716000838152602001908152602001600020549050610ea381610e9564e8d4a510008761233590919063ffffffff16565b61231f90919063ffffffff16565b607160008481526020019081526020016000208190555050508080610ec790613c9f565b915050610e36565b50505b606c83908060018154018082558091505060019003906000526020600020016000909190919091505582995050505050505050505090565b610f1261234b565b73ffffffffffffffffffffffffffffffffffffffff16610f30611aed565b73ffffffffffffffffffffffffffffffffffffffff1614610f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7d906137e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fed90613708565b60405180910390fd5b80606960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16606760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600060018360028111156110da576110d9613db7565b5b6110e49190613a50565b8260028111156110f7576110f6613db7565b5b14611137576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112e906137a8565b60405180910390fd5b606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634f69b86261117d61234b565b866040518363ffffffff1660e01b815260040161119b9291906135f2565b60206040518083038186803b1580156111b357600080fd5b505afa1580156111c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111eb9190612f67565b61122a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122190613848565b60405180910390fd5b600080611238858588612369565b915091506000821415611280576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611277906136e8565b60405180910390fd5b606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b1d73026876040518263ffffffff1660e01b81526004016112db919061364b565b600060405180830381600087803b1580156112f557600080fd5b505af1158015611309573d6000803e3d6000fd5b505050508551606f600087600281111561132657611325613db7565b5b600281111561133857611337613db7565b5b815260200190815260200160002060010160008282546113589190613a50565b925050819055506000606e600086600281111561137857611377613db7565b5b600281111561138a57611389613db7565b5b81526020019081526020016000206113a186611ea5565b815481106113b2576113b1613de6565b5b906000526020600020015490506000606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f1961140761234b565b846040518363ffffffff1660e01b8152600401611425929190613622565b602060405180830381600087803b15801561143f57600080fd5b505af1158015611453573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611477919061313e565b905060006114b760646114a9606d6000878152602001908152602001600020600101548761230990919063ffffffff16565b61233590919063ffffffff16565b905060405180608001604052808860028111156114d7576114d6613db7565b5b8152602001848152602001868152602001828152506070600084815260200190815260200160002060008201518160000160006101000a81548160ff0219169083600281111561152a57611529613db7565b5b02179055506020820151816001015560408201518160020155606082015181600301559050506001606d600085815260200190815260200160002060020160008282546115779190613a50565b925050819055506001606f600089600281111561159757611596613db7565b5b60028111156115a9576115a8613db7565b5b815260200190815260200160002060000160008282546115c99190613a50565b9250508190555061160a6115f960646115eb848961230990919063ffffffff16565b61233590919063ffffffff16565b606a5461231f90919063ffffffff16565b606a8190555081955050505050509392505050565b8060716000848152602001908152602001600020819055505050565b606d6020528060005260406000206000915090508060000154908060010154908060020154905083565b61166d61234b565b73ffffffffffffffffffffffffffffffffffffffff1661168b611aed565b73ffffffffffffffffffffffffffffffffffffffff16146116e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d8906137e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611751576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174890613708565b60405180910390fd5b80606660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61179d61234b565b73ffffffffffffffffffffffffffffffffffffffff166117bb611aed565b73ffffffffffffffffffffffffffffffffffffffff1614611811576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611808906137e8565b60405180910390fd5b6000606d60008681526020019081526020016000209050838160000181905550828160010181905550606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663adc84d2e86846040518363ffffffff1660e01b81526004016118979291906138a3565b600060405180830381600087803b1580156118b157600080fd5b505af11580156118c5573d6000803e3d6000fd5b505050505050505050565b6118d861234b565b73ffffffffffffffffffffffffffffffffffffffff166118f6611aed565b73ffffffffffffffffffffffffffffffffffffffff161461194c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611943906137e8565b60405180910390fd5b6000606f600088600281111561196557611964613db7565b5b600281111561197757611976613db7565b5b81526020019081526020016000209050858160020181905550848160030160006101000a81548160ff021916908315150217905550838160040181905550828160050181905550818160060160006101000a81548160ff02191690831515021790555050505050505050565b606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611a1161234b565b73ffffffffffffffffffffffffffffffffffffffff16611a2f611aed565b73ffffffffffffffffffffffffffffffffffffffff1614611a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7c906137e8565b60405180910390fd5b611a8f600061275e565b565b606f6020528060005260406000206000915090508060000154908060010154908060020154908060030160009054906101000a900460ff16908060040154908060050154908060060160009054906101000a900460ff16905087565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60706020528060005260406000206000915090508060000160009054906101000a900460ff16908060010154908060020154908060030154905084565b611b5c61234b565b73ffffffffffffffffffffffffffffffffffffffff16611b7a611aed565b73ffffffffffffffffffffffffffffffffffffffff1614611bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc7906137e8565b60405180910390fd5b611bda6065612824565b6000611be6606561283a565b905060405180606001604052808581526020018481526020016000815250606d6000838152602001908152602001600020600082015181600001556020820151816001015560408201518160020155905050606e6000866002811115611c4f57611c4e613db7565b5b6002811115611c6157611c60613db7565b5b8152602001908152602001600020819080600181540180825580915050600190039060005260206000200160009091909190915055606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663adc84d2e82846040518363ffffffff1660e01b8152600401611cf39291906138a3565b600060405180830381600087803b158015611d0d57600080fd5b505af1158015611d21573d6000803e3d6000fd5b505050505050505050565b606a5481565b611d3a61234b565b73ffffffffffffffffffffffffffffffffffffffff16611d58611aed565b73ffffffffffffffffffffffffffffffffffffffff1614611dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da5906137e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1590613708565b60405180910390fd5b80606860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600060716000838152602001908152602001600020549050919050565b600080606e6000846002811115611ebf57611ebe613db7565b5b6002811115611ed157611ed0613db7565b5b815260200190815260200160002090506000818054905011611f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1f90613768565b60405180910390fd5b60008060005b60018480549050611f3f9190613b31565b41338342604051602001611f569493929190613552565b6040516020818303038152906040528051906020012060001c611f799190613d28565b92506001808580549050611f8d9190613b31565b41338442604051602001611fa49493929190613552565b6040516020818303038152906040528051906020012060001c611fc79190613d28565b611fd19190613a50565b9150606d6000858481548110611fea57611fe9613de6565b5b9060005260206000200154815260200190815260200160002060020154606d600086858154811061201e5761201d613de6565b5b90600052602060002001548152602001908152602001600020600001541115612045578192505b606d600085858154811061205c5761205b613de6565b5b9060005260206000200154815260200190815260200160002060020154606d60008686815481106120905761208f613de6565b5b906000526020600020015481526020019081526020016000206000015411156120b8576120cd565b80806120c390613c9f565b9150506001611f2e575b82945050505050919050565b600060019054906101000a900460ff166121015760008054906101000a900460ff161561210a565b612109612848565b5b612149576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612140906137c8565b60405180910390fd5b60008060019054906101000a900460ff161590508015612199576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6121a585858585612859565b80156121c65760008060016101000a81548160ff0219169083151502179055505b5050505050565b6000606c82815481106121e3576121e2613de6565b5b90600052602060002001549050919050565b606b5481565b61220361234b565b73ffffffffffffffffffffffffffffffffffffffff16612221611aed565b73ffffffffffffffffffffffffffffffffffffffff1614612277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226e906137e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122de90613728565b60405180910390fd5b6122f08161275e565b50565b600081836123019190613d28565b905092915050565b600081836123179190613ad7565b905092915050565b6000818361232d9190613a50565b905092915050565b600081836123439190613aa6565b905092915050565b600033905090565b600081836123619190613b31565b905092915050565b6000806000606f600086600281111561238557612384613db7565b5b600281111561239757612396613db7565b5b81526020019081526020016000206040518060e00160405290816000820154815260200160018201548152602001600282015481526020016003820160009054906101000a900460ff1615151515815260200160048201548152602001600582015481526020016006820160009054906101000a900460ff161515151581525050905060008160400151905081606001518015612438575060008260800151115b15612483576124806124718360a001516124638560800151866000015161233590919063ffffffff16565b61230990919063ffffffff16565b8261231f90919063ffffffff16565b90505b808551146124c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bd90613868565b60405180910390fd5b6000806000875167ffffffffffffffff8111156124e6576124e5613e15565b5b6040519080825280602002602001820160405280156125145781602001602082028036833780820191505090505b50905060005b8851811015612737578a600281111561253657612535613db7565b5b607060008b848151811061254d5761254c613de6565b5b6020026020010151815260200190815260200160002060000160009054906101000a900460ff16600281111561258657612585613db7565b5b146125c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bd90613748565b60405180910390fd5b612609607060008b84815181106125e0576125df613de6565b5b60200260200101518152602001908152602001600020600201548461231f90919063ffffffff16565b925061264e607060008b848151811061262557612624613de6565b5b60200260200101518152602001908152602001600020600301548561231f90919063ffffffff16565b93508560c001516126d45761269382607060008c858151811061267457612673613de6565b5b602002602001015181526020019081526020016000206001015461295d565b156126d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ca90613808565b60405180910390fd5b5b607060008a83815181106126eb576126ea613de6565b5b602002602001015181526020019081526020016000206001015482828151811061271857612717613de6565b5b602002602001018181525050808061272f90613c9f565b91505061251a565b508161274d89518561233590919063ffffffff16565b965096505050505050935093915050565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b600081600001549050919050565b6000612853306129bc565b15905090565b600060019054906101000a900460ff166128815760008054906101000a900460ff161561288a565b612889612848565b5b6128c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c0906137c8565b60405180910390fd5b60008060019054906101000a900460ff161590508015612919576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6129216129cf565b612929612a20565b61293585858585612a81565b80156129565760008060016101000a81548160ff0219169083151502179055505b5050505050565b6000808351905060005b818110156129af578385828151811061298357612982613de6565b5b6020026020010151141561299c576001925050506129b6565b80806129a790613c9f565b915050612967565b5060009150505b92915050565b600080823b905060008111915050919050565b600060019054906101000a900460ff16612a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1590613828565b60405180910390fd5b565b600060019054906101000a900460ff16612a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6690613828565b60405180910390fd5b612a7f612a7a61234b565b61275e565b565b600060019054906101000a900460ff16612aa95760008054906101000a900460ff1615612ab2565b612ab1612848565b5b612af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae8906137c8565b60405180910390fd5b60008060019054906101000a900460ff161590508015612b41576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b84606660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082606860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083606960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16606760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081606b819055508015612c8f5760008060016101000a81548160ff0219169083151502179055505b5050505050565b6000612ca9612ca48461399e565b613979565b90508083825260208201905082856020860282011115612ccc57612ccb613e49565b5b60005b85811015612cfc5781612ce28882612e0d565b845260208401935060208301925050600181019050612ccf565b5050509392505050565b6000612d19612d14846139ca565b613979565b905082815260208101848484011115612d3557612d34613e4e565b5b612d40848285613c2c565b509392505050565b600081359050612d5781614116565b92915050565b600081519050612d6c81614116565b92915050565b600082601f830112612d8757612d86613e44565b5b8135612d97848260208601612c96565b91505092915050565b600081359050612daf8161412d565b92915050565b600081519050612dc48161412d565b92915050565b600081359050612dd981614144565b92915050565b600082601f830112612df457612df3613e44565b5b8135612e04848260208601612d06565b91505092915050565b600081359050612e1c81614154565b92915050565b600081519050612e3181614154565b92915050565b600060208284031215612e4d57612e4c613e58565b5b6000612e5b84828501612d48565b91505092915050565b600060208284031215612e7a57612e79613e58565b5b6000612e8884828501612d5d565b91505092915050565b60008060008060808587031215612eab57612eaa613e58565b5b6000612eb987828801612d48565b9450506020612eca87828801612d48565b9350506040612edb87828801612d48565b9250506060612eec87828801612e0d565b91505092959194509250565b600080600060608486031215612f1157612f10613e58565b5b600084013567ffffffffffffffff811115612f2f57612f2e613e53565b5b612f3b86828701612d72565b9350506020612f4c86828701612dca565b9250506040612f5d86828701612dca565b9150509250925092565b600060208284031215612f7d57612f7c613e58565b5b6000612f8b84828501612db5565b91505092915050565b600060208284031215612faa57612fa9613e58565b5b6000612fb884828501612dca565b91505092915050565b60008060408385031215612fd857612fd7613e58565b5b6000612fe685828601612dca565b9250506020612ff785828601612e0d565b9150509250929050565b60008060008060008060c0878903121561301e5761301d613e58565b5b600061302c89828a01612dca565b965050602061303d89828a01612e0d565b955050604061304e89828a01612da0565b945050606061305f89828a01612e0d565b935050608061307089828a01612e0d565b92505060a061308189828a01612da0565b9150509295509295509295565b600080600080608085870312156130a8576130a7613e58565b5b60006130b687828801612dca565b94505060206130c787828801612e0d565b93505060406130d887828801612e0d565b925050606085013567ffffffffffffffff8111156130f9576130f8613e53565b5b61310587828801612ddf565b91505092959194509250565b60006020828403121561312757613126613e58565b5b600061313584828501612e0d565b91505092915050565b60006020828403121561315457613153613e58565b5b600061316284828501612e22565b91505092915050565b6000806040838503121561318257613181613e58565b5b600061319085828601612e0d565b92505060206131a185828601612e0d565b9150509250929050565b600080600080608085870312156131c5576131c4613e58565b5b60006131d387828801612e0d565b94505060206131e487828801612e0d565b93505060406131f587828801612e0d565b925050606085013567ffffffffffffffff81111561321657613215613e53565b5b61322287828801612ddf565b91505092959194509250565b600061323a838361351d565b60208301905092915050565b61325761325282613b77565b613cfa565b82525050565b61326681613b65565b82525050565b61327d61327882613b65565b613ce8565b82525050565b600061328e82613a0b565b6132988185613a2e565b93506132a3836139fb565b8060005b838110156132d45781516132bb888261322e565b97506132c683613a21565b9250506001810190506132a7565b5085935050505092915050565b6132ea81613b89565b82525050565b6132f981613bd2565b82525050565b61330881613be4565b82525050565b61331781613bf6565b82525050565b600061332882613a16565b6133328185613a3f565b9350613342818560208601613c3b565b61334b81613e5d565b840191505092915050565b6000613363600b83613a3f565b915061336e82613e7b565b602082019050919050565b6000613386600d83613a3f565b915061339182613ea4565b602082019050919050565b60006133a9602683613a3f565b91506133b482613ecd565b604082019050919050565b60006133cc600b83613a3f565b91506133d782613f1c565b602082019050919050565b60006133ef600783613a3f565b91506133fa82613f45565b602082019050919050565b6000613412601183613a3f565b915061341d82613f6e565b602082019050919050565b6000613435601083613a3f565b915061344082613f97565b602082019050919050565b6000613458602e83613a3f565b915061346382613fc0565b604082019050919050565b600061347b602083613a3f565b91506134868261400f565b602082019050919050565b600061349e601383613a3f565b91506134a982614038565b602082019050919050565b60006134c1602b83613a3f565b91506134cc82614061565b604082019050919050565b60006134e4600f83613a3f565b91506134ef826140b0565b602082019050919050565b6000613507601283613a3f565b9150613512826140d9565b602082019050919050565b61352681613bc8565b82525050565b61353581613bc8565b82525050565b61354c61354782613bc8565b613d1e565b82525050565b600061355e8287613246565b60148201915061356e828661326c565b60148201915061357e828561353b565b60208201915061358e828461353b565b60208201915081905095945050505050565b60006020820190506135b5600083018461325d565b92915050565b60006060820190506135d0600083018661325d565b6135dd602083018561325d565b6135ea604083018461352c565b949350505050565b6000604082019050613607600083018561325d565b81810360208301526136198184613283565b90509392505050565b6000604082019050613637600083018561325d565b613644602083018461352c565b9392505050565b600060208201905081810360008301526136658184613283565b905092915050565b600060208201905061368260008301846132f0565b92915050565b600060208201905061369d60008301846132ff565b92915050565b60006080820190506136b8600083018761330e565b6136c5602083018661352c565b6136d2604083018561352c565b6136df606083018461352c565b95945050505050565b6000602082019050818103600083015261370181613356565b9050919050565b6000602082019050818103600083015261372181613379565b9050919050565b600060208201905081810360008301526137418161339c565b9050919050565b60006020820190508181036000830152613761816133bf565b9050919050565b60006020820190508181036000830152613781816133e2565b9050919050565b600060208201905081810360008301526137a181613405565b9050919050565b600060208201905081810360008301526137c181613428565b9050919050565b600060208201905081810360008301526137e18161344b565b9050919050565b600060208201905081810360008301526138018161346e565b9050919050565b6000602082019050818103600083015261382181613491565b9050919050565b60006020820190508181036000830152613841816134b4565b9050919050565b60006020820190508181036000830152613861816134d7565b9050919050565b60006020820190508181036000830152613881816134fa565b9050919050565b600060208201905061389d600083018461352c565b92915050565b60006040820190506138b8600083018561352c565b81810360208301526138ca818461331d565b90509392505050565b60006060820190506138e8600083018661352c565b6138f5602083018561352c565b613902604083018461352c565b949350505050565b600060e08201905061391f600083018a61352c565b61392c602083018961352c565b613939604083018861352c565b61394660608301876132e1565b613953608083018661352c565b61396060a083018561352c565b61396d60c08301846132e1565b98975050505050505050565b6000613983613994565b905061398f8282613c6e565b919050565b6000604051905090565b600067ffffffffffffffff8211156139b9576139b8613e15565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156139e5576139e4613e15565b5b6139ee82613e5d565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613a5b82613bc8565b9150613a6683613bc8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a9b57613a9a613d59565b5b828201905092915050565b6000613ab182613bc8565b9150613abc83613bc8565b925082613acc57613acb613d88565b5b828204905092915050565b6000613ae282613bc8565b9150613aed83613bc8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b2657613b25613d59565b5b828202905092915050565b6000613b3c82613bc8565b9150613b4783613bc8565b925082821015613b5a57613b59613d59565b5b828203905092915050565b6000613b7082613ba8565b9050919050565b6000613b8282613ba8565b9050919050565b60008115159050919050565b6000819050613ba382614102565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613bdd82613c08565b9050919050565b6000613bef82613c08565b9050919050565b6000613c0182613b95565b9050919050565b6000613c1382613c1a565b9050919050565b6000613c2582613ba8565b9050919050565b82818337600083830152505050565b60005b83811015613c59578082015181840152602081019050613c3e565b83811115613c68576000848401525b50505050565b613c7782613e5d565b810181811067ffffffffffffffff82111715613c9657613c95613e15565b5b80604052505050565b6000613caa82613bc8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cdd57613cdc613d59565b5b600182019050919050565b6000613cf382613d0c565b9050919050565b6000613d0582613d0c565b9050919050565b6000613d1782613e6e565b9050919050565b6000819050919050565b6000613d3382613bc8565b9150613d3e83613bc8565b925082613d4e57613d4d613d88565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f746f6b656e206572726f72000000000000000000000000000000000000000000600082015250565b7f61646472657373206572726f7200000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6572726f72206c6576656c000000000000000000000000000000000000000000600082015250565b7f6e6f206361746500000000000000000000000000000000000000000000000000600082015250565b7f6c6576656c207072696365206572726f72000000000000000000000000000000600082015250565b7f6d656c74206c6576656c206572726f7200000000000000000000000000000000600082015250565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f6d75737420626520756e69717565206361746500000000000000000000000000600082015250565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b7f6e6f7420796f757220746f6b656e730000000000000000000000000000000000600082015250565b7f746f6b656e20616d6f756e74206572726f720000000000000000000000000000600082015250565b6003811061411357614112613db7565b5b50565b61411f81613b65565b811461412a57600080fd5b50565b61413681613b89565b811461414157600080fd5b50565b6003811061415157600080fd5b50565b61415d81613bc8565b811461416857600080fd5b5056fea2646970667358221220d36a10e5d8e95a913b250c2a4e31eb49a567c71d7badadb8ef0bf2c339c3875364736f6c63430008070033