Address Details
contract

0x2645fBC4c4092Ae208637B71c1Dc4901FdACA031

Contract Name
StarNFTLogic
Creator
0x7d6740–c9cfce at 0xa10d82–49be7b
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
9086202
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-21T17:06:21.344864Z

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.transferFrom(_msgSender(), address(this), _price);
        starToken.burnFrom(address(this), _price.sub(_fee));
        starToken.transferFrom(address(this), bonusAddr, _fee.mul(100 - lockRatio).div(100));
        starToken.transferFrom(address(this), Bonus.getlockAddress(), _fee.mul(lockRatio).div(100));
        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);
        uint256 TransferBonus = 0;
        for (uint256 i = 0 ; i < _tokenIds.length; i ++) {
            for (uint256 j = 0 ; j < _allTokensId.length; j ++){
                if(_allTokensId[j] == _tokenIds[i]){
                    TransferBonus += bonusToken[_tokenIds[i]];
                    uint256 NewTokenId = _allTokensId[_allTokensId.length - 1];
                    _allTokensId[_allTokensId.length - 1] = _allTokensId[j];
                    _allTokensId[j] = NewTokenId;
                    _allTokensId.pop();
                }
            }
        }
        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));
        bonusToken[_starId] = TransferBonus;
        _allTokensId.push(_starId);
        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

