Address Details
contract

0xf68119493E3D01290069c2b2945B2247Df4e333A

Contract Name
StarToken
Creator
0x7d6740–c9cfce at 0x296cd8–38d050
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
9340230
This contract has been verified via Sourcify. View contract in Sourcify repository
Contract name:
StarToken




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




EVM Version
london




Verified at
2023-02-01T21:31:48.297110Z

contracts/StarToken.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;
import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC20/extensions/IERC20MetadataUpgradeable.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract StarToken is Initializable, ContextUpgradeable, OwnableUpgradeable, IERC20Upgradeable, IERC20MetadataUpgradeable {
    uint256 public raiseSupply;
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    uint256 private _totalSupply;
    string private _name;
    string private _symbol;
    address public starFarm;
    uint256 public burnNumber;

    function initialize(string memory name_, string memory symbol_) public initializer {
        __ERC20_init(name_, symbol_);
    }

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    function __ERC20_init(string memory name_, string memory symbol_) internal initializer {
        __Context_init_unchained();
        __Ownable_init_unchained();
        __ERC20_init_unchained(name_, symbol_);
    }

    function __ERC20_init_unchained(string memory name_, string memory symbol_) internal initializer {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
    _approve(sender, _msgSender(), currentAllowance - amount);
    }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    function mint(uint256 amount) public onlyOwner {
        _mint(_msgSender(), amount);
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
    _approve(_msgSender(), spender, currentAllowance - subtractedValue);
    }

        return true;
    }

    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(_msgSender() == account || currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
    _balances[sender] = senderBalance - amount;
    }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    function farmMint(address account, uint256 amount) public onlyStarFarm virtual{
        raiseSupply += amount;
        _mint( account, amount);
    }

    function setStarFarm(address _addr) public onlyOwner{
        starFarm = _addr;
    }

    modifier onlyStarFarm() {
        require(_msgSender() == address(starFarm), "not farm");
        _;
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");
        _beforeTokenTransfer(account, address(0), amount);
        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;
        burnNumber += amount;
        emit Transfer(account, address(0), amount);
        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

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

    uint256[45] private __gap;
}
        

/_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/extensions/IERC20MetadataUpgradeable.sol

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

pragma solidity ^0.8.0;

import "../IERC20Upgradeable.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20MetadataUpgradeable is IERC20Upgradeable {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}
          

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

Contract ABI

