ETH Price: $2,580.36 (-1.70%)

Token

Proof of UFO ($UFO)
 

Overview

Max Total Supply

986,597.754454142 $UFO

Holders

40

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
40,506.830402451 $UFO

Value
$0.00
0x45e07779b2414d1823b15b031eb7613e151d6175
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ProofOfUFO

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : ProofOfUFO.sol
// SPDX-License-Identifier: MIT                                                                               

pragma solidity 0.8.9;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

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

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

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

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

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);
}


contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;

    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 9;
    }

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

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

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(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);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

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

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to 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 {}
}

library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
    
    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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



library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }


    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}


interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

pragma solidity 0.8.9;

contract ProofOfUFO is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;
        
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
    
    uint256 public supply;

    address public devWallet;
    
    bool public tradingActive = false;
    bool public swapEnabled = true;

    mapping(address => uint256) private _holderLastTransferTimestamp;
    mapping(address => bool) public bots;

    bool public transferDelayEnabled = true;

    uint256 public buyBurnFee;
    uint256 public buyDevFee;
    uint256 public buyTotalFees;

    uint256 public sellBurnFee;
    uint256 public sellDevFee;
    uint256 public sellTotalFees;   
    
    uint256 public tokensForBurn;
    uint256 public tokensForDev;

    uint256 public walletDigit;
    uint256 public transDigit;
    uint256 public delayDigit;
    
    /******************/

    // exlcude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) public _isExcludedMaxTransactionAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    constructor() ERC20("Proof of UFO", "$UFO") {
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;
        
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        
        uint256 _buyBurnFee = 1;
        uint256 _buyDevFee = 5;

        uint256 _sellBurnFee = 1;
        uint256 _sellDevFee = 8;
        
        uint256 totalSupply = 1000000 * 10 ** decimals();
        supply += totalSupply;
        
        walletDigit = 1;
        transDigit = 1;
        delayDigit = 0;

        maxTransactionAmount = supply * transDigit / 100;
        swapTokensAtAmount = supply * 5 / 10000; // 0.05% swap wallet;
        maxWallet = supply * walletDigit / 100;

        buyBurnFee = _buyBurnFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyBurnFee + buyDevFee;
        
        sellBurnFee = _sellBurnFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellBurnFee + sellDevFee;
        
        devWallet = 0xb59dbB641959d775D1A7F68D1ceF0DF935213586;

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        _approve(owner(), address(uniswapV2Router), totalSupply);
        _mint(msg.sender, totalSupply);

    }

    receive() external payable {

    }
    function blockBots(address[] memory bots_) public onlyOwner  {for (uint256 i = 0; i < bots_.length; i++) {bots[bots_[i]] = true;}}

    function unblockBot(address notbot) public onlyOwner {
            bots[notbot] = false;
    }
    function enableTrading() external onlyOwner {
        tradingActive = true;
    }
    
    function updateTransDigit(uint256 newNum) external onlyOwner {
        require(newNum >= 1);
        transDigit = newNum;
        updateLimits();
    }

    function updateWalletDigit(uint256 newNum) external onlyOwner {
        require(newNum >= 1);
        walletDigit = newNum;
        updateLimits();
    }

    function updateDelayDigit(uint256 newNum) external onlyOwner{
        delayDigit = newNum;
    }
    
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }
    
    function updateBuyFees(uint256 _burnFee, uint256 _devFee) external onlyOwner {
        buyBurnFee = _burnFee;
        buyDevFee = _devFee;
        buyTotalFees = buyBurnFee + buyDevFee;
        require(buyTotalFees <= 15, "Must keep fees at 20% or less");
    }
    
    function updateSellFees(uint256 _burnFee, uint256 _devFee) external onlyOwner {
        sellBurnFee = _burnFee;
        sellDevFee = _devFee;
        sellTotalFees = sellBurnFee + sellDevFee;
        require(sellTotalFees <= 15, "Must keep fees at 25% or less");
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        devWallet = newWallet;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function updateLimits() private {
        maxTransactionAmount = supply * transDigit / 100;
        swapTokensAtAmount = supply * 5 / 10000; // 0.05% swap wallet;
        maxWallet = supply * walletDigit / 100;
    }

    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
    
    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(!bots[from] && !bots[to], "This account is blacklisted");
        
         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
        
		if (
			from != owner() &&
			to != owner() &&
			to != address(0) &&
			to != address(0xdead) &&
			!swapping
		){
			if(!tradingActive){
				require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
			}

			// at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.  
			if (transferDelayEnabled){
				if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){
					require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed.");
					_holderLastTransferTimestamp[tx.origin] = block.number + delayDigit;
				}
			}
				
			//when buy
			if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
					require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
					require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
			}
			
			//when sell
			else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
					require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
			}
			else if(!_isExcludedMaxTransactionAmount[to]){
				require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
			}
		}
        uint256 contractTokenBalance = balanceOf(address(this));
        
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if( 
            canSwap &&
            !swapping &&
            swapEnabled &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
            
            swapBack();

            swapping = false;
        }
        
        bool takeFee = !swapping;

        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }
        
        uint256 fees = 0;

        if(takeFee){
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0){
                fees = amount.mul(sellTotalFees).div(100);
                tokensForBurn += fees * sellBurnFee / sellTotalFees;
                tokensForDev += fees * sellDevFee / sellTotalFees;
            }

            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {

                fees = amount.mul(buyTotalFees).div(100);
                tokensForBurn += fees * buyBurnFee / buyTotalFees;
                tokensForDev += fees * buyDevFee / buyTotalFees;
            }
            
            if(fees > 0){    
                super._transfer(from, address(this), fees);
                if (tokensForBurn > 0) {
                    _burn(address(this), tokensForBurn);
                    supply = totalSupply();
                    updateLimits();
                    tokensForBurn = 0;
                }
            }
            
            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {

        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
        
    }
    
    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        bool success;
        
        if(contractBalance == 0) {return;}

        if(contractBalance > swapTokensAtAmount * 20){
          contractBalance = swapTokensAtAmount * 20;
        }

        swapTokensForEth(contractBalance); 
        
        tokensForDev = 0;

        (success,) = address(devWallet).call{value: address(this).balance}("");
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"bots_","type":"address[]"}],"name":"blockBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bots","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"delayDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"notbot","type":"address"}],"name":"unblockBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateDelayDigit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateTransDigit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateWalletDigit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526000600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff0219169083151502179055506001600d60006101000a81548160ff0219169083151502179055503480156200006257600080fd5b506040518060400160405280600c81526020017f50726f6f66206f662055464f00000000000000000000000000000000000000008152506040518060400160405280600481526020017f2455464f000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000e792919062000d7c565b5080600490805190602001906200010092919062000d7c565b5050506000620001156200066c60201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001e08160016200067460201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200025b57600080fd5b505afa15801562000270573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000296919062000e96565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620002f957600080fd5b505afa1580156200030e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000334919062000e96565b6040518363ffffffff1660e01b81526004016200035392919062000ed9565b602060405180830381600087803b1580156200036e57600080fd5b505af115801562000383573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003a9919062000e96565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050620003f160a05160016200067460201b60201c565b6200040660a05160016200077160201b60201c565b6000600190506000600590506000600190506000600890506000620004306200081260201b60201c565b600a6200043e9190620010a0565b620f42406200044e9190620010f1565b9050806009600082825462000464919062001152565b925050819055506001601681905550600160178190555060006018819055506064601754600954620004979190620010f1565b620004a39190620011de565b6006819055506127106005600954620004bd9190620010f1565b620004c99190620011de565b6007819055506064601654600954620004e39190620010f1565b620004ef9190620011de565b60088190555084600e8190555083600f81905550600f54600e5462000515919062001152565b60108190555082601181905550816012819055506012546011546200053b919062001152565b60138190555073b59dbb641959d775d1a7f68d1cef0df935213586600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005b8620005aa6200081b60201b60201c565b60016200084560201b60201c565b620005cb3060016200084560201b60201c565b620005e061dead60016200084560201b60201c565b62000602620005f46200081b60201b60201c565b60016200067460201b60201c565b620006153060016200067460201b60201c565b6200062a61dead60016200067460201b60201c565b6200064e6200063e6200081b60201b60201c565b608051836200099260201b60201c565b62000660338262000b6560201b60201c565b5050505050506200157a565b600033905090565b620006846200066c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000716576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200070d9062001277565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60006009905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008556200066c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620008e7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008de9062001277565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009869190620012b6565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000a05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009fc9062001349565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a78576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a6f90620013e1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000b58919062001414565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000bd8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000bcf9062001481565b60405180910390fd5b62000bec6000838362000d1460201b60201c565b62000c088160025462000d1960201b6200211d1790919060201c565b60028190555062000c66816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000d1960201b6200211d1790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000d08919062001414565b60405180910390a35050565b505050565b600080828462000d2a919062001152565b90508381101562000d72576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d6990620014f3565b60405180910390fd5b8091505092915050565b82805462000d8a9062001544565b90600052602060002090601f01602090048101928262000dae576000855562000dfa565b82601f1062000dc957805160ff191683800117855562000dfa565b8280016001018555821562000dfa579182015b8281111562000df957825182559160200191906001019062000ddc565b5b50905062000e09919062000e0d565b5090565b5b8082111562000e2857600081600090555060010162000e0e565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e5e8262000e31565b9050919050565b62000e708162000e51565b811462000e7c57600080fd5b50565b60008151905062000e908162000e65565b92915050565b60006020828403121562000eaf5762000eae62000e2c565b5b600062000ebf8482850162000e7f565b91505092915050565b62000ed38162000e51565b82525050565b600060408201905062000ef0600083018562000ec8565b62000eff602083018462000ec8565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000f945780860481111562000f6c5762000f6b62000f06565b5b600185161562000f7c5780820291505b808102905062000f8c8562000f35565b945062000f4c565b94509492505050565b60008262000faf576001905062001082565b8162000fbf576000905062001082565b816001811462000fd8576002811462000fe35762001019565b600191505062001082565b60ff84111562000ff85762000ff762000f06565b5b8360020a91508482111562001012576200101162000f06565b5b5062001082565b5060208310610133831016604e8410600b8410161715620010535782820a9050838111156200104d576200104c62000f06565b5b62001082565b62001062848484600162000f42565b925090508184048111156200107c576200107b62000f06565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620010ad8262001089565b9150620010ba8362001093565b9250620010e97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000f9d565b905092915050565b6000620010fe8262001089565b91506200110b8362001089565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562001147576200114662000f06565b5b828202905092915050565b60006200115f8262001089565b91506200116c8362001089565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620011a457620011a362000f06565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620011eb8262001089565b9150620011f88362001089565b9250826200120b576200120a620011af565b5b828204905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200125f60208362001216565b91506200126c8262001227565b602082019050919050565b60006020820190508181036000830152620012928162001250565b9050919050565b60008115159050919050565b620012b08162001299565b82525050565b6000602082019050620012cd6000830184620012a5565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006200133160248362001216565b91506200133e82620012d3565b604082019050919050565b60006020820190508181036000830152620013648162001322565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000620013c960228362001216565b9150620013d6826200136b565b604082019050919050565b60006020820190508181036000830152620013fc81620013ba565b9050919050565b6200140e8162001089565b82525050565b60006020820190506200142b600083018462001403565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001469601f8362001216565b9150620014768262001431565b602082019050919050565b600060208201905081810360008301526200149c816200145a565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000620014db601b8362001216565b9150620014e882620014a3565b602082019050919050565b600060208201905081810360008301526200150e81620014cc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200155d57607f821691505b6020821081141562001574576200157362001515565b5b50919050565b60805160a051614f49620015ca6000396000818161137101528181611ac6015261283c015260008181611010015281816127e4015281816138950152818161398501526139ac0152614f496000f3fe6080604052600436106103025760003560e01c80638a8c523c11610190578063b62496f5116100dc578063d85ba06311610095578063e71dc3f51161006f578063e71dc3f514610ba6578063f203acb614610bd1578063f2fde38b14610bfc578063f8b45b0514610c2557610309565b8063d85ba06314610b13578063dd62ed3e14610b3e578063e2f4560514610b7b57610309565b8063b62496f5146109ef578063bbc0c74214610a2c578063bfd7928414610a57578063c024666814610a94578063c876d0b914610abd578063c8c8ebe414610ae857610309565b80639c3b4fdc11610149578063a0d82dc511610123578063a0d82dc51461091f578063a457c2d71461094a578063a9059cbb14610987578063adb873bd146109c457610309565b80639c3b4fdc146108a05780639fccce32146108cb5780639fdc4824146108f657610309565b80638a8c523c146107b45780638da5cb5b146107cb5780638ea5220f146107f657806395d89b4114610821578063975d71e21461084c5780639a7a23d61461087757610309565b806327c8f8351161024f5780636a486a8e1161020857806370a08231116101e257806370a082311461070c578063715018a6146107495780637571336a146107605780637ab439831461078957610309565b80636a486a8e1461068d5780636b999053146106b85780636ddd1713146106e157610309565b806327c8f83514610569578063313ce5671461059457806339509351146105bf57806349bd5a5e146105fc5780634fbee1931461062757806366ca9b831461066457610309565b8063150de0bb116102bc5780631816467f116102965780631816467f146104af5780631d777856146104d85780631fa07da51461050357806323b872dd1461052c57610309565b8063150de0bb146104305780631694505e1461045957806318160ddd1461048457610309565b8062b8cf2a1461030e57806302dbd8f814610337578063047fc9aa1461036057806306fdde031461038b578063095ea7b3146103b657806310d5de53146103f357610309565b3661030957005b600080fd5b34801561031a57600080fd5b5061033560048036038101906103309190613cba565b610c50565b005b34801561034357600080fd5b5061035e60048036038101906103599190613d39565b610d7c565b005b34801561036c57600080fd5b50610375610e81565b6040516103829190613d88565b60405180910390f35b34801561039757600080fd5b506103a0610e87565b6040516103ad9190613e2b565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d89190613e4d565b610f19565b6040516103ea9190613ea8565b60405180910390f35b3480156103ff57600080fd5b5061041a60048036038101906104159190613ec3565b610f37565b6040516104279190613ea8565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190613ef0565b610f57565b005b34801561046557600080fd5b5061046e61100e565b60405161047b9190613f7c565b60405180910390f35b34801561049057600080fd5b50610499611032565b6040516104a69190613d88565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d19190613ec3565b61103c565b005b3480156104e457600080fd5b506104ed611117565b6040516104fa9190613d88565b60405180910390f35b34801561050f57600080fd5b5061052a60048036038101906105259190613ef0565b61111d565b005b34801561053857600080fd5b50610553600480360381019061054e9190613f97565b6111d4565b6040516105609190613ea8565b60405180910390f35b34801561057557600080fd5b5061057e6112ad565b60405161058b9190613ff9565b60405180910390f35b3480156105a057600080fd5b506105a96112b3565b6040516105b69190614030565b60405180910390f35b3480156105cb57600080fd5b506105e660048036038101906105e19190613e4d565b6112bc565b6040516105f39190613ea8565b60405180910390f35b34801561060857600080fd5b5061061161136f565b60405161061e9190613ff9565b60405180910390f35b34801561063357600080fd5b5061064e60048036038101906106499190613ec3565b611393565b60405161065b9190613ea8565b60405180910390f35b34801561067057600080fd5b5061068b60048036038101906106869190613d39565b6113e9565b005b34801561069957600080fd5b506106a26114ee565b6040516106af9190613d88565b60405180910390f35b3480156106c457600080fd5b506106df60048036038101906106da9190613ec3565b6114f4565b005b3480156106ed57600080fd5b506106f66115e6565b6040516107039190613ea8565b60405180910390f35b34801561071857600080fd5b50610733600480360381019061072e9190613ec3565b6115f9565b6040516107409190613d88565b60405180910390f35b34801561075557600080fd5b5061075e611641565b005b34801561076c57600080fd5b5061078760048036038101906107829190614077565b611799565b005b34801561079557600080fd5b5061079e61188b565b6040516107ab9190613d88565b60405180910390f35b3480156107c057600080fd5b506107c9611891565b005b3480156107d757600080fd5b506107e0611945565b6040516107ed9190613ff9565b60405180910390f35b34801561080257600080fd5b5061080b61196f565b6040516108189190613ff9565b60405180910390f35b34801561082d57600080fd5b50610836611995565b6040516108439190613e2b565b60405180910390f35b34801561085857600080fd5b50610861611a27565b60405161086e9190613d88565b60405180910390f35b34801561088357600080fd5b5061089e60048036038101906108999190614077565b611a2d565b005b3480156108ac57600080fd5b506108b5611b61565b6040516108c29190613d88565b60405180910390f35b3480156108d757600080fd5b506108e0611b67565b6040516108ed9190613d88565b60405180910390f35b34801561090257600080fd5b5061091d60048036038101906109189190613ef0565b611b6d565b005b34801561092b57600080fd5b50610934611c0e565b6040516109419190613d88565b60405180910390f35b34801561095657600080fd5b50610971600480360381019061096c9190613e4d565b611c14565b60405161097e9190613ea8565b60405180910390f35b34801561099357600080fd5b506109ae60048036038101906109a99190613e4d565b611ce1565b6040516109bb9190613ea8565b60405180910390f35b3480156109d057600080fd5b506109d9611cff565b6040516109e69190613d88565b60405180910390f35b3480156109fb57600080fd5b50610a166004803603810190610a119190613ec3565b611d05565b604051610a239190613ea8565b60405180910390f35b348015610a3857600080fd5b50610a41611d25565b604051610a4e9190613ea8565b60405180910390f35b348015610a6357600080fd5b50610a7e6004803603810190610a799190613ec3565b611d38565b604051610a8b9190613ea8565b60405180910390f35b348015610aa057600080fd5b50610abb6004803603810190610ab69190614077565b611d58565b005b348015610ac957600080fd5b50610ad2611e98565b604051610adf9190613ea8565b60405180910390f35b348015610af457600080fd5b50610afd611eab565b604051610b0a9190613d88565b60405180910390f35b348015610b1f57600080fd5b50610b28611eb1565b604051610b359190613d88565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b6091906140b7565b611eb7565b604051610b729190613d88565b60405180910390f35b348015610b8757600080fd5b50610b90611f3e565b604051610b9d9190613d88565b60405180910390f35b348015610bb257600080fd5b50610bbb611f44565b604051610bc89190613d88565b60405180910390f35b348015610bdd57600080fd5b50610be6611f4a565b604051610bf39190613d88565b60405180910390f35b348015610c0857600080fd5b50610c236004803603810190610c1e9190613ec3565b611f50565b005b348015610c3157600080fd5b50610c3a612117565b604051610c479190613d88565b60405180910390f35b610c5861217b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cde90614143565b60405180910390fd5b60005b8151811015610d78576001600c6000848481518110610d0c57610d0b614163565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610d70906141c1565b915050610cea565b5050565b610d8461217b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a90614143565b60405180910390fd5b8160118190555080601281905550601254601154610e31919061420a565b601381905550600f6013541115610e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e74906142ac565b60405180910390fd5b5050565b60095481565b606060038054610e96906142fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec2906142fb565b8015610f0f5780601f10610ee457610100808354040283529160200191610f0f565b820191906000526020600020905b815481529060010190602001808311610ef257829003601f168201915b5050505050905090565b6000610f2d610f2661217b565b8484612183565b6001905092915050565b601a6020528060005260406000206000915054906101000a900460ff1681565b610f5f61217b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe590614143565b60405180910390fd5b6001811015610ffc57600080fd5b8060168190555061100b61234e565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b61104461217b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ca90614143565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60145481565b61112561217b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab90614143565b60405180910390fd5b60018110156111c257600080fd5b806017819055506111d161234e565b50565b60006111e18484846123b6565b6112a2846111ed61217b565b61129d85604051806060016040528060288152602001614ec760289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061125361217b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546130fa9092919063ffffffff16565b612183565b600190509392505050565b61dead81565b60006009905090565b60006113656112c961217b565b8461136085600160006112da61217b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461211d90919063ffffffff16565b612183565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6113f161217b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147790614143565b60405180910390fd5b81600e8190555080600f81905550600f54600e5461149e919061420a565b601081905550600f60105411156114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e190614379565b60405180910390fd5b5050565b60135481565b6114fc61217b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461158b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158290614143565b60405180910390fd5b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61164961217b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cf90614143565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6117a161217b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611830576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182790614143565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60165481565b61189961217b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191f90614143565b60405180910390fd5b6001600a60146101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600480546119a4906142fb565b80601f01602080910402602001604051908101604052809291908181526020018280546119d0906142fb565b8015611a1d5780601f106119f257610100808354040283529160200191611a1d565b820191906000526020600020905b815481529060010190602001808311611a0057829003601f168201915b5050505050905090565b60175481565b611a3561217b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abb90614143565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4a9061440b565b60405180910390fd5b611b5d828261315e565b5050565b600f5481565b60155481565b611b7561217b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfb90614143565b60405180910390fd5b8060188190555050565b60125481565b6000611cd7611c2161217b565b84611cd285604051806060016040528060258152602001614eef6025913960016000611c4b61217b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546130fa9092919063ffffffff16565b612183565b6001905092915050565b6000611cf5611cee61217b565b84846123b6565b6001905092915050565b60115481565b601b6020528060005260406000206000915054906101000a900460ff1681565b600a60149054906101000a900460ff1681565b600c6020528060005260406000206000915054906101000a900460ff1681565b611d6061217b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de690614143565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611e8c9190613ea8565b60405180910390a25050565b600d60009054906101000a900460ff1681565b60065481565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60075481565b600e5481565b60185481565b611f5861217b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fde90614143565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204e9061449d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60085481565b600080828461212c919061420a565b905083811015612171576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216890614509565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ea9061459b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225a9061462d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516123419190613d88565b60405180910390a3505050565b6064601754600954612360919061464d565b61236a91906146d6565b6006819055506127106005600954612382919061464d565b61238c91906146d6565b60078190555060646016546009546123a4919061464d565b6123ae91906146d6565b600881905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241d90614779565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248d9061480b565b60405180910390fd5b600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561253a5750600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612579576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257090614877565b60405180910390fd5b60008114156125935761258e838360006131ff565b6130f5565b61259b611945565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561260957506125d9611945565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126425750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561267c575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126955750600560149054906101000a900460ff16155b15612c4d57600a60149054906101000a900460ff1661278f57601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061274f5750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61278e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612785906148e3565b60405180910390fd5b5b600d60009054906101000a900460ff1615612964576127ac611945565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561283357507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561288b57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156129635743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612911576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129089061499b565b60405180910390fd5b6018544361291f919061420a565b600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a075750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612aae57600654811115612a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4890614a2d565b60405180910390fd5b600854612a5d836115f9565b82612a68919061420a565b1115612aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa090614a99565b60405180910390fd5b612c4c565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b515750601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ba057600654811115612b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9290614b2b565b60405180910390fd5b612c4b565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612c4a57600854612bfd836115f9565b82612c08919061420a565b1115612c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4090614a99565b60405180910390fd5b5b5b5b5b6000612c58306115f9565b905060006007548210159050808015612c7e5750600560149054906101000a900460ff16155b8015612c965750600a60159054906101000a900460ff165b8015612cec5750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612d425750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612d985750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ddc576001600560146101000a81548160ff021916908315150217905550612dc0613494565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612e925750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612e9c57600090505b600081156130e557601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612eff57506000601354115b15612f9957612f2c6064612f1e6013548861357e90919063ffffffff16565b6135f990919063ffffffff16565b905060135460115482612f3f919061464d565b612f4991906146d6565b60146000828254612f5a919061420a565b9250508190555060135460125482612f72919061464d565b612f7c91906146d6565b60156000828254612f8d919061420a565b9250508190555061308b565b601b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ff457506000601054115b1561308a5761302160646130136010548861357e90919063ffffffff16565b6135f990919063ffffffff16565b9050601054600e5482613034919061464d565b61303e91906146d6565b6014600082825461304f919061420a565b92505081905550601054600f5482613067919061464d565b61307191906146d6565b60156000828254613082919061420a565b925050819055505b5b60008111156130d65761309f8730836131ff565b600060145411156130d5576130b630601454613643565b6130be611032565b6009819055506130cc61234e565b60006014819055505b5b80856130e29190614b4b565b94505b6130f08787876131ff565b505050505b505050565b6000838311158290613142576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131399190613e2b565b60405180910390fd5b50600083856131519190614b4b565b9050809150509392505050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561326f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161326690614779565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132d69061480b565b60405180910390fd5b6132ea8383836137f1565b61335581604051806060016040528060268152602001614ea1602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546130fa9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506133e8816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461211d90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516134879190613d88565b60405180910390a3505050565b600061349f306115f9565b90506000808214156134b257505061357c565b60146007546134c1919061464d565b8211156134da5760146007546134d7919061464d565b91505b6134e3826137f6565b6000601581905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161353190614bb0565b60006040518083038185875af1925050503d806000811461356e576040519150601f19603f3d011682016040523d82523d6000602084013e613573565b606091505b50508091505050505b565b60008083141561359157600090506135f3565b6000828461359f919061464d565b90508284826135ae91906146d6565b146135ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135e590614c37565b60405180910390fd5b809150505b92915050565b600061363b83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613a42565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136aa90614cc9565b60405180910390fd5b6136bf826000836137f1565b61372a81604051806060016040528060228152602001614e7f602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546130fa9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061378181600254613aa590919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516137e59190613d88565b60405180910390a35050565b505050565b6000600267ffffffffffffffff81111561381357613812613b19565b5b6040519080825280602002602001820160405280156138415781602001602082028036833780820191505090505b509050308160008151811061385957613858614163565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156138f957600080fd5b505afa15801561390d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139319190614cfe565b8160018151811061394557613944614163565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506139aa307f000000000000000000000000000000000000000000000000000000000000000084612183565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613a0c959493929190614e24565b600060405180830381600087803b158015613a2657600080fd5b505af1158015613a3a573d6000803e3d6000fd5b505050505050565b60008083118290613a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a809190613e2b565b60405180910390fd5b5060008385613a9891906146d6565b9050809150509392505050565b6000613ae783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506130fa565b905092915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b5182613b08565b810181811067ffffffffffffffff82111715613b7057613b6f613b19565b5b80604052505050565b6000613b83613aef565b9050613b8f8282613b48565b919050565b600067ffffffffffffffff821115613baf57613bae613b19565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613bf082613bc5565b9050919050565b613c0081613be5565b8114613c0b57600080fd5b50565b600081359050613c1d81613bf7565b92915050565b6000613c36613c3184613b94565b613b79565b90508083825260208201905060208402830185811115613c5957613c58613bc0565b5b835b81811015613c825780613c6e8882613c0e565b845260208401935050602081019050613c5b565b5050509392505050565b600082601f830112613ca157613ca0613b03565b5b8135613cb1848260208601613c23565b91505092915050565b600060208284031215613cd057613ccf613af9565b5b600082013567ffffffffffffffff811115613cee57613ced613afe565b5b613cfa84828501613c8c565b91505092915050565b6000819050919050565b613d1681613d03565b8114613d2157600080fd5b50565b600081359050613d3381613d0d565b92915050565b60008060408385031215613d5057613d4f613af9565b5b6000613d5e85828601613d24565b9250506020613d6f85828601613d24565b9150509250929050565b613d8281613d03565b82525050565b6000602082019050613d9d6000830184613d79565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613ddd578082015181840152602081019050613dc2565b83811115613dec576000848401525b50505050565b6000613dfd82613da3565b613e078185613dae565b9350613e17818560208601613dbf565b613e2081613b08565b840191505092915050565b60006020820190508181036000830152613e458184613df2565b905092915050565b60008060408385031215613e6457613e63613af9565b5b6000613e7285828601613c0e565b9250506020613e8385828601613d24565b9150509250929050565b60008115159050919050565b613ea281613e8d565b82525050565b6000602082019050613ebd6000830184613e99565b92915050565b600060208284031215613ed957613ed8613af9565b5b6000613ee784828501613c0e565b91505092915050565b600060208284031215613f0657613f05613af9565b5b6000613f1484828501613d24565b91505092915050565b6000819050919050565b6000613f42613f3d613f3884613bc5565b613f1d565b613bc5565b9050919050565b6000613f5482613f27565b9050919050565b6000613f6682613f49565b9050919050565b613f7681613f5b565b82525050565b6000602082019050613f916000830184613f6d565b92915050565b600080600060608486031215613fb057613faf613af9565b5b6000613fbe86828701613c0e565b9350506020613fcf86828701613c0e565b9250506040613fe086828701613d24565b9150509250925092565b613ff381613be5565b82525050565b600060208201905061400e6000830184613fea565b92915050565b600060ff82169050919050565b61402a81614014565b82525050565b60006020820190506140456000830184614021565b92915050565b61405481613e8d565b811461405f57600080fd5b50565b6000813590506140718161404b565b92915050565b6000806040838503121561408e5761408d613af9565b5b600061409c85828601613c0e565b92505060206140ad85828601614062565b9150509250929050565b600080604083850312156140ce576140cd613af9565b5b60006140dc85828601613c0e565b92505060206140ed85828601613c0e565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061412d602083613dae565b9150614138826140f7565b602082019050919050565b6000602082019050818103600083015261415c81614120565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006141cc82613d03565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141ff576141fe614192565b5b600182019050919050565b600061421582613d03565b915061422083613d03565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561425557614254614192565b5b828201905092915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614296601d83613dae565b91506142a182614260565b602082019050919050565b600060208201905081810360008301526142c581614289565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061431357607f821691505b60208210811415614327576143266142cc565b5b50919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000614363601d83613dae565b915061436e8261432d565b602082019050919050565b6000602082019050818103600083015261439281614356565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006143f5603983613dae565b915061440082614399565b604082019050919050565b60006020820190508181036000830152614424816143e8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614487602683613dae565b91506144928261442b565b604082019050919050565b600060208201905081810360008301526144b68161447a565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b60006144f3601b83613dae565b91506144fe826144bd565b602082019050919050565b60006020820190508181036000830152614522816144e6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614585602483613dae565b915061459082614529565b604082019050919050565b600060208201905081810360008301526145b481614578565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614617602283613dae565b9150614622826145bb565b604082019050919050565b600060208201905081810360008301526146468161460a565b9050919050565b600061465882613d03565b915061466383613d03565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561469c5761469b614192565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006146e182613d03565b91506146ec83613d03565b9250826146fc576146fb6146a7565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614763602583613dae565b915061476e82614707565b604082019050919050565b6000602082019050818103600083015261479281614756565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006147f5602383613dae565b915061480082614799565b604082019050919050565b60006020820190508181036000830152614824816147e8565b9050919050565b7f54686973206163636f756e7420697320626c61636b6c69737465640000000000600082015250565b6000614861601b83613dae565b915061486c8261482b565b602082019050919050565b6000602082019050818103600083015261489081614854565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006148cd601683613dae565b91506148d882614897565b602082019050919050565b600060208201905081810360008301526148fc816148c0565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614985604983613dae565b915061499082614903565b606082019050919050565b600060208201905081810360008301526149b481614978565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614a17603583613dae565b9150614a22826149bb565b604082019050919050565b60006020820190508181036000830152614a4681614a0a565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614a83601383613dae565b9150614a8e82614a4d565b602082019050919050565b60006020820190508181036000830152614ab281614a76565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614b15603683613dae565b9150614b2082614ab9565b604082019050919050565b60006020820190508181036000830152614b4481614b08565b9050919050565b6000614b5682613d03565b9150614b6183613d03565b925082821015614b7457614b73614192565b5b828203905092915050565b600081905092915050565b50565b6000614b9a600083614b7f565b9150614ba582614b8a565b600082019050919050565b6000614bbb82614b8d565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c21602183613dae565b9150614c2c82614bc5565b604082019050919050565b60006020820190508181036000830152614c5081614c14565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614cb3602183613dae565b9150614cbe82614c57565b604082019050919050565b60006020820190508181036000830152614ce281614ca6565b9050919050565b600081519050614cf881613bf7565b92915050565b600060208284031215614d1457614d13613af9565b5b6000614d2284828501614ce9565b91505092915050565b6000819050919050565b6000614d50614d4b614d4684614d2b565b613f1d565b613d03565b9050919050565b614d6081614d35565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614d9b81613be5565b82525050565b6000614dad8383614d92565b60208301905092915050565b6000602082019050919050565b6000614dd182614d66565b614ddb8185614d71565b9350614de683614d82565b8060005b83811015614e17578151614dfe8882614da1565b9750614e0983614db9565b925050600181019050614dea565b5085935050505092915050565b600060a082019050614e396000830188613d79565b614e466020830187614d57565b8181036040830152614e588186614dc6565b9050614e676060830185613fea565b614e746080830184613d79565b969550505050505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209cc0a13a228577206dba56c74819e92a9d7cb5bd9d11b68a71801bdb94f3e94c64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106103025760003560e01c80638a8c523c11610190578063b62496f5116100dc578063d85ba06311610095578063e71dc3f51161006f578063e71dc3f514610ba6578063f203acb614610bd1578063f2fde38b14610bfc578063f8b45b0514610c2557610309565b8063d85ba06314610b13578063dd62ed3e14610b3e578063e2f4560514610b7b57610309565b8063b62496f5146109ef578063bbc0c74214610a2c578063bfd7928414610a57578063c024666814610a94578063c876d0b914610abd578063c8c8ebe414610ae857610309565b80639c3b4fdc11610149578063a0d82dc511610123578063a0d82dc51461091f578063a457c2d71461094a578063a9059cbb14610987578063adb873bd146109c457610309565b80639c3b4fdc146108a05780639fccce32146108cb5780639fdc4824146108f657610309565b80638a8c523c146107b45780638da5cb5b146107cb5780638ea5220f146107f657806395d89b4114610821578063975d71e21461084c5780639a7a23d61461087757610309565b806327c8f8351161024f5780636a486a8e1161020857806370a08231116101e257806370a082311461070c578063715018a6146107495780637571336a146107605780637ab439831461078957610309565b80636a486a8e1461068d5780636b999053146106b85780636ddd1713146106e157610309565b806327c8f83514610569578063313ce5671461059457806339509351146105bf57806349bd5a5e146105fc5780634fbee1931461062757806366ca9b831461066457610309565b8063150de0bb116102bc5780631816467f116102965780631816467f146104af5780631d777856146104d85780631fa07da51461050357806323b872dd1461052c57610309565b8063150de0bb146104305780631694505e1461045957806318160ddd1461048457610309565b8062b8cf2a1461030e57806302dbd8f814610337578063047fc9aa1461036057806306fdde031461038b578063095ea7b3146103b657806310d5de53146103f357610309565b3661030957005b600080fd5b34801561031a57600080fd5b5061033560048036038101906103309190613cba565b610c50565b005b34801561034357600080fd5b5061035e60048036038101906103599190613d39565b610d7c565b005b34801561036c57600080fd5b50610375610e81565b6040516103829190613d88565b60405180910390f35b34801561039757600080fd5b506103a0610e87565b6040516103ad9190613e2b565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d89190613e4d565b610f19565b6040516103ea9190613ea8565b60405180910390f35b3480156103ff57600080fd5b5061041a60048036038101906104159190613ec3565b610f37565b6040516104279190613ea8565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190613ef0565b610f57565b005b34801561046557600080fd5b5061046e61100e565b60405161047b9190613f7c565b60405180910390f35b34801561049057600080fd5b50610499611032565b6040516104a69190613d88565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d19190613ec3565b61103c565b005b3480156104e457600080fd5b506104ed611117565b6040516104fa9190613d88565b60405180910390f35b34801561050f57600080fd5b5061052a60048036038101906105259190613ef0565b61111d565b005b34801561053857600080fd5b50610553600480360381019061054e9190613f97565b6111d4565b6040516105609190613ea8565b60405180910390f35b34801561057557600080fd5b5061057e6112ad565b60405161058b9190613ff9565b60405180910390f35b3480156105a057600080fd5b506105a96112b3565b6040516105b69190614030565b60405180910390f35b3480156105cb57600080fd5b506105e660048036038101906105e19190613e4d565b6112bc565b6040516105f39190613ea8565b60405180910390f35b34801561060857600080fd5b5061061161136f565b60405161061e9190613ff9565b60405180910390f35b34801561063357600080fd5b5061064e60048036038101906106499190613ec3565b611393565b60405161065b9190613ea8565b60405180910390f35b34801561067057600080fd5b5061068b60048036038101906106869190613d39565b6113e9565b005b34801561069957600080fd5b506106a26114ee565b6040516106af9190613d88565b60405180910390f35b3480156106c457600080fd5b506106df60048036038101906106da9190613ec3565b6114f4565b005b3480156106ed57600080fd5b506106f66115e6565b6040516107039190613ea8565b60405180910390f35b34801561071857600080fd5b50610733600480360381019061072e9190613ec3565b6115f9565b6040516107409190613d88565b60405180910390f35b34801561075557600080fd5b5061075e611641565b005b34801561076c57600080fd5b5061078760048036038101906107829190614077565b611799565b005b34801561079557600080fd5b5061079e61188b565b6040516107ab9190613d88565b60405180910390f35b3480156107c057600080fd5b506107c9611891565b005b3480156107d757600080fd5b506107e0611945565b6040516107ed9190613ff9565b60405180910390f35b34801561080257600080fd5b5061080b61196f565b6040516108189190613ff9565b60405180910390f35b34801561082d57600080fd5b50610836611995565b6040516108439190613e2b565b60405180910390f35b34801561085857600080fd5b50610861611a27565b60405161086e9190613d88565b60405180910390f35b34801561088357600080fd5b5061089e60048036038101906108999190614077565b611a2d565b005b3480156108ac57600080fd5b506108b5611b61565b6040516108c29190613d88565b60405180910390f35b3480156108d757600080fd5b506108e0611b67565b6040516108ed9190613d88565b60405180910390f35b34801561090257600080fd5b5061091d60048036038101906109189190613ef0565b611b6d565b005b34801561092b57600080fd5b50610934611c0e565b6040516109419190613d88565b60405180910390f35b34801561095657600080fd5b50610971600480360381019061096c9190613e4d565b611c14565b60405161097e9190613ea8565b60405180910390f35b34801561099357600080fd5b506109ae60048036038101906109a99190613e4d565b611ce1565b6040516109bb9190613ea8565b60405180910390f35b3480156109d057600080fd5b506109d9611cff565b6040516109e69190613d88565b60405180910390f35b3480156109fb57600080fd5b50610a166004803603810190610a119190613ec3565b611d05565b604051610a239190613ea8565b60405180910390f35b348015610a3857600080fd5b50610a41611d25565b604051610a4e9190613ea8565b60405180910390f35b348015610a6357600080fd5b50610a7e6004803603810190610a799190613ec3565b611d38565b604051610a8b9190613ea8565b60405180910390f35b348015610aa057600080fd5b50610abb6004803603810190610ab69190614077565b611d58565b005b348015610ac957600080fd5b50610ad2611e98565b604051610adf9190613ea8565b60405180910390f35b348015610af457600080fd5b50610afd611eab565b604051610b0a9190613d88565b60405180910390f35b348015610b1f57600080fd5b50610b28611eb1565b604051610b359190613d88565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b6091906140b7565b611eb7565b604051610b729190613d88565b60405180910390f35b348015610b8757600080fd5b50610b90611f3e565b604051610b9d9190613d88565b60405180910390f35b348015610bb257600080fd5b50610bbb611f44565b604051610bc89190613d88565b60405180910390f35b348015610bdd57600080fd5b50610be6611f4a565b604051610bf39190613d88565b60405180910390f35b348015610c0857600080fd5b50610c236004803603810190610c1e9190613ec3565b611f50565b005b348015610c3157600080fd5b50610c3a612117565b604051610c479190613d88565b60405180910390f35b610c5861217b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cde90614143565b60405180910390fd5b60005b8151811015610d78576001600c6000848481518110610d0c57610d0b614163565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610d70906141c1565b915050610cea565b5050565b610d8461217b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a90614143565b60405180910390fd5b8160118190555080601281905550601254601154610e31919061420a565b601381905550600f6013541115610e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e74906142ac565b60405180910390fd5b5050565b60095481565b606060038054610e96906142fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec2906142fb565b8015610f0f5780601f10610ee457610100808354040283529160200191610f0f565b820191906000526020600020905b815481529060010190602001808311610ef257829003601f168201915b5050505050905090565b6000610f2d610f2661217b565b8484612183565b6001905092915050565b601a6020528060005260406000206000915054906101000a900460ff1681565b610f5f61217b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe590614143565b60405180910390fd5b6001811015610ffc57600080fd5b8060168190555061100b61234e565b50565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b61104461217b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ca90614143565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60145481565b61112561217b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab90614143565b60405180910390fd5b60018110156111c257600080fd5b806017819055506111d161234e565b50565b60006111e18484846123b6565b6112a2846111ed61217b565b61129d85604051806060016040528060288152602001614ec760289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061125361217b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546130fa9092919063ffffffff16565b612183565b600190509392505050565b61dead81565b60006009905090565b60006113656112c961217b565b8461136085600160006112da61217b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461211d90919063ffffffff16565b612183565b6001905092915050565b7f000000000000000000000000c2d960ba0abeff087d7e1d91c00bb7ee99166f0781565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6113f161217b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147790614143565b60405180910390fd5b81600e8190555080600f81905550600f54600e5461149e919061420a565b601081905550600f60105411156114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e190614379565b60405180910390fd5b5050565b60135481565b6114fc61217b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461158b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158290614143565b60405180910390fd5b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61164961217b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cf90614143565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6117a161217b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611830576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182790614143565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60165481565b61189961217b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191f90614143565b60405180910390fd5b6001600a60146101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600480546119a4906142fb565b80601f01602080910402602001604051908101604052809291908181526020018280546119d0906142fb565b8015611a1d5780601f106119f257610100808354040283529160200191611a1d565b820191906000526020600020905b815481529060010190602001808311611a0057829003601f168201915b5050505050905090565b60175481565b611a3561217b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abb90614143565b60405180910390fd5b7f000000000000000000000000c2d960ba0abeff087d7e1d91c00bb7ee99166f0773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4a9061440b565b60405180910390fd5b611b5d828261315e565b5050565b600f5481565b60155481565b611b7561217b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfb90614143565b60405180910390fd5b8060188190555050565b60125481565b6000611cd7611c2161217b565b84611cd285604051806060016040528060258152602001614eef6025913960016000611c4b61217b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546130fa9092919063ffffffff16565b612183565b6001905092915050565b6000611cf5611cee61217b565b84846123b6565b6001905092915050565b60115481565b601b6020528060005260406000206000915054906101000a900460ff1681565b600a60149054906101000a900460ff1681565b600c6020528060005260406000206000915054906101000a900460ff1681565b611d6061217b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de690614143565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611e8c9190613ea8565b60405180910390a25050565b600d60009054906101000a900460ff1681565b60065481565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60075481565b600e5481565b60185481565b611f5861217b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fde90614143565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204e9061449d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60085481565b600080828461212c919061420a565b905083811015612171576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216890614509565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ea9061459b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225a9061462d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516123419190613d88565b60405180910390a3505050565b6064601754600954612360919061464d565b61236a91906146d6565b6006819055506127106005600954612382919061464d565b61238c91906146d6565b60078190555060646016546009546123a4919061464d565b6123ae91906146d6565b600881905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241d90614779565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248d9061480b565b60405180910390fd5b600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561253a5750600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612579576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257090614877565b60405180910390fd5b60008114156125935761258e838360006131ff565b6130f5565b61259b611945565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561260957506125d9611945565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126425750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561267c575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126955750600560149054906101000a900460ff16155b15612c4d57600a60149054906101000a900460ff1661278f57601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061274f5750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61278e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612785906148e3565b60405180910390fd5b5b600d60009054906101000a900460ff1615612964576127ac611945565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561283357507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561288b57507f000000000000000000000000c2d960ba0abeff087d7e1d91c00bb7ee99166f0773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156129635743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612911576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129089061499b565b60405180910390fd5b6018544361291f919061420a565b600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a075750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612aae57600654811115612a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4890614a2d565b60405180910390fd5b600854612a5d836115f9565b82612a68919061420a565b1115612aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa090614a99565b60405180910390fd5b612c4c565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b515750601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ba057600654811115612b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9290614b2b565b60405180910390fd5b612c4b565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612c4a57600854612bfd836115f9565b82612c08919061420a565b1115612c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4090614a99565b60405180910390fd5b5b5b5b5b6000612c58306115f9565b905060006007548210159050808015612c7e5750600560149054906101000a900460ff16155b8015612c965750600a60159054906101000a900460ff165b8015612cec5750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612d425750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612d985750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ddc576001600560146101000a81548160ff021916908315150217905550612dc0613494565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612e925750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612e9c57600090505b600081156130e557601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612eff57506000601354115b15612f9957612f2c6064612f1e6013548861357e90919063ffffffff16565b6135f990919063ffffffff16565b905060135460115482612f3f919061464d565b612f4991906146d6565b60146000828254612f5a919061420a565b9250508190555060135460125482612f72919061464d565b612f7c91906146d6565b60156000828254612f8d919061420a565b9250508190555061308b565b601b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ff457506000601054115b1561308a5761302160646130136010548861357e90919063ffffffff16565b6135f990919063ffffffff16565b9050601054600e5482613034919061464d565b61303e91906146d6565b6014600082825461304f919061420a565b92505081905550601054600f5482613067919061464d565b61307191906146d6565b60156000828254613082919061420a565b925050819055505b5b60008111156130d65761309f8730836131ff565b600060145411156130d5576130b630601454613643565b6130be611032565b6009819055506130cc61234e565b60006014819055505b5b80856130e29190614b4b565b94505b6130f08787876131ff565b505050505b505050565b6000838311158290613142576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131399190613e2b565b60405180910390fd5b50600083856131519190614b4b565b9050809150509392505050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561326f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161326690614779565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132d69061480b565b60405180910390fd5b6132ea8383836137f1565b61335581604051806060016040528060268152602001614ea1602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546130fa9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506133e8816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461211d90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516134879190613d88565b60405180910390a3505050565b600061349f306115f9565b90506000808214156134b257505061357c565b60146007546134c1919061464d565b8211156134da5760146007546134d7919061464d565b91505b6134e3826137f6565b6000601581905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161353190614bb0565b60006040518083038185875af1925050503d806000811461356e576040519150601f19603f3d011682016040523d82523d6000602084013e613573565b606091505b50508091505050505b565b60008083141561359157600090506135f3565b6000828461359f919061464d565b90508284826135ae91906146d6565b146135ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135e590614c37565b60405180910390fd5b809150505b92915050565b600061363b83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613a42565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136aa90614cc9565b60405180910390fd5b6136bf826000836137f1565b61372a81604051806060016040528060228152602001614e7f602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546130fa9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061378181600254613aa590919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516137e59190613d88565b60405180910390a35050565b505050565b6000600267ffffffffffffffff81111561381357613812613b19565b5b6040519080825280602002602001820160405280156138415781602001602082028036833780820191505090505b509050308160008151811061385957613858614163565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156138f957600080fd5b505afa15801561390d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139319190614cfe565b8160018151811061394557613944614163565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506139aa307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612183565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613a0c959493929190614e24565b600060405180830381600087803b158015613a2657600080fd5b505af1158015613a3a573d6000803e3d6000fd5b505050505050565b60008083118290613a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a809190613e2b565b60405180910390fd5b5060008385613a9891906146d6565b9050809150509392505050565b6000613ae783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506130fa565b905092915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b5182613b08565b810181811067ffffffffffffffff82111715613b7057613b6f613b19565b5b80604052505050565b6000613b83613aef565b9050613b8f8282613b48565b919050565b600067ffffffffffffffff821115613baf57613bae613b19565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613bf082613bc5565b9050919050565b613c0081613be5565b8114613c0b57600080fd5b50565b600081359050613c1d81613bf7565b92915050565b6000613c36613c3184613b94565b613b79565b90508083825260208201905060208402830185811115613c5957613c58613bc0565b5b835b81811015613c825780613c6e8882613c0e565b845260208401935050602081019050613c5b565b5050509392505050565b600082601f830112613ca157613ca0613b03565b5b8135613cb1848260208601613c23565b91505092915050565b600060208284031215613cd057613ccf613af9565b5b600082013567ffffffffffffffff811115613cee57613ced613afe565b5b613cfa84828501613c8c565b91505092915050565b6000819050919050565b613d1681613d03565b8114613d2157600080fd5b50565b600081359050613d3381613d0d565b92915050565b60008060408385031215613d5057613d4f613af9565b5b6000613d5e85828601613d24565b9250506020613d6f85828601613d24565b9150509250929050565b613d8281613d03565b82525050565b6000602082019050613d9d6000830184613d79565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613ddd578082015181840152602081019050613dc2565b83811115613dec576000848401525b50505050565b6000613dfd82613da3565b613e078185613dae565b9350613e17818560208601613dbf565b613e2081613b08565b840191505092915050565b60006020820190508181036000830152613e458184613df2565b905092915050565b60008060408385031215613e6457613e63613af9565b5b6000613e7285828601613c0e565b9250506020613e8385828601613d24565b9150509250929050565b60008115159050919050565b613ea281613e8d565b82525050565b6000602082019050613ebd6000830184613e99565b92915050565b600060208284031215613ed957613ed8613af9565b5b6000613ee784828501613c0e565b91505092915050565b600060208284031215613f0657613f05613af9565b5b6000613f1484828501613d24565b91505092915050565b6000819050919050565b6000613f42613f3d613f3884613bc5565b613f1d565b613bc5565b9050919050565b6000613f5482613f27565b9050919050565b6000613f6682613f49565b9050919050565b613f7681613f5b565b82525050565b6000602082019050613f916000830184613f6d565b92915050565b600080600060608486031215613fb057613faf613af9565b5b6000613fbe86828701613c0e565b9350506020613fcf86828701613c0e565b9250506040613fe086828701613d24565b9150509250925092565b613ff381613be5565b82525050565b600060208201905061400e6000830184613fea565b92915050565b600060ff82169050919050565b61402a81614014565b82525050565b60006020820190506140456000830184614021565b92915050565b61405481613e8d565b811461405f57600080fd5b50565b6000813590506140718161404b565b92915050565b6000806040838503121561408e5761408d613af9565b5b600061409c85828601613c0e565b92505060206140ad85828601614062565b9150509250929050565b600080604083850312156140ce576140cd613af9565b5b60006140dc85828601613c0e565b92505060206140ed85828601613c0e565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061412d602083613dae565b9150614138826140f7565b602082019050919050565b6000602082019050818103600083015261415c81614120565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006141cc82613d03565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141ff576141fe614192565b5b600182019050919050565b600061421582613d03565b915061422083613d03565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561425557614254614192565b5b828201905092915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614296601d83613dae565b91506142a182614260565b602082019050919050565b600060208201905081810360008301526142c581614289565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061431357607f821691505b60208210811415614327576143266142cc565b5b50919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000614363601d83613dae565b915061436e8261432d565b602082019050919050565b6000602082019050818103600083015261439281614356565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006143f5603983613dae565b915061440082614399565b604082019050919050565b60006020820190508181036000830152614424816143e8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614487602683613dae565b91506144928261442b565b604082019050919050565b600060208201905081810360008301526144b68161447a565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b60006144f3601b83613dae565b91506144fe826144bd565b602082019050919050565b60006020820190508181036000830152614522816144e6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614585602483613dae565b915061459082614529565b604082019050919050565b600060208201905081810360008301526145b481614578565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614617602283613dae565b9150614622826145bb565b604082019050919050565b600060208201905081810360008301526146468161460a565b9050919050565b600061465882613d03565b915061466383613d03565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561469c5761469b614192565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006146e182613d03565b91506146ec83613d03565b9250826146fc576146fb6146a7565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614763602583613dae565b915061476e82614707565b604082019050919050565b6000602082019050818103600083015261479281614756565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006147f5602383613dae565b915061480082614799565b604082019050919050565b60006020820190508181036000830152614824816147e8565b9050919050565b7f54686973206163636f756e7420697320626c61636b6c69737465640000000000600082015250565b6000614861601b83613dae565b915061486c8261482b565b602082019050919050565b6000602082019050818103600083015261489081614854565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006148cd601683613dae565b91506148d882614897565b602082019050919050565b600060208201905081810360008301526148fc816148c0565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614985604983613dae565b915061499082614903565b606082019050919050565b600060208201905081810360008301526149b481614978565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614a17603583613dae565b9150614a22826149bb565b604082019050919050565b60006020820190508181036000830152614a4681614a0a565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614a83601383613dae565b9150614a8e82614a4d565b602082019050919050565b60006020820190508181036000830152614ab281614a76565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614b15603683613dae565b9150614b2082614ab9565b604082019050919050565b60006020820190508181036000830152614b4481614b08565b9050919050565b6000614b5682613d03565b9150614b6183613d03565b925082821015614b7457614b73614192565b5b828203905092915050565b600081905092915050565b50565b6000614b9a600083614b7f565b9150614ba582614b8a565b600082019050919050565b6000614bbb82614b8d565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c21602183613dae565b9150614c2c82614bc5565b604082019050919050565b60006020820190508181036000830152614c5081614c14565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614cb3602183613dae565b9150614cbe82614c57565b604082019050919050565b60006020820190508181036000830152614ce281614ca6565b9050919050565b600081519050614cf881613bf7565b92915050565b600060208284031215614d1457614d13613af9565b5b6000614d2284828501614ce9565b91505092915050565b6000819050919050565b6000614d50614d4b614d4684614d2b565b613f1d565b613d03565b9050919050565b614d6081614d35565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614d9b81613be5565b82525050565b6000614dad8383614d92565b60208301905092915050565b6000602082019050919050565b6000614dd182614d66565b614ddb8185614d71565b9350614de683614d82565b8060005b83811015614e17578151614dfe8882614da1565b9750614e0983614db9565b925050600181019050614dea565b5085935050505092915050565b600060a082019050614e396000830188613d79565b614e466020830187614d57565b8181036040830152614e588186614dc6565b9050614e676060830185613fea565b614e746080830184613d79565b969550505050505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209cc0a13a228577206dba56c74819e92a9d7cb5bd9d11b68a71801bdb94f3e94c64736f6c63430008090033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.