false
true
0

Contract Address Details

0x44de2D9EB4f3CB4131287D5C76C88c275139DA57

Token
Squirtle ゼニガメ (Squirtle)
Creator
0x9c64c1–ed3cdc at 0xa13930–ac95eb
Balance
0 PLS ( )
Tokens
Fetching tokens...
Transactions
798 Transactions
Transfers
0 Transfers
Gas Used
0
Last Balance Update
25890091
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
Contract name:
Squirtle




Optimization enabled
false
Compiler version
v0.8.20+commit.a1b79de6




EVM Version
default




Verified at
2024-07-19T00:15:55.883522Z

Constructor Arguments

0x00000000000000000000000031a4ffe71bfeadbda769d4a3e03bf4ae5c28ee31

Arg [0] (address) : 0x31a4ffe71bfeadbda769d4a3e03bf4ae5c28ee31

              

Contract source code

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @dev Returns the value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @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);
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol


// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;





/**
 * @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}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

    mapping(address account => mapping(address spender => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 default value returned by this function, unless
     * it's 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 returns (uint8) {
        return 18;
    }

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

// File: contracts/Squirtle/Squirtle.sol





pragma solidity ^0.8.2;

//import "@openzeppelin/contracts/access/Ownable.sol";

abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

/**
 * @title NoCap Token
 * @dev ERC20 token with inflationary mechanism and ownership management.
 */
