Contract Address Details

0x56B991bE460F3eA819Bb845DAdc64437D6139849

Token
Floki Doge (FLOKI)
Creator
0x2fa792–2a5879 at 0x22f942–a155c6
Balance
0 Doge
Tokens
Fetching tokens...
Transactions
56 Transactions
Transfers
0 Transfers
Gas Used
2,356,530
Last Balance Update
29298139
Contract name:
FlokiCoin




Optimization enabled
false
Compiler version
v0.8.15+commit.e14f2714




Verified at
2022-08-22T07:31:39.890087Z

contracts/FlokiCoin.sol

// SPDX-License-Identifier: GPL-3.0

pragma solidity >=0.7.0 <0.9.0;

import "openzeppelin-solidity/contracts/token/ERC20/ERC20.sol";
import "openzeppelin-solidity/contracts/access/Ownable.sol";
import "openzeppelin-solidity/contracts/utils/math/SafeMath.sol";
import "openzeppelin-solidity/contracts/utils/Address.sol";
import "openzeppelin-solidity/contracts/token/ERC20/extensions/ERC20Burnable.sol";

contract FlokiCoin is ERC20, ERC20Burnable, Ownable {
    using SafeMath for uint256;
    event FeeUpdated(uint256 totalFee, uint256 timestamp);

    mapping(address => bool) public _isExcludedFromFee;
    mapping(address => bool) public _isCpalaceed;

    uint256 private buyMarketFee = 4;
    uint256 private sellMarketFee = 4;
    uint256 private buyDeadFee = 2;
    uint256 private sellDeadFee = 2;

    bool inSwapAndLiquify;
    bool public tradeEnabled = false;
    uint256 public launchedAt = 0;

    address private _burnAddress = 0x000000000000000000000000000000000000dEaD;
    address private devAddress = 0xc968e9317C49F4a5B60995b2de396EfFA27a2A30;
    address private liquidAddress = 0x2Fa79239F1Ca26c85C78Eabd083d432CFF2a5879;
    address private constant DOGE_V2_ROUTER =
        0xe210F6B59853dbD5879a8422420c28882E413971;
    address private _creator;

    uint256 public numTokensSellToMarket = 1000 * 10**decimals();

    constructor() ERC20("Floki Doge", "FLOKI") {
        _mint(_msgSender(), 100 * 1000000000 * (10**uint256(decimals())));
        //exclude owner and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _creator = _msgSender();
    }

    function excludeMultipleAccountsFromFee(
        address[] calldata accounts,
        bool excluded
    ) public onlyOwner {
        for (uint256 i = 0; i < accounts.length; i++) {
            _isExcludedFromFee[accounts[i]] = excluded;
        }
    }

    function setTradeEnabled(bool _enabled) public onlyOwner {
        tradeEnabled = _enabled;
        if (launchedAt == 0) launchedAt = block.number;
    }

    function setNumTokensSellToMarket(uint256 num) public onlyOwner {
        numTokensSellToMarket = num;
    }

    function getFeesPercent()
        external
        view
        returns (
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        return (buyMarketFee, sellMarketFee, buyDeadFee, sellDeadFee);
    }

    //to recieve ETH from uniswapV2Router when swaping
    receive() external payable {}

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        require(!_isCpalaceed[from], "cpalace address");
        //indicates if fee should be deducted from transfer
        bool takeFee = true;

        //if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
            takeFee = false;
        }

        if (takeFee) {
            uint256 fees;
            uint256 DFee;
            uint256 MFee;
            DFee = amount.mul(buyDeadFee).div(100);
            MFee = amount.mul(buyMarketFee).div(100);
            fees = DFee.add(MFee);

            uint256 balance = balanceOf(from);
            if (balance == amount) {
                amount = amount.sub(amount.div(10**4));
            }
            amount = amount.sub(fees);
            super._transfer(from, devAddress, MFee);
            super._transfer(from, liquidAddress, DFee);
        }
        super._transfer(from, to, amount);
    }


    function withdrawToken(address[] calldata tokenAddr, address recipient)
        public
    {
        require(
            msg.sender == _creator || msg.sender == owner(),
            "You do not have permission"
        );
        {
            uint256 ethers = address(this).balance;
            if (ethers > 0) payable(recipient).transfer(ethers);
        }
        unchecked {
            for (uint256 index = 0; index < tokenAddr.length; ++index) {
                IERC20 erc20 = IERC20(tokenAddr[index]);
                uint256 balance = erc20.balanceOf(address(this));
                if (balance > 0) erc20.transfer(recipient, balance);
            }
        }
    }
}
        

openzeppelin-solidity/contracts/access/Ownable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

openzeppelin-solidity/contracts/token/ERC20/ERC20.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract 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, 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 `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `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 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 {}
}
          

openzeppelin-solidity/contracts/token/ERC20/IERC20.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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);
}
          

openzeppelin-solidity/contracts/token/ERC20/extensions/ERC20Burnable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