0x608060405234801561001057600080fd5b506143da806100206000396000f3fe608060405234801561001057600080fd5b50600436106101a85760003560e01c8063715018a6116100f9578063b7ca51e811610097578063cf756fdf11610071578063cf756fdf146104d8578063dd6fd842146104f4578063ddca3f4314610524578063f2fde38b14610542576101a8565b8063b7ca51e81461045a578063c9f09b9c14610478578063ca7c15d4146104a8576101a8565b8063971276ae116100d3578063971276ae146103d15780639c2fc62314610404578063ab0d92dd14610420578063b0bf74e31461043e576101a8565b8063715018a614610373578063866285421461037d5780638da5cb5b146103b3576101a8565b80631d7cf6c611610166578063334d491d11610140578063334d491d146103015780634d85ca261461031d5780636b57d9bd1461033957806370dca97414610355576101a8565b80631d7cf6c6146102835780631e2f2912146102b35780632018ce8b146102cf576101a8565b80621917d7146101ad57806304764089146101dd578063069f2c0d146101fb5780631249c58b1461022b57806312dcff7a1461024957806313eaabb814610265575b600080fd5b6101c760048036038101906101c2919061331b565b61055e565b6040516101d49190613a92565b60405180910390f35b6101e5610576565b6040516101f29190613855565b60405180910390f35b610215600480360381019061021091906131cb565b6105ce565b6040516102229190613a92565b60405180910390f35b6102336105ff565b6040516102409190613a92565b60405180910390f35b610263600480360381019061025e9190613041565b610f3f565b005b61026d6110d2565b60405161027a91906137aa565b60405180910390f35b61029d60048036038101906102989190613102565b6110f8565b6040516102aa9190613a92565b60405180910390f35b6102cd60048036038101906102c89190613375565b611829565b005b6102e960048036038101906102e4919061331b565b611845565b6040516102f893929190613add565b60405180910390f35b61031b60048036038101906103169190613041565b61186f565b005b610337600480360381019061033291906133b5565b61199f565b005b610353600480360381019061034e919061320b565b611ada565b005b61035d611bed565b60405161036a9190613892565b60405180910390f35b61037b611c13565b005b6103976004803603810190610392919061319e565b611c9b565b6040516103aa9796959493929190613b14565b60405180910390f35b6103bb611cf7565b6040516103c891906137aa565b60405180910390f35b6103eb60048036038101906103e6919061331b565b611d21565b6040516103fb94939291906138ad565b60405180910390f35b61041e60048036038101906104199190613298565b611d5e565b005b610428611f36565b6040516104359190613a92565b60405180910390f35b61045860048036038101906104539190613041565b611f3c565b005b61046261206c565b60405161046f9190613877565b60405180910390f35b610492600480360381019061048d919061331b565b612092565b60405161049f9190613a92565b60405180910390f35b6104c260048036038101906104bd919061319e565b6120af565b6040516104cf9190613a92565b60405180910390f35b6104f260048036038101906104ed919061309b565b6122e3565b005b61050e6004803603810190610509919061331b565b6123d7565b60405161051b9190613a92565b60405180910390f35b61052c6123ff565b6040516105399190613a92565b60405180910390f35b61055c60048036038101906105579190613041565b612405565b005b60716020528060005260406000206000915090505481565b6060606c8054806020026020016040519081016040528092919081815260200182805480156105c457602002820191906000526020600020905b8154815260200190600101908083116105b0575b5050505050905090565b606e60205281600052604060002081815481106105ea57600080fd5b90600052602060002001600091509150505481565b600080606e600080600281111561061957610618613fc1565b5b600281111561062b5761062a613fc1565b5b815260200190815260200160002061064360006120af565b815481106106545761065361401f565b5b906000526020600020015490506000606f600080600281111561067a57610679613fc1565b5b600281111561068c5761068b613fc1565b5b81526020019081526020016000209050600081600201549050600081116106e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106df90613992565b60405180910390fd5b8160030160009054906101000a900460ff16801561070a575060008260040154115b15610755576107526107438360050154610735856004015486600001546124fd90919063ffffffff16565b61251390919063ffffffff16565b8261252990919063ffffffff16565b90505b6000606c8054905090506000610789606461077b606b548661251390919063ffffffff16565b61253f90919063ffffffff16565b90506000606760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340ee7ce26040518163ffffffff1660e01b815260040160206040518083038186803b1580156107f557600080fd5b505afa158015610809573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061082d9190613348565b9050606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd610875612555565b30876040518463ffffffff1660e01b8152600401610895939291906137c5565b602060405180830381600087803b1580156108af57600080fd5b505af11580156108c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108e79190613171565b50606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166379cc67903061093a858861255d90919063ffffffff16565b6040518363ffffffff1660e01b815260040161095792919061382c565b600060405180830381600087803b15801561097157600080fd5b505af1158015610985573d6000803e3d6000fd5b50505050606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd30606960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610a1d6064610a0f876064610a009190613d3b565b8961251390919063ffffffff16565b61253f90919063ffffffff16565b6040518463ffffffff1660e01b8152600401610a3b939291906137c5565b602060405180830381600087803b158015610a5557600080fd5b505af1158015610a69573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a8d9190613171565b50606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd30606760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638b6e15e56040518163ffffffff1660e01b815260040160206040518083038186803b158015610b3557600080fd5b505afa158015610b49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b6d919061306e565b610b936064610b85878961251390919063ffffffff16565b61253f90919063ffffffff16565b6040518463ffffffff1660e01b8152600401610bb1939291906137c5565b602060405180830381600087803b158015610bcb57600080fd5b505af1158015610bdf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c039190613171565b506000606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f19610c4c612555565b896040518363ffffffff1660e01b8152600401610c6a92919061382c565b602060405180830381600087803b158015610c8457600080fd5b505af1158015610c98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cbc9190613348565b90506000606d6000898152602001908152602001600020600101549050604051806080016040528060006002811115610cf857610cf7613fc1565b5b8152602001898152602001878152602001828152506070600084815260200190815260200160002060008201518160000160006101000a81548160ff02191690836002811115610d4b57610d4a613fc1565b5b02179055506020820151816001015560408201518160020155606082015181600301559050506001606d60008a81526020019081526020016000206002016000828254610d989190613c5a565b925050819055506001876000016000828254610db49190613c5a565b92505081905550610df5610de46064610dd6848a61251390919063ffffffff16565b61253f90919063ffffffff16565b606a5461252990919063ffffffff16565b606a819055506000610e2f6064610e21866064610e129190613d3b565b8861251390919063ffffffff16565b61253f90919063ffffffff16565b90506000861115610f07576000610e6687610e5864e8d4a510008561251390919063ffffffff16565b61253f90919063ffffffff16565b905060005b87811015610f04576000606c8281548110610e8957610e8861401f565b5b90600052602060002001549050600060716000838152602001908152602001600020549050610ed881610eca64e8d4a510008761253f90919063ffffffff16565b61252990919063ffffffff16565b607160008481526020019081526020016000208190555050508080610efc90613ea9565b915050610e6b565b50505b606c83908060018154018082558091505060019003906000526020600020016000909190919091505582995050505050505050505090565b610f47612555565b73ffffffffffffffffffffffffffffffffffffffff16610f65611cf7565b73ffffffffffffffffffffffffffffffffffffffff1614610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb2906139f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561102b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102290613912565b60405180910390fd5b80606960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16606760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600183600281111561110f5761110e613fc1565b5b6111199190613c5a565b82600281111561112c5761112b613fc1565b5b1461116c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611163906139b2565b60405180910390fd5b606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634f69b8626111b2612555565b866040518363ffffffff1660e01b81526004016111d09291906137fc565b60206040518083038186803b1580156111e857600080fd5b505afa1580156111fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112209190613171565b61125f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125690613a52565b60405180910390fd5b60008061126d858588612573565b9150915060008214156112b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ac906138f2565b60405180910390fd5b606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b1d73026876040518263ffffffff1660e01b81526004016113109190613855565b600060405180830381600087803b15801561132a57600080fd5b505af115801561133e573d6000803e3d6000fd5b505050506000805b87518110156114d45760005b606c805490508110156114c0578882815181106113725761137161401f565b5b6020026020010151606c828154811061138e5761138d61401f565b5b906000526020600020015414156114ad57607160008a84815181106113b6576113b561401f565b5b6020026020010151815260200190815260200160002054836113d89190613c5a565b92506000606c6001606c805490506113f09190613d3b565b815481106114015761140061401f565b5b90600052602060002001549050606c82815481106114225761142161401f565b5b9060005260206000200154606c6001606c805490506114419190613d3b565b815481106114525761145161401f565b5b906000526020600020018190555080606c83815481106114755761147461401f565b5b9060005260206000200181905550606c80548061149557611494613ff0565b5b60019003818190600052602060002001600090559055505b80806114b890613ea9565b915050611352565b5080806114cc90613ea9565b915050611346565b508651606f60008860028111156114ee576114ed613fc1565b5b6002811115611500576114ff613fc1565b5b815260200190815260200160002060010160008282546115209190613c5a565b925050819055506000606e60008760028111156115405761153f613fc1565b5b600281111561155257611551613fc1565b5b8152602001908152602001600020611569876120af565b8154811061157a5761157961401f565b5b906000526020600020015490506000606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f196115cf612555565b846040518363ffffffff1660e01b81526004016115ed92919061382c565b602060405180830381600087803b15801561160757600080fd5b505af115801561161b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061163f9190613348565b9050600061167f6064611671606d6000878152602001908152602001600020600101548861251390919063ffffffff16565b61253f90919063ffffffff16565b9050604051806080016040528089600281111561169f5761169e613fc1565b5b8152602001848152602001878152602001828152506070600084815260200190815260200160002060008201518160000160006101000a81548160ff021916908360028111156116f2576116f1613fc1565b5b02179055506020820151816001015560408201518160020155606082015181600301559050506001606d6000858152602001908152602001600020600201600082825461173f9190613c5a565b925050819055506001606f60008a600281111561175f5761175e613fc1565b5b600281111561177157611770613fc1565b5b815260200190815260200160002060000160008282546117919190613c5a565b925050819055506117d26117c160646117b3848a61251390919063ffffffff16565b61253f90919063ffffffff16565b606a5461252990919063ffffffff16565b606a81905550836071600084815260200190815260200160002081905550606c8290806001815401808255809150506001900390600052602060002001600090919091909150558196505050505050509392505050565b8060716000848152602001908152602001600020819055505050565b606d6020528060005260406000206000915090508060000154908060010154908060020154905083565b611877612555565b73ffffffffffffffffffffffffffffffffffffffff16611895611cf7565b73ffffffffffffffffffffffffffffffffffffffff16146118eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e2906139f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561195b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195290613912565b60405180910390fd5b80606660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6119a7612555565b73ffffffffffffffffffffffffffffffffffffffff166119c5611cf7565b73ffffffffffffffffffffffffffffffffffffffff1614611a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a12906139f2565b60405180910390fd5b6000606d60008681526020019081526020016000209050838160000181905550828160010181905550606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663adc84d2e86846040518363ffffffff1660e01b8152600401611aa1929190613aad565b600060405180830381600087803b158015611abb57600080fd5b505af1158015611acf573d6000803e3d6000fd5b505050505050505050565b611ae2612555565b73ffffffffffffffffffffffffffffffffffffffff16611b00611cf7565b73ffffffffffffffffffffffffffffffffffffffff1614611b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4d906139f2565b60405180910390fd5b6000606f6000886002811115611b6f57611b6e613fc1565b5b6002811115611b8157611b80613fc1565b5b81526020019081526020016000209050858160020181905550848160030160006101000a81548160ff021916908315150217905550838160040181905550828160050181905550818160060160006101000a81548160ff02191690831515021790555050505050505050565b606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611c1b612555565b73ffffffffffffffffffffffffffffffffffffffff16611c39611cf7565b73ffffffffffffffffffffffffffffffffffffffff1614611c8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c86906139f2565b60405180910390fd5b611c996000612968565b565b606f6020528060005260406000206000915090508060000154908060010154908060020154908060030160009054906101000a900460ff16908060040154908060050154908060060160009054906101000a900460ff16905087565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60706020528060005260406000206000915090508060000160009054906101000a900460ff16908060010154908060020154908060030154905084565b611d66612555565b73ffffffffffffffffffffffffffffffffffffffff16611d84611cf7565b73ffffffffffffffffffffffffffffffffffffffff1614611dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd1906139f2565b60405180910390fd5b611de46065612a2e565b6000611df06065612a44565b905060405180606001604052808581526020018481526020016000815250606d6000838152602001908152602001600020600082015181600001556020820151816001015560408201518160020155905050606e6000866002811115611e5957611e58613fc1565b5b6002811115611e6b57611e6a613fc1565b5b8152602001908152602001600020819080600181540180825580915050600190039060005260206000200160009091909190915055606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663adc84d2e82846040518363ffffffff1660e01b8152600401611efd929190613aad565b600060405180830381600087803b158015611f1757600080fd5b505af1158015611f2b573d6000803e3d6000fd5b505050505050505050565b606a5481565b611f44612555565b73ffffffffffffffffffffffffffffffffffffffff16611f62611cf7565b73ffffffffffffffffffffffffffffffffffffffff1614611fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611faf906139f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201f90613912565b60405180910390fd5b80606860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600060716000838152602001908152602001600020549050919050565b600080606e60008460028111156120c9576120c8613fc1565b5b60028111156120db576120da613fc1565b5b815260200190815260200160002090506000818054905011612132576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212990613972565b60405180910390fd5b60008060005b600184805490506121499190613d3b565b41338342604051602001612160949392919061375c565b6040516020818303038152906040528051906020012060001c6121839190613f32565b925060018085805490506121979190613d3b565b413384426040516020016121ae949392919061375c565b6040516020818303038152906040528051906020012060001c6121d19190613f32565b6121db9190613c5a565b9150606d60008584815481106121f4576121f361401f565b5b9060005260206000200154815260200190815260200160002060020154606d60008685815481106122285761222761401f565b5b9060005260206000200154815260200190815260200160002060000154111561224f578192505b606d60008585815481106122665761226561401f565b5b9060005260206000200154815260200190815260200160002060020154606d600086868154811061229a5761229961401f565b5b906000526020600020015481526020019081526020016000206000015411156122c2576122d7565b80806122cd90613ea9565b9150506001612138575b82945050505050919050565b600060019054906101000a900460ff1661230b5760008054906101000a900460ff1615612314565b612313612a52565b5b612353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234a906139d2565b60405180910390fd5b60008060019054906101000a900460ff1615905080156123a3576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6123af85858585612a63565b80156123d05760008060016101000a81548160ff0219169083151502179055505b5050505050565b6000606c82815481106123ed576123ec61401f565b5b90600052602060002001549050919050565b606b5481565b61240d612555565b73ffffffffffffffffffffffffffffffffffffffff1661242b611cf7565b73ffffffffffffffffffffffffffffffffffffffff1614612481576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612478906139f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e890613932565b60405180910390fd5b6124fa81612968565b50565b6000818361250b9190613f32565b905092915050565b600081836125219190613ce1565b905092915050565b600081836125379190613c5a565b905092915050565b6000818361254d9190613cb0565b905092915050565b600033905090565b6000818361256b9190613d3b565b905092915050565b6000806000606f600086600281111561258f5761258e613fc1565b5b60028111156125a1576125a0613fc1565b5b81526020019081526020016000206040518060e00160405290816000820154815260200160018201548152602001600282015481526020016003820160009054906101000a900460ff1615151515815260200160048201548152602001600582015481526020016006820160009054906101000a900460ff161515151581525050905060008160400151905081606001518015612642575060008260800151115b1561268d5761268a61267b8360a0015161266d8560800151866000015161253f90919063ffffffff16565b61251390919063ffffffff16565b8261252990919063ffffffff16565b90505b808551146126d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c790613a72565b60405180910390fd5b6000806000875167ffffffffffffffff8111156126f0576126ef61404e565b5b60405190808252806020026020018201604052801561271e5781602001602082028036833780820191505090505b50905060005b8851811015612941578a60028111156127405761273f613fc1565b5b607060008b84815181106127575761275661401f565b5b6020026020010151815260200190815260200160002060000160009054906101000a900460ff1660028111156127905761278f613fc1565b5b146127d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c790613952565b60405180910390fd5b612813607060008b84815181106127ea576127e961401f565b5b60200260200101518152602001908152602001600020600201548461252990919063ffffffff16565b9250612858607060008b848151811061282f5761282e61401f565b5b60200260200101518152602001908152602001600020600301548561252990919063ffffffff16565b93508560c001516128de5761289d82607060008c858151811061287e5761287d61401f565b5b6020026020010151815260200190815260200160002060010154612b67565b156128dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d490613a12565b60405180910390fd5b5b607060008a83815181106128f5576128f461401f565b5b60200260200101518152602001908152602001600020600101548282815181106129225761292161401f565b5b602002602001018181525050808061293990613ea9565b915050612724565b508161295789518561253f90919063ffffffff16565b965096505050505050935093915050565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b600081600001549050919050565b6000612a5d30612bc6565b15905090565b600060019054906101000a900460ff16612a8b5760008054906101000a900460ff1615612a94565b612a93612a52565b5b612ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aca906139d2565b60405180910390fd5b60008060019054906101000a900460ff161590508015612b23576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b612b2b612bd9565b612b33612c2a565b612b3f85858585612c8b565b8015612b605760008060016101000a81548160ff0219169083151502179055505b5050505050565b6000808351905060005b81811015612bb95783858281518110612b8d57612b8c61401f565b5b60200260200101511415612ba657600192505050612bc0565b8080612bb190613ea9565b915050612b71565b5060009150505b92915050565b600080823b905060008111915050919050565b600060019054906101000a900460ff16612c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1f90613a32565b60405180910390fd5b565b600060019054906101000a900460ff16612c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7090613a32565b60405180910390fd5b612c89612c84612555565b612968565b565b600060019054906101000a900460ff16612cb35760008054906101000a900460ff1615612cbc565b612cbb612a52565b5b612cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf2906139d2565b60405180910390fd5b60008060019054906101000a900460ff161590508015612d4b576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b84606660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082606860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083606960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16606760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081606b819055508015612e995760008060016101000a81548160ff0219169083151502179055505b5050505050565b6000612eb3612eae84613ba8565b613b83565b90508083825260208201905082856020860282011115612ed657612ed5614082565b5b60005b85811015612f065781612eec8882613017565b845260208401935060208301925050600181019050612ed9565b5050509392505050565b6000612f23612f1e84613bd4565b613b83565b905082815260208101848484011115612f3f57612f3e614087565b5b612f4a848285613e36565b509392505050565b600081359050612f618161434f565b92915050565b600081519050612f768161434f565b92915050565b600082601f830112612f9157612f9061407d565b5b8135612fa1848260208601612ea0565b91505092915050565b600081359050612fb981614366565b92915050565b600081519050612fce81614366565b92915050565b600081359050612fe38161437d565b92915050565b600082601f830112612ffe57612ffd61407d565b5b813561300e848260208601612f10565b91505092915050565b6000813590506130268161438d565b92915050565b60008151905061303b8161438d565b92915050565b60006020828403121561305757613056614091565b5b600061306584828501612f52565b91505092915050565b60006020828403121561308457613083614091565b5b600061309284828501612f67565b91505092915050565b600080600080608085870312156130b5576130b4614091565b5b60006130c387828801612f52565b94505060206130d487828801612f52565b93505060406130e587828801612f52565b92505060606130f687828801613017565b91505092959194509250565b60008060006060848603121561311b5761311a614091565b5b600084013567ffffffffffffffff8111156131395761313861408c565b5b61314586828701612f7c565b935050602061315686828701612fd4565b925050604061316786828701612fd4565b9150509250925092565b60006020828403121561318757613186614091565b5b600061319584828501612fbf565b91505092915050565b6000602082840312156131b4576131b3614091565b5b60006131c284828501612fd4565b91505092915050565b600080604083850312156131e2576131e1614091565b5b60006131f085828601612fd4565b925050602061320185828601613017565b9150509250929050565b60008060008060008060c0878903121561322857613227614091565b5b600061323689828a01612fd4565b965050602061324789828a01613017565b955050604061325889828a01612faa565b945050606061326989828a01613017565b935050608061327a89828a01613017565b92505060a061328b89828a01612faa565b9150509295509295509295565b600080600080608085870312156132b2576132b1614091565b5b60006132c087828801612fd4565b94505060206132d187828801613017565b93505060406132e287828801613017565b925050606085013567ffffffffffffffff8111156133035761330261408c565b5b61330f87828801612fe9565b91505092959194509250565b60006020828403121561333157613330614091565b5b600061333f84828501613017565b91505092915050565b60006020828403121561335e5761335d614091565b5b600061336c8482850161302c565b91505092915050565b6000806040838503121561338c5761338b614091565b5b600061339a85828601613017565b92505060206133ab85828601613017565b9150509250929050565b600080600080608085870312156133cf576133ce614091565b5b60006133dd87828801613017565b94505060206133ee87828801613017565b93505060406133ff87828801613017565b925050606085013567ffffffffffffffff8111156134205761341f61408c565b5b61342c87828801612fe9565b91505092959194509250565b60006134448383613727565b60208301905092915050565b61346161345c82613d81565b613f04565b82525050565b61347081613d6f565b82525050565b61348761348282613d6f565b613ef2565b82525050565b600061349882613c15565b6134a28185613c38565b93506134ad83613c05565b8060005b838110156134de5781516134c58882613438565b97506134d083613c2b565b9250506001810190506134b1565b5085935050505092915050565b6134f481613d93565b82525050565b61350381613ddc565b82525050565b61351281613dee565b82525050565b61352181613e00565b82525050565b600061353282613c20565b61353c8185613c49565b935061354c818560208601613e45565b61355581614096565b840191505092915050565b600061356d600b83613c49565b9150613578826140b4565b602082019050919050565b6000613590600d83613c49565b915061359b826140dd565b602082019050919050565b60006135b3602683613c49565b91506135be82614106565b604082019050919050565b60006135d6600b83613c49565b91506135e182614155565b602082019050919050565b60006135f9600783613c49565b91506136048261417e565b602082019050919050565b600061361c601183613c49565b9150613627826141a7565b602082019050919050565b600061363f601083613c49565b915061364a826141d0565b602082019050919050565b6000613662602e83613c49565b915061366d826141f9565b604082019050919050565b6000613685602083613c49565b915061369082614248565b602082019050919050565b60006136a8601383613c49565b91506136b382614271565b602082019050919050565b60006136cb602b83613c49565b91506136d68261429a565b604082019050919050565b60006136ee600f83613c49565b91506136f9826142e9565b602082019050919050565b6000613711601283613c49565b915061371c82614312565b602082019050919050565b61373081613dd2565b82525050565b61373f81613dd2565b82525050565b61375661375182613dd2565b613f28565b82525050565b60006137688287613450565b6014820191506137788286613476565b6014820191506137888285613745565b6020820191506137988284613745565b60208201915081905095945050505050565b60006020820190506137bf6000830184613467565b92915050565b60006060820190506137da6000830186613467565b6137e76020830185613467565b6137f46040830184613736565b949350505050565b60006040820190506138116000830185613467565b8181036020830152613823818461348d565b90509392505050565b60006040820190506138416000830185613467565b61384e6020830184613736565b9392505050565b6000602082019050818103600083015261386f818461348d565b905092915050565b600060208201905061388c60008301846134fa565b92915050565b60006020820190506138a76000830184613509565b92915050565b60006080820190506138c26000830187613518565b6138cf6020830186613736565b6138dc6040830185613736565b6138e96060830184613736565b95945050505050565b6000602082019050818103600083015261390b81613560565b9050919050565b6000602082019050818103600083015261392b81613583565b9050919050565b6000602082019050818103600083015261394b816135a6565b9050919050565b6000602082019050818103600083015261396b816135c9565b9050919050565b6000602082019050818103600083015261398b816135ec565b9050919050565b600060208201905081810360008301526139ab8161360f565b9050919050565b600060208201905081810360008301526139cb81613632565b9050919050565b600060208201905081810360008301526139eb81613655565b9050919050565b60006020820190508181036000830152613a0b81613678565b9050919050565b60006020820190508181036000830152613a2b8161369b565b9050919050565b60006020820190508181036000830152613a4b816136be565b9050919050565b60006020820190508181036000830152613a6b816136e1565b9050919050565b60006020820190508181036000830152613a8b81613704565b9050919050565b6000602082019050613aa76000830184613736565b92915050565b6000604082019050613ac26000830185613736565b8181036020830152613ad48184613527565b90509392505050565b6000606082019050613af26000830186613736565b613aff6020830185613736565b613b0c6040830184613736565b949350505050565b600060e082019050613b29600083018a613736565b613b366020830189613736565b613b436040830188613736565b613b5060608301876134eb565b613b5d6080830186613736565b613b6a60a0830185613736565b613b7760c08301846134eb565b98975050505050505050565b6000613b8d613b9e565b9050613b998282613e78565b919050565b6000604051905090565b600067ffffffffffffffff821115613bc357613bc261404e565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613bef57613bee61404e565b5b613bf882614096565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613c6582613dd2565b9150613c7083613dd2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ca557613ca4613f63565b5b828201905092915050565b6000613cbb82613dd2565b9150613cc683613dd2565b925082613cd657613cd5613f92565b5b828204905092915050565b6000613cec82613dd2565b9150613cf783613dd2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d3057613d2f613f63565b5b828202905092915050565b6000613d4682613dd2565b9150613d5183613dd2565b925082821015613d6457613d63613f63565b5b828203905092915050565b6000613d7a82613db2565b9050919050565b6000613d8c82613db2565b9050919050565b60008115159050919050565b6000819050613dad8261433b565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613de782613e12565b9050919050565b6000613df982613e12565b9050919050565b6000613e0b82613d9f565b9050919050565b6000613e1d82613e24565b9050919050565b6000613e2f82613db2565b9050919050565b82818337600083830152505050565b60005b83811015613e63578082015181840152602081019050613e48565b83811115613e72576000848401525b50505050565b613e8182614096565b810181811067ffffffffffffffff82111715613ea057613e9f61404e565b5b80604052505050565b6000613eb482613dd2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ee757613ee6613f63565b5b600182019050919050565b6000613efd82613f16565b9050919050565b6000613f0f82613f16565b9050919050565b6000613f21826140a7565b9050919050565b6000819050919050565b6000613f3d82613dd2565b9150613f4883613dd2565b925082613f5857613f57613f92565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f746f6b656e206572726f72000000000000000000000000000000000000000000600082015250565b7f61646472657373206572726f7200000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6572726f72206c6576656c000000000000000000000000000000000000000000600082015250565b7f6e6f206361746500000000000000000000000000000000000000000000000000600082015250565b7f6c6576656c207072696365206572726f72000000000000000000000000000000600082015250565b7f6d656c74206c6576656c206572726f7200000000000000000000000000000000600082015250565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f6d75737420626520756e69717565206361746500000000000000000000000000600082015250565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b7f6e6f7420796f757220746f6b656e730000000000000000000000000000000000600082015250565b7f746f6b656e20616d6f756e74206572726f720000000000000000000000000000600082015250565b6003811061434c5761434b613fc1565b5b50565b61435881613d6f565b811461436357600080fd5b50565b61436f81613d93565b811461437a57600080fd5b50565b6003811061438a57600080fd5b50565b61439681613dd2565b81146143a157600080fd5b5056fea264697066735822122020668ada844639e5ca51f1b7916e94d47ad6b86ff02fa05f7024775b1ce64d2064736f6c63430008070033