[{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burnFrom","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"burnNumber","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"farmMint","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"initialize","inputs":[{"type":"string","name":"name_","internalType":"string"},{"type":"string","name":"symbol_","internalType":"string"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"mint","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"raiseSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setStarFarm","inputs":[{"type":"address","name":"_addr","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"starFarm","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"sender","internalType":"address"},{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]}]
              

Contract Creation Code

0x608060405234801561001057600080fd5b506129a0806100206000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80638da5cb5b116100b8578063a9059cbb1161007c578063a9059cbb14610365578063ae3c189d14610395578063dd62ed3e146103b1578063ec8797a1146103e1578063f2fde38b146103ff578063fdaa621c1461041b57610142565b80638da5cb5b146102bf5780639185e030146102dd57806395d89b41146102fb578063a0712d6814610319578063a457c2d71461033557610142565b8063395093511161010a57806339509351146102015780634cd88b761461023157806355432fb71461024d57806370a0823114610269578063715018a61461029957806379cc6790146102a357610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b3578063313ce567146101e3575b600080fd5b61014f610439565b60405161015c9190611fbe565b60405180910390f35b61017f600480360381019061017a9190611bfe565b6104cb565b60405161018c9190611fa3565b60405180910390f35b61019d6104e9565b6040516101aa91906121e0565b60405180910390f35b6101cd60048036038101906101c89190611bab565b6104f3565b6040516101da9190611fa3565b60405180910390f35b6101eb6105eb565b6040516101f891906121fb565b60405180910390f35b61021b60048036038101906102169190611bfe565b6105f4565b6040516102289190611fa3565b60405180910390f35b61024b60048036038101906102469190611c3e565b6106a0565b005b61026760048036038101906102629190611bfe565b610790565b005b610283600480360381019061027e9190611b3e565b61084e565b60405161029091906121e0565b60405180910390f35b6102a1610897565b005b6102bd60048036038101906102b89190611bfe565b61091f565b005b6102c76109d7565b6040516102d49190611f88565b60405180910390f35b6102e5610a01565b6040516102f291906121e0565b60405180910390f35b610303610a07565b6040516103109190611fbe565b60405180910390f35b610333600480360381019061032e9190611cb6565b610a99565b005b61034f600480360381019061034a9190611bfe565b610b29565b60405161035c9190611fa3565b60405180910390f35b61037f600480360381019061037a9190611bfe565b610c14565b60405161038c9190611fa3565b60405180910390f35b6103af60048036038101906103aa9190611b3e565b610c32565b005b6103cb60048036038101906103c69190611b6b565b610cf2565b6040516103d891906121e0565b60405180910390f35b6103e9610d79565b6040516103f691906121e0565b60405180910390f35b61041960048036038101906104149190611b3e565b610d7f565b005b610423610e77565b6040516104309190611f88565b60405180910390f35b606060698054610448906123a9565b80601f0160208091040260200160405190810160405280929190818152602001828054610474906123a9565b80156104c15780601f10610496576101008083540402835291602001916104c1565b820191906000526020600020905b8154815290600101906020018083116104a457829003601f168201915b5050505050905090565b60006104df6104d8610e9d565b8484610ea5565b6001905092915050565b6000606854905090565b6000610500848484611070565b6000606760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061054b610e9d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c2906120c0565b60405180910390fd5b6105df856105d7610e9d565b858403610ea5565b60019150509392505050565b60006012905090565b6000610696610601610e9d565b84846067600061060f610e9d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106919190612288565b610ea5565b6001905092915050565b600060019054906101000a900460ff166106c85760008054906101000a900460ff16156106d1565b6106d06112f4565b5b610710576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610707906120a0565b60405180910390fd5b60008060019054906101000a900460ff161590508015610760576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b61076a8383611305565b801561078b5760008060016101000a81548160ff0219169083151502179055505b505050565b606b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166107d1610e9d565b73ffffffffffffffffffffffffffffffffffffffff1614610827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081e90611fe0565b60405180910390fd5b80606560008282546108399190612288565b9250508190555061084a8282611405565b5050565b6000606660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61089f610e9d565b73ffffffffffffffffffffffffffffffffffffffff166108bd6109d7565b73ffffffffffffffffffffffffffffffffffffffff1614610913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090a906120e0565b60405180910390fd5b61091d6000611566565b565b60006109328361092d610e9d565b610cf2565b90508273ffffffffffffffffffffffffffffffffffffffff16610953610e9d565b73ffffffffffffffffffffffffffffffffffffffff1614806109755750818110155b6109b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ab90612100565b60405180910390fd5b6109c8836109c0610e9d565b848403610ea5565b6109d2838361162c565b505050565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60655481565b6060606a8054610a16906123a9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a42906123a9565b8015610a8f5780601f10610a6457610100808354040283529160200191610a8f565b820191906000526020600020905b815481529060010190602001808311610a7257829003601f168201915b5050505050905090565b610aa1610e9d565b73ffffffffffffffffffffffffffffffffffffffff16610abf6109d7565b73ffffffffffffffffffffffffffffffffffffffff1614610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c906120e0565b60405180910390fd5b610b26610b20610e9d565b82611405565b50565b60008060676000610b38610e9d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bec906121a0565b60405180910390fd5b610c09610c00610e9d565b85858403610ea5565b600191505092915050565b6000610c28610c21610e9d565b8484611070565b6001905092915050565b610c3a610e9d565b73ffffffffffffffffffffffffffffffffffffffff16610c586109d7565b73ffffffffffffffffffffffffffffffffffffffff1614610cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca5906120e0565b60405180910390fd5b80606b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000606760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b606c5481565b610d87610e9d565b73ffffffffffffffffffffffffffffffffffffffff16610da56109d7565b73ffffffffffffffffffffffffffffffffffffffff1614610dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df2906120e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6290612040565b60405180910390fd5b610e7481611566565b50565b606b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0c90612160565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c90612060565b60405180910390fd5b80606760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161106391906121e0565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d790612140565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611150576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114790612000565b60405180910390fd5b61115b83838361181e565b6000606660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d990612080565b60405180910390fd5b818103606660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081606660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112779190612288565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112db91906121e0565b60405180910390a36112ee848484611823565b50505050565b60006112ff30611828565b15905090565b600060019054906101000a900460ff1661132d5760008054906101000a900460ff1615611336565b6113356112f4565b5b611375576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136c906120a0565b60405180910390fd5b60008060019054906101000a900460ff1615905080156113c5576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6113cd61183b565b6113d561188c565b6113df83836118ed565b80156114005760008060016101000a81548160ff0219169083151502179055505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146c906121c0565b60405180910390fd5b6114816000838361181e565b80606860008282546114939190612288565b9250508190555080606660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114e99190612288565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161154e91906121e0565b60405180910390a361156260008383611823565b5050565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561169c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169390612120565b60405180910390fd5b6116a88260008361181e565b6000606660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561172f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172690612020565b60405180910390fd5b818103606660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816068600082825461178791906122de565b9250508190555081606c60008282546117a09190612288565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161180591906121e0565b60405180910390a361181983600084611823565b505050565b505050565b505050565b600080823b905060008111915050919050565b600060019054906101000a900460ff1661188a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188190612180565b60405180910390fd5b565b600060019054906101000a900460ff166118db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d290612180565b60405180910390fd5b6118eb6118e6610e9d565b611566565b565b600060019054906101000a900460ff166119155760008054906101000a900460ff161561191e565b61191d6112f4565b5b61195d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611954906120a0565b60405180910390fd5b60008060019054906101000a900460ff1615905080156119ad576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b82606990805190602001906119c3929190611a01565b5081606a90805190602001906119da929190611a01565b5080156119fc5760008060016101000a81548160ff0219169083151502179055505b505050565b828054611a0d906123a9565b90600052602060002090601f016020900481019282611a2f5760008555611a76565b82601f10611a4857805160ff1916838001178555611a76565b82800160010185558215611a76579182015b82811115611a75578251825591602001919060010190611a5a565b5b509050611a839190611a87565b5090565b5b80821115611aa0576000816000905550600101611a88565b5090565b6000611ab7611ab28461223b565b612216565b905082815260208101848484011115611ad357611ad261249e565b5b611ade848285612367565b509392505050565b600081359050611af58161293c565b92915050565b600082601f830112611b1057611b0f612499565b5b8135611b20848260208601611aa4565b91505092915050565b600081359050611b3881612953565b92915050565b600060208284031215611b5457611b536124a8565b5b6000611b6284828501611ae6565b91505092915050565b60008060408385031215611b8257611b816124a8565b5b6000611b9085828601611ae6565b9250506020611ba185828601611ae6565b9150509250929050565b600080600060608486031215611bc457611bc36124a8565b5b6000611bd286828701611ae6565b9350506020611be386828701611ae6565b9250506040611bf486828701611b29565b9150509250925092565b60008060408385031215611c1557611c146124a8565b5b6000611c2385828601611ae6565b9250506020611c3485828601611b29565b9150509250929050565b60008060408385031215611c5557611c546124a8565b5b600083013567ffffffffffffffff811115611c7357611c726124a3565b5b611c7f85828601611afb565b925050602083013567ffffffffffffffff811115611ca057611c9f6124a3565b5b611cac85828601611afb565b9150509250929050565b600060208284031215611ccc57611ccb6124a8565b5b6000611cda84828501611b29565b91505092915050565b611cec81612312565b82525050565b611cfb81612324565b82525050565b6000611d0c8261226c565b611d168185612277565b9350611d26818560208601612376565b611d2f816124ad565b840191505092915050565b6000611d47600883612277565b9150611d52826124be565b602082019050919050565b6000611d6a602383612277565b9150611d75826124e7565b604082019050919050565b6000611d8d602283612277565b9150611d9882612536565b604082019050919050565b6000611db0602683612277565b9150611dbb82612585565b604082019050919050565b6000611dd3602283612277565b9150611dde826125d4565b604082019050919050565b6000611df6602683612277565b9150611e0182612623565b604082019050919050565b6000611e19602e83612277565b9150611e2482612672565b604082019050919050565b6000611e3c602883612277565b9150611e47826126c1565b604082019050919050565b6000611e5f602083612277565b9150611e6a82612710565b602082019050919050565b6000611e82602483612277565b9150611e8d82612739565b604082019050919050565b6000611ea5602183612277565b9150611eb082612788565b604082019050919050565b6000611ec8602583612277565b9150611ed3826127d7565b604082019050919050565b6000611eeb602483612277565b9150611ef682612826565b604082019050919050565b6000611f0e602b83612277565b9150611f1982612875565b604082019050919050565b6000611f31602583612277565b9150611f3c826128c4565b604082019050919050565b6000611f54601f83612277565b9150611f5f82612913565b602082019050919050565b611f7381612350565b82525050565b611f828161235a565b82525050565b6000602082019050611f9d6000830184611ce3565b92915050565b6000602082019050611fb86000830184611cf2565b92915050565b60006020820190508181036000830152611fd88184611d01565b905092915050565b60006020820190508181036000830152611ff981611d3a565b9050919050565b6000602082019050818103600083015261201981611d5d565b9050919050565b6000602082019050818103600083015261203981611d80565b9050919050565b6000602082019050818103600083015261205981611da3565b9050919050565b6000602082019050818103600083015261207981611dc6565b9050919050565b6000602082019050818103600083015261209981611de9565b9050919050565b600060208201905081810360008301526120b981611e0c565b9050919050565b600060208201905081810360008301526120d981611e2f565b9050919050565b600060208201905081810360008301526120f981611e52565b9050919050565b6000602082019050818103600083015261211981611e75565b9050919050565b6000602082019050818103600083015261213981611e98565b9050919050565b6000602082019050818103600083015261215981611ebb565b9050919050565b6000602082019050818103600083015261217981611ede565b9050919050565b6000602082019050818103600083015261219981611f01565b9050919050565b600060208201905081810360008301526121b981611f24565b9050919050565b600060208201905081810360008301526121d981611f47565b9050919050565b60006020820190506121f56000830184611f6a565b92915050565b60006020820190506122106000830184611f79565b92915050565b6000612220612231565b905061222c82826123db565b919050565b6000604051905090565b600067ffffffffffffffff8211156122565761225561246a565b5b61225f826124ad565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600061229382612350565b915061229e83612350565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122d3576122d261240c565b5b828201905092915050565b60006122e982612350565b91506122f483612350565b9250828210156123075761230661240c565b5b828203905092915050565b600061231d82612330565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015612394578082015181840152602081019050612379565b838111156123a3576000848401525b50505050565b600060028204905060018216806123c157607f821691505b602082108114156123d5576123d461243b565b5b50919050565b6123e4826124ad565b810181811067ffffffffffffffff821117156124035761240261246a565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f6e6f74206661726d000000000000000000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61294581612312565b811461295057600080fd5b50565b61295c81612350565b811461296757600080fd5b5056fea2646970667358221220ed2ea4011139640d86fb9ef2023c24421e4b3147d23053ef67a9e4b0a41de49d64736f6c63430008070033

Deployed ByteCode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c80638da5cb5b116100b8578063a9059cbb1161007c578063a9059cbb14610365578063ae3c189d14610395578063dd62ed3e146103b1578063ec8797a1146103e1578063f2fde38b146103ff578063fdaa621c1461041b57610142565b80638da5cb5b146102bf5780639185e030146102dd57806395d89b41146102fb578063a0712d6814610319578063a457c2d71461033557610142565b8063395093511161010a57806339509351146102015780634cd88b761461023157806355432fb71461024d57806370a0823114610269578063715018a61461029957806379cc6790146102a357610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b3578063313ce567146101e3575b600080fd5b61014f610439565b60405161015c9190611fbe565b60405180910390f35b61017f600480360381019061017a9190611bfe565b6104cb565b60405161018c9190611fa3565b60405180910390f35b61019d6104e9565b6040516101aa91906121e0565b60405180910390f35b6101cd60048036038101906101c89190611bab565b6104f3565b6040516101da9190611fa3565b60405180910390f35b6101eb6105eb565b6040516101f891906121fb565b60405180910390f35b61021b60048036038101906102169190611bfe565b6105f4565b6040516102289190611fa3565b60405180910390f35b61024b60048036038101906102469190611c3e565b6106a0565b005b61026760048036038101906102629190611bfe565b610790565b005b610283600480360381019061027e9190611b3e565b61084e565b60405161029091906121e0565b60405180910390f35b6102a1610897565b005b6102bd60048036038101906102b89190611bfe565b61091f565b005b6102c76109d7565b6040516102d49190611f88565b60405180910390f35b6102e5610a01565b6040516102f291906121e0565b60405180910390f35b610303610a07565b6040516103109190611fbe565b60405180910390f35b610333600480360381019061032e9190611cb6565b610a99565b005b61034f600480360381019061034a9190611bfe565b610b29565b60405161035c9190611fa3565b60405180910390f35b61037f600480360381019061037a9190611bfe565b610c14565b60405161038c9190611fa3565b60405180910390f35b6103af60048036038101906103aa9190611b3e565b610c32565b005b6103cb60048036038101906103c69190611b6b565b610cf2565b6040516103d891906121e0565b60405180910390f35b6103e9610d79565b6040516103f691906121e0565b60405180910390f35b61041960048036038101906104149190611b3e565b610d7f565b005b610423610e77565b6040516104309190611f88565b60405180910390f35b606060698054610448906123a9565b80601f0160208091040260200160405190810160405280929190818152602001828054610474906123a9565b80156104c15780601f10610496576101008083540402835291602001916104c1565b820191906000526020600020905b8154815290600101906020018083116104a457829003601f168201915b5050505050905090565b60006104df6104d8610e9d565b8484610ea5565b6001905092915050565b6000606854905090565b6000610500848484611070565b6000606760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061054b610e9d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c2906120c0565b60405180910390fd5b6105df856105d7610e9d565b858403610ea5565b60019150509392505050565b60006012905090565b6000610696610601610e9d565b84846067600061060f610e9d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106919190612288565b610ea5565b6001905092915050565b600060019054906101000a900460ff166106c85760008054906101000a900460ff16156106d1565b6106d06112f4565b5b610710576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610707906120a0565b60405180910390fd5b60008060019054906101000a900460ff161590508015610760576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b61076a8383611305565b801561078b5760008060016101000a81548160ff0219169083151502179055505b505050565b606b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166107d1610e9d565b73ffffffffffffffffffffffffffffffffffffffff1614610827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081e90611fe0565b60405180910390fd5b80606560008282546108399190612288565b9250508190555061084a8282611405565b5050565b6000606660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61089f610e9d565b73ffffffffffffffffffffffffffffffffffffffff166108bd6109d7565b73ffffffffffffffffffffffffffffffffffffffff1614610913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090a906120e0565b60405180910390fd5b61091d6000611566565b565b60006109328361092d610e9d565b610cf2565b90508273ffffffffffffffffffffffffffffffffffffffff16610953610e9d565b73ffffffffffffffffffffffffffffffffffffffff1614806109755750818110155b6109b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ab90612100565b60405180910390fd5b6109c8836109c0610e9d565b848403610ea5565b6109d2838361162c565b505050565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60655481565b6060606a8054610a16906123a9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a42906123a9565b8015610a8f5780601f10610a6457610100808354040283529160200191610a8f565b820191906000526020600020905b815481529060010190602001808311610a7257829003601f168201915b5050505050905090565b610aa1610e9d565b73ffffffffffffffffffffffffffffffffffffffff16610abf6109d7565b73ffffffffffffffffffffffffffffffffffffffff1614610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c906120e0565b60405180910390fd5b610b26610b20610e9d565b82611405565b50565b60008060676000610b38610e9d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bec906121a0565b60405180910390fd5b610c09610c00610e9d565b85858403610ea5565b600191505092915050565b6000610c28610c21610e9d565b8484611070565b6001905092915050565b610c3a610e9d565b73ffffffffffffffffffffffffffffffffffffffff16610c586109d7565b73ffffffffffffffffffffffffffffffffffffffff1614610cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca5906120e0565b60405180910390fd5b80606b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000606760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b606c5481565b610d87610e9d565b73ffffffffffffffffffffffffffffffffffffffff16610da56109d7565b73ffffffffffffffffffffffffffffffffffffffff1614610dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df2906120e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6290612040565b60405180910390fd5b610e7481611566565b50565b606b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0c90612160565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c90612060565b60405180910390fd5b80606760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161106391906121e0565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d790612140565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611150576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114790612000565b60405180910390fd5b61115b83838361181e565b6000606660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d990612080565b60405180910390fd5b818103606660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081606660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112779190612288565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112db91906121e0565b60405180910390a36112ee848484611823565b50505050565b60006112ff30611828565b15905090565b600060019054906101000a900460ff1661132d5760008054906101000a900460ff1615611336565b6113356112f4565b5b611375576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136c906120a0565b60405180910390fd5b60008060019054906101000a900460ff1615905080156113c5576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6113cd61183b565b6113d561188c565b6113df83836118ed565b80156114005760008060016101000a81548160ff0219169083151502179055505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146c906121c0565b60405180910390fd5b6114816000838361181e565b80606860008282546114939190612288565b9250508190555080606660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114e99190612288565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161154e91906121e0565b60405180910390a361156260008383611823565b5050565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561169c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169390612120565b60405180910390fd5b6116a88260008361181e565b6000606660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561172f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172690612020565b60405180910390fd5b818103606660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816068600082825461178791906122de565b9250508190555081606c60008282546117a09190612288565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161180591906121e0565b60405180910390a361181983600084611823565b505050565b505050565b505050565b600080823b905060008111915050919050565b600060019054906101000a900460ff1661188a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188190612180565b60405180910390fd5b565b600060019054906101000a900460ff166118db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d290612180565b60405180910390fd5b6118eb6118e6610e9d565b611566565b565b600060019054906101000a900460ff166119155760008054906101000a900460ff161561191e565b61191d6112f4565b5b61195d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611954906120a0565b60405180910390fd5b60008060019054906101000a900460ff1615905080156119ad576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b82606990805190602001906119c3929190611a01565b5081606a90805190602001906119da929190611a01565b5080156119fc5760008060016101000a81548160ff0219169083151502179055505b505050565b828054611a0d906123a9565b90600052602060002090601f016020900481019282611a2f5760008555611a76565b82601f10611a4857805160ff1916838001178555611a76565b82800160010185558215611a76579182015b82811115611a75578251825591602001919060010190611a5a565b5b509050611a839190611a87565b5090565b5b80821115611aa0576000816000905550600101611a88565b5090565b6000611ab7611ab28461223b565b612216565b905082815260208101848484011115611ad357611ad261249e565b5b611ade848285612367565b509392505050565b600081359050611af58161293c565b92915050565b600082601f830112611b1057611b0f612499565b5b8135611b20848260208601611aa4565b91505092915050565b600081359050611b3881612953565b92915050565b600060208284031215611b5457611b536124a8565b5b6000611b6284828501611ae6565b91505092915050565b60008060408385031215611b8257611b816124a8565b5b6000611b9085828601611ae6565b9250506020611ba185828601611ae6565b9150509250929050565b600080600060608486031215611bc457611bc36124a8565b5b6000611bd286828701611ae6565b9350506020611be386828701611ae6565b9250506040611bf486828701611b29565b9150509250925092565b60008060408385031215611c1557611c146124a8565b5b6000611c2385828601611ae6565b9250506020611c3485828601611b29565b9150509250929050565b60008060408385031215611c5557611c546124a8565b5b600083013567ffffffffffffffff811115611c7357611c726124a3565b5b611c7f85828601611afb565b925050602083013567ffffffffffffffff811115611ca057611c9f6124a3565b5b611cac85828601611afb565b9150509250929050565b600060208284031215611ccc57611ccb6124a8565b5b6000611cda84828501611b29565b91505092915050565b611cec81612312565b82525050565b611cfb81612324565b82525050565b6000611d0c8261226c565b611d168185612277565b9350611d26818560208601612376565b611d2f816124ad565b840191505092915050565b6000611d47600883612277565b9150611d52826124be565b602082019050919050565b6000611d6a602383612277565b9150611d75826124e7565b604082019050919050565b6000611d8d602283612277565b9150611d9882612536565b604082019050919050565b6000611db0602683612277565b9150611dbb82612585565b604082019050919050565b6000611dd3602283612277565b9150611dde826125d4565b604082019050919050565b6000611df6602683612277565b9150611e0182612623565b604082019050919050565b6000611e19602e83612277565b9150611e2482612672565b604082019050919050565b6000611e3c602883612277565b9150611e47826126c1565b604082019050919050565b6000611e5f602083612277565b9150611e6a82612710565b602082019050919050565b6000611e82602483612277565b9150611e8d82612739565b604082019050919050565b6000611ea5602183612277565b9150611eb082612788565b604082019050919050565b6000611ec8602583612277565b9150611ed3826127d7565b604082019050919050565b6000611eeb602483612277565b9150611ef682612826565b604082019050919050565b6000611f0e602b83612277565b9150611f1982612875565b604082019050919050565b6000611f31602583612277565b9150611f3c826128c4565b604082019050919050565b6000611f54601f83612277565b9150611f5f82612913565b602082019050919050565b611f7381612350565b82525050565b611f828161235a565b82525050565b6000602082019050611f9d6000830184611ce3565b92915050565b6000602082019050611fb86000830184611cf2565b92915050565b60006020820190508181036000830152611fd88184611d01565b905092915050565b60006020820190508181036000830152611ff981611d3a565b9050919050565b6000602082019050818103600083015261201981611d5d565b9050919050565b6000602082019050818103600083015261203981611d80565b9050919050565b6000602082019050818103600083015261205981611da3565b9050919050565b6000602082019050818103600083015261207981611dc6565b9050919050565b6000602082019050818103600083015261209981611de9565b9050919050565b600060208201905081810360008301526120b981611e0c565b9050919050565b600060208201905081810360008301526120d981611e2f565b9050919050565b600060208201905081810360008301526120f981611e52565b9050919050565b6000602082019050818103600083015261211981611e75565b9050919050565b6000602082019050818103600083015261213981611e98565b9050919050565b6000602082019050818103600083015261215981611ebb565b9050919050565b6000602082019050818103600083015261217981611ede565b9050919050565b6000602082019050818103600083015261219981611f01565b9050919050565b600060208201905081810360008301526121b981611f24565b9050919050565b600060208201905081810360008301526121d981611f47565b9050919050565b60006020820190506121f56000830184611f6a565b92915050565b60006020820190506122106000830184611f79565b92915050565b6000612220612231565b905061222c82826123db565b919050565b6000604051905090565b600067ffffffffffffffff8211156122565761225561246a565b5b61225f826124ad565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600061229382612350565b915061229e83612350565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122d3576122d261240c565b5b828201905092915050565b60006122e982612350565b91506122f483612350565b9250828210156123075761230661240c565b5b828203905092915050565b600061231d82612330565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015612394578082015181840152602081019050612379565b838111156123a3576000848401525b50505050565b600060028204905060018216806123c157607f821691505b602082108114156123d5576123d461243b565b5b50919050565b6123e4826124ad565b810181811067ffffffffffffffff821117156124035761240261246a565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f6e6f74206661726d000000000000000000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61294581612312565b811461295057600080fd5b50565b61295c81612350565b811461296757600080fd5b5056fea2646970667358221220ed2ea4011139640d86fb9ef2023c24421e4b3147d23053ef67a9e4b0a41de49d64736f6c63430008070033