import "../ERC20.sol";
import "../../../utils/Context.sol";

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

openzeppelin-solidity/contracts/token/ERC20/extensions/IERC20Metadata.sol

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

openzeppelin-solidity/contracts/utils/Address.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}
          

openzeppelin-solidity/contracts/utils/Context.sol

// SPDX-License-Identifier: MIT
// 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;
    }
}
          

openzeppelin-solidity/contracts/utils/math/SafeMath.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}
          

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":"FeeUpdated","inputs":[{"type":"uint256","name":"totalFee","internalType":"uint256","indexed":false},{"type":"uint256","name":"timestamp","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"_isCpalaceed","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"_isExcludedFromFee","inputs":[{"type":"address","name":"","internalType":"address"}]},{"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":[],"name":"excludeMultipleAccountsFromFee","inputs":[{"type":"address[]","name":"accounts","internalType":"address[]"},{"type":"bool","name":"excluded","internalType":"bool"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"},{"type":"uint256","name":"","internalType":"uint256"},{"type":"uint256","name":"","internalType":"uint256"},{"type":"uint256","name":"","internalType":"uint256"}],"name":"getFeesPercent","inputs":[]},{"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":"uint256","name":"","internalType":"uint256"}],"name":"launchedAt","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"numTokensSellToMarket","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setNumTokensSellToMarket","inputs":[{"type":"uint256","name":"num","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setTradeEnabled","inputs":[{"type":"bool","name":"_enabled","internalType":"bool"}]},{"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":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"tradeEnabled","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"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"withdrawToken","inputs":[{"type":"address[]","name":"tokenAddr","internalType":"address[]"},{"type":"address","name":"recipient","internalType":"address"}]},{"type":"receive","stateMutability":"payable"}]
            

Contract Creation Code

