Address Details
contract

0x65671b2aA906203aeC3a5d7685cb747f01b07e49

Contract Name
StarNFTLogic
Creator
0x7d6740–c9cfce at 0x53701f–94ba99
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
Fetching transactions...
Transfers
Fetching transfers...
Gas Used
Fetching gas used...
Last Balance Update
8804693
This contract has been verified via Sourcify. View contract in Sourcify repository
Contract name:
StarNFTLogic




Optimization enabled
true
Compiler version
v0.8.10+commit.fc410830




Optimization runs
200
EVM Version
london




Verified at
2023-05-11T04:41:30.720127Z

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

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;
    IStarNFT public starNFT;
    address public bonusAddr;
    uint256 public totalPrice;

    uint256 fee;

    mapping(uint256 => StarCate) public cateId;
    mapping(StarLevel => uint256[]) public starCate;
    mapping(StarLevel => LevelMethod) public levelMethod;
    mapping(uint256 => StarMeta) public starMeta;

    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;
        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 _fee = _price.mul(fee).div(100);
        starToken.transferFrom(_msgSender(), address(this), _price);
        starToken.burnFrom(address(this), _price.sub(_fee));
        starToken.transfer(bonusAddr, _fee);

        uint256 _starId = starNFT.mint(_msgSender(), _cateId);
        uint256 _multi = cateId[_cateId].multiple;
        starMeta[_starId] = StarMeta(StarLevel.COMMON, _cateId, _price, _multi);
        cateId[_cateId].usedUnit += 1;
        _levelMethod.usedUnit += 1;
        totalPrice = totalPrice.add(_price.mul(_multi).div(100));
        return _starId;
    }

    function melt(uint256[] memory _tokenIds, StarLevel _from, StarLevel _to) public returns (uint256) {
        require(uint256(_to) == uint256(_from) + 1, "melt level error");
        require(starNFT.massVerifyOwner(_msgSender(), _tokenIds), "not your tokens");
        (uint256 _price, uint256 _multiple) = verifyTokens(_from, _to, _tokenIds);
        require(_price != 0, "token error");
        starNFT.massBurn(_tokenIds);
        levelMethod[_from].burned += _tokenIds.length;

        uint256 _cateId = starCate[_to][getRndCateIndex(_to)];
        uint256 _starId = starNFT.mint(_msgSender(), _cateId);
        uint256 _multi = _multiple.mul(cateId[_cateId].multiple).div(100);
        starMeta[_starId] = StarMeta(_to, _cateId, _price, _multi);
        cateId[_cateId].usedUnit += 1;
        levelMethod[_to].usedUnit += 1;
        totalPrice = totalPrice.add(_price.mul(_multi).div(100));
        return _starId;
    }

    function verifyTokens(StarLevel _level, StarLevel _newLevel, uint256[] memory _tokenIds) view internal returns (uint256, uint256) {
        LevelMethod memory _levelMethod = levelMethod[_newLevel];
        uint256 _price = _levelMethod.price;

        if (_levelMethod.isInc && _levelMethod.base > 0) {
            _price = _price.add(_levelMethod.usedUnit.div(_levelMethod.base).mul(_levelMethod.step));
        }

        require(_tokenIds.length == _price, "token amount error");
        uint256 multiple;
        uint256 price;
        uint256[] memory _cateIds = new uint256[](_tokenIds.length);
        for (uint256 i = 0; i < _tokenIds.length; i ++) {
            require(starMeta[_tokenIds[i]].level == _level, "error level");
            price = price.add(starMeta[_tokenIds[i]].price);
            multiple = multiple.add(starMeta[_tokenIds[i]].multiple);
            if (_levelMethod.isUnique) {
                require(!indexOf(_cateIds, starMeta[_tokenIds[i]].cateId), "must be unique cate");
            }
            _cateIds[i] = starMeta[_tokenIds[i]].cateId;
        }
        return (price, multiple.div(_tokenIds.length));
    }

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

    function getRndCateIndex(StarLevel _level) internal view returns (uint256) {
        uint256[] storage _cate = starCate[_level];
        require(_cate.length > 0, "no cate");
        uint256 _rndCateIndex;
        uint256 nonce;
        do {
            _rndCateIndex = uint256(keccak256(abi.encodePacked(block.coinbase, msg.sender, nonce, block.timestamp))) % (_cate.length -1) + 1;
            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 setStarNFT(address _starNFT) onlyOwner public {
        require(_starNFT != address(0), "address error");
        starNFT = IStarNFT(_starNFT);
    }

    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.0 (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 initializer {
        __Context_init_unchained();
        __Ownable_init_unchained();
    }

    function __Ownable_init_unchained() internal initializer {
        _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.0 (proxy/utils/Initializable.sol)

pragma solidity ^0.8.0;

/**
 * @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() {
        require(_initializing || !_initialized, "Initializable: contract is already initialized");

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

        _;

        if (isTopLevelCall) {
            _initializing = false;
        }
    }
}
          

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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.0 (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.0 (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.0 (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.0 (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 initializer {
        __Context_init_unchained();
    }

    function __Context_init_unchained() internal initializer {
    }
    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.0 (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.0 (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.0 (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;
}
          

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":"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":"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":"getCateLength","inputs":[{"type":"uint8","name":"_level","internalType":"enum StarNFTLogic.StarLevel"}]},{"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":"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":"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

0x608060405234801561001057600080fd5b50611f38806100206000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063ab0d92dd11610071578063ab0d92dd14610327578063b0bf74e314610330578063b7ca51e814610343578063cf756fdf14610356578063f2fde38b1461036957600080fd5b8063715018a61461022a57806386628542146102325780638da5cb5b146102ba578063971276ae146102cb5780639c2fc6231461031457600080fd5b80632018ce8b116100f45780632018ce8b146101925780634d85ca26146101dc5780636b57d9bd146101f15780636fa0feb91461020457806370dca9741461021757600080fd5b8063069f2c0d146101265780631249c58b1461014c57806313eaabb8146101545780631d7cf6c61461017f575b600080fd5b6101396101343660046118d4565b61037c565b6040519081526020015b60405180910390f35b6101396103ad565b606854610167906001600160a01b031681565b6040516001600160a01b039091168152602001610143565b61013961018d366004611945565b61080b565b6101c16101a0366004611a0d565b606b6020526000908152604090208054600182015460029092015490919083565b60408051938452602084019290925290820152606001610143565b6101ef6101ea366004611a96565b610c5a565b005b6101ef6101ff366004611afe565b610d08565b610139610212366004611b63565b610daa565b606754610167906001600160a01b031681565b6101ef610dea565b610283610240366004611b63565b606d60205260009081526040902080546001820154600283015460038401546004850154600586015460069096015494959394929360ff92831693919290911687565b604080519788526020880196909652948601939093529015156060850152608084015260a0830152151560c082015260e001610143565b6033546001600160a01b0316610167565b6103046102d9366004611a0d565b606e60205260009081526040902080546001820154600283015460039093015460ff90921692909184565b6040516101439493929190611b94565b6101ef610322366004611bd2565b610e20565b61013960695481565b6101ef61033e366004611c32565b610f1e565b606654610167906001600160a01b031681565b6101ef610364366004611c4d565b610fb0565b6101ef610377366004611c32565b61102c565b606c602052816000526040600020818154811061039857600080fd5b90600052602060002001600091509150505481565b6000808052606c602052807f7febd347df14ea35c529e50fb2dd629d4a6226f5ccc893710fb466f8b83823fc6103e2826110c7565b815481106103f2576103f2611c98565b600091825260208083209190910154918052606d90527fda90043ba5b4096ba14704bc227ab0d3167da15b887e62ab2e76e37daa711358549091507fda90043ba5b4096ba14704bc227ab0d3167da15b887e62ab2e76e37daa71135690806104955760405162461bcd60e51b81526020600482015260116024820152703632bb32b610383934b1b29032b93937b960791b60448201526064015b60405180910390fd5b600382015460ff1680156104ad575060008260040154115b156104e8576104e56104de83600501546104d88560040154866000015461124590919063ffffffff16565b9061125a565b8290611266565b90505b600061050a6064610504606a548561125a90919063ffffffff16565b90611272565b6066549091506001600160a01b03166323b872dd336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152306024820152604481018590526064016020604051808303816000875af1158015610572573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105969190611cae565b506066546001600160a01b03166379cc6790306105b3858561127e565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156105f957600080fd5b505af115801561060d573d6000803e3d6000fd5b505060665460685460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018690529116925063a9059cbb91506044016020604051808303816000875af1158015610666573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061068a9190611cae565b506067546000906001600160a01b03166340c10f19336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018890526044016020604051808303816000875af11580156106ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107119190611cd2565b6000868152606b60205260408082206001015481516080810190925292935090819081526020808201899052604080830188905260609092018490526000858152606e9091522081518154829060ff1916600183600281111561077657610776611b7e565b02179055506020820151816001015560408201518160020155606082015181600301559050506001606b600088815260200190815260200160002060020160008282546107c39190611d01565b9091555050845460019086906000906107dd908490611d01565b909155506107fe90506107f56064610504878561125a565b60695490611266565b6069555095945050505050565b600082600281111561081f5761081f611b7e565b61082a906001611d01565b82600281111561083c5761083c611b7e565b1461087c5760405162461bcd60e51b815260206004820152601060248201526f36b2b63a103632bb32b61032b93937b960811b604482015260640161048c565b6067546001600160a01b0316634f69b86233866040518363ffffffff1660e01b81526004016108ac929190611d54565b602060405180830381865afa1580156108c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108ed9190611cae565b61092b5760405162461bcd60e51b815260206004820152600f60248201526e6e6f7420796f757220746f6b656e7360881b604482015260640161048c565b60008061093985858861128a565b91509150816000141561097c5760405162461bcd60e51b815260206004820152600b60248201526a3a37b5b2b71032b93937b960a91b604482015260640161048c565b6067546040516358eb981360e11b81526001600160a01b039091169063b1d73026906109ac908990600401611d80565b600060405180830381600087803b1580156109c657600080fd5b505af11580156109da573d6000803e3d6000fd5b505050508551606d60008760028111156109f6576109f6611b7e565b6002811115610a0757610a07611b7e565b81526020019081526020016000206001016000828254610a279190611d01565b9091555060009050606c81866002811115610a4457610a44611b7e565b6002811115610a5557610a55611b7e565b8152602001908152602001600020610a6c866110c7565b81548110610a7c57610a7c611c98565b60009182526020822001546067549092506001600160a01b03166340c10f19336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018590526044016020604051808303816000875af1158015610ae9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b0d9190611cd2565b6000838152606b602052604081206001015491925090610b359060649061050490879061125a565b90506040518060800160405280886002811115610b5457610b54611b7e565b81526020808201869052604080830189905260609092018490526000858152606e9091522081518154829060ff19166001836002811115610b9757610b97611b7e565b02179055506020820151816001015560408201518160020155606082015181600301559050506001606b60008581526020019081526020016000206002016000828254610be49190611d01565b9091555060019050606d6000896002811115610c0257610c02611b7e565b6002811115610c1357610c13611b7e565b81526020019081526020016000206000016000828254610c339190611d01565b90915550610c4b90506107f56064610504888561125a565b60695550979650505050505050565b6033546001600160a01b03163314610c845760405162461bcd60e51b815260040161048c90611d93565b6000848152606b6020526040908190208481556001810184905560675491516356e4269760e11b815290916001600160a01b03169063adc84d2e90610ccf9088908690600401611dc8565b600060405180830381600087803b158015610ce957600080fd5b505af1158015610cfd573d6000803e3d6000fd5b505050505050505050565b6033546001600160a01b03163314610d325760405162461bcd60e51b815260040161048c90611d93565b6000606d6000886002811115610d4a57610d4a611b7e565b6002811115610d5b57610d5b611b7e565b8152602081019190915260400160002060028101969096555060038501805494151560ff1995861617905560048501929092556005840155600690920180549215159290911691909117905550565b6000606c6000836002811115610dc257610dc2611b7e565b6002811115610dd357610dd3611b7e565b815260208101919091526040016000205492915050565b6033546001600160a01b03163314610e145760405162461bcd60e51b815260040161048c90611d93565b610e1e6000611627565b565b6033546001600160a01b03163314610e4a5760405162461bcd60e51b815260040161048c90611d93565b610e58606580546001019055565b6000610e6360655490565b6040805160608101825286815260208082018781526000838501818152868252606b9093529384209251835551600183015551600291820155919250606c918790811115610eb357610eb3611b7e565b6002811115610ec457610ec4611b7e565b815260208082019290925260409081016000908120805460018101825590825292902090910182905560675490516356e4269760e11b81526001600160a01b039091169063adc84d2e90610ccf9084908690600401611dc8565b6033546001600160a01b03163314610f485760405162461bcd60e51b815260040161048c90611d93565b6001600160a01b038116610f8e5760405162461bcd60e51b815260206004820152600d60248201526c30b2323932b9b99032b93937b960991b604482015260640161048c565b606780546001600160a01b0319166001600160a01b0392909216919091179055565b600054610100900460ff1680610fc9575060005460ff16155b610fe55760405162461bcd60e51b815260040161048c90611e25565b600054610100900460ff16158015611007576000805461ffff19166101011790555b61101385858585611679565b8015611025576000805461ff00191690555b5050505050565b6033546001600160a01b031633146110565760405162461bcd60e51b815260040161048c90611d93565b6001600160a01b0381166110bb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161048c565b6110c481611627565b50565b600080606c60008460028111156110e0576110e0611b7e565b60028111156110f1576110f1611b7e565b81526020019081526020016000209050600081805490501161113f5760405162461bcd60e51b81526020600482015260076024820152666e6f206361746560c81b604482015260640161048c565b6000805b825461115190600190611e73565b6040516bffffffffffffffffffffffff1941606090811b8216602084015233901b166034820152604881018390524260688201526088016040516020818303038152906040528051906020012060001c6111ab9190611ea0565b6111b6906001611d01565b9150606b60008484815481106111ce576111ce611c98565b9060005260206000200154815260200190815260200160002060020154606b600085858154811061120157611201611c98565b906000526020600020015481526020019081526020016000206000015411156112295761123d565b8061123381611eb4565b9150506001611143575b509392505050565b60006112518284611ea0565b90505b92915050565b60006112518284611ecf565b60006112518284611d01565b60006112518284611eee565b60006112518284611e73565b6000806000606d60008660028111156112a5576112a5611b7e565b60028111156112b6576112b6611b7e565b81526020808201929092526040908101600020815160e081018352815481526001820154938101939093526002810154918301829052600381015460ff9081161580156060860181905260048401546080870152600584015460a0870152600690930154909116151560c08501529293509091611337575060008260800151115b15611365576113626104de8360a001516104d88560800151866000015161127290919063ffffffff16565b90505b808551146113aa5760405162461bcd60e51b81526020600482015260126024820152713a37b5b2b71030b6b7bab73a1032b93937b960711b604482015260640161048c565b6000806000875167ffffffffffffffff8111156113c9576113c96118fe565b6040519080825280602002602001820160405280156113f2578160200160208202803683370190505b50905060005b8851811015611600578a600281111561141357611413611b7e565b606e60008b848151811061142957611429611c98565b60209081029190910181015182528101919091526040016000205460ff16600281111561145857611458611b7e565b146114935760405162461bcd60e51b815260206004820152600b60248201526a195c9c9bdc881b195d995b60aa1b604482015260640161048c565b6114d5606e60008b84815181106114ac576114ac611c98565b60200260200101518152602001908152602001600020600201548461126690919063ffffffff16565b9250611519606e60008b84815181106114f0576114f0611c98565b60200260200101518152602001908152602001600020600301548561126690919063ffffffff16565b93508560c00151156115a15761155e82606e60008c858151811061153f5761153f611c98565b60200260200101518152602001908152602001600020600101546116ec565b156115a15760405162461bcd60e51b81526020600482015260136024820152726d75737420626520756e69717565206361746560681b604482015260640161048c565b606e60008a83815181106115b7576115b7611c98565b60200260200101518152602001908152602001600020600101548282815181106115e3576115e3611c98565b6020908102919091010152806115f881611eb4565b9150506113f8565b508161161689518561127290919063ffffffff16565b965096505050505050935093915050565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054610100900460ff1680611692575060005460ff16155b6116ae5760405162461bcd60e51b815260040161048c90611e25565b600054610100900460ff161580156116d0576000805461ffff19166101011790555b6116d8611744565b6116e06117af565b6110138585858561180f565b8151600090815b81811015611739578385828151811061170e5761170e611c98565b6020026020010151141561172757600192505050611254565b8061173181611eb4565b9150506116f3565b506000949350505050565b600054610100900460ff168061175d575060005460ff16155b6117795760405162461bcd60e51b815260040161048c90611e25565b600054610100900460ff1615801561179b576000805461ffff19166101011790555b80156110c4576000805461ff001916905550565b600054610100900460ff16806117c8575060005460ff16155b6117e45760405162461bcd60e51b815260040161048c90611e25565b600054610100900460ff16158015611806576000805461ffff19166101011790555b61179b33611627565b600054610100900460ff1680611828575060005460ff16155b6118445760405162461bcd60e51b815260040161048c90611e25565b600054610100900460ff16158015611866576000805461ffff19166101011790555b606680546001600160a01b038088166001600160a01b031992831617909255606780548684169083161790556068805492871692909116919091179055606a8290558015611025576000805461ff00191690555050505050565b8035600381106118cf57600080fd5b919050565b600080604083850312156118e757600080fd5b6118f0836118c0565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561193d5761193d6118fe565b604052919050565b60008060006060848603121561195a57600080fd5b833567ffffffffffffffff8082111561197257600080fd5b818601915086601f83011261198657600080fd5b813560208282111561199a5761199a6118fe565b8160051b92506119ab818401611914565b828152928401810192818101908a8511156119c557600080fd5b948201945b848610156119e3578535825294820194908201906119ca565b97506119f290508882016118c0565b955050505050611a04604085016118c0565b90509250925092565b600060208284031215611a1f57600080fd5b5035919050565b600082601f830112611a3757600080fd5b813567ffffffffffffffff811115611a5157611a516118fe565b611a64601f8201601f1916602001611914565b818152846020838601011115611a7957600080fd5b816020850160208301376000918101602001919091529392505050565b60008060008060808587031215611aac57600080fd5b843593506020850135925060408501359150606085013567ffffffffffffffff811115611ad857600080fd5b611ae487828801611a26565b91505092959194509250565b80151581146110c457600080fd5b60008060008060008060c08789031215611b1757600080fd5b611b20876118c0565b9550602087013594506040870135611b3781611af0565b9350606087013592506080870135915060a0870135611b5581611af0565b809150509295509295509295565b600060208284031215611b7557600080fd5b611251826118c0565b634e487b7160e01b600052602160045260246000fd5b6080810160038610611bb657634e487b7160e01b600052602160045260246000fd5b9481526020810193909352604083019190915260609091015290565b60008060008060808587031215611be857600080fd5b611bf1856118c0565b93506020850135925060408501359150606085013567ffffffffffffffff811115611ad857600080fd5b80356001600160a01b03811681146118cf57600080fd5b600060208284031215611c4457600080fd5b61125182611c1b565b60008060008060808587031215611c6357600080fd5b611c6c85611c1b565b9350611c7a60208601611c1b565b9250611c8860408601611c1b565b9396929550929360600135925050565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611cc057600080fd5b8151611ccb81611af0565b9392505050565b600060208284031215611ce457600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611d1457611d14611ceb565b500190565b600081518084526020808501945080840160005b83811015611d4957815187529582019590820190600101611d2d565b509495945050505050565b6001600160a01b0383168152604060208201819052600090611d7890830184611d19565b949350505050565b6020815260006112516020830184611d19565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b82815260006020604081840152835180604085015260005b81811015611dfc57858101830151858201606001528201611de0565b81811115611e0e576000606083870101525b50601f01601f191692909201606001949350505050565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b600082821015611e8557611e85611ceb565b500390565b634e487b7160e01b600052601260045260246000fd5b600082611eaf57611eaf611e8a565b500690565b6000600019821415611ec857611ec8611ceb565b5060010190565b6000816000190483118215151615611ee957611ee9611ceb565b500290565b600082611efd57611efd611e8a565b50049056fea2646970667358221220be6051cc0b4ac29c7693eec5946b383d3ee6ae8afb096dbe806206f9b0bf861a64736f6c634300080a0033

Deployed ByteCode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063ab0d92dd11610071578063ab0d92dd14610327578063b0bf74e314610330578063b7ca51e814610343578063cf756fdf14610356578063f2fde38b1461036957600080fd5b8063715018a61461022a57806386628542146102325780638da5cb5b146102ba578063971276ae146102cb5780639c2fc6231461031457600080fd5b80632018ce8b116100f45780632018ce8b146101925780634d85ca26146101dc5780636b57d9bd146101f15780636fa0feb91461020457806370dca9741461021757600080fd5b8063069f2c0d146101265780631249c58b1461014c57806313eaabb8146101545780631d7cf6c61461017f575b600080fd5b6101396101343660046118d4565b61037c565b6040519081526020015b60405180910390f35b6101396103ad565b606854610167906001600160a01b031681565b6040516001600160a01b039091168152602001610143565b61013961018d366004611945565b61080b565b6101c16101a0366004611a0d565b606b6020526000908152604090208054600182015460029092015490919083565b60408051938452602084019290925290820152606001610143565b6101ef6101ea366004611a96565b610c5a565b005b6101ef6101ff366004611afe565b610d08565b610139610212366004611b63565b610daa565b606754610167906001600160a01b031681565b6101ef610dea565b610283610240366004611b63565b606d60205260009081526040902080546001820154600283015460038401546004850154600586015460069096015494959394929360ff92831693919290911687565b604080519788526020880196909652948601939093529015156060850152608084015260a0830152151560c082015260e001610143565b6033546001600160a01b0316610167565b6103046102d9366004611a0d565b606e60205260009081526040902080546001820154600283015460039093015460ff90921692909184565b6040516101439493929190611b94565b6101ef610322366004611bd2565b610e20565b61013960695481565b6101ef61033e366004611c32565b610f1e565b606654610167906001600160a01b031681565b6101ef610364366004611c4d565b610fb0565b6101ef610377366004611c32565b61102c565b606c602052816000526040600020818154811061039857600080fd5b90600052602060002001600091509150505481565b6000808052606c602052807f7febd347df14ea35c529e50fb2dd629d4a6226f5ccc893710fb466f8b83823fc6103e2826110c7565b815481106103f2576103f2611c98565b600091825260208083209190910154918052606d90527fda90043ba5b4096ba14704bc227ab0d3167da15b887e62ab2e76e37daa711358549091507fda90043ba5b4096ba14704bc227ab0d3167da15b887e62ab2e76e37daa71135690806104955760405162461bcd60e51b81526020600482015260116024820152703632bb32b610383934b1b29032b93937b960791b60448201526064015b60405180910390fd5b600382015460ff1680156104ad575060008260040154115b156104e8576104e56104de83600501546104d88560040154866000015461124590919063ffffffff16565b9061125a565b8290611266565b90505b600061050a6064610504606a548561125a90919063ffffffff16565b90611272565b6066549091506001600160a01b03166323b872dd336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152306024820152604481018590526064016020604051808303816000875af1158015610572573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105969190611cae565b506066546001600160a01b03166379cc6790306105b3858561127e565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156105f957600080fd5b505af115801561060d573d6000803e3d6000fd5b505060665460685460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018690529116925063a9059cbb91506044016020604051808303816000875af1158015610666573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061068a9190611cae565b506067546000906001600160a01b03166340c10f19336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018890526044016020604051808303816000875af11580156106ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107119190611cd2565b6000868152606b60205260408082206001015481516080810190925292935090819081526020808201899052604080830188905260609092018490526000858152606e9091522081518154829060ff1916600183600281111561077657610776611b7e565b02179055506020820151816001015560408201518160020155606082015181600301559050506001606b600088815260200190815260200160002060020160008282546107c39190611d01565b9091555050845460019086906000906107dd908490611d01565b909155506107fe90506107f56064610504878561125a565b60695490611266565b6069555095945050505050565b600082600281111561081f5761081f611b7e565b61082a906001611d01565b82600281111561083c5761083c611b7e565b1461087c5760405162461bcd60e51b815260206004820152601060248201526f36b2b63a103632bb32b61032b93937b960811b604482015260640161048c565b6067546001600160a01b0316634f69b86233866040518363ffffffff1660e01b81526004016108ac929190611d54565b602060405180830381865afa1580156108c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108ed9190611cae565b61092b5760405162461bcd60e51b815260206004820152600f60248201526e6e6f7420796f757220746f6b656e7360881b604482015260640161048c565b60008061093985858861128a565b91509150816000141561097c5760405162461bcd60e51b815260206004820152600b60248201526a3a37b5b2b71032b93937b960a91b604482015260640161048c565b6067546040516358eb981360e11b81526001600160a01b039091169063b1d73026906109ac908990600401611d80565b600060405180830381600087803b1580156109c657600080fd5b505af11580156109da573d6000803e3d6000fd5b505050508551606d60008760028111156109f6576109f6611b7e565b6002811115610a0757610a07611b7e565b81526020019081526020016000206001016000828254610a279190611d01565b9091555060009050606c81866002811115610a4457610a44611b7e565b6002811115610a5557610a55611b7e565b8152602001908152602001600020610a6c866110c7565b81548110610a7c57610a7c611c98565b60009182526020822001546067549092506001600160a01b03166340c10f19336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018590526044016020604051808303816000875af1158015610ae9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b0d9190611cd2565b6000838152606b602052604081206001015491925090610b359060649061050490879061125a565b90506040518060800160405280886002811115610b5457610b54611b7e565b81526020808201869052604080830189905260609092018490526000858152606e9091522081518154829060ff19166001836002811115610b9757610b97611b7e565b02179055506020820151816001015560408201518160020155606082015181600301559050506001606b60008581526020019081526020016000206002016000828254610be49190611d01565b9091555060019050606d6000896002811115610c0257610c02611b7e565b6002811115610c1357610c13611b7e565b81526020019081526020016000206000016000828254610c339190611d01565b90915550610c4b90506107f56064610504888561125a565b60695550979650505050505050565b6033546001600160a01b03163314610c845760405162461bcd60e51b815260040161048c90611d93565b6000848152606b6020526040908190208481556001810184905560675491516356e4269760e11b815290916001600160a01b03169063adc84d2e90610ccf9088908690600401611dc8565b600060405180830381600087803b158015610ce957600080fd5b505af1158015610cfd573d6000803e3d6000fd5b505050505050505050565b6033546001600160a01b03163314610d325760405162461bcd60e51b815260040161048c90611d93565b6000606d6000886002811115610d4a57610d4a611b7e565b6002811115610d5b57610d5b611b7e565b8152602081019190915260400160002060028101969096555060038501805494151560ff1995861617905560048501929092556005840155600690920180549215159290911691909117905550565b6000606c6000836002811115610dc257610dc2611b7e565b6002811115610dd357610dd3611b7e565b815260208101919091526040016000205492915050565b6033546001600160a01b03163314610e145760405162461bcd60e51b815260040161048c90611d93565b610e1e6000611627565b565b6033546001600160a01b03163314610e4a5760405162461bcd60e51b815260040161048c90611d93565b610e58606580546001019055565b6000610e6360655490565b6040805160608101825286815260208082018781526000838501818152868252606b9093529384209251835551600183015551600291820155919250606c918790811115610eb357610eb3611b7e565b6002811115610ec457610ec4611b7e565b815260208082019290925260409081016000908120805460018101825590825292902090910182905560675490516356e4269760e11b81526001600160a01b039091169063adc84d2e90610ccf9084908690600401611dc8565b6033546001600160a01b03163314610f485760405162461bcd60e51b815260040161048c90611d93565b6001600160a01b038116610f8e5760405162461bcd60e51b815260206004820152600d60248201526c30b2323932b9b99032b93937b960991b604482015260640161048c565b606780546001600160a01b0319166001600160a01b0392909216919091179055565b600054610100900460ff1680610fc9575060005460ff16155b610fe55760405162461bcd60e51b815260040161048c90611e25565b600054610100900460ff16158015611007576000805461ffff19166101011790555b61101385858585611679565b8015611025576000805461ff00191690555b5050505050565b6033546001600160a01b031633146110565760405162461bcd60e51b815260040161048c90611d93565b6001600160a01b0381166110bb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161048c565b6110c481611627565b50565b600080606c60008460028111156110e0576110e0611b7e565b60028111156110f1576110f1611b7e565b81526020019081526020016000209050600081805490501161113f5760405162461bcd60e51b81526020600482015260076024820152666e6f206361746560c81b604482015260640161048c565b6000805b825461115190600190611e73565b6040516bffffffffffffffffffffffff1941606090811b8216602084015233901b166034820152604881018390524260688201526088016040516020818303038152906040528051906020012060001c6111ab9190611ea0565b6111b6906001611d01565b9150606b60008484815481106111ce576111ce611c98565b9060005260206000200154815260200190815260200160002060020154606b600085858154811061120157611201611c98565b906000526020600020015481526020019081526020016000206000015411156112295761123d565b8061123381611eb4565b9150506001611143575b509392505050565b60006112518284611ea0565b90505b92915050565b60006112518284611ecf565b60006112518284611d01565b60006112518284611eee565b60006112518284611e73565b6000806000606d60008660028111156112a5576112a5611b7e565b60028111156112b6576112b6611b7e565b81526020808201929092526040908101600020815160e081018352815481526001820154938101939093526002810154918301829052600381015460ff9081161580156060860181905260048401546080870152600584015460a0870152600690930154909116151560c08501529293509091611337575060008260800151115b15611365576113626104de8360a001516104d88560800151866000015161127290919063ffffffff16565b90505b808551146113aa5760405162461bcd60e51b81526020600482015260126024820152713a37b5b2b71030b6b7bab73a1032b93937b960711b604482015260640161048c565b6000806000875167ffffffffffffffff8111156113c9576113c96118fe565b6040519080825280602002602001820160405280156113f2578160200160208202803683370190505b50905060005b8851811015611600578a600281111561141357611413611b7e565b606e60008b848151811061142957611429611c98565b60209081029190910181015182528101919091526040016000205460ff16600281111561145857611458611b7e565b146114935760405162461bcd60e51b815260206004820152600b60248201526a195c9c9bdc881b195d995b60aa1b604482015260640161048c565b6114d5606e60008b84815181106114ac576114ac611c98565b60200260200101518152602001908152602001600020600201548461126690919063ffffffff16565b9250611519606e60008b84815181106114f0576114f0611c98565b60200260200101518152602001908152602001600020600301548561126690919063ffffffff16565b93508560c00151156115a15761155e82606e60008c858151811061153f5761153f611c98565b60200260200101518152602001908152602001600020600101546116ec565b156115a15760405162461bcd60e51b81526020600482015260136024820152726d75737420626520756e69717565206361746560681b604482015260640161048c565b606e60008a83815181106115b7576115b7611c98565b60200260200101518152602001908152602001600020600101548282815181106115e3576115e3611c98565b6020908102919091010152806115f881611eb4565b9150506113f8565b508161161689518561127290919063ffffffff16565b965096505050505050935093915050565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054610100900460ff1680611692575060005460ff16155b6116ae5760405162461bcd60e51b815260040161048c90611e25565b600054610100900460ff161580156116d0576000805461ffff19166101011790555b6116d8611744565b6116e06117af565b6110138585858561180f565b8151600090815b81811015611739578385828151811061170e5761170e611c98565b6020026020010151141561172757600192505050611254565b8061173181611eb4565b9150506116f3565b506000949350505050565b600054610100900460ff168061175d575060005460ff16155b6117795760405162461bcd60e51b815260040161048c90611e25565b600054610100900460ff1615801561179b576000805461ffff19166101011790555b80156110c4576000805461ff001916905550565b600054610100900460ff16806117c8575060005460ff16155b6117e45760405162461bcd60e51b815260040161048c90611e25565b600054610100900460ff16158015611806576000805461ffff19166101011790555b61179b33611627565b600054610100900460ff1680611828575060005460ff16155b6118445760405162461bcd60e51b815260040161048c90611e25565b600054610100900460ff16158015611866576000805461ffff19166101011790555b606680546001600160a01b038088166001600160a01b031992831617909255606780548684169083161790556068805492871692909116919091179055606a8290558015611025576000805461ff00191690555050505050565b8035600381106118cf57600080fd5b919050565b600080604083850312156118e757600080fd5b6118f0836118c0565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561193d5761193d6118fe565b604052919050565b60008060006060848603121561195a57600080fd5b833567ffffffffffffffff8082111561197257600080fd5b818601915086601f83011261198657600080fd5b813560208282111561199a5761199a6118fe565b8160051b92506119ab818401611914565b828152928401810192818101908a8511156119c557600080fd5b948201945b848610156119e3578535825294820194908201906119ca565b97506119f290508882016118c0565b955050505050611a04604085016118c0565b90509250925092565b600060208284031215611a1f57600080fd5b5035919050565b600082601f830112611a3757600080fd5b813567ffffffffffffffff811115611a5157611a516118fe565b611a64601f8201601f1916602001611914565b818152846020838601011115611a7957600080fd5b816020850160208301376000918101602001919091529392505050565b60008060008060808587031215611aac57600080fd5b843593506020850135925060408501359150606085013567ffffffffffffffff811115611ad857600080fd5b611ae487828801611a26565b91505092959194509250565b80151581146110c457600080fd5b60008060008060008060c08789031215611b1757600080fd5b611b20876118c0565b9550602087013594506040870135611b3781611af0565b9350606087013592506080870135915060a0870135611b5581611af0565b809150509295509295509295565b600060208284031215611b7557600080fd5b611251826118c0565b634e487b7160e01b600052602160045260246000fd5b6080810160038610611bb657634e487b7160e01b600052602160045260246000fd5b9481526020810193909352604083019190915260609091015290565b60008060008060808587031215611be857600080fd5b611bf1856118c0565b93506020850135925060408501359150606085013567ffffffffffffffff811115611ad857600080fd5b80356001600160a01b03811681146118cf57600080fd5b600060208284031215611c4457600080fd5b61125182611c1b565b60008060008060808587031215611c6357600080fd5b611c6c85611c1b565b9350611c7a60208601611c1b565b9250611c8860408601611c1b565b9396929550929360600135925050565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611cc057600080fd5b8151611ccb81611af0565b9392505050565b600060208284031215611ce457600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611d1457611d14611ceb565b500190565b600081518084526020808501945080840160005b83811015611d4957815187529582019590820190600101611d2d565b509495945050505050565b6001600160a01b0383168152604060208201819052600090611d7890830184611d19565b949350505050565b6020815260006112516020830184611d19565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b82815260006020604081840152835180604085015260005b81811015611dfc57858101830151858201606001528201611de0565b81811115611e0e576000606083870101525b50601f01601f191692909201606001949350505050565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b600082821015611e8557611e85611ceb565b500390565b634e487b7160e01b600052601260045260246000fd5b600082611eaf57611eaf611e8a565b500690565b6000600019821415611ec857611ec8611ceb565b5060010190565b6000816000190483118215151615611ee957611ee9611ceb565b500290565b600082611efd57611efd611e8a565b50049056fea2646970667358221220be6051cc0b4ac29c7693eec5946b383d3ee6ae8afb096dbe806206f9b0bf861a64736f6c634300080a0033