Deployed ByteCode

0x608060405234801561001057600080fd5b50600436106101a85760003560e01c8063715018a6116100f9578063b7ca51e811610097578063cf756fdf11610071578063cf756fdf146104d8578063dd6fd842146104f4578063ddca3f4314610524578063f2fde38b14610542576101a8565b8063b7ca51e81461045a578063c9f09b9c14610478578063ca7c15d4146104a8576101a8565b8063971276ae116100d3578063971276ae146103d15780639c2fc62314610404578063ab0d92dd14610420578063b0bf74e31461043e576101a8565b8063715018a614610373578063866285421461037d5780638da5cb5b146103b3576101a8565b80631d7cf6c611610166578063334d491d11610140578063334d491d146103015780634d85ca261461031d5780636b57d9bd1461033957806370dca97414610355576101a8565b80631d7cf6c6146102835780631e2f2912146102b35780632018ce8b146102cf576101a8565b80621917d7146101ad57806304764089146101dd578063069f2c0d146101fb5780631249c58b1461022b57806312dcff7a1461024957806313eaabb814610265575b600080fd5b6101c760048036038101906101c2919061331b565b61055e565b6040516101d49190613a92565b60405180910390f35b6101e5610576565b6040516101f29190613855565b60405180910390f35b610215600480360381019061021091906131cb565b6105ce565b6040516102229190613a92565b60405180910390f35b6102336105ff565b6040516102409190613a92565b60405180910390f35b610263600480360381019061025e9190613041565b610f3f565b005b61026d6110d2565b60405161027a91906137aa565b60405180910390f35b61029d60048036038101906102989190613102565b6110f8565b6040516102aa9190613a92565b60405180910390f35b6102cd60048036038101906102c89190613375565b611829565b005b6102e960048036038101906102e4919061331b565b611845565b6040516102f893929190613add565b60405180910390f35b61031b60048036038101906103169190613041565b61186f565b005b610337600480360381019061033291906133b5565b61199f565b005b610353600480360381019061034e919061320b565b611ada565b005b61035d611bed565b60405161036a9190613892565b60405180910390f35b61037b611c13565b005b6103976004803603810190610392919061319e565b611c9b565b6040516103aa9796959493929190613b14565b60405180910390f35b6103bb611cf7565b6040516103c891906137aa565b60405180910390f35b6103eb60048036038101906103e6919061331b565b611d21565b6040516103fb94939291906138ad565b60405180910390f35b61041e60048036038101906104199190613298565b611d5e565b005b610428611f36565b6040516104359190613a92565b60405180910390f35b61045860048036038101906104539190613041565b611f3c565b005b61046261206c565b60405161046f9190613877565b60405180910390f35b610492600480360381019061048d919061331b565b612092565b60405161049f9190613a92565b60405180910390f35b6104c260048036038101906104bd919061319e565b6120af565b6040516104cf9190613a92565b60405180910390f35b6104f260048036038101906104ed919061309b565b6122e3565b005b61050e6004803603810190610509919061331b565b6123d7565b60405161051b9190613a92565b60405180910390f35b61052c6123ff565b6040516105399190613a92565b60405180910390f35b61055c60048036038101906105579190613041565b612405565b005b60716020528060005260406000206000915090505481565b6060606c8054806020026020016040519081016040528092919081815260200182805480156105c457602002820191906000526020600020905b8154815260200190600101908083116105b0575b5050505050905090565b606e60205281600052604060002081815481106105ea57600080fd5b90600052602060002001600091509150505481565b600080606e600080600281111561061957610618613fc1565b5b600281111561062b5761062a613fc1565b5b815260200190815260200160002061064360006120af565b815481106106545761065361401f565b5b906000526020600020015490506000606f600080600281111561067a57610679613fc1565b5b600281111561068c5761068b613fc1565b5b81526020019081526020016000209050600081600201549050600081116106e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106df90613992565b60405180910390fd5b8160030160009054906101000a900460ff16801561070a575060008260040154115b15610755576107526107438360050154610735856004015486600001546124fd90919063ffffffff16565b61251390919063ffffffff16565b8261252990919063ffffffff16565b90505b6000606c8054905090506000610789606461077b606b548661251390919063ffffffff16565b61253f90919063ffffffff16565b90506000606760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340ee7ce26040518163ffffffff1660e01b815260040160206040518083038186803b1580156107f557600080fd5b505afa158015610809573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061082d9190613348565b9050606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd610875612555565b30876040518463ffffffff1660e01b8152600401610895939291906137c5565b602060405180830381600087803b1580156108af57600080fd5b505af11580156108c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108e79190613171565b50606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166379cc67903061093a858861255d90919063ffffffff16565b6040518363ffffffff1660e01b815260040161095792919061382c565b600060405180830381600087803b15801561097157600080fd5b505af1158015610985573d6000803e3d6000fd5b50505050606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd30606960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610a1d6064610a0f876064610a009190613d3b565b8961251390919063ffffffff16565b61253f90919063ffffffff16565b6040518463ffffffff1660e01b8152600401610a3b939291906137c5565b602060405180830381600087803b158015610a5557600080fd5b505af1158015610a69573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a8d9190613171565b50606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd30606760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638b6e15e56040518163ffffffff1660e01b815260040160206040518083038186803b158015610b3557600080fd5b505afa158015610b49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b6d919061306e565b610b936064610b85878961251390919063ffffffff16565b61253f90919063ffffffff16565b6040518463ffffffff1660e01b8152600401610bb1939291906137c5565b602060405180830381600087803b158015610bcb57600080fd5b505af1158015610bdf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c039190613171565b506000606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f19610c4c612555565b896040518363ffffffff1660e01b8152600401610c6a92919061382c565b602060405180830381600087803b158015610c8457600080fd5b505af1158015610c98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cbc9190613348565b90506000606d6000898152602001908152602001600020600101549050604051806080016040528060006002811115610cf857610cf7613fc1565b5b8152602001898152602001878152602001828152506070600084815260200190815260200160002060008201518160000160006101000a81548160ff02191690836002811115610d4b57610d4a613fc1565b5b02179055506020820151816001015560408201518160020155606082015181600301559050506001606d60008a81526020019081526020016000206002016000828254610d989190613c5a565b925050819055506001876000016000828254610db49190613c5a565b92505081905550610df5610de46064610dd6848a61251390919063ffffffff16565b61253f90919063ffffffff16565b606a5461252990919063ffffffff16565b606a819055506000610e2f6064610e21866064610e129190613d3b565b8861251390919063ffffffff16565b61253f90919063ffffffff16565b90506000861115610f07576000610e6687610e5864e8d4a510008561251390919063ffffffff16565b61253f90919063ffffffff16565b905060005b87811015610f04576000606c8281548110610e8957610e8861401f565b5b90600052602060002001549050600060716000838152602001908152602001600020549050610ed881610eca64e8d4a510008761253f90919063ffffffff16565b61252990919063ffffffff16565b607160008481526020019081526020016000208190555050508080610efc90613ea9565b915050610e6b565b50505b606c83908060018154018082558091505060019003906000526020600020016000909190919091505582995050505050505050505090565b610f47612555565b73ffffffffffffffffffffffffffffffffffffffff16610f65611cf7565b73ffffffffffffffffffffffffffffffffffffffff1614610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb2906139f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561102b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102290613912565b60405180910390fd5b80606960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16606760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600183600281111561110f5761110e613fc1565b5b6111199190613c5a565b82600281111561112c5761112b613fc1565b5b1461116c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611163906139b2565b60405180910390fd5b606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634f69b8626111b2612555565b866040518363ffffffff1660e01b81526004016111d09291906137fc565b60206040518083038186803b1580156111e857600080fd5b505afa1580156111fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112209190613171565b61125f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125690613a52565b60405180910390fd5b60008061126d858588612573565b9150915060008214156112b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ac906138f2565b60405180910390fd5b606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b1d73026876040518263ffffffff1660e01b81526004016113109190613855565b600060405180830381600087803b15801561132a57600080fd5b505af115801561133e573d6000803e3d6000fd5b505050506000805b87518110156114d45760005b606c805490508110156114c0578882815181106113725761137161401f565b5b6020026020010151606c828154811061138e5761138d61401f565b5b906000526020600020015414156114ad57607160008a84815181106113b6576113b561401f565b5b6020026020010151815260200190815260200160002054836113d89190613c5a565b92506000606c6001606c805490506113f09190613d3b565b815481106114015761140061401f565b5b90600052602060002001549050606c82815481106114225761142161401f565b5b9060005260206000200154606c6001606c805490506114419190613d3b565b815481106114525761145161401f565b5b906000526020600020018190555080606c83815481106114755761147461401f565b5b9060005260206000200181905550606c80548061149557611494613ff0565b5b60019003818190600052602060002001600090559055505b80806114b890613ea9565b915050611352565b5080806114cc90613ea9565b915050611346565b508651606f60008860028111156114ee576114ed613fc1565b5b6002811115611500576114ff613fc1565b5b815260200190815260200160002060010160008282546115209190613c5a565b925050819055506000606e60008760028111156115405761153f613fc1565b5b600281111561155257611551613fc1565b5b8152602001908152602001600020611569876120af565b8154811061157a5761157961401f565b5b906000526020600020015490506000606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f196115cf612555565b846040518363ffffffff1660e01b81526004016115ed92919061382c565b602060405180830381600087803b15801561160757600080fd5b505af115801561161b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061163f9190613348565b9050600061167f6064611671606d6000878152602001908152602001600020600101548861251390919063ffffffff16565b61253f90919063ffffffff16565b9050604051806080016040528089600281111561169f5761169e613fc1565b5b8152602001848152602001878152602001828152506070600084815260200190815260200160002060008201518160000160006101000a81548160ff021916908360028111156116f2576116f1613fc1565b5b02179055506020820151816001015560408201518160020155606082015181600301559050506001606d6000858152602001908152602001600020600201600082825461173f9190613c5a565b925050819055506001606f60008a600281111561175f5761175e613fc1565b5b600281111561177157611770613fc1565b5b815260200190815260200160002060000160008282546117919190613c5a565b925050819055506117d26117c160646117b3848a61251390919063ffffffff16565b61253f90919063ffffffff16565b606a5461252990919063ffffffff16565b606a81905550836071600084815260200190815260200160002081905550606c8290806001815401808255809150506001900390600052602060002001600090919091909150558196505050505050509392505050565b8060716000848152602001908152602001600020819055505050565b606d6020528060005260406000206000915090508060000154908060010154908060020154905083565b611877612555565b73ffffffffffffffffffffffffffffffffffffffff16611895611cf7565b73ffffffffffffffffffffffffffffffffffffffff16146118eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e2906139f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561195b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195290613912565b60405180910390fd5b80606660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6119a7612555565b73ffffffffffffffffffffffffffffffffffffffff166119c5611cf7565b73ffffffffffffffffffffffffffffffffffffffff1614611a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a12906139f2565b60405180910390fd5b6000606d60008681526020019081526020016000209050838160000181905550828160010181905550606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663adc84d2e86846040518363ffffffff1660e01b8152600401611aa1929190613aad565b600060405180830381600087803b158015611abb57600080fd5b505af1158015611acf573d6000803e3d6000fd5b505050505050505050565b611ae2612555565b73ffffffffffffffffffffffffffffffffffffffff16611b00611cf7565b73ffffffffffffffffffffffffffffffffffffffff1614611b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4d906139f2565b60405180910390fd5b6000606f6000886002811115611b6f57611b6e613fc1565b5b6002811115611b8157611b80613fc1565b5b81526020019081526020016000209050858160020181905550848160030160006101000a81548160ff021916908315150217905550838160040181905550828160050181905550818160060160006101000a81548160ff02191690831515021790555050505050505050565b606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611c1b612555565b73ffffffffffffffffffffffffffffffffffffffff16611c39611cf7565b73ffffffffffffffffffffffffffffffffffffffff1614611c8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c86906139f2565b60405180910390fd5b611c996000612968565b565b606f6020528060005260406000206000915090508060000154908060010154908060020154908060030160009054906101000a900460ff16908060040154908060050154908060060160009054906101000a900460ff16905087565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60706020528060005260406000206000915090508060000160009054906101000a900460ff16908060010154908060020154908060030154905084565b611d66612555565b73ffffffffffffffffffffffffffffffffffffffff16611d84611cf7565b73ffffffffffffffffffffffffffffffffffffffff1614611dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd1906139f2565b60405180910390fd5b611de46065612a2e565b6000611df06065612a44565b905060405180606001604052808581526020018481526020016000815250606d6000838152602001908152602001600020600082015181600001556020820151816001015560408201518160020155905050606e6000866002811115611e5957611e58613fc1565b5b6002811115611e6b57611e6a613fc1565b5b8152602001908152602001600020819080600181540180825580915050600190039060005260206000200160009091909190915055606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663adc84d2e82846040518363ffffffff1660e01b8152600401611efd929190613aad565b600060405180830381600087803b158015611f1757600080fd5b505af1158015611f2b573d6000803e3d6000fd5b505050505050505050565b606a5481565b611f44612555565b73ffffffffffffffffffffffffffffffffffffffff16611f62611cf7565b73ffffffffffffffffffffffffffffffffffffffff1614611fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611faf906139f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201f90613912565b60405180910390fd5b80606860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600060716000838152602001908152602001600020549050919050565b600080606e60008460028111156120c9576120c8613fc1565b5b60028111156120db576120da613fc1565b5b815260200190815260200160002090506000818054905011612132576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212990613972565b60405180910390fd5b60008060005b600184805490506121499190613d3b565b41338342604051602001612160949392919061375c565b6040516020818303038152906040528051906020012060001c6121839190613f32565b925060018085805490506121979190613d3b565b413384426040516020016121ae949392919061375c565b6040516020818303038152906040528051906020012060001c6121d19190613f32565b6121db9190613c5a565b9150606d60008584815481106121f4576121f361401f565b5b9060005260206000200154815260200190815260200160002060020154606d60008685815481106122285761222761401f565b5b9060005260206000200154815260200190815260200160002060000154111561224f578192505b606d60008585815481106122665761226561401f565b5b9060005260206000200154815260200190815260200160002060020154606d600086868154811061229a5761229961401f565b5b906000526020600020015481526020019081526020016000206000015411156122c2576122d7565b80806122cd90613ea9565b9150506001612138575b82945050505050919050565b600060019054906101000a900460ff1661230b5760008054906101000a900460ff1615612314565b612313612a52565b5b612353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234a906139d2565b60405180910390fd5b60008060019054906101000a900460ff1615905080156123a3576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6123af85858585612a63565b80156123d05760008060016101000a81548160ff0219169083151502179055505b5050505050565b6000606c82815481106123ed576123ec61401f565b5b90600052602060002001549050919050565b606b5481565b61240d612555565b73ffffffffffffffffffffffffffffffffffffffff1661242b611cf7565b73ffffffffffffffffffffffffffffffffffffffff1614612481576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612478906139f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e890613932565b60405180910390fd5b6124fa81612968565b50565b6000818361250b9190613f32565b905092915050565b600081836125219190613ce1565b905092915050565b600081836125379190613c5a565b905092915050565b6000818361254d9190613cb0565b905092915050565b600033905090565b6000818361256b9190613d3b565b905092915050565b6000806000606f600086600281111561258f5761258e613fc1565b5b60028111156125a1576125a0613fc1565b5b81526020019081526020016000206040518060e00160405290816000820154815260200160018201548152602001600282015481526020016003820160009054906101000a900460ff1615151515815260200160048201548152602001600582015481526020016006820160009054906101000a900460ff161515151581525050905060008160400151905081606001518015612642575060008260800151115b1561268d5761268a61267b8360a0015161266d8560800151866000015161253f90919063ffffffff16565b61251390919063ffffffff16565b8261252990919063ffffffff16565b90505b808551146126d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c790613a72565b60405180910390fd5b6000806000875167ffffffffffffffff8111156126f0576126ef61404e565b5b60405190808252806020026020018201604052801561271e5781602001602082028036833780820191505090505b50905060005b8851811015612941578a60028111156127405761273f613fc1565b5b607060008b84815181106127575761275661401f565b5b6020026020010151815260200190815260200160002060000160009054906101000a900460ff1660028111156127905761278f613fc1565b5b146127d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c790613952565b60405180910390fd5b612813607060008b84815181106127ea576127e961401f565b5b60200260200101518152602001908152602001600020600201548461252990919063ffffffff16565b9250612858607060008b848151811061282f5761282e61401f565b5b60200260200101518152602001908152602001600020600301548561252990919063ffffffff16565b93508560c001516128de5761289d82607060008c858151811061287e5761287d61401f565b5b6020026020010151815260200190815260200160002060010154612b67565b156128dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d490613a12565b60405180910390fd5b5b607060008a83815181106128f5576128f461401f565b5b60200260200101518152602001908152602001600020600101548282815181106129225761292161401f565b5b602002602001018181525050808061293990613ea9565b915050612724565b508161295789518561253f90919063ffffffff16565b965096505050505050935093915050565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b600081600001549050919050565b6000612a5d30612bc6565b15905090565b600060019054906101000a900460ff16612a8b5760008054906101000a900460ff1615612a94565b612a93612a52565b5b612ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aca906139d2565b60405180910390fd5b60008060019054906101000a900460ff161590508015612b23576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b612b2b612bd9565b612b33612c2a565b612b3f85858585612c8b565b8015612b605760008060016101000a81548160ff0219169083151502179055505b5050505050565b6000808351905060005b81811015612bb95783858281518110612b8d57612b8c61401f565b5b60200260200101511415612ba657600192505050612bc0565b8080612bb190613ea9565b915050612b71565b5060009150505b92915050565b600080823b905060008111915050919050565b600060019054906101000a900460ff16612c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1f90613a32565b60405180910390fd5b565b600060019054906101000a900460ff16612c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7090613a32565b60405180910390fd5b612c89612c84612555565b612968565b565b600060019054906101000a900460ff16612cb35760008054906101000a900460ff1615612cbc565b612cbb612a52565b5b612cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf2906139d2565b60405180910390fd5b60008060019054906101000a900460ff161590508015612d4b576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b84606660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082606860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083606960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16606760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081606b819055508015612e995760008060016101000a81548160ff0219169083151502179055505b5050505050565b6000612eb3612eae84613ba8565b613b83565b90508083825260208201905082856020860282011115612ed657612ed5614082565b5b60005b85811015612f065781612eec8882613017565b845260208401935060208301925050600181019050612ed9565b5050509392505050565b6000612f23612f1e84613bd4565b613b83565b905082815260208101848484011115612f3f57612f3e614087565b5b612f4a848285613e36565b509392505050565b600081359050612f618161434f565b92915050565b600081519050612f768161434f565b92915050565b600082601f830112612f9157612f9061407d565b5b8135612fa1848260208601612ea0565b91505092915050565b600081359050612fb981614366565b92915050565b600081519050612fce81614366565b92915050565b600081359050612fe38161437d565b92915050565b600082601f830112612ffe57612ffd61407d565b5b813561300e848260208601612f10565b91505092915050565b6000813590506130268161438d565b92915050565b60008151905061303b8161438d565b92915050565b60006020828403121561305757613056614091565b5b600061306584828501612f52565b91505092915050565b60006020828403121561308457613083614091565b5b600061309284828501612f67565b91505092915050565b600080600080608085870312156130b5576130b4614091565b5b60006130c387828801612f52565b94505060206130d487828801612f52565b93505060406130e587828801612f52565b92505060606130f687828801613017565b91505092959194509250565b60008060006060848603121561311b5761311a614091565b5b600084013567ffffffffffffffff8111156131395761313861408c565b5b61314586828701612f7c565b935050602061315686828701612fd4565b925050604061316786828701612fd4565b9150509250925092565b60006020828403121561318757613186614091565b5b600061319584828501612fbf565b91505092915050565b6000602082840312156131b4576131b3614091565b5b60006131c284828501612fd4565b91505092915050565b600080604083850312156131e2576131e1614091565b5b60006131f085828601612fd4565b925050602061320185828601613017565b9150509250929050565b60008060008060008060c0878903121561322857613227614091565b5b600061323689828a01612fd4565b965050602061324789828a01613017565b955050604061325889828a01612faa565b945050606061326989828a01613017565b935050608061327a89828a01613017565b92505060a061328b89828a01612faa565b9150509295509295509295565b600080600080608085870312156132b2576132b1614091565b5b60006132c087828801612fd4565b94505060206132d187828801613017565b93505060406132e287828801613017565b925050606085013567ffffffffffffffff8111156133035761330261408c565b5b61330f87828801612fe9565b91505092959194509250565b60006020828403121561333157613330614091565b5b600061333f84828501613017565b91505092915050565b60006020828403121561335e5761335d614091565b5b600061336c8482850161302c565b91505092915050565b6000806040838503121561338c5761338b614091565b5b600061339a85828601613017565b92505060206133ab85828601613017565b9150509250929050565b600080600080608085870312156133cf576133ce614091565b5b60006133dd87828801613017565b94505060206133ee87828801613017565b93505060406133ff87828801613017565b925050606085013567ffffffffffffffff8111156134205761341f61408c565b5b61342c87828801612fe9565b91505092959194509250565b60006134448383613727565b60208301905092915050565b61346161345c82613d81565b613f04565b82525050565b61347081613d6f565b82525050565b61348761348282613d6f565b613ef2565b82525050565b600061349882613c15565b6134a28185613c38565b93506134ad83613c05565b8060005b838110156134de5781516134c58882613438565b97506134d083613c2b565b9250506001810190506134b1565b5085935050505092915050565b6134f481613d93565b82525050565b61350381613ddc565b82525050565b61351281613dee565b82525050565b61352181613e00565b82525050565b600061353282613c20565b61353c8185613c49565b935061354c818560208601613e45565b61355581614096565b840191505092915050565b600061356d600b83613c49565b9150613578826140b4565b602082019050919050565b6000613590600d83613c49565b915061359b826140dd565b602082019050919050565b60006135b3602683613c49565b91506135be82614106565b604082019050919050565b60006135d6600b83613c49565b91506135e182614155565b602082019050919050565b60006135f9600783613c49565b91506136048261417e565b602082019050919050565b600061361c601183613c49565b9150613627826141a7565b602082019050919050565b600061363f601083613c49565b915061364a826141d0565b602082019050919050565b6000613662602e83613c49565b915061366d826141f9565b604082019050919050565b6000613685602083613c49565b915061369082614248565b602082019050919050565b60006136a8601383613c49565b91506136b382614271565b602082019050919050565b60006136cb602b83613c49565b91506136d68261429a565b604082019050919050565b60006136ee600f83613c49565b91506136f9826142e9565b602082019050919050565b6000613711601283613c49565b915061371c82614312565b602082019050919050565b61373081613dd2565b82525050565b61373f81613dd2565b82525050565b61375661375182613dd2565b613f28565b82525050565b60006137688287613450565b6014820191506137788286613476565b6014820191506137888285613745565b6020820191506137988284613745565b60208201915081905095945050505050565b60006020820190506137bf6000830184613467565b92915050565b60006060820190506137da6000830186613467565b6137e76020830185613467565b6137f46040830184613736565b949350505050565b60006040820190506138116000830185613467565b8181036020830152613823818461348d565b90509392505050565b60006040820190506138416000830185613467565b61384e6020830184613736565b9392505050565b6000602082019050818103600083015261386f818461348d565b905092915050565b600060208201905061388c60008301846134fa565b92915050565b60006020820190506138a76000830184613509565b92915050565b60006080820190506138c26000830187613518565b6138cf6020830186613736565b6138dc6040830185613736565b6138e96060830184613736565b95945050505050565b6000602082019050818103600083015261390b81613560565b9050919050565b6000602082019050818103600083015261392b81613583565b9050919050565b6000602082019050818103600083015261394b816135a6565b9050919050565b6000602082019050818103600083015261396b816135c9565b9050919050565b6000602082019050818103600083015261398b816135ec565b9050919050565b600060208201905081810360008301526139ab8161360f565b9050919050565b600060208201905081810360008301526139cb81613632565b9050919050565b600060208201905081810360008301526139eb81613655565b9050919050565b60006020820190508181036000830152613a0b81613678565b9050919050565b60006020820190508181036000830152613a2b8161369b565b9050919050565b60006020820190508181036000830152613a4b816136be565b9050919050565b60006020820190508181036000830152613a6b816136e1565b9050919050565b60006020820190508181036000830152613a8b81613704565b9050919050565b6000602082019050613aa76000830184613736565b92915050565b6000604082019050613ac26000830185613736565b8181036020830152613ad48184613527565b90509392505050565b6000606082019050613af26000830186613736565b613aff6020830185613736565b613b0c6040830184613736565b949350505050565b600060e082019050613b29600083018a613736565b613b366020830189613736565b613b436040830188613736565b613b5060608301876134eb565b613b5d6080830186613736565b613b6a60a0830185613736565b613b7760c08301846134eb565b98975050505050505050565b6000613b8d613b9e565b9050613b998282613e78565b919050565b6000604051905090565b600067ffffffffffffffff821115613bc357613bc261404e565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613bef57613bee61404e565b5b613bf882614096565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613c6582613dd2565b9150613c7083613dd2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ca557613ca4613f63565b5b828201905092915050565b6000613cbb82613dd2565b9150613cc683613dd2565b925082613cd657613cd5613f92565b5b828204905092915050565b6000613cec82613dd2565b9150613cf783613dd2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d3057613d2f613f63565b5b828202905092915050565b6000613d4682613dd2565b9150613d5183613dd2565b925082821015613d6457613d63613f63565b5b828203905092915050565b6000613d7a82613db2565b9050919050565b6000613d8c82613db2565b9050919050565b60008115159050919050565b6000819050613dad8261433b565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613de782613e12565b9050919050565b6000613df982613e12565b9050919050565b6000613e0b82613d9f565b9050919050565b6000613e1d82613e24565b9050919050565b6000613e2f82613db2565b9050919050565b82818337600083830152505050565b60005b83811015613e63578082015181840152602081019050613e48565b83811115613e72576000848401525b50505050565b613e8182614096565b810181811067ffffffffffffffff82111715613ea057613e9f61404e565b5b80604052505050565b6000613eb482613dd2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ee757613ee6613f63565b5b600182019050919050565b6000613efd82613f16565b9050919050565b6000613f0f82613f16565b9050919050565b6000613f21826140a7565b9050919050565b6000819050919050565b6000613f3d82613dd2565b9150613f4883613dd2565b925082613f5857613f57613f92565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f746f6b656e206572726f72000000000000000000000000000000000000000000600082015250565b7f61646472657373206572726f7200000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6572726f72206c6576656c000000000000000000000000000000000000000000600082015250565b7f6e6f206361746500000000000000000000000000000000000000000000000000600082015250565b7f6c6576656c207072696365206572726f72000000000000000000000000000000600082015250565b7f6d656c74206c6576656c206572726f7200000000000000000000000000000000600082015250565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f6d75737420626520756e69717565206361746500000000000000000000000000600082015250565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b7f6e6f7420796f757220746f6b656e730000000000000000000000000000000000600082015250565b7f746f6b656e20616d6f756e74206572726f720000000000000000000000000000600082015250565b6003811061434c5761434b613fc1565b5b50565b61435881613d6f565b811461436357600080fd5b50565b61436f81613d93565b811461437a57600080fd5b50565b6003811061438a57600080fd5b50565b61439681613dd2565b81146143a157600080fd5b5056fea264697066735822122020668ada844639e5ca51f1b7916e94d47ad6b86ff02fa05f7024775b1ce64d2064736f6c63430008070033