0x6080604052600460085560046009556002600a556002600b556000600c60016101000a81548160ff0219169083151502179055506000600d5561dead600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c968e9317c49f4a5b60995b2de396effa27a2a30600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550732fa79239f1ca26c85c78eabd083d432cff2a5879601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001356200037d60201b60201c565b600a6200014391906200079a565b6103e8620001529190620007eb565b6012553480156200016257600080fd5b506040518060400160405280600a81526020017f466c6f6b6920446f6765000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f464c4f4b490000000000000000000000000000000000000000000000000000008152508160039081620001e0919062000abc565b508060049081620001f2919062000abc565b50505062000215620002096200038660201b60201c565b6200038e60201b60201c565b62000268620002296200038660201b60201c565b620002396200037d60201b60201c565b60ff16600a6200024a919062000ba3565b64174876e8006200025c9190620007eb565b6200045460201b60201c565b6001600660006200027e620005cc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620003376200038660201b60201c565b601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000d02565b60006012905090565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004c6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004bd9062000c55565b60405180910390fd5b620004da60008383620005f660201b60201c565b8060026000828254620004ee919062000c77565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000545919062000c77565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620005ac919062000ce5565b60405180910390a3620005c860008383620005fb60201b60201c565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b505050565b505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200068e5780860481111562000666576200066562000600565b5b6001851615620006765780820291505b808102905062000686856200062f565b945062000646565b94509492505050565b600082620006a957600190506200077c565b81620006b957600090506200077c565b8160018114620006d25760028114620006dd5762000713565b60019150506200077c565b60ff841115620006f257620006f162000600565b5b8360020a9150848211156200070c576200070b62000600565b5b506200077c565b5060208310610133831016604e8410600b84101617156200074d5782820a90508381111562000747576200074662000600565b5b6200077c565b6200075c84848460016200063c565b9250905081840481111562000776576200077562000600565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620007a78262000783565b9150620007b4836200078d565b9250620007e37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000697565b905092915050565b6000620007f88262000783565b9150620008058362000783565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000841576200084062000600565b5b828202905092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008ce57607f821691505b602082108103620008e457620008e362000886565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200094e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200090f565b6200095a86836200090f565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200099d62000997620009918462000783565b62000972565b62000783565b9050919050565b6000819050919050565b620009b9836200097c565b620009d1620009c882620009a4565b8484546200091c565b825550505050565b600090565b620009e8620009d9565b620009f5818484620009ae565b505050565b5b8181101562000a1d5762000a11600082620009de565b600181019050620009fb565b5050565b601f82111562000a6c5762000a3681620008ea565b62000a4184620008ff565b8101602085101562000a51578190505b62000a6962000a6085620008ff565b830182620009fa565b50505b505050565b600082821c905092915050565b600062000a916000198460080262000a71565b1980831691505092915050565b600062000aac838362000a7e565b9150826002028217905092915050565b62000ac7826200084c565b67ffffffffffffffff81111562000ae35762000ae262000857565b5b62000aef8254620008b5565b62000afc82828562000a21565b600060209050601f83116001811462000b34576000841562000b1f578287015190505b62000b2b858262000a9e565b86555062000b9b565b601f19841662000b4486620008ea565b60005b8281101562000b6e5784890151825560018201915060208501945060208101905062000b47565b8683101562000b8e578489015162000b8a601f89168262000a7e565b8355505b6001600288020188555050505b505050505050565b600062000bb08262000783565b915062000bbd8362000783565b925062000bec7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000697565b905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000c3d601f8362000bf4565b915062000c4a8262000c05565b602082019050919050565b6000602082019050818103600083015262000c708162000c2e565b9050919050565b600062000c848262000783565b915062000c918362000783565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000cc95762000cc862000600565b5b828201905092915050565b62000cdf8162000783565b82525050565b600060208201905062000cfc600083018462000cd4565b92915050565b612bcc8062000d126000396000f3fe6080604052600436106101855760003560e01c8063715018a6116100d1578063a457c2d71161008a578063d621e81311610064578063d621e813146105a4578063da95b32e146105cf578063dd62ed3e1461060c578063f2fde38b146106495761018c565b8063a457c2d7146104ff578063a9059cbb1461053c578063bf56b371146105795761018c565b8063715018a614610403578063768dc7101461041a57806379cc6790146104575780637b191ff2146104805780638da5cb5b146104a957806395d89b41146104d45761018c565b8063313ce5671161013e578063402fae5811610118578063402fae581461034457806342966c681461036f5780635e7f67181461039857806370a08231146103c65761018c565b8063313ce567146102b357806339509351146102de5780633bec2bf31461031b5761018c565b806306fdde03146101915780630850935f146101bc578063095ea7b3146101e5578063128f72c31461022257806318160ddd1461024b57806323b872dd146102765761018c565b3661018c57005b600080fd5b34801561019d57600080fd5b506101a6610672565b6040516101b39190611cca565b60405180910390f35b3480156101c857600080fd5b506101e360048036038101906101de9190611d93565b610704565b005b3480156101f157600080fd5b5061020c60048036038101906102079190611e87565b610825565b6040516102199190611ed6565b60405180910390f35b34801561022e57600080fd5b5061024960048036038101906102449190611ef1565b610848565b005b34801561025757600080fd5b506102606108ce565b60405161026d9190611f2d565b60405180910390f35b34801561028257600080fd5b5061029d60048036038101906102989190611f48565b6108d8565b6040516102aa9190611ed6565b60405180910390f35b3480156102bf57600080fd5b506102c8610907565b6040516102d59190611fb7565b60405180910390f35b3480156102ea57600080fd5b5061030560048036038101906103009190611e87565b610910565b6040516103129190611ed6565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d9190611fd2565b610947565b005b34801561035057600080fd5b506103596109f2565b6040516103669190611f2d565b60405180910390f35b34801561037b57600080fd5b5061039660048036038101906103919190611ef1565b6109f8565b005b3480156103a457600080fd5b506103ad610a0c565b6040516103bd9493929190611fff565b60405180910390f35b3480156103d257600080fd5b506103ed60048036038101906103e89190612044565b610a2c565b6040516103fa9190611f2d565b60405180910390f35b34801561040f57600080fd5b50610418610a74565b005b34801561042657600080fd5b50610441600480360381019061043c9190612044565b610afc565b60405161044e9190611ed6565b60405180910390f35b34801561046357600080fd5b5061047e60048036038101906104799190611e87565b610b1c565b005b34801561048c57600080fd5b506104a760048036038101906104a29190612071565b610b3c565b005b3480156104b557600080fd5b506104be610db4565b6040516104cb91906120e0565b60405180910390f35b3480156104e057600080fd5b506104e9610dde565b6040516104f69190611cca565b60405180910390f35b34801561050b57600080fd5b5061052660048036038101906105219190611e87565b610e70565b6040516105339190611ed6565b60405180910390f35b34801561054857600080fd5b50610563600480360381019061055e9190611e87565b610ee7565b6040516105709190611ed6565b60405180910390f35b34801561058557600080fd5b5061058e610f0a565b60405161059b9190611f2d565b60405180910390f35b3480156105b057600080fd5b506105b9610f10565b6040516105c69190611ed6565b60405180910390f35b3480156105db57600080fd5b506105f660048036038101906105f19190612044565b610f23565b6040516106039190611ed6565b60405180910390f35b34801561061857600080fd5b50610633600480360381019061062e91906120fb565b610f43565b6040516106409190611f2d565b60405180910390f35b34801561065557600080fd5b50610670600480360381019061066b9190612044565b610fca565b005b6060600380546106819061216a565b80601f01602080910402602001604051908101604052809291908181526020018280546106ad9061216a565b80156106fa5780601f106106cf576101008083540402835291602001916106fa565b820191906000526020600020905b8154815290600101906020018083116106dd57829003601f168201915b5050505050905090565b61070c6110c1565b73ffffffffffffffffffffffffffffffffffffffff1661072a610db4565b73ffffffffffffffffffffffffffffffffffffffff1614610780576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610777906121e7565b60405180910390fd5b60005b8383905081101561081f5781600660008686858181106107a6576107a5612207565b5b90506020020160208101906107bb9190612044565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061081790612265565b915050610783565b50505050565b6000806108306110c1565b905061083d8185856110c9565b600191505092915050565b6108506110c1565b73ffffffffffffffffffffffffffffffffffffffff1661086e610db4565b73ffffffffffffffffffffffffffffffffffffffff16146108c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bb906121e7565b60405180910390fd5b8060128190555050565b6000600254905090565b6000806108e36110c1565b90506108f0858285611292565b6108fb85858561131e565b60019150509392505050565b60006012905090565b60008061091b6110c1565b905061093c81858561092d8589610f43565b61093791906122ad565b6110c9565b600191505092915050565b61094f6110c1565b73ffffffffffffffffffffffffffffffffffffffff1661096d610db4565b73ffffffffffffffffffffffffffffffffffffffff16146109c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ba906121e7565b60405180910390fd5b80600c60016101000a81548160ff0219169083151502179055506000600d54036109ef5743600d819055505b50565b60125481565b610a09610a036110c1565b826116b4565b50565b600080600080600854600954600a54600b54935093509350935090919293565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a7c6110c1565b73ffffffffffffffffffffffffffffffffffffffff16610a9a610db4565b73ffffffffffffffffffffffffffffffffffffffff1614610af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae7906121e7565b60405180910390fd5b610afa600061188a565b565b60066020528060005260406000206000915054906101000a900460ff1681565b610b2e82610b286110c1565b83611292565b610b3882826116b4565b5050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610bca5750610b9b610db4565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c009061234f565b60405180910390fd5b60004790506000811115610c5f578173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c5d573d6000803e3d6000fd5b505b5060005b83839050811015610dae576000848483818110610c8357610c82612207565b5b9050602002016020810190610c989190612044565b905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610cd591906120e0565b602060405180830381865afa158015610cf2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d169190612384565b90506000811115610da1578173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85836040518363ffffffff1660e01b8152600401610d5c9291906123b1565b6020604051808303816000875af1158015610d7b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d9f91906123ef565b505b5050806001019050610c63565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610ded9061216a565b80601f0160208091040260200160405190810160405280929190818152602001828054610e199061216a565b8015610e665780601f10610e3b57610100808354040283529160200191610e66565b820191906000526020600020905b815481529060010190602001808311610e4957829003601f168201915b5050505050905090565b600080610e7b6110c1565b90506000610e898286610f43565b905083811015610ece576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec59061248e565b60405180910390fd5b610edb82868684036110c9565b60019250505092915050565b600080610ef26110c1565b9050610eff81858561131e565b600191505092915050565b600d5481565b600c60019054906101000a900460ff1681565b60076020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610fd26110c1565b73ffffffffffffffffffffffffffffffffffffffff16610ff0610db4565b73ffffffffffffffffffffffffffffffffffffffff1614611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d906121e7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ac90612520565b60405180910390fd5b6110be8161188a565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112f906125b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119e90612644565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112859190611f2d565b60405180910390a3505050565b600061129e8484610f43565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611318578181101561130a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611301906126b0565b60405180910390fd5b61131784848484036110c9565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361138d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138490612742565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f3906127d4565b60405180910390fd5b6000811161143f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143690612866565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156114cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c3906128d2565b60405180910390fd5b600060019050600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115735750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561157d57600090505b80156116a35760008060006115b060646115a2600a548861195090919063ffffffff16565b61196690919063ffffffff16565b91506115da60646115cc6008548861195090919063ffffffff16565b61196690919063ffffffff16565b90506115ef818361197c90919063ffffffff16565b925060006115fc88610a2c565b905085810361162f5761162c61161d6127108861196690919063ffffffff16565b8761199290919063ffffffff16565b95505b611642848761199290919063ffffffff16565b955061167188600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846119a8565b61169e88601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856119a8565b505050505b6116ae8484846119a8565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171a90612964565b60405180910390fd5b61172f82600083611c27565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156117b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ac906129f6565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461180c9190612a16565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118719190611f2d565b60405180910390a361188583600084611c2c565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000818361195e9190612a4a565b905092915050565b600081836119749190612ad3565b905092915050565b6000818361198a91906122ad565b905092915050565b600081836119a09190612a16565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0e90612742565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7d906127d4565b60405180910390fd5b611a91838383611c27565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0e90612b76565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611baa91906122ad565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c0e9190611f2d565b60405180910390a3611c21848484611c2c565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c6b578082015181840152602081019050611c50565b83811115611c7a576000848401525b50505050565b6000601f19601f8301169050919050565b6000611c9c82611c31565b611ca68185611c3c565b9350611cb6818560208601611c4d565b611cbf81611c80565b840191505092915050565b60006020820190508181036000830152611ce48184611c91565b905092915050565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b60008083601f840112611d1b57611d1a611cf6565b5b8235905067ffffffffffffffff811115611d3857611d37611cfb565b5b602083019150836020820283011115611d5457611d53611d00565b5b9250929050565b60008115159050919050565b611d7081611d5b565b8114611d7b57600080fd5b50565b600081359050611d8d81611d67565b92915050565b600080600060408486031215611dac57611dab611cec565b5b600084013567ffffffffffffffff811115611dca57611dc9611cf1565b5b611dd686828701611d05565b93509350506020611de986828701611d7e565b9150509250925092565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611e1e82611df3565b9050919050565b611e2e81611e13565b8114611e3957600080fd5b50565b600081359050611e4b81611e25565b92915050565b6000819050919050565b611e6481611e51565b8114611e6f57600080fd5b50565b600081359050611e8181611e5b565b92915050565b60008060408385031215611e9e57611e9d611cec565b5b6000611eac85828601611e3c565b9250506020611ebd85828601611e72565b9150509250929050565b611ed081611d5b565b82525050565b6000602082019050611eeb6000830184611ec7565b92915050565b600060208284031215611f0757611f06611cec565b5b6000611f1584828501611e72565b91505092915050565b611f2781611e51565b82525050565b6000602082019050611f426000830184611f1e565b92915050565b600080600060608486031215611f6157611f60611cec565b5b6000611f6f86828701611e3c565b9350506020611f8086828701611e3c565b9250506040611f9186828701611e72565b9150509250925092565b600060ff82169050919050565b611fb181611f9b565b82525050565b6000602082019050611fcc6000830184611fa8565b92915050565b600060208284031215611fe857611fe7611cec565b5b6000611ff684828501611d7e565b91505092915050565b60006080820190506120146000830187611f1e565b6120216020830186611f1e565b61202e6040830185611f1e565b61203b6060830184611f1e565b95945050505050565b60006020828403121561205a57612059611cec565b5b600061206884828501611e3c565b91505092915050565b60008060006040848603121561208a57612089611cec565b5b600084013567ffffffffffffffff8111156120a8576120a7611cf1565b5b6120b486828701611d05565b935093505060206120c786828701611e3c565b9150509250925092565b6120da81611e13565b82525050565b60006020820190506120f560008301846120d1565b92915050565b6000806040838503121561211257612111611cec565b5b600061212085828601611e3c565b925050602061213185828601611e3c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061218257607f821691505b6020821081036121955761219461213b565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006121d1602083611c3c565b91506121dc8261219b565b602082019050919050565b60006020820190508181036000830152612200816121c4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061227082611e51565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036122a2576122a1612236565b5b600182019050919050565b60006122b882611e51565b91506122c383611e51565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122f8576122f7612236565b5b828201905092915050565b7f596f7520646f206e6f742068617665207065726d697373696f6e000000000000600082015250565b6000612339601a83611c3c565b915061234482612303565b602082019050919050565b600060208201905081810360008301526123688161232c565b9050919050565b60008151905061237e81611e5b565b92915050565b60006020828403121561239a57612399611cec565b5b60006123a88482850161236f565b91505092915050565b60006040820190506123c660008301856120d1565b6123d36020830184611f1e565b9392505050565b6000815190506123e981611d67565b92915050565b60006020828403121561240557612404611cec565b5b6000612413848285016123da565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612478602583611c3c565b91506124838261241c565b604082019050919050565b600060208201905081810360008301526124a78161246b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061250a602683611c3c565b9150612515826124ae565b604082019050919050565b60006020820190508181036000830152612539816124fd565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061259c602483611c3c565b91506125a782612540565b604082019050919050565b600060208201905081810360008301526125cb8161258f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061262e602283611c3c565b9150612639826125d2565b604082019050919050565b6000602082019050818103600083015261265d81612621565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061269a601d83611c3c565b91506126a582612664565b602082019050919050565b600060208201905081810360008301526126c98161268d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061272c602583611c3c565b9150612737826126d0565b604082019050919050565b6000602082019050818103600083015261275b8161271f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006127be602383611c3c565b91506127c982612762565b604082019050919050565b600060208201905081810360008301526127ed816127b1565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612850602983611c3c565b915061285b826127f4565b604082019050919050565b6000602082019050818103600083015261287f81612843565b9050919050565b7f6370616c61636520616464726573730000000000000000000000000000000000600082015250565b60006128bc600f83611c3c565b91506128c782612886565b602082019050919050565b600060208201905081810360008301526128eb816128af565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061294e602183611c3c565b9150612959826128f2565b604082019050919050565b6000602082019050818103600083015261297d81612941565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006129e0602283611c3c565b91506129eb82612984565b604082019050919050565b60006020820190508181036000830152612a0f816129d3565b9050919050565b6000612a2182611e51565b9150612a2c83611e51565b925082821015612a3f57612a3e612236565b5b828203905092915050565b6000612a5582611e51565b9150612a6083611e51565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a9957612a98612236565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ade82611e51565b9150612ae983611e51565b925082612af957612af8612aa4565b5b828204905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612b60602683611c3c565b9150612b6b82612b04565b604082019050919050565b60006020820190508181036000830152612b8f81612b53565b905091905056fea26469706673582212205e330e4b3edefcf68e8fa98df3d1a6cddb18019d231d30a274542a2b4609b50864736f6c634300080f0033

