false
true
0

Contract Address Details

0x23BBFFfDfA200a237AbE9e2dCf7F81AD0be08457

Token
ROFILS ROOF (RR)
Creator
0x1b9165–c95ebf at 0x027561–199ed2
Balance
0 PLS ( )
Tokens
Fetching tokens...
Transactions
18,341 Transactions
Transfers
0 Transfers
Gas Used
0
Last Balance Update
26091450
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
Contract name:
RofilsRoof




Optimization enabled
false
Compiler version
v0.8.0+commit.c7dfd78e




EVM Version
default




Verified at
2023-10-04T12:27:39.689689Z

Contract source code

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @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;
    }
}

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


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
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/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @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.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.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => 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 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 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 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` 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 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * 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 `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `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.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

    /**
     * @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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= 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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 {}
}

// File: RofilsRoof.sol

/**
 *Submitted for verification at Etherscan.io on 2023-05-10
*/

/**
Utpnm nx f rpqfs tk ymj Zwtqhxlq htrrjwq. F gjfrs tj mtuj, htqqns ktw sdtq ymj hfqzx ytrj rjs Hjd fsq Yzqjhmnl jshnwj.

Utpnm qtwx ymj hfqzx ytrj rkj f ypqqtsx, Utpnm nx wttky ymj Yzqjhmnl nx rtrj ymj gqfsfrj fs f gwfqfqrsjw.

Yzqjhmnl ij qj kq kfqnrfg.

**/


pragma solidity ^0.8.0;


contract RofilsRoof is ERC20 {
    uint256 public constant MAX_SUPPLY = 21_000_000 * 10**18;
    uint256 public constant REBASE_DURATION = 360 days;
    uint256 public constant INITIAL_SUPPLY = 1_000_000 * 10**18;
    uint256 public constant FINAL_SUPPLY = 19_000_000 * 10**18;
    uint256 public constant MINING_DURATION = 315360000; // 10 years in seconds
    uint256 public rebaseStartTime;

    constructor() ERC20("ROFILS ROOF", "RR") {
        _mint(msg.sender, INITIAL_SUPPLY);
        rebaseStartTime = block.timestamp;
    }

    function rebase() internal {
        uint256 elapsedTime = block.timestamp - rebaseStartTime;
        uint256 totalSupplyChange;
        uint256 remainingSupply;

        if (elapsedTime < REBASE_DURATION) {
            totalSupplyChange = (FINAL_SUPPLY - INITIAL_SUPPLY) * elapsedTime / REBASE_DURATION;
            remainingSupply = INITIAL_SUPPLY + totalSupplyChange;
        } else if (elapsedTime >= REBASE_DURATION && elapsedTime < REBASE_DURATION + MINING_DURATION) {
            totalSupplyChange = (MAX_SUPPLY - FINAL_SUPPLY) * (elapsedTime - REBASE_DURATION) / MINING_DURATION;
            remainingSupply = FINAL_SUPPLY + totalSupplyChange;
        } else {
            remainingSupply = MAX_SUPPLY;
        }

        uint256 currentSupply = totalSupply();
        if (currentSupply < remainingSupply) {
            uint256 supplyIncrease = remainingSupply - currentSupply;
            _mint(msg.sender, supplyIncrease);
        }
    }

    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        rebase();
        return super.transfer(recipient, amount);
    }

    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        rebase();
        return super.transferFrom(sender, recipient, amount);
    }
}
        

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[]},{"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":"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":"FINAL_SUPPLY","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"INITIAL_SUPPLY","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"MAX_SUPPLY","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"MINING_DURATION","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"REBASE_DURATION","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":"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":"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":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"rebaseStartTime","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"}]}]
              

Contract Creation Code

Verify & Publish
0x60806040523480156200001157600080fd5b506040518060400160405280600b81526020017f524f46494c5320524f4f460000000000000000000000000000000000000000008152506040518060400160405280600281526020017f525200000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000253565b508060049080519060200190620000af92919062000253565b505050620000ce3369d3c21bcecceda1000000620000db60201b60201c565b42600581905550620004a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200014e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001459062000356565b60405180910390fd5b62000162600083836200024960201b60201c565b8060026000828254620001769190620003a6565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000229919062000378565b60405180910390a362000245600083836200024e60201b60201c565b5050565b505050565b505050565b82805462000261906200040d565b90600052602060002090601f016020900481019282620002855760008555620002d1565b82601f10620002a057805160ff1916838001178555620002d1565b82800160010185558215620002d1579182015b82811115620002d0578251825591602001919060010190620002b3565b5b509050620002e09190620002e4565b5090565b5b80821115620002ff576000816000905550600101620002e5565b5090565b600062000312601f8362000395565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b620003508162000403565b82525050565b60006020820190508181036000830152620003718162000303565b9050919050565b60006020820190506200038f600083018462000345565b92915050565b600082825260208201905092915050565b6000620003b38262000403565b9150620003c08362000403565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620003f857620003f762000443565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200042657607f821691505b602082108114156200043d576200043c62000472565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61178480620004b16000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806332cb6b0c116100a257806395d89b411161007157806395d89b41146102c0578063a457c2d7146102de578063a9059cbb1461030e578063b8fd8e731461033e578063dd62ed3e1461035c5761010b565b806332cb6b0c14610224578063395093511461024257806339605da21461027257806370a08231146102905761010b565b806323b872dd116100de57806323b872dd1461019a5780632ff2e9dc146101ca578063313ce567146101e857806332590c5c146102065761010b565b806302f034d51461011057806306fdde031461012e578063095ea7b31461014c57806318160ddd1461017c575b600080fd5b61011861038c565b6040516101259190611461565b60405180910390f35b610136610394565b604051610143919061133f565b60405180910390f35b61016660048036038101906101619190610f9e565b610426565b6040516101739190611324565b60405180910390f35b610184610449565b6040516101919190611461565b60405180910390f35b6101b460048036038101906101af9190610f4f565b610453565b6040516101c19190611324565b60405180910390f35b6101d2610471565b6040516101df9190611461565b60405180910390f35b6101f061047f565b6040516101fd919061147c565b60405180910390f35b61020e610488565b60405161021b9190611461565b60405180910390f35b61022c610490565b6040516102399190611461565b60405180910390f35b61025c60048036038101906102579190610f9e565b61049f565b6040516102699190611324565b60405180910390f35b61027a6104d6565b6040516102879190611461565b60405180910390f35b6102aa60048036038101906102a59190610eea565b6104e5565b6040516102b79190611461565b60405180910390f35b6102c861052d565b6040516102d5919061133f565b60405180910390f35b6102f860048036038101906102f39190610f9e565b6105bf565b6040516103059190611324565b60405180910390f35b61032860048036038101906103239190610f9e565b610636565b6040516103359190611324565b60405180910390f35b610346610652565b6040516103539190611461565b60405180910390f35b61037660048036038101906103719190610f13565b610658565b6040516103839190611461565b60405180910390f35b6301da9c0081565b6060600380546103a390611650565b80601f01602080910402602001604051908101604052809291908181526020018280546103cf90611650565b801561041c5780601f106103f15761010080835404028352916020019161041c565b820191906000526020600020905b8154815290600101906020018083116103ff57829003601f168201915b5050505050905090565b6000806104316106df565b905061043e8185856106e7565b600191505092915050565b6000600254905090565b600061045d6108b2565b610468848484610a09565b90509392505050565b69d3c21bcecceda100000081565b60006012905090565b6312cc030081565b6a115eec47f6cf7e3500000081565b6000806104aa6106df565b90506104cb8185856104bc8589610658565b6104c691906114b3565b6106e7565b600191505092915050565b6a0fb768105935a2f300000081565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461053c90611650565b80601f016020809104026020016040519081016040528092919081815260200182805461056890611650565b80156105b55780601f1061058a576101008083540402835291602001916105b5565b820191906000526020600020905b81548152906001019060200180831161059857829003601f168201915b5050505050905090565b6000806105ca6106df565b905060006105d88286610658565b90508381101561061d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061490611421565b60405180910390fd5b61062a82868684036106e7565b60019250505092915050565b60006106406108b2565b61064a8383610a38565b905092915050565b60055481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074e90611401565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156107c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107be90611381565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108a59190611461565b60405180910390a3505050565b6000600554426108c29190611594565b90506000806301da9c0083101561092d576301da9c008369d3c21bcecceda10000006a0fb768105935a2f30000006108fa9190611594565b610904919061153a565b61090e9190611509565b91508169d3c21bcecceda100000061092691906114b3565b90506109d3565b6301da9c00831015801561095357506312cc03006301da9c0061095091906114b3565b83105b156109c3576312cc03006301da9c008461096d9190611594565b6a0fb768105935a2f30000006a115eec47f6cf7e3500000061098f9190611594565b610999919061153a565b6109a39190611509565b9150816a0fb768105935a2f30000006109bc91906114b3565b90506109d2565b6a115eec47f6cf7e3500000090505b5b60006109dd610449565b905081811015610a0357600081836109f59190611594565b9050610a013382610a5b565b505b50505050565b600080610a146106df565b9050610a21858285610bb2565b610a2c858585610c3e565b60019150509392505050565b600080610a436106df565b9050610a50818585610c3e565b600191505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac290611441565b60405180910390fd5b610ad760008383610eb6565b8060026000828254610ae991906114b3565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b9a9190611461565b60405180910390a3610bae60008383610ebb565b5050565b6000610bbe8484610658565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c385781811015610c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c21906113a1565b60405180910390fd5b610c3784848484036106e7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca5906113e1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1590611361565b60405180910390fd5b610d29838383610eb6565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da6906113c1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e9d9190611461565b60405180910390a3610eb0848484610ebb565b50505050565b505050565b505050565b600081359050610ecf81611720565b92915050565b600081359050610ee481611737565b92915050565b600060208284031215610efc57600080fd5b6000610f0a84828501610ec0565b91505092915050565b60008060408385031215610f2657600080fd5b6000610f3485828601610ec0565b9250506020610f4585828601610ec0565b9150509250929050565b600080600060608486031215610f6457600080fd5b6000610f7286828701610ec0565b9350506020610f8386828701610ec0565b9250506040610f9486828701610ed5565b9150509250925092565b60008060408385031215610fb157600080fd5b6000610fbf85828601610ec0565b9250506020610fd085828601610ed5565b9150509250929050565b610fe3816115da565b82525050565b6000610ff482611497565b610ffe81856114a2565b935061100e81856020860161161d565b6110178161170f565b840191505092915050565b600061102f6023836114a2565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006110956022836114a2565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006110fb601d836114a2565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b600061113b6026836114a2565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006111a16025836114a2565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112076024836114a2565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061126d6025836114a2565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112d3601f836114a2565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b61130f81611606565b82525050565b61131e81611610565b82525050565b60006020820190506113396000830184610fda565b92915050565b600060208201905081810360008301526113598184610fe9565b905092915050565b6000602082019050818103600083015261137a81611022565b9050919050565b6000602082019050818103600083015261139a81611088565b9050919050565b600060208201905081810360008301526113ba816110ee565b9050919050565b600060208201905081810360008301526113da8161112e565b9050919050565b600060208201905081810360008301526113fa81611194565b9050919050565b6000602082019050818103600083015261141a816111fa565b9050919050565b6000602082019050818103600083015261143a81611260565b9050919050565b6000602082019050818103600083015261145a816112c6565b9050919050565b60006020820190506114766000830184611306565b92915050565b60006020820190506114916000830184611315565b92915050565b600081519050919050565b600082825260208201905092915050565b60006114be82611606565b91506114c983611606565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156114fe576114fd611682565b5b828201905092915050565b600061151482611606565b915061151f83611606565b92508261152f5761152e6116b1565b5b828204905092915050565b600061154582611606565b915061155083611606565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561158957611588611682565b5b828202905092915050565b600061159f82611606565b91506115aa83611606565b9250828210156115bd576115bc611682565b5b828203905092915050565b60006115d3826115e6565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561163b578082015181840152602081019050611620565b8381111561164a576000848401525b50505050565b6000600282049050600182168061166857607f821691505b6020821081141561167c5761167b6116e0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611729816115c8565b811461173457600080fd5b50565b61174081611606565b811461174b57600080fd5b5056fea2646970667358221220b8dbd420d5b57bd05ef3d6f2543f49f65261202ef906770f9168fc14bd05354264736f6c63430008000033

Deployed ByteCode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806332cb6b0c116100a257806395d89b411161007157806395d89b41146102c0578063a457c2d7146102de578063a9059cbb1461030e578063b8fd8e731461033e578063dd62ed3e1461035c5761010b565b806332cb6b0c14610224578063395093511461024257806339605da21461027257806370a08231146102905761010b565b806323b872dd116100de57806323b872dd1461019a5780632ff2e9dc146101ca578063313ce567146101e857806332590c5c146102065761010b565b806302f034d51461011057806306fdde031461012e578063095ea7b31461014c57806318160ddd1461017c575b600080fd5b61011861038c565b6040516101259190611461565b60405180910390f35b610136610394565b604051610143919061133f565b60405180910390f35b61016660048036038101906101619190610f9e565b610426565b6040516101739190611324565b60405180910390f35b610184610449565b6040516101919190611461565b60405180910390f35b6101b460048036038101906101af9190610f4f565b610453565b6040516101c19190611324565b60405180910390f35b6101d2610471565b6040516101df9190611461565b60405180910390f35b6101f061047f565b6040516101fd919061147c565b60405180910390f35b61020e610488565b60405161021b9190611461565b60405180910390f35b61022c610490565b6040516102399190611461565b60405180910390f35b61025c60048036038101906102579190610f9e565b61049f565b6040516102699190611324565b60405180910390f35b61027a6104d6565b6040516102879190611461565b60405180910390f35b6102aa60048036038101906102a59190610eea565b6104e5565b6040516102b79190611461565b60405180910390f35b6102c861052d565b6040516102d5919061133f565b60405180910390f35b6102f860048036038101906102f39190610f9e565b6105bf565b6040516103059190611324565b60405180910390f35b61032860048036038101906103239190610f9e565b610636565b6040516103359190611324565b60405180910390f35b610346610652565b6040516103539190611461565b60405180910390f35b61037660048036038101906103719190610f13565b610658565b6040516103839190611461565b60405180910390f35b6301da9c0081565b6060600380546103a390611650565b80601f01602080910402602001604051908101604052809291908181526020018280546103cf90611650565b801561041c5780601f106103f15761010080835404028352916020019161041c565b820191906000526020600020905b8154815290600101906020018083116103ff57829003601f168201915b5050505050905090565b6000806104316106df565b905061043e8185856106e7565b600191505092915050565b6000600254905090565b600061045d6108b2565b610468848484610a09565b90509392505050565b69d3c21bcecceda100000081565b60006012905090565b6312cc030081565b6a115eec47f6cf7e3500000081565b6000806104aa6106df565b90506104cb8185856104bc8589610658565b6104c691906114b3565b6106e7565b600191505092915050565b6a0fb768105935a2f300000081565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461053c90611650565b80601f016020809104026020016040519081016040528092919081815260200182805461056890611650565b80156105b55780601f1061058a576101008083540402835291602001916105b5565b820191906000526020600020905b81548152906001019060200180831161059857829003601f168201915b5050505050905090565b6000806105ca6106df565b905060006105d88286610658565b90508381101561061d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061490611421565b60405180910390fd5b61062a82868684036106e7565b60019250505092915050565b60006106406108b2565b61064a8383610a38565b905092915050565b60055481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074e90611401565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156107c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107be90611381565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108a59190611461565b60405180910390a3505050565b6000600554426108c29190611594565b90506000806301da9c0083101561092d576301da9c008369d3c21bcecceda10000006a0fb768105935a2f30000006108fa9190611594565b610904919061153a565b61090e9190611509565b91508169d3c21bcecceda100000061092691906114b3565b90506109d3565b6301da9c00831015801561095357506312cc03006301da9c0061095091906114b3565b83105b156109c3576312cc03006301da9c008461096d9190611594565b6a0fb768105935a2f30000006a115eec47f6cf7e3500000061098f9190611594565b610999919061153a565b6109a39190611509565b9150816a0fb768105935a2f30000006109bc91906114b3565b90506109d2565b6a115eec47f6cf7e3500000090505b5b60006109dd610449565b905081811015610a0357600081836109f59190611594565b9050610a013382610a5b565b505b50505050565b600080610a146106df565b9050610a21858285610bb2565b610a2c858585610c3e565b60019150509392505050565b600080610a436106df565b9050610a50818585610c3e565b600191505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac290611441565b60405180910390fd5b610ad760008383610eb6565b8060026000828254610ae991906114b3565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b9a9190611461565b60405180910390a3610bae60008383610ebb565b5050565b6000610bbe8484610658565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c385781811015610c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c21906113a1565b60405180910390fd5b610c3784848484036106e7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca5906113e1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1590611361565b60405180910390fd5b610d29838383610eb6565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da6906113c1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e9d9190611461565b60405180910390a3610eb0848484610ebb565b50505050565b505050565b505050565b600081359050610ecf81611720565b92915050565b600081359050610ee481611737565b92915050565b600060208284031215610efc57600080fd5b6000610f0a84828501610ec0565b91505092915050565b60008060408385031215610f2657600080fd5b6000610f3485828601610ec0565b9250506020610f4585828601610ec0565b9150509250929050565b600080600060608486031215610f6457600080fd5b6000610f7286828701610ec0565b9350506020610f8386828701610ec0565b9250506040610f9486828701610ed5565b9150509250925092565b60008060408385031215610fb157600080fd5b6000610fbf85828601610ec0565b9250506020610fd085828601610ed5565b9150509250929050565b610fe3816115da565b82525050565b6000610ff482611497565b610ffe81856114a2565b935061100e81856020860161161d565b6110178161170f565b840191505092915050565b600061102f6023836114a2565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006110956022836114a2565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006110fb601d836114a2565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b600061113b6026836114a2565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006111a16025836114a2565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112076024836114a2565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061126d6025836114a2565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112d3601f836114a2565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b61130f81611606565b82525050565b61131e81611610565b82525050565b60006020820190506113396000830184610fda565b92915050565b600060208201905081810360008301526113598184610fe9565b905092915050565b6000602082019050818103600083015261137a81611022565b9050919050565b6000602082019050818103600083015261139a81611088565b9050919050565b600060208201905081810360008301526113ba816110ee565b9050919050565b600060208201905081810360008301526113da8161112e565b9050919050565b600060208201905081810360008301526113fa81611194565b9050919050565b6000602082019050818103600083015261141a816111fa565b9050919050565b6000602082019050818103600083015261143a81611260565b9050919050565b6000602082019050818103600083015261145a816112c6565b9050919050565b60006020820190506114766000830184611306565b92915050565b60006020820190506114916000830184611315565b92915050565b600081519050919050565b600082825260208201905092915050565b60006114be82611606565b91506114c983611606565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156114fe576114fd611682565b5b828201905092915050565b600061151482611606565b915061151f83611606565b92508261152f5761152e6116b1565b5b828204905092915050565b600061154582611606565b915061155083611606565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561158957611588611682565b5b828202905092915050565b600061159f82611606565b91506115aa83611606565b9250828210156115bd576115bc611682565b5b828203905092915050565b60006115d3826115e6565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561163b578082015181840152602081019050611620565b8381111561164a576000848401525b50505050565b6000600282049050600182168061166857607f821691505b6020821081141561167c5761167b6116e0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611729816115c8565b811461173457600080fd5b50565b61174081611606565b811461174b57600080fd5b5056fea2646970667358221220b8dbd420d5b57bd05ef3d6f2543f49f65261202ef906770f9168fc14bd05354264736f6c63430008000033