false
true
0

Contract Address Details

0x28dF895D4Aada499f0c665859F33b9c7abAC3601

Token
pBFF (pBFF)
Creator
0x369418–c59888 at 0x8a690c–094e5a
Balance
0 PLS ( )
Tokens
Fetching tokens...
Transactions
960 Transactions
Transfers
0 Transfers
Gas Used
0
Last Balance Update
25914592
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
Contract name:
pBFF




Optimization enabled
false
Compiler version
v0.8.21+commit.d9974bed




EVM Version
default




Verified at
2024-06-02T16:20:06.828389Z

Contract source code

//SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.8.21;

address constant dead = address(0x000000000000000000000000000000000000dEaD);

address constant BFF = address(0xE35A842eb1EDca4C710B6c1B1565cE7df13f5996);

// 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/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract 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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

// 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.5.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract 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}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    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 value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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, _allowances[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 = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `reciBFFent`.
     *
     * 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;
        }
        _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;
        _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;
        }
        _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 Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * 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: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}




pragma solidity ^0.8.21;


contract pBFF is ERC20, ERC20Burnable, Ownable {
    IERC20 private bFF;
    uint256 private mintCounter;

    constructor() ERC20(unicode"pBFF", unicode"pBFF") {
        bFF = IERC20(BFF);
        mintCounter = 0;
    }

    function BuyWithBFF() public {
        address sender = _msgSender();
        uint256 price = calculatePrice();

        // Check if the sender has enough BFF tokens for minting
        require(bFF.balanceOf(sender) >= price, unicode"Not enough BFF tokens available");

        bool success1 = bFF.transferFrom(sender, address(dead), price);
        require(success1, unicode"Error! Revert! BFF Not Yet Approved!");


        _mint(sender, 777 * 10 ** decimals());
        mintCounter++;
    }

    function calculatePrice() internal view returns (uint256) {
        // Calculate price based on an elongated exponential curve
        uint256 price = 77000000000000 * (2 ** (mintCounter / 100));
        return price;
    }
}
        

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":"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":"nonpayable","outputs":[],"name":"BuyWithBFF","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":"nonpayable","outputs":[],"name":"burn","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burnFrom","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"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":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","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":"amount","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":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]}]
              

Contract Creation Code