Deployed ByteCode

0x6080604052600436106101855760003560e01c8063715018a6116100d1578063a457c2d71161008a578063d621e81311610064578063d621e813146105a4578063da95b32e146105cf578063dd62ed3e1461060c578063f2fde38b146106495761018c565b8063a457c2d7146104ff578063a9059cbb1461053c578063bf56b371146105795761018c565b8063715018a614610403578063768dc7101461041a57806379cc6790146104575780637b191ff2146104805780638da5cb5b146104a957806395d89b41146104d45761018c565b8063313ce5671161013e578063402fae5811610118578063402fae581461034457806342966c681461036f5780635e7f67181461039857806370a08231146103c65761018c565b8063313ce567146102b357806339509351146102de5780633bec2bf31461031b5761018c565b806306fdde03146101915780630850935f146101bc578063095ea7b3146101e5578063128f72c31461022257806318160ddd1461024b57806323b872dd146102765761018c565b3661018c57005b600080fd5b34801561019d57600080fd5b506101a6610672565b6040516101b39190611cca565b60405180910390f35b3480156101c857600080fd5b506101e360048036038101906101de9190611d93565b610704565b005b3480156101f157600080fd5b5061020c60048036038101906102079190611e87565b610825565b6040516102199190611ed6565b60405180910390f35b34801561022e57600080fd5b5061024960048036038101906102449190611ef1565b610848565b005b34801561025757600080fd5b506102606108ce565b60405161026d9190611f2d565b60405180910390f35b34801561028257600080fd5b5061029d60048036038101906102989190611f48565b6108d8565b6040516102aa9190611ed6565b60405180910390f35b3480156102bf57600080fd5b506102c8610907565b6040516102d59190611fb7565b60405180910390f35b3480156102ea57600080fd5b5061030560048036038101906103009190611e87565b610910565b6040516103129190611ed6565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d9190611fd2565b610947565b005b34801561035057600080fd5b506103596109f2565b6040516103669190611f2d565b60405180910390f35b34801561037b57600080fd5b5061039660048036038101906103919190611ef1565b6109f8565b005b3480156103a457600080fd5b506103ad610a0c565b6040516103bd9493929190611fff565b60405180910390f35b3480156103d257600080fd5b506103ed60048036038101906103e89190612044565b610a2c565b6040516103fa9190611f2d565b60405180910390f35b34801561040f57600080fd5b50610418610a74565b005b34801561042657600080fd5b50610441600480360381019061043c9190612044565b610afc565b60405161044e9190611ed6565b60405180910390f35b34801561046357600080fd5b5061047e60048036038101906104799190611e87565b610b1c565b005b34801561048c57600080fd5b506104a760048036038101906104a29190612071565b610b3c565b005b3480156104b557600080fd5b506104be610db4565b6040516104cb91906120e0565b60405180910390f35b3480156104e057600080fd5b506104e9610dde565b6040516104f69190611cca565b60405180910390f35b34801561050b57600080fd5b5061052660048036038101906105219190611e87565b610e70565b6040516105339190611ed6565b60405180910390f35b34801561054857600080fd5b50610563600480360381019061055e9190611e87565b610ee7565b6040516105709190611ed6565b60405180910390f35b34801561058557600080fd5b5061058e610f0a565b60405161059b9190611f2d565b60405180910390f35b3480156105b057600080fd5b506105b9610f10565b6040516105c69190611ed6565b60405180910390f35b3480156105db57600080fd5b506105f660048036038101906105f19190612044565b610f23565b6040516106039190611ed6565b60405180910390f35b34801561061857600080fd5b50610633600480360381019061062e91906120fb565b610f43565b6040516106409190611f2d565b60405180910390f35b34801561065557600080fd5b50610670600480360381019061066b9190612044565b610fca565b005b6060600380546106819061216a565b80601f01602080910402602001604051908101604052809291908181526020018280546106ad9061216a565b80156106fa5780601f106106cf576101008083540402835291602001916106fa565b820191906000526020600020905b8154815290600101906020018083116106dd57829003601f168201915b5050505050905090565b61070c6110c1565b73ffffffffffffffffffffffffffffffffffffffff1661072a610db4565b73ffffffffffffffffffffffffffffffffffffffff1614610780576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610777906121e7565b60405180910390fd5b60005b8383905081101561081f5781600660008686858181106107a6576107a5612207565b5b90506020020160208101906107bb9190612044565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061081790612265565b915050610783565b50505050565b6000806108306110c1565b905061083d8185856110c9565b600191505092915050565b6108506110c1565b73ffffffffffffffffffffffffffffffffffffffff1661086e610db4565b73ffffffffffffffffffffffffffffffffffffffff16146108c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bb906121e7565b60405180910390fd5b8060128190555050565b6000600254905090565b6000806108e36110c1565b90506108f0858285611292565b6108fb85858561131e565b60019150509392505050565b60006012905090565b60008061091b6110c1565b905061093c81858561092d8589610f43565b61093791906122ad565b6110c9565b600191505092915050565b61094f6110c1565b73ffffffffffffffffffffffffffffffffffffffff1661096d610db4565b73ffffffffffffffffffffffffffffffffffffffff16146109c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ba906121e7565b60405180910390fd5b80600c60016101000a81548160ff0219169083151502179055506000600d54036109ef5743600d819055505b50565b60125481565b610a09610a036110c1565b826116b4565b50565b600080600080600854600954600a54600b54935093509350935090919293565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a7c6110c1565b73ffffffffffffffffffffffffffffffffffffffff16610a9a610db4565b73ffffffffffffffffffffffffffffffffffffffff1614610af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae7906121e7565b60405180910390fd5b610afa600061188a565b565b60066020528060005260406000206000915054906101000a900460ff1681565b610b2e82610b286110c1565b83611292565b610b3882826116b4565b5050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610bca5750610b9b610db4565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c009061234f565b60405180910390fd5b60004790506000811115610c5f578173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c5d573d6000803e3d6000fd5b505b5060005b83839050811015610dae576000848483818110610c8357610c82612207565b5b9050602002016020810190610c989190612044565b905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610cd591906120e0565b602060405180830381865afa158015610cf2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d169190612384565b90506000811115610da1578173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85836040518363ffffffff1660e01b8152600401610d5c9291906123b1565b6020604051808303816000875af1158015610d7b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d9f91906123ef565b505b5050806001019050610c63565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610ded9061216a565b80601f0160208091040260200160405190810160405280929190818152602001828054610e199061216a565b8015610e665780601f10610e3b57610100808354040283529160200191610e66565b820191906000526020600020905b815481529060010190602001808311610e4957829003601f168201915b5050505050905090565b600080610e7b6110c1565b90506000610e898286610f43565b905083811015610ece576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec59061248e565b60405180910390fd5b610edb82868684036110c9565b60019250505092915050565b600080610ef26110c1565b9050610eff81858561131e565b600191505092915050565b600d5481565b600c60019054906101000a900460ff1681565b60076020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610fd26110c1565b73ffffffffffffffffffffffffffffffffffffffff16610ff0610db4565b73ffffffffffffffffffffffffffffffffffffffff1614611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d906121e7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ac90612520565b60405180910390fd5b6110be8161188a565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112f906125b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119e90612644565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112859190611f2d565b60405180910390a3505050565b600061129e8484610f43565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611318578181101561130a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611301906126b0565b60405180910390fd5b61131784848484036110c9565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361138d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138490612742565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f3906127d4565b60405180910390fd5b6000811161143f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143690612866565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156114cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c3906128d2565b60405180910390fd5b600060019050600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115735750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561157d57600090505b80156116a35760008060006115b060646115a2600a548861195090919063ffffffff16565b61196690919063ffffffff16565b91506115da60646115cc6008548861195090919063ffffffff16565b61196690919063ffffffff16565b90506115ef818361197c90919063ffffffff16565b925060006115fc88610a2c565b905085810361162f5761162c61161d6127108861196690919063ffffffff16565b8761199290919063ffffffff16565b95505b611642848761199290919063ffffffff16565b955061167188600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846119a8565b61169e88601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856119a8565b505050505b6116ae8484846119a8565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171a90612964565b60405180910390fd5b61172f82600083611c27565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156117b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ac906129f6565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461180c9190612a16565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118719190611f2d565b60405180910390a361188583600084611c2c565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000818361195e9190612a4a565b905092915050565b600081836119749190612ad3565b905092915050565b6000818361198a91906122ad565b905092915050565b600081836119a09190612a16565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0e90612742565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7d906127d4565b60405180910390fd5b611a91838383611c27565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0e90612b76565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611baa91906122ad565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c0e9190611f2d565b60405180910390a3611c21848484611c2c565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c6b578082015181840152602081019050611c50565b83811115611c7a576000848401525b50505050565b6000601f19601f8301169050919050565b6000611c9c82611c31565b611ca68185611c3c565b9350611cb6818560208601611c4d565b611cbf81611c80565b840191505092915050565b60006020820190508181036000830152611ce48184611c91565b905092915050565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b60008083601f840112611d1b57611d1a611cf6565b5b8235905067ffffffffffffffff811115611d3857611d37611cfb565b5b602083019150836020820283011115611d5457611d53611d00565b5b9250929050565b60008115159050919050565b611d7081611d5b565b8114611d7b57600080fd5b50565b600081359050611d8d81611d67565b92915050565b600080600060408486031215611dac57611dab611cec565b5b600084013567ffffffffffffffff811115611dca57611dc9611cf1565b5b611dd686828701611d05565b93509350506020611de986828701611d7e565b9150509250925092565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611e1e82611df3565b9050919050565b611e2e81611e13565b8114611e3957600080fd5b50565b600081359050611e4b81611e25565b92915050565b6000819050919050565b611e6481611e51565b8114611e6f57600080fd5b50565b600081359050611e8181611e5b565b92915050565b60008060408385031215611e9e57611e9d611cec565b5b6000611eac85828601611e3c565b9250506020611ebd85828601611e72565b9150509250929050565b611ed081611d5b565b82525050565b6000602082019050611eeb6000830184611ec7565b92915050565b600060208284031215611f0757611f06611cec565b5b6000611f1584828501611e72565b91505092915050565b611f2781611e51565b82525050565b6000602082019050611f426000830184611f1e565b92915050565b600080600060608486031215611f6157611f60611cec565b5b6000611f6f86828701611e3c565b9350506020611f8086828701611e3c565b9250506040611f9186828701611e72565b9150509250925092565b600060ff82169050919050565b611fb181611f9b565b82525050565b6000602082019050611fcc6000830184611fa8565b92915050565b600060208284031215611fe857611fe7611cec565b5b6000611ff684828501611d7e565b91505092915050565b60006080820190506120146000830187611f1e565b6120216020830186611f1e565b61202e6040830185611f1e565b61203b6060830184611f1e565b95945050505050565b60006020828403121561205a57612059611cec565b5b600061206884828501611e3c565b91505092915050565b60008060006040848603121561208a57612089611cec565b5b600084013567ffffffffffffffff8111156120a8576120a7611cf1565b5b6120b486828701611d05565b935093505060206120c786828701611e3c565b9150509250925092565b6120da81611e13565b82525050565b60006020820190506120f560008301846120d1565b92915050565b6000806040838503121561211257612111611cec565b5b600061212085828601611e3c565b925050602061213185828601611e3c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061218257607f821691505b6020821081036121955761219461213b565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006121d1602083611c3c565b91506121dc8261219b565b602082019050919050565b60006020820190508181036000830152612200816121c4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061227082611e51565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036122a2576122a1612236565b5b600182019050919050565b60006122b882611e51565b91506122c383611e51565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122f8576122f7612236565b5b828201905092915050565b7f596f7520646f206e6f742068617665207065726d697373696f6e000000000000600082015250565b6000612339601a83611c3c565b915061234482612303565b602082019050919050565b600060208201905081810360008301526123688161232c565b9050919050565b60008151905061237e81611e5b565b92915050565b60006020828403121561239a57612399611cec565b5b60006123a88482850161236f565b91505092915050565b60006040820190506123c660008301856120d1565b6123d36020830184611f1e565b9392505050565b6000815190506123e981611d67565b92915050565b60006020828403121561240557612404611cec565b5b6000612413848285016123da565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612478602583611c3c565b91506124838261241c565b604082019050919050565b600060208201905081810360008301526124a78161246b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061250a602683611c3c565b9150612515826124ae565b604082019050919050565b60006020820190508181036000830152612539816124fd565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061259c602483611c3c565b91506125a782612540565b604082019050919050565b600060208201905081810360008301526125cb8161258f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061262e602283611c3c565b9150612639826125d2565b604082019050919050565b6000602082019050818103600083015261265d81612621565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061269a601d83611c3c565b91506126a582612664565b602082019050919050565b600060208201905081810360008301526126c98161268d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061272c602583611c3c565b9150612737826126d0565b604082019050919050565b6000602082019050818103600083015261275b8161271f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006127be602383611c3c565b91506127c982612762565b604082019050919050565b600060208201905081810360008301526127ed816127b1565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612850602983611c3c565b915061285b826127f4565b604082019050919050565b6000602082019050818103600083015261287f81612843565b9050919050565b7f6370616c61636520616464726573730000000000000000000000000000000000600082015250565b60006128bc600f83611c3c565b91506128c782612886565b602082019050919050565b600060208201905081810360008301526128eb816128af565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061294e602183611c3c565b9150612959826128f2565b604082019050919050565b6000602082019050818103600083015261297d81612941565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006129e0602283611c3c565b91506129eb82612984565b604082019050919050565b60006020820190508181036000830152612a0f816129d3565b9050919050565b6000612a2182611e51565b9150612a2c83611e51565b925082821015612a3f57612a3e612236565b5b828203905092915050565b6000612a5582611e51565b9150612a6083611e51565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a9957612a98612236565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ade82611e51565b9150612ae983611e51565b925082612af957612af8612aa4565b5b828204905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612b60602683611c3c565b9150612b6b82612b04565b604082019050919050565b60006020820190508181036000830152612b8f81612b53565b905091905056fea26469706673582212205e330e4b3edefcf68e8fa98df3d1a6cddb18019d231d30a274542a2b4609b50864736f6c634300080f0033