contract Squirtle is ERC20, Ownable {
    
    address public immutable Token_A;
    address private MakerAddress;
    uint256 public immutable startTime; 
    uint256 public immutable InflationInterval = 604800; // One week in seconds
    uint256 public immutable InflationPercent = 700; // Percentage increase per inflation cycle
    uint256 public InflationCount;
    uint256 private lastUpdateTime; 
    uint256 public immutable initialRatio = 6300; // Initial ratio set to 63

    /**
     * @dev Initializes the NoCap token with a specified address for Token_A.
     * @param _Token_A Address of the token to be used for transfers.
     */
    constructor(address _Token_A) ERC20 ("Squirtle \u30bc\u30cb\u30ac\u30e1","Squirtle") {     
        Token_A = _Token_A;
        startTime = block.timestamp;
        MakerAddress = msg.sender;
        transferOwnership(msg.sender);
        InflationCount = 0;
    }

    /**
     * @dev Updates the inflation count based on the time elapsed since deployment.
     * @param _to Address to transfer tokens to.
     * @param _amount Amount of tokens to transfer.
     */
    function update(address _to, uint256 _amount) external onlyOwner {
        safeSecTransfer(_to, _amount);

        uint256 timeSinceDeployment = block.timestamp - startTime;
        uint256 _InflationCount = timeSinceDeployment / InflationInterval;       

        InflationCount = _InflationCount;        
    }

    /**
     * @dev Changes the MakerAddress to a new address.
     * @param newMaker New address for MakerAddress.
     */
    function changerMaker(address newMaker) external onlyOwner {
        MakerAddress = newMaker;
    }

    function Mint(address caller, uint256 amount) external onlyOwner {
        IERC20(Token_A).transferFrom(caller, address(this), amount);

        uint256 computedRatio = initialRatio * 100;

        // Apply the inflation for each count with compounding
        for (uint256 i = 0; i < InflationCount; i++) {
            computedRatio = computedRatio + (computedRatio * InflationPercent) / 1e4; // 1e4 for 1000 (percent scaling) * 10 (extra decimal scaling)
        }

        uint256 arbToMint = (amount * computedRatio) / 1e4; // Adjust the final division to match the initial scaling factor

        _mint(caller, arbToMint);
        _mint(MakerAddress, amount);
    }

    /**
     * @dev Safely transfers tokens, ensuring the transfer amount does not exceed the contract's balance.
     * @param _to Address to transfer tokens to.
     * @param _amount Amount of tokens to transfer.
     */
    function safeSecTransfer(address _to, uint256 _amount) internal {
        uint256 SecBal = ERC20(Token_A).balanceOf(address(this));
        if (_amount > SecBal) {
            ERC20(Token_A).transfer(_to, SecBal);
        } else {
            ERC20(Token_A).transfer(_to, _amount);
        }
    }

    /**
     * @dev Increments the inflation count for testing purposes.
     * @notice Remove this function for mainnet deployment.
     */
    // function Inflate() external onlyOwner {
    //     InflationCount++;
    // }
}
        

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"_Token_A","internalType":"address"}]},{"type":"error","name":"ERC20InsufficientAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"allowance","internalType":"uint256"},{"type":"uint256","name":"needed","internalType":"uint256"}]},{"type":"error","name":"ERC20InsufficientBalance","inputs":[{"type":"address","name":"sender","internalType":"address"},{"type":"uint256","name":"balance","internalType":"uint256"},{"type":"uint256","name":"needed","internalType":"uint256"}]},{"type":"error","name":"ERC20InvalidApprover","inputs":[{"type":"address","name":"approver","internalType":"address"}]},{"type":"error","name":"ERC20InvalidReceiver","inputs":[{"type":"address","name":"receiver","internalType":"address"}]},{"type":"error","name":"ERC20InvalidSender","inputs":[{"type":"address","name":"sender","internalType":"address"}]},{"type":"error","name":"ERC20InvalidSpender","inputs":[{"type":"address","name":"spender","internalType":"address"}]},{"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":"InflationCount","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"InflationInterval","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"InflationPercent","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"Mint","inputs":[{"type":"address","name":"caller","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"Token_A","inputs":[]},{"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":"value","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":"changerMaker","inputs":[{"type":"address","name":"newMaker","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"initialRatio","inputs":[]},{"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":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"startTime","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":"to","internalType":"address"},{"type":"uint256","name":"value","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"value","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"update","inputs":[{"type":"address","name":"_to","internalType":"address"},{"type":"uint256","name":"_amount","internalType":"uint256"}]}]
              

Contract Creation Code

Verify & Publish
0x61012060405262093a8060c0908152506102bc60e09081525061189c610100908152503480156200002e575f80fd5b506040516200264938038062002649833981810160405281019062000054919062000481565b6040518060400160405280601581526020017f5371756972746c6520e382bce3838be382ace383a100000000000000000000008152506040518060400160405280600881526020017f5371756972746c650000000000000000000000000000000000000000000000008152508160039081620000d1919062000715565b508060049081620000e3919062000715565b5050505f620000f76200022f60201b60201c565b90508060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250504260a081815250503360065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000221336200023660201b60201c565b5f600781905550506200090b565b5f33905090565b620002466200022f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200026c620003f460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002c5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002bc9062000857565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000336576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200032d90620008eb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a38060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200044b8262000420565b9050919050565b6200045d816200043f565b811462000468575f80fd5b50565b5f815190506200047b8162000452565b92915050565b5f602082840312156200049957620004986200041c565b5b5f620004a8848285016200046b565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200052d57607f821691505b602082108103620005435762000542620004e8565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620005a77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200056a565b620005b386836200056a565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620005fd620005f7620005f184620005cb565b620005d4565b620005cb565b9050919050565b5f819050919050565b6200061883620005dd565b62000630620006278262000604565b84845462000576565b825550505050565b5f90565b6200064662000638565b620006538184846200060d565b505050565b5b818110156200067a576200066e5f826200063c565b60018101905062000659565b5050565b601f821115620006c957620006938162000549565b6200069e846200055b565b81016020851015620006ae578190505b620006c6620006bd856200055b565b83018262000658565b50505b505050565b5f82821c905092915050565b5f620006eb5f1984600802620006ce565b1980831691505092915050565b5f620007058383620006da565b9150826002028217905092915050565b6200072082620004b1565b67ffffffffffffffff8111156200073c576200073b620004bb565b5b62000748825462000515565b620007558282856200067e565b5f60209050601f8311600181146200078b575f841562000776578287015190505b620007828582620006f8565b865550620007f1565b601f1984166200079b8662000549565b5f5b82811015620007c4578489015182556001820191506020850194506020810190506200079d565b86831015620007e45784890151620007e0601f891682620006da565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6200083f602083620007f9565b91506200084c8262000809565b602082019050919050565b5f6020820190508181035f830152620008708162000831565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f620008d3602683620007f9565b9150620008e08262000877565b604082019050919050565b5f6020820190508181035f8301526200090481620008c5565b9050919050565b60805160a05160c05160e05161010051611cc8620009815f395f81816105c40152610b8501525f818161060001526106ed01525f81816109960152610b2801525f818161094e0152610af901525f81816105230152818161097201528181610fee0152818161109001526111310152611cc85ff3fe608060405234801561000f575f80fd5b5060043610610135575f3560e01c8063715018a6116100b657806395d89b411161007a57806395d89b4114610319578063a2d83b5e14610337578063a9059cbb14610353578063d4611ec214610383578063dd62ed3e146103a1578063f2fde38b146103d157610135565b8063715018a61461029757806378e97925146102a15780637ecd8005146102bf57806382d4e6e3146102dd5780638da5cb5b146102fb57610135565b806323b872dd116100fd57806323b872dd146101df578063313ce5671461020f578063589b37e71461022d57806364db3af41461024b57806370a082311461026757610135565b806306fdde0314610139578063095ea7b3146101575780630e943984146101875780630f6798a5146101a557806318160ddd146101c1575b5f80fd5b6101416103ed565b60405161014e9190611643565b60405180910390f35b610171600480360381019061016c91906116f4565b61047d565b60405161017e919061174c565b60405180910390f35b61018f61049f565b60405161019c9190611774565b60405180910390f35b6101bf60048036038101906101ba91906116f4565b6104a5565b005b6101c96106ac565b6040516101d69190611774565b60405180910390f35b6101f960048036038101906101f4919061178d565b6106b5565b604051610206919061174c565b60405180910390f35b6102176106e3565b60405161022491906117f8565b60405180910390f35b6102356106eb565b6040516102429190611774565b60405180910390f35b61026560048036038101906102609190611811565b61070f565b005b610281600480360381019061027c9190611811565b6107ce565b60405161028e9190611774565b60405180910390f35b61029f610813565b005b6102a961094c565b6040516102b69190611774565b60405180910390f35b6102c7610970565b6040516102d4919061184b565b60405180910390f35b6102e5610994565b6040516102f29190611774565b60405180910390f35b6103036109b8565b604051610310919061184b565b60405180910390f35b6103216109e0565b60405161032e9190611643565b60405180910390f35b610351600480360381019061034c91906116f4565b610a70565b005b61036d600480360381019061036891906116f4565b610b61565b60405161037a919061174c565b60405180910390f35b61038b610b83565b6040516103989190611774565b60405180910390f35b6103bb60048036038101906103b69190611864565b610ba7565b6040516103c89190611774565b60405180910390f35b6103eb60048036038101906103e69190611811565b610c29565b005b6060600380546103fc906118cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610428906118cf565b80156104735780601f1061044a57610100808354040283529160200191610473565b820191905f5260205f20905b81548152906001019060200180831161045657829003601f168201915b5050505050905090565b5f80610487610dd1565b9050610494818585610dd8565b600191505092915050565b60075481565b6104ad610dd1565b73ffffffffffffffffffffffffffffffffffffffff166104cb6109b8565b73ffffffffffffffffffffffffffffffffffffffff1614610521576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051890611949565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166323b872dd8330846040518463ffffffff1660e01b815260040161057e93929190611967565b6020604051808303815f875af115801561059a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105be91906119c6565b505f60647f00000000000000000000000000000000000000000000000000000000000000006105ed9190611a1e565b90505f5b600754811015610654576127107f00000000000000000000000000000000000000000000000000000000000000008361062a9190611a1e565b6106349190611a8c565b8261063f9190611abc565b9150808061064c90611aef565b9150506105f1565b505f61271082846106659190611a1e565b61066f9190611a8c565b905061067b8482610dea565b6106a660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610dea565b50505050565b5f600254905090565b5f806106bf610dd1565b90506106cc858285610e69565b6106d7858585610efb565b60019150509392505050565b5f6012905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b610717610dd1565b73ffffffffffffffffffffffffffffffffffffffff166107356109b8565b73ffffffffffffffffffffffffffffffffffffffff161461078b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078290611949565b60405180910390fd5b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61081b610dd1565b73ffffffffffffffffffffffffffffffffffffffff166108396109b8565b73ffffffffffffffffffffffffffffffffffffffff161461088f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088690611949565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f60055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109ef906118cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1b906118cf565b8015610a665780601f10610a3d57610100808354040283529160200191610a66565b820191905f5260205f20905b815481529060010190602001808311610a4957829003601f168201915b5050505050905090565b610a78610dd1565b73ffffffffffffffffffffffffffffffffffffffff16610a966109b8565b73ffffffffffffffffffffffffffffffffffffffff1614610aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae390611949565b60405180910390fd5b610af68282610feb565b5f7f000000000000000000000000000000000000000000000000000000000000000042610b239190611b36565b90505f7f000000000000000000000000000000000000000000000000000000000000000082610b529190611a8c565b90508060078190555050505050565b5f80610b6b610dd1565b9050610b78818585610efb565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610c31610dd1565b73ffffffffffffffffffffffffffffffffffffffff16610c4f6109b8565b73ffffffffffffffffffffffffffffffffffffffff1614610ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9c90611949565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a90611bd9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a38060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f33905090565b610de583838360016111d1565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e5a575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610e51919061184b565b60405180910390fd5b610e655f83836113a0565b5050565b5f610e748484610ba7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ef55781811015610ee6578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610edd93929190611bf7565b60405180910390fd5b610ef484848484035f6111d1565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f6b575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610f62919061184b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fdb575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610fd2919061184b565b60405180910390fd5b610fe68383836113a0565b505050565b5f7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611045919061184b565b602060405180830381865afa158015611060573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110849190611c40565b90508082111561112f577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b81526004016110e9929190611c6b565b6020604051808303815f875af1158015611105573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061112991906119c6565b506111cc565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b815260040161118a929190611c6b565b6020604051808303815f875af11580156111a6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111ca91906119c6565b505b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611241575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401611238919061184b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112b1575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016112a8919061184b565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561139a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516113919190611774565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113f0578060025f8282546113e49190611abc565b925050819055506114be565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611479578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161147093929190611bf7565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611505578060025f828254039250508190555061154f565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115ac9190611774565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156115f05780820151818401526020810190506115d5565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611615826115b9565b61161f81856115c3565b935061162f8185602086016115d3565b611638816115fb565b840191505092915050565b5f6020820190508181035f83015261165b818461160b565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61169082611667565b9050919050565b6116a081611686565b81146116aa575f80fd5b50565b5f813590506116bb81611697565b92915050565b5f819050919050565b6116d3816116c1565b81146116dd575f80fd5b50565b5f813590506116ee816116ca565b92915050565b5f806040838503121561170a57611709611663565b5b5f611717858286016116ad565b9250506020611728858286016116e0565b9150509250929050565b5f8115159050919050565b61174681611732565b82525050565b5f60208201905061175f5f83018461173d565b92915050565b61176e816116c1565b82525050565b5f6020820190506117875f830184611765565b92915050565b5f805f606084860312156117a4576117a3611663565b5b5f6117b1868287016116ad565b93505060206117c2868287016116ad565b92505060406117d3868287016116e0565b9150509250925092565b5f60ff82169050919050565b6117f2816117dd565b82525050565b5f60208201905061180b5f8301846117e9565b92915050565b5f6020828403121561182657611825611663565b5b5f611833848285016116ad565b91505092915050565b61184581611686565b82525050565b5f60208201905061185e5f83018461183c565b92915050565b5f806040838503121561187a57611879611663565b5b5f611887858286016116ad565b9250506020611898858286016116ad565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806118e657607f821691505b6020821081036118f9576118f86118a2565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6119336020836115c3565b915061193e826118ff565b602082019050919050565b5f6020820190508181035f83015261196081611927565b9050919050565b5f60608201905061197a5f83018661183c565b611987602083018561183c565b6119946040830184611765565b949350505050565b6119a581611732565b81146119af575f80fd5b50565b5f815190506119c08161199c565b92915050565b5f602082840312156119db576119da611663565b5b5f6119e8848285016119b2565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611a28826116c1565b9150611a33836116c1565b9250828202611a41816116c1565b91508282048414831517611a5857611a576119f1565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611a96826116c1565b9150611aa1836116c1565b925082611ab157611ab0611a5f565b5b828204905092915050565b5f611ac6826116c1565b9150611ad1836116c1565b9250828201905080821115611ae957611ae86119f1565b5b92915050565b5f611af9826116c1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611b2b57611b2a6119f1565b5b600182019050919050565b5f611b40826116c1565b9150611b4b836116c1565b9250828203905081811115611b6357611b626119f1565b5b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611bc36026836115c3565b9150611bce82611b69565b604082019050919050565b5f6020820190508181035f830152611bf081611bb7565b9050919050565b5f606082019050611c0a5f83018661183c565b611c176020830185611765565b611c246040830184611765565b949350505050565b5f81519050611c3a816116ca565b92915050565b5f60208284031215611c5557611c54611663565b5b5f611c6284828501611c2c565b91505092915050565b5f604082019050611c7e5f83018561183c565b611c8b6020830184611765565b939250505056fea26469706673582212202a01925ac3e3de6243e9c9867edb278296463213af6431ddacea593e44e7107864736f6c6343000814003300000000000000000000000031a4ffe71bfeadbda769d4a3e03bf4ae5c28ee31

Deployed ByteCode

0x608060405234801561000f575f80fd5b5060043610610135575f3560e01c8063715018a6116100b657806395d89b411161007a57806395d89b4114610319578063a2d83b5e14610337578063a9059cbb14610353578063d4611ec214610383578063dd62ed3e146103a1578063f2fde38b146103d157610135565b8063715018a61461029757806378e97925146102a15780637ecd8005146102bf57806382d4e6e3146102dd5780638da5cb5b146102fb57610135565b806323b872dd116100fd57806323b872dd146101df578063313ce5671461020f578063589b37e71461022d57806364db3af41461024b57806370a082311461026757610135565b806306fdde0314610139578063095ea7b3146101575780630e943984146101875780630f6798a5146101a557806318160ddd146101c1575b5f80fd5b6101416103ed565b60405161014e9190611643565b60405180910390f35b610171600480360381019061016c91906116f4565b61047d565b60405161017e919061174c565b60405180910390f35b61018f61049f565b60405161019c9190611774565b60405180910390f35b6101bf60048036038101906101ba91906116f4565b6104a5565b005b6101c96106ac565b6040516101d69190611774565b60405180910390f35b6101f960048036038101906101f4919061178d565b6106b5565b604051610206919061174c565b60405180910390f35b6102176106e3565b60405161022491906117f8565b60405180910390f35b6102356106eb565b6040516102429190611774565b60405180910390f35b61026560048036038101906102609190611811565b61070f565b005b610281600480360381019061027c9190611811565b6107ce565b60405161028e9190611774565b60405180910390f35b61029f610813565b005b6102a961094c565b6040516102b69190611774565b60405180910390f35b6102c7610970565b6040516102d4919061184b565b60405180910390f35b6102e5610994565b6040516102f29190611774565b60405180910390f35b6103036109b8565b604051610310919061184b565b60405180910390f35b6103216109e0565b60405161032e9190611643565b60405180910390f35b610351600480360381019061034c91906116f4565b610a70565b005b61036d600480360381019061036891906116f4565b610b61565b60405161037a919061174c565b60405180910390f35b61038b610b83565b6040516103989190611774565b60405180910390f35b6103bb60048036038101906103b69190611864565b610ba7565b6040516103c89190611774565b60405180910390f35b6103eb60048036038101906103e69190611811565b610c29565b005b6060600380546103fc906118cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610428906118cf565b80156104735780601f1061044a57610100808354040283529160200191610473565b820191905f5260205f20905b81548152906001019060200180831161045657829003601f168201915b5050505050905090565b5f80610487610dd1565b9050610494818585610dd8565b600191505092915050565b60075481565b6104ad610dd1565b73ffffffffffffffffffffffffffffffffffffffff166104cb6109b8565b73ffffffffffffffffffffffffffffffffffffffff1614610521576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051890611949565b60405180910390fd5b7f00000000000000000000000031a4ffe71bfeadbda769d4a3e03bf4ae5c28ee3173ffffffffffffffffffffffffffffffffffffffff166323b872dd8330846040518463ffffffff1660e01b815260040161057e93929190611967565b6020604051808303815f875af115801561059a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105be91906119c6565b505f60647f000000000000000000000000000000000000000000000000000000000000189c6105ed9190611a1e565b90505f5b600754811015610654576127107f00000000000000000000000000000000000000000000000000000000000002bc8361062a9190611a1e565b6106349190611a8c565b8261063f9190611abc565b9150808061064c90611aef565b9150506105f1565b505f61271082846106659190611a1e565b61066f9190611a8c565b905061067b8482610dea565b6106a660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610dea565b50505050565b5f600254905090565b5f806106bf610dd1565b90506106cc858285610e69565b6106d7858585610efb565b60019150509392505050565b5f6012905090565b7f00000000000000000000000000000000000000000000000000000000000002bc81565b610717610dd1565b73ffffffffffffffffffffffffffffffffffffffff166107356109b8565b73ffffffffffffffffffffffffffffffffffffffff161461078b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078290611949565b60405180910390fd5b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61081b610dd1565b73ffffffffffffffffffffffffffffffffffffffff166108396109b8565b73ffffffffffffffffffffffffffffffffffffffff161461088f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088690611949565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f60055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b7f000000000000000000000000000000000000000000000000000000006699ae9781565b7f00000000000000000000000031a4ffe71bfeadbda769d4a3e03bf4ae5c28ee3181565b7f0000000000000000000000000000000000000000000000000000000000093a8081565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109ef906118cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1b906118cf565b8015610a665780601f10610a3d57610100808354040283529160200191610a66565b820191905f5260205f20905b815481529060010190602001808311610a4957829003601f168201915b5050505050905090565b610a78610dd1565b73ffffffffffffffffffffffffffffffffffffffff16610a966109b8565b73ffffffffffffffffffffffffffffffffffffffff1614610aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae390611949565b60405180910390fd5b610af68282610feb565b5f7f000000000000000000000000000000000000000000000000000000006699ae9742610b239190611b36565b90505f7f0000000000000000000000000000000000000000000000000000000000093a8082610b529190611a8c565b90508060078190555050505050565b5f80610b6b610dd1565b9050610b78818585610efb565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000189c81565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610c31610dd1565b73ffffffffffffffffffffffffffffffffffffffff16610c4f6109b8565b73ffffffffffffffffffffffffffffffffffffffff1614610ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9c90611949565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a90611bd9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a38060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f33905090565b610de583838360016111d1565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e5a575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610e51919061184b565b60405180910390fd5b610e655f83836113a0565b5050565b5f610e748484610ba7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ef55781811015610ee6578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610edd93929190611bf7565b60405180910390fd5b610ef484848484035f6111d1565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f6b575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610f62919061184b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fdb575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610fd2919061184b565b60405180910390fd5b610fe68383836113a0565b505050565b5f7f00000000000000000000000031a4ffe71bfeadbda769d4a3e03bf4ae5c28ee3173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611045919061184b565b602060405180830381865afa158015611060573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110849190611c40565b90508082111561112f577f00000000000000000000000031a4ffe71bfeadbda769d4a3e03bf4ae5c28ee3173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b81526004016110e9929190611c6b565b6020604051808303815f875af1158015611105573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061112991906119c6565b506111cc565b7f00000000000000000000000031a4ffe71bfeadbda769d4a3e03bf4ae5c28ee3173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b815260040161118a929190611c6b565b6020604051808303815f875af11580156111a6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111ca91906119c6565b505b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611241575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401611238919061184b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112b1575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016112a8919061184b565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561139a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516113919190611774565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113f0578060025f8282546113e49190611abc565b925050819055506114be565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611479578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161147093929190611bf7565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611505578060025f828254039250508190555061154f565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115ac9190611774565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156115f05780820151818401526020810190506115d5565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611615826115b9565b61161f81856115c3565b935061162f8185602086016115d3565b611638816115fb565b840191505092915050565b5f6020820190508181035f83015261165b818461160b565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61169082611667565b9050919050565b6116a081611686565b81146116aa575f80fd5b50565b5f813590506116bb81611697565b92915050565b5f819050919050565b6116d3816116c1565b81146116dd575f80fd5b50565b5f813590506116ee816116ca565b92915050565b5f806040838503121561170a57611709611663565b5b5f611717858286016116ad565b9250506020611728858286016116e0565b9150509250929050565b5f8115159050919050565b61174681611732565b82525050565b5f60208201905061175f5f83018461173d565b92915050565b61176e816116c1565b82525050565b5f6020820190506117875f830184611765565b92915050565b5f805f606084860312156117a4576117a3611663565b5b5f6117b1868287016116ad565b93505060206117c2868287016116ad565b92505060406117d3868287016116e0565b9150509250925092565b5f60ff82169050919050565b6117f2816117dd565b82525050565b5f60208201905061180b5f8301846117e9565b92915050565b5f6020828403121561182657611825611663565b5b5f611833848285016116ad565b91505092915050565b61184581611686565b82525050565b5f60208201905061185e5f83018461183c565b92915050565b5f806040838503121561187a57611879611663565b5b5f611887858286016116ad565b9250506020611898858286016116ad565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806118e657607f821691505b6020821081036118f9576118f86118a2565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6119336020836115c3565b915061193e826118ff565b602082019050919050565b5f6020820190508181035f83015261196081611927565b9050919050565b5f60608201905061197a5f83018661183c565b611987602083018561183c565b6119946040830184611765565b949350505050565b6119a581611732565b81146119af575f80fd5b50565b5f815190506119c08161199c565b92915050565b5f602082840312156119db576119da611663565b5b5f6119e8848285016119b2565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611a28826116c1565b9150611a33836116c1565b9250828202611a41816116c1565b91508282048414831517611a5857611a576119f1565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611a96826116c1565b9150611aa1836116c1565b925082611ab157611ab0611a5f565b5b828204905092915050565b5f611ac6826116c1565b9150611ad1836116c1565b9250828201905080821115611ae957611ae86119f1565b5b92915050565b5f611af9826116c1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611b2b57611b2a6119f1565b5b600182019050919050565b5f611b40826116c1565b9150611b4b836116c1565b9250828203905081811115611b6357611b626119f1565b5b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611bc36026836115c3565b9150611bce82611b69565b604082019050919050565b5f6020820190508181035f830152611bf081611bb7565b9050919050565b5f606082019050611c0a5f83018661183c565b611c176020830185611765565b611c246040830184611765565b949350505050565b5f81519050611c3a816116ca565b92915050565b5f60208284031215611c5557611c54611663565b5b5f611c6284828501611c2c565b91505092915050565b5f604082019050611c7e5f83018561183c565b611c8b6020830184611765565b939250505056fea26469706673582212202a01925ac3e3de6243e9c9867edb278296463213af6431ddacea593e44e7107864736f6c63430008140033