Verify & Publish
0x608060405234801562000010575f80fd5b506040518060400160405280600481526020017f70424646000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f704246460000000000000000000000000000000000000000000000000000000081525081600390816200008e919062000452565b508060049081620000a0919062000452565b505050620000c3620000b76200012460201b60201c565b6200012b60201b60201c565b73e35a842eb1edca4c710b6c1b1565ce7df13f599660065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f60078190555062000536565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200026a57607f821691505b60208210810362000280576200027f62000225565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620002e47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002a7565b620002f08683620002a7565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200033a620003346200032e8462000308565b62000311565b62000308565b9050919050565b5f819050919050565b62000355836200031a565b6200036d620003648262000341565b848454620002b3565b825550505050565b5f90565b6200038362000375565b620003908184846200034a565b505050565b5b81811015620003b757620003ab5f8262000379565b60018101905062000396565b5050565b601f8211156200040657620003d08162000286565b620003db8462000298565b81016020851015620003eb578190505b62000403620003fa8562000298565b83018262000395565b50505b505050565b5f82821c905092915050565b5f620004285f19846008026200040b565b1980831691505092915050565b5f62000442838362000417565b9150826002028217905092915050565b6200045d82620001ee565b67ffffffffffffffff811115620004795762000478620001f8565b5b62000485825462000252565b62000492828285620003bb565b5f60209050601f831160018114620004c8575f8415620004b3578287015190505b620004bf858262000435565b8655506200052e565b601f198416620004d88662000286565b5f5b828110156200050157848901518255600182019150602085019450602081019050620004da565b868310156200052157848901516200051d601f89168262000417565b8355505b6001600288020188555050505b505050505050565b61230980620005445f395ff3fe608060405234801561000f575f80fd5b5060043610610109575f3560e01c8063715018a6116100a057806395d89b411161006f57806395d89b4114610291578063a457c2d7146102af578063a9059cbb146102df578063dd62ed3e1461030f578063f2fde38b1461033f57610109565b8063715018a61461024357806379cc67901461024d57806385d81cfa146102695780638da5cb5b1461027357610109565b8063313ce567116100dc578063313ce567146101a957806339509351146101c757806342966c68146101f757806370a082311461021357610109565b806306fdde031461010d578063095ea7b31461012b57806318160ddd1461015b57806323b872dd14610179575b5f80fd5b61011561035b565b60405161012291906114bc565b60405180910390f35b6101456004803603810190610140919061156d565b6103eb565b60405161015291906115c5565b60405180910390f35b61016361040d565b60405161017091906115ed565b60405180910390f35b610193600480360381019061018e9190611606565b610416565b6040516101a091906115c5565b60405180910390f35b6101b1610444565b6040516101be9190611671565b60405180910390f35b6101e160048036038101906101dc919061156d565b61044c565b6040516101ee91906115c5565b60405180910390f35b610211600480360381019061020c919061168a565b6104f1565b005b61022d600480360381019061022891906116b5565b610505565b60405161023a91906115ed565b60405180910390f35b61024b61054a565b005b6102676004803603810190610262919061156d565b6105d1565b005b6102716105f1565b005b61027b61080b565b60405161028891906116ef565b60405180910390f35b610299610833565b6040516102a691906114bc565b60405180910390f35b6102c960048036038101906102c4919061156d565b6108c3565b6040516102d691906115c5565b60405180910390f35b6102f960048036038101906102f4919061156d565b6109a7565b60405161030691906115c5565b60405180910390f35b61032960048036038101906103249190611708565b6109c9565b60405161033691906115ed565b60405180910390f35b610359600480360381019061035491906116b5565b610a4b565b005b60606003805461036a90611773565b80601f016020809104026020016040519081016040528092919081815260200182805461039690611773565b80156103e15780601f106103b8576101008083540402835291602001916103e1565b820191905f5260205f20905b8154815290600101906020018083116103c457829003601f168201915b5050505050905090565b5f806103f5610b41565b9050610402818585610b48565b600191505092915050565b5f600254905090565b5f80610420610b41565b905061042d858285610d0b565b610438858585610d96565b60019150509392505050565b5f6012905090565b5f80610456610b41565b90506104e681858560015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546104e191906117d0565b610b48565b600191505092915050565b6105026104fc610b41565b8261100b565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610552610b41565b73ffffffffffffffffffffffffffffffffffffffff1661057061080b565b73ffffffffffffffffffffffffffffffffffffffff16146105c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105bd9061184d565b60405180910390fd5b6105cf5f6111d7565b565b6105e3826105dd610b41565b83610d0b565b6105ed828261100b565b5050565b5f6105fa610b41565b90505f61060561129a565b90508060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b815260040161066291906116ef565b602060405180830381865afa15801561067d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106a1919061187f565b10156106e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d9906118f4565b60405180910390fd5b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd8461dead856040518463ffffffff1660e01b815260040161074393929190611912565b6020604051808303815f875af115801561075f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107839190611971565b9050806107c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bc90611a0c565b60405180910390fd5b6107ef836107d1610444565b600a6107dd9190611b59565b6103096107ea9190611ba3565b6112d1565b60075f81548092919061080190611be4565b9190505550505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461084290611773565b80601f016020809104026020016040519081016040528092919081815260200182805461086e90611773565b80156108b95780601f10610890576101008083540402835291602001916108b9565b820191905f5260205f20905b81548152906001019060200180831161089c57829003601f168201915b5050505050905090565b5f806108cd610b41565b90505f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508381101561098e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098590611c9b565b60405180910390fd5b61099b8286868403610b48565b60019250505092915050565b5f806109b1610b41565b90506109be818585610d96565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610a53610b41565b73ffffffffffffffffffffffffffffffffffffffff16610a7161080b565b73ffffffffffffffffffffffffffffffffffffffff1614610ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abe9061184d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2c90611d29565b60405180910390fd5b610b3e816111d7565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bad90611db7565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b90611e45565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cfe91906115ed565b60405180910390a3505050565b5f610d1684846109c9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d905781811015610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7990611ead565b60405180910390fd5b610d8f8484848403610b48565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfb90611f3b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6990611fc9565b60405180910390fd5b610e7d838383611428565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef790612057565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610f8e91906117d0565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ff291906115ed565b60405180910390a361100584848461142d565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611079576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611070906120e5565b60405180910390fd5b611084825f83611428565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fe90612173565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825461115b9190612191565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111bf91906115ed565b60405180910390a36111d2835f8461142d565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8060646007546112ab91906121f1565b60026112b79190612221565b654607f5a5d0006112c89190611ba3565b90508091505090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361133f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611336906122b5565b60405180910390fd5b61134a5f8383611428565b8060025f82825461135b91906117d0565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546113ad91906117d0565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161141191906115ed565b60405180910390a36114245f838361142d565b5050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561146957808201518184015260208101905061144e565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61148e82611432565b611498818561143c565b93506114a881856020860161144c565b6114b181611474565b840191505092915050565b5f6020820190508181035f8301526114d48184611484565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611509826114e0565b9050919050565b611519816114ff565b8114611523575f80fd5b50565b5f8135905061153481611510565b92915050565b5f819050919050565b61154c8161153a565b8114611556575f80fd5b50565b5f8135905061156781611543565b92915050565b5f8060408385031215611583576115826114dc565b5b5f61159085828601611526565b92505060206115a185828601611559565b9150509250929050565b5f8115159050919050565b6115bf816115ab565b82525050565b5f6020820190506115d85f8301846115b6565b92915050565b6115e78161153a565b82525050565b5f6020820190506116005f8301846115de565b92915050565b5f805f6060848603121561161d5761161c6114dc565b5b5f61162a86828701611526565b935050602061163b86828701611526565b925050604061164c86828701611559565b9150509250925092565b5f60ff82169050919050565b61166b81611656565b82525050565b5f6020820190506116845f830184611662565b92915050565b5f6020828403121561169f5761169e6114dc565b5b5f6116ac84828501611559565b91505092915050565b5f602082840312156116ca576116c96114dc565b5b5f6116d784828501611526565b91505092915050565b6116e9816114ff565b82525050565b5f6020820190506117025f8301846116e0565b92915050565b5f806040838503121561171e5761171d6114dc565b5b5f61172b85828601611526565b925050602061173c85828601611526565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061178a57607f821691505b60208210810361179d5761179c611746565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6117da8261153a565b91506117e58361153a565b92508282019050808211156117fd576117fc6117a3565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61183760208361143c565b915061184282611803565b602082019050919050565b5f6020820190508181035f8301526118648161182b565b9050919050565b5f8151905061187981611543565b92915050565b5f60208284031215611894576118936114dc565b5b5f6118a18482850161186b565b91505092915050565b7f4e6f7420656e6f7567682042464620746f6b656e7320617661696c61626c65005f82015250565b5f6118de601f8361143c565b91506118e9826118aa565b602082019050919050565b5f6020820190508181035f83015261190b816118d2565b9050919050565b5f6060820190506119255f8301866116e0565b61193260208301856116e0565b61193f60408301846115de565b949350505050565b611950816115ab565b811461195a575f80fd5b50565b5f8151905061196b81611947565b92915050565b5f60208284031215611986576119856114dc565b5b5f6119938482850161195d565b91505092915050565b7f4572726f7221205265766572742120424646204e6f742059657420417070726f5f8201527f7665642100000000000000000000000000000000000000000000000000000000602082015250565b5f6119f660248361143c565b9150611a018261199c565b604082019050919050565b5f6020820190508181035f830152611a23816119ea565b9050919050565b5f8160011c9050919050565b5f808291508390505b6001851115611a7f57808604811115611a5b57611a5a6117a3565b5b6001851615611a6a5780820291505b8081029050611a7885611a2a565b9450611a3f565b94509492505050565b5f82611a975760019050611b52565b81611aa4575f9050611b52565b8160018114611aba5760028114611ac457611af3565b6001915050611b52565b60ff841115611ad657611ad56117a3565b5b8360020a915084821115611aed57611aec6117a3565b5b50611b52565b5060208310610133831016604e8410600b8410161715611b285782820a905083811115611b2357611b226117a3565b5b611b52565b611b358484846001611a36565b92509050818404811115611b4c57611b4b6117a3565b5b81810290505b9392505050565b5f611b638261153a565b9150611b6e83611656565b9250611b9b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611a88565b905092915050565b5f611bad8261153a565b9150611bb88361153a565b9250828202611bc68161153a565b91508282048414831517611bdd57611bdc6117a3565b5b5092915050565b5f611bee8261153a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611c2057611c1f6117a3565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611c8560258361143c565b9150611c9082611c2b565b604082019050919050565b5f6020820190508181035f830152611cb281611c79565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611d1360268361143c565b9150611d1e82611cb9565b604082019050919050565b5f6020820190508181035f830152611d4081611d07565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611da160248361143c565b9150611dac82611d47565b604082019050919050565b5f6020820190508181035f830152611dce81611d95565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611e2f60228361143c565b9150611e3a82611dd5565b604082019050919050565b5f6020820190508181035f830152611e5c81611e23565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611e97601d8361143c565b9150611ea282611e63565b602082019050919050565b5f6020820190508181035f830152611ec481611e8b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611f2560258361143c565b9150611f3082611ecb565b604082019050919050565b5f6020820190508181035f830152611f5281611f19565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611fb360238361143c565b9150611fbe82611f59565b604082019050919050565b5f6020820190508181035f830152611fe081611fa7565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61204160268361143c565b915061204c82611fe7565b604082019050919050565b5f6020820190508181035f83015261206e81612035565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6120cf60218361143c565b91506120da82612075565b604082019050919050565b5f6020820190508181035f8301526120fc816120c3565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f61215d60228361143c565b915061216882612103565b604082019050919050565b5f6020820190508181035f83015261218a81612151565b9050919050565b5f61219b8261153a565b91506121a68361153a565b92508282039050818111156121be576121bd6117a3565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6121fb8261153a565b91506122068361153a565b925082612216576122156121c4565b5b828204905092915050565b5f61222b8261153a565b91506122368361153a565b92506122637fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611a88565b905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f61229f601f8361143c565b91506122aa8261226b565b602082019050919050565b5f6020820190508181035f8301526122cc81612293565b905091905056fea2646970667358221220aa20623c0c7120a78cd83f00f5bfaa5e2f339dc3b9054b9725e2d79aad68114664736f6c63430008150033

Deployed ByteCode

0x608060405234801561000f575f80fd5b5060043610610109575f3560e01c8063715018a6116100a057806395d89b411161006f57806395d89b4114610291578063a457c2d7146102af578063a9059cbb146102df578063dd62ed3e1461030f578063f2fde38b1461033f57610109565b8063715018a61461024357806379cc67901461024d57806385d81cfa146102695780638da5cb5b1461027357610109565b8063313ce567116100dc578063313ce567146101a957806339509351146101c757806342966c68146101f757806370a082311461021357610109565b806306fdde031461010d578063095ea7b31461012b57806318160ddd1461015b57806323b872dd14610179575b5f80fd5b61011561035b565b60405161012291906114bc565b60405180910390f35b6101456004803603810190610140919061156d565b6103eb565b60405161015291906115c5565b60405180910390f35b61016361040d565b60405161017091906115ed565b60405180910390f35b610193600480360381019061018e9190611606565b610416565b6040516101a091906115c5565b60405180910390f35b6101b1610444565b6040516101be9190611671565b60405180910390f35b6101e160048036038101906101dc919061156d565b61044c565b6040516101ee91906115c5565b60405180910390f35b610211600480360381019061020c919061168a565b6104f1565b005b61022d600480360381019061022891906116b5565b610505565b60405161023a91906115ed565b60405180910390f35b61024b61054a565b005b6102676004803603810190610262919061156d565b6105d1565b005b6102716105f1565b005b61027b61080b565b60405161028891906116ef565b60405180910390f35b610299610833565b6040516102a691906114bc565b60405180910390f35b6102c960048036038101906102c4919061156d565b6108c3565b6040516102d691906115c5565b60405180910390f35b6102f960048036038101906102f4919061156d565b6109a7565b60405161030691906115c5565b60405180910390f35b61032960048036038101906103249190611708565b6109c9565b60405161033691906115ed565b60405180910390f35b610359600480360381019061035491906116b5565b610a4b565b005b60606003805461036a90611773565b80601f016020809104026020016040519081016040528092919081815260200182805461039690611773565b80156103e15780601f106103b8576101008083540402835291602001916103e1565b820191905f5260205f20905b8154815290600101906020018083116103c457829003601f168201915b5050505050905090565b5f806103f5610b41565b9050610402818585610b48565b600191505092915050565b5f600254905090565b5f80610420610b41565b905061042d858285610d0b565b610438858585610d96565b60019150509392505050565b5f6012905090565b5f80610456610b41565b90506104e681858560015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546104e191906117d0565b610b48565b600191505092915050565b6105026104fc610b41565b8261100b565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610552610b41565b73ffffffffffffffffffffffffffffffffffffffff1661057061080b565b73ffffffffffffffffffffffffffffffffffffffff16146105c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105bd9061184d565b60405180910390fd5b6105cf5f6111d7565b565b6105e3826105dd610b41565b83610d0b565b6105ed828261100b565b5050565b5f6105fa610b41565b90505f61060561129a565b90508060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b815260040161066291906116ef565b602060405180830381865afa15801561067d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106a1919061187f565b10156106e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d9906118f4565b60405180910390fd5b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd8461dead856040518463ffffffff1660e01b815260040161074393929190611912565b6020604051808303815f875af115801561075f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107839190611971565b9050806107c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bc90611a0c565b60405180910390fd5b6107ef836107d1610444565b600a6107dd9190611b59565b6103096107ea9190611ba3565b6112d1565b60075f81548092919061080190611be4565b9190505550505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461084290611773565b80601f016020809104026020016040519081016040528092919081815260200182805461086e90611773565b80156108b95780601f10610890576101008083540402835291602001916108b9565b820191905f5260205f20905b81548152906001019060200180831161089c57829003601f168201915b5050505050905090565b5f806108cd610b41565b90505f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508381101561098e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098590611c9b565b60405180910390fd5b61099b8286868403610b48565b60019250505092915050565b5f806109b1610b41565b90506109be818585610d96565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610a53610b41565b73ffffffffffffffffffffffffffffffffffffffff16610a7161080b565b73ffffffffffffffffffffffffffffffffffffffff1614610ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abe9061184d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2c90611d29565b60405180910390fd5b610b3e816111d7565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bad90611db7565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b90611e45565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cfe91906115ed565b60405180910390a3505050565b5f610d1684846109c9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d905781811015610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7990611ead565b60405180910390fd5b610d8f8484848403610b48565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfb90611f3b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6990611fc9565b60405180910390fd5b610e7d838383611428565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef790612057565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610f8e91906117d0565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ff291906115ed565b60405180910390a361100584848461142d565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611079576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611070906120e5565b60405180910390fd5b611084825f83611428565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fe90612173565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825461115b9190612191565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111bf91906115ed565b60405180910390a36111d2835f8461142d565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8060646007546112ab91906121f1565b60026112b79190612221565b654607f5a5d0006112c89190611ba3565b90508091505090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361133f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611336906122b5565b60405180910390fd5b61134a5f8383611428565b8060025f82825461135b91906117d0565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546113ad91906117d0565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161141191906115ed565b60405180910390a36114245f838361142d565b5050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561146957808201518184015260208101905061144e565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61148e82611432565b611498818561143c565b93506114a881856020860161144c565b6114b181611474565b840191505092915050565b5f6020820190508181035f8301526114d48184611484565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611509826114e0565b9050919050565b611519816114ff565b8114611523575f80fd5b50565b5f8135905061153481611510565b92915050565b5f819050919050565b61154c8161153a565b8114611556575f80fd5b50565b5f8135905061156781611543565b92915050565b5f8060408385031215611583576115826114dc565b5b5f61159085828601611526565b92505060206115a185828601611559565b9150509250929050565b5f8115159050919050565b6115bf816115ab565b82525050565b5f6020820190506115d85f8301846115b6565b92915050565b6115e78161153a565b82525050565b5f6020820190506116005f8301846115de565b92915050565b5f805f6060848603121561161d5761161c6114dc565b5b5f61162a86828701611526565b935050602061163b86828701611526565b925050604061164c86828701611559565b9150509250925092565b5f60ff82169050919050565b61166b81611656565b82525050565b5f6020820190506116845f830184611662565b92915050565b5f6020828403121561169f5761169e6114dc565b5b5f6116ac84828501611559565b91505092915050565b5f602082840312156116ca576116c96114dc565b5b5f6116d784828501611526565b91505092915050565b6116e9816114ff565b82525050565b5f6020820190506117025f8301846116e0565b92915050565b5f806040838503121561171e5761171d6114dc565b5b5f61172b85828601611526565b925050602061173c85828601611526565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061178a57607f821691505b60208210810361179d5761179c611746565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6117da8261153a565b91506117e58361153a565b92508282019050808211156117fd576117fc6117a3565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61183760208361143c565b915061184282611803565b602082019050919050565b5f6020820190508181035f8301526118648161182b565b9050919050565b5f8151905061187981611543565b92915050565b5f60208284031215611894576118936114dc565b5b5f6118a18482850161186b565b91505092915050565b7f4e6f7420656e6f7567682042464620746f6b656e7320617661696c61626c65005f82015250565b5f6118de601f8361143c565b91506118e9826118aa565b602082019050919050565b5f6020820190508181035f83015261190b816118d2565b9050919050565b5f6060820190506119255f8301866116e0565b61193260208301856116e0565b61193f60408301846115de565b949350505050565b611950816115ab565b811461195a575f80fd5b50565b5f8151905061196b81611947565b92915050565b5f60208284031215611986576119856114dc565b5b5f6119938482850161195d565b91505092915050565b7f4572726f7221205265766572742120424646204e6f742059657420417070726f5f8201527f7665642100000000000000000000000000000000000000000000000000000000602082015250565b5f6119f660248361143c565b9150611a018261199c565b604082019050919050565b5f6020820190508181035f830152611a23816119ea565b9050919050565b5f8160011c9050919050565b5f808291508390505b6001851115611a7f57808604811115611a5b57611a5a6117a3565b5b6001851615611a6a5780820291505b8081029050611a7885611a2a565b9450611a3f565b94509492505050565b5f82611a975760019050611b52565b81611aa4575f9050611b52565b8160018114611aba5760028114611ac457611af3565b6001915050611b52565b60ff841115611ad657611ad56117a3565b5b8360020a915084821115611aed57611aec6117a3565b5b50611b52565b5060208310610133831016604e8410600b8410161715611b285782820a905083811115611b2357611b226117a3565b5b611b52565b611b358484846001611a36565b92509050818404811115611b4c57611b4b6117a3565b5b81810290505b9392505050565b5f611b638261153a565b9150611b6e83611656565b9250611b9b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611a88565b905092915050565b5f611bad8261153a565b9150611bb88361153a565b9250828202611bc68161153a565b91508282048414831517611bdd57611bdc6117a3565b5b5092915050565b5f611bee8261153a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611c2057611c1f6117a3565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611c8560258361143c565b9150611c9082611c2b565b604082019050919050565b5f6020820190508181035f830152611cb281611c79565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611d1360268361143c565b9150611d1e82611cb9565b604082019050919050565b5f6020820190508181035f830152611d4081611d07565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611da160248361143c565b9150611dac82611d47565b604082019050919050565b5f6020820190508181035f830152611dce81611d95565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611e2f60228361143c565b9150611e3a82611dd5565b604082019050919050565b5f6020820190508181035f830152611e5c81611e23565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611e97601d8361143c565b9150611ea282611e63565b602082019050919050565b5f6020820190508181035f830152611ec481611e8b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611f2560258361143c565b9150611f3082611ecb565b604082019050919050565b5f6020820190508181035f830152611f5281611f19565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611fb360238361143c565b9150611fbe82611f59565b604082019050919050565b5f6020820190508181035f830152611fe081611fa7565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61204160268361143c565b915061204c82611fe7565b604082019050919050565b5f6020820190508181035f83015261206e81612035565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6120cf60218361143c565b91506120da82612075565b604082019050919050565b5f6020820190508181035f8301526120fc816120c3565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f61215d60228361143c565b915061216882612103565b604082019050919050565b5f6020820190508181035f83015261218a81612151565b9050919050565b5f61219b8261153a565b91506121a68361153a565b92508282039050818111156121be576121bd6117a3565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6121fb8261153a565b91506122068361153a565b925082612216576122156121c4565b5b828204905092915050565b5f61222b8261153a565b91506122368361153a565b92506122637fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611a88565b905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f61229f601f8361143c565b91506122aa8261226b565b602082019050919050565b5f6020820190508181035f8301526122cc81612293565b905091905056fea2646970667358221220aa20623c0c7120a78cd83f00f5bfaa5e2f339dc3b9054b9725e2d79aad68114664736f6c63430008150033