ETH Price: $2,503.27 (-0.49%)

Token

Hentai (HENTAI)
 

Overview

Max Total Supply

69,000,000,000 HENTAI

Holders

67

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
b-737.eth
Balance
150,000,523.616096720200004646 HENTAI

Value
$0.00
0xa5911de702fd1a95e3f63581037782819f448913
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:
HENTAI

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : hentai.sol
//SPDX-License-Identifier: UNLICENCED
/*

hhhhhhh                                                            tttt                        AAA               IIIIIIIIII
h:::::h                                                         ttt:::t                       A:::A              I::::::::I
h:::::h                                                         t:::::t                      A:::::A             I::::::::I
h:::::h                                                         t:::::t                     A:::::::A            II::::::II
 h::::h hhhhh           eeeeeeeeeeee    nnnn  nnnnnnnn    ttttttt:::::ttttttt              A:::::::::A             I::::I  
 h::::hh:::::hhh      ee::::::::::::ee  n:::nn::::::::nn  t:::::::::::::::::t             A:::::A:::::A            I::::I  
 h::::::::::::::hh   e::::::eeeee:::::een::::::::::::::nn t:::::::::::::::::t            A:::::A A:::::A           I::::I  
 h:::::::hhh::::::h e::::::e     e:::::enn:::::::::::::::ntttttt:::::::tttttt           A:::::A   A:::::A          I::::I  
 h::::::h   h::::::he:::::::eeeee::::::e  n:::::nnnn:::::n      t:::::t                A:::::A     A:::::A         I::::I  
 h:::::h     h:::::he:::::::::::::::::e   n::::n    n::::n      t:::::t               A:::::AAAAAAAAA:::::A        I::::I  
 h:::::h     h:::::he::::::eeeeeeeeeee    n::::n    n::::n      t:::::t              A:::::::::::::::::::::A       I::::I  
 h:::::h     h:::::he:::::::e             n::::n    n::::n      t:::::t    tttttt   A:::::AAAAAAAAAAAAA:::::A      I::::I  
 h:::::h     h:::::he::::::::e            n::::n    n::::n      t::::::tttt:::::t  A:::::A             A:::::A   II::::::II
 h:::::h     h:::::h e::::::::eeeeeeee    n::::n    n::::n      tt::::::::::::::t A:::::A               A:::::A  I::::::::I
 h:::::h     h:::::h  ee:::::::::::::e    n::::n    n::::n        tt:::::::::::ttA:::::A                 A:::::A I::::::::I
 hhhhhhh     hhhhhhh    eeeeeeeeeeeeee    nnnnnn    nnnnnn          ttttttttttt AAAAAAA                   AAAAAAAIIIIIIIIII

https://t.me/HentaiERC20
https://twitter.com/hentai_ETH

*/                                                                                        
                                                                                        
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 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 18;
    }
 
    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }
 
    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }
 
    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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;
}
 
contract HENTAI is ERC20, Ownable {
    using SafeMath for uint256;
 
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
 
    bool private swapping;
 
    address private marketingWallet;
    address private devWallet;
 
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
 
    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;
 
     // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
 
    // Seller Map
    mapping (address => uint256) private _holderFirstBuyTimestamp;
 
    // Blacklist Map
    mapping (address => bool) private _blacklist;
    bool public transferDelayEnabled = true;
 
    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;
 
    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;
 
    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;
 
    // block number of opened trading
    uint256 launchedAt;
 
    /******************/
 
    // exclude 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);
 
    event marketingWalletUpdated(address indexed newWallet, address indexed oldWallet);
 
    event devWalletUpdated(address indexed newWallet, address indexed oldWallet);
 
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );
 
    constructor() ERC20("Hentai", "HENTAI") {
 
        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 _buyMarketingFee = 10;
        uint256 _buyLiquidityFee = 5;
        uint256 _buyDevFee = 0;
 
        uint256 _sellMarketingFee = 20;
        uint256 _sellLiquidityFee = 5;
        uint256 _sellDevFee = 0;
 
        uint256 totalSupply = 69 * 1e9 * 1e18;
 
        maxTransactionAmount = totalSupply * 20 / 1000; // 2%
        maxWallet = totalSupply * 20 / 1000; // 2% 
        swapTokensAtAmount = totalSupply * 5 / 10000; // 0.5%
 
        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
 
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
 
        marketingWallet = 0x213e63C661E8F41F5A41dBa1bF82C2d5c68e6e57; 
        devWallet = address(owner());
 
        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
 
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
 
        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }
 
    receive() external payable {
 
    }
 
    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        launchedAt = block.number;
    }
 
    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool){
        limitsInEffect = false;
        return true;
    }
 
    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool){
        transferDelayEnabled = false;
        return true;
    }
 
     // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool){
        require(newAmount >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply.");
        require(newAmount <= totalSupply() * 5 / 1000, "Swap amount cannot be higher than 0.5% total supply.");
        swapTokensAtAmount = newAmount;
        return true;
    }
 
    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 1 / 1000)/1e18, "Cannot set maxTransactionAmount lower than 0.1%");
        maxTransactionAmount = newNum * (10**18);
    }
 
    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 5 / 1000)/1e18, "Cannot set maxWallet lower than 0.5%");
        maxWallet = newNum * (10**18);
    }
 
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function updateBuyFees(
        uint256 _devFee,
        uint256 _liquidityFee,
        uint256 _marketingFee
    ) external onlyOwner {
        buyDevFee = _devFee;
        buyLiquidityFee = _liquidityFee;
        buyMarketingFee = _marketingFee;
        buyTotalFees = buyDevFee + buyLiquidityFee + buyMarketingFee;
        require(buyTotalFees <= 20);
    }

    function updateSellFees(
        uint256 _devFee,
        uint256 _liquidityFee,
        uint256 _marketingFee
    ) external onlyOwner {
        sellDevFee = _devFee;
        sellLiquidityFee = _liquidityFee;
        sellMarketingFee = _marketingFee;
        sellTotalFees = sellDevFee + sellLiquidityFee + sellMarketingFee;
        require(sellTotalFees <= 20);
    }

    function postBuyFees(
    ) external onlyOwner {
        buyDevFee = 0;
        buyLiquidityFee = 1;
        buyMarketingFee = 4;
        buyTotalFees = buyDevFee + buyLiquidityFee + buyMarketingFee;
        require(buyTotalFees <= 20);
    }

    function postSellFees(
    ) external onlyOwner {
        sellDevFee = 0;
        sellLiquidityFee = 1;
        sellMarketingFee = 4;
        sellTotalFees = sellDevFee + sellLiquidityFee + sellMarketingFee;
        require(sellTotalFees <= 20);
    }
 
    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner(){
        swapEnabled = enabled;
    }
 
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }
 
    function blacklistAccount (address account, bool isBlacklisted) public onlyOwner {
        _blacklist[account] = isBlacklisted;
    }
 
    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 updateMarketingWallet(address newMarketingWallet) external onlyOwner {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }
 
    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }
 
 
    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(!_blacklist[to] && !_blacklist[from], "You have been blacklisted from transfering tokens");
         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
 
        if(limitsInEffect){
            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;
                    }
                }
 
                //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 &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
 
            swapBack();
 
            swapping = false;
        }
 
        bool takeFee = !swapping;
 
        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }
 
        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if(takeFee){
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0){
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees;
                tokensForDev += fees * sellDevFee / sellTotalFees;
                tokensForMarketing += fees * sellMarketingFee / sellTotalFees;
            }
            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
                tokensForDev += fees * buyDevFee / buyTotalFees;
                tokensForMarketing += fees * buyMarketingFee / buyTotalFees;
            }
 
            if(fees > 0){    
                super._transfer(from, address(this), fees);
            }
 
            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 addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);
 
        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(marketingWallet),
            block.timestamp
        );
    }
 
    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev;
        bool success;
 
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}
 
        if(contractBalance > swapTokensAtAmount * 20){
          contractBalance = swapTokensAtAmount * 20;
        }
 
        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
 
        uint256 initialETHBalance = address(this).balance;
 
        swapTokensForEth(amountToSwapForETH); 
 
        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
 
        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);
        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;
 
 
        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;
 
        (success,) = address(devWallet).call{value: ethForDev}("");
 
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity);
        }
 
        (success,) = address(marketingWallet).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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","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":"account","type":"address"},{"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"blacklistAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","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":"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":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"limitsInEffect","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":"postBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"postSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","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":"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":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","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":[{"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":[],"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":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506001600f60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600681526020017f48656e74616900000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f48454e544149000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000bbd565b5080600490805190602001906200011b92919062000bbd565b5050506000620001306200068960201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001fb8160016200069160201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200027657600080fd5b505afa1580156200028b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b1919062000cd7565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200031457600080fd5b505afa15801562000329573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034f919062000cd7565b6040518363ffffffff1660e01b81526004016200036e92919062000d1a565b602060405180830381600087803b1580156200038957600080fd5b505af11580156200039e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003c4919062000cd7565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200040c60a05160016200069160201b60201c565b6200042160a05160016200078e60201b60201c565b6000600a9050600060059050600080601490506000600590506000806bdef376571332906a8800000090506103e86014826200045e919062000d80565b6200046a919062000e10565b6008819055506103e860148262000482919062000d80565b6200048e919062000e10565b600a81905550612710600582620004a6919062000d80565b620004b2919062000e10565b600981905550866011819055508560128190555084601381905550601354601254601154620004e2919062000e48565b620004ee919062000e48565b6010819055508360158190555082601681905550816017819055506017546016546015546200051e919062000e48565b6200052a919062000e48565b60148190555073213e63c661e8f41f5a41dba1bf82c2d5c68e6e57600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005956200082f60201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005f7620005e96200082f60201b60201c565b60016200085960201b60201c565b6200060a3060016200085960201b60201c565b6200061f61dead60016200085960201b60201c565b62000641620006336200082f60201b60201c565b60016200069160201b60201c565b620006543060016200069160201b60201c565b6200066961dead60016200069160201b60201c565b6200067b3382620009a660201b60201c565b5050505050505050620010d9565b600033905090565b620006a16200068960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000733576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200072a9062000f06565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008696200068960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620008fb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008f29062000f06565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200099a919062000f45565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a19576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a109062000fb2565b60405180910390fd5b62000a2d6000838362000b5560201b60201c565b62000a498160025462000b5a60201b6200276f1790919060201c565b60028190555062000aa7816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000b5a60201b6200276f1790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b49919062000fe5565b60405180910390a35050565b505050565b600080828462000b6b919062000e48565b90508381101562000bb3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000baa9062001052565b60405180910390fd5b8091505092915050565b82805462000bcb90620010a3565b90600052602060002090601f01602090048101928262000bef576000855562000c3b565b82601f1062000c0a57805160ff191683800117855562000c3b565b8280016001018555821562000c3b579182015b8281111562000c3a57825182559160200191906001019062000c1d565b5b50905062000c4a919062000c4e565b5090565b5b8082111562000c6957600081600090555060010162000c4f565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c9f8262000c72565b9050919050565b62000cb18162000c92565b811462000cbd57600080fd5b50565b60008151905062000cd18162000ca6565b92915050565b60006020828403121562000cf05762000cef62000c6d565b5b600062000d008482850162000cc0565b91505092915050565b62000d148162000c92565b82525050565b600060408201905062000d31600083018562000d09565b62000d40602083018462000d09565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d8d8262000d47565b915062000d9a8362000d47565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000dd65762000dd562000d51565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000e1d8262000d47565b915062000e2a8362000d47565b92508262000e3d5762000e3c62000de1565b5b828204905092915050565b600062000e558262000d47565b915062000e628362000d47565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e9a5762000e9962000d51565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000eee60208362000ea5565b915062000efb8262000eb6565b602082019050919050565b6000602082019050818103600083015262000f218162000edf565b9050919050565b60008115159050919050565b62000f3f8162000f28565b82525050565b600060208201905062000f5c600083018462000f34565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f9a601f8362000ea5565b915062000fa78262000f62565b602082019050919050565b6000602082019050818103600083015262000fcd8162000f8b565b9050919050565b62000fdf8162000d47565b82525050565b600060208201905062000ffc600083018462000fd4565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b60006200103a601b8362000ea5565b9150620010478262001002565b602082019050919050565b600060208201905081810360008301526200106d816200102b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620010bc57607f821691505b60208210811415620010d357620010d262001074565b5b50919050565b60805160a05161572e62001137600039600081816113ad01528181611b6d0152612e3b015260008181610e6b01528181612de301528181613f51015281816140410152818161406801528181614104015261412b015261572e6000f3fe6080604052600436106103395760003560e01c806392136913116101ab578063c17b5b8c116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610c0b578063f2fde38b14610c36578063f637434214610c5f578063f8b45b0514610c8a57610340565b8063e2f4560514610b9e578063e884f26014610bc9578063eee1bdb114610bf457610340565b8063c8c8ebe4116100d1578063c8c8ebe414610ace578063d257b34f14610af9578063d85ba06314610b36578063dd62ed3e14610b6157610340565b8063c17b5b8c14610a51578063c18bc19514610a7a578063c876d0b914610aa357610340565b8063a0d82dc511610164578063aacebbe31161013e578063aacebbe314610997578063b62496f5146109c0578063bbc0c742146109fd578063c024666814610a2857610340565b8063a0d82dc5146108f2578063a457c2d71461091d578063a9059cbb1461095a57610340565b806392136913146107f4578063924de9b71461081f57806395d89b41146108485780639a7a23d6146108735780639c3b4fdc1461089c5780639fccce32146108c757610340565b80633950935111610285578063715018a6116102235780637bce5a04116101fd5780637bce5a041461075e5780638095d564146107895780638a8c523c146107b25780638da5cb5b146107c957610340565b8063715018a6146106f3578063751039fc1461070a5780637571336a1461073557610340565b80634fbee1931161025f5780634fbee193146106235780636a486a8e146106605780636ddd17131461068b57806370a08231146106b657610340565b8063395093511461059057806349bd5a5e146105cd5780634a62bb65146105f857610340565b80631816467f116102f2578063203e727e116102cc578063203e727e146104d657806323b872dd146104ff5780632d5a5d341461053c578063313ce5671461056557610340565b80631816467f146104575780631a8145bb146104805780631f3fed8f146104ab57610340565b806306fdde0314610345578063095ea7b3146103705780630ba82991146103ad57806310d5de53146103c45780631694505e1461040157806318160ddd1461042c57610340565b3661034057005b600080fd5b34801561035157600080fd5b5061035a610cb5565b6040516103679190614305565b60405180910390f35b34801561037c57600080fd5b50610397600480360381019061039291906143c0565b610d47565b6040516103a4919061441b565b60405180910390f35b3480156103b957600080fd5b506103c2610d65565b005b3480156103d057600080fd5b506103eb60048036038101906103e69190614436565b610e49565b6040516103f8919061441b565b60405180910390f35b34801561040d57600080fd5b50610416610e69565b60405161042391906144c2565b60405180910390f35b34801561043857600080fd5b50610441610e8d565b60405161044e91906144ec565b60405180910390f35b34801561046357600080fd5b5061047e60048036038101906104799190614436565b610e97565b005b34801561048c57600080fd5b50610495610fee565b6040516104a291906144ec565b60405180910390f35b3480156104b757600080fd5b506104c0610ff4565b6040516104cd91906144ec565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f89190614507565b610ffa565b005b34801561050b57600080fd5b5061052660048036038101906105219190614534565b611124565b604051610533919061441b565b60405180910390f35b34801561054857600080fd5b50610563600480360381019061055e91906145b3565b6111fd565b005b34801561057157600080fd5b5061057a6112ef565b604051610587919061460f565b60405180910390f35b34801561059c57600080fd5b506105b760048036038101906105b291906143c0565b6112f8565b6040516105c4919061441b565b60405180910390f35b3480156105d957600080fd5b506105e26113ab565b6040516105ef9190614639565b60405180910390f35b34801561060457600080fd5b5061060d6113cf565b60405161061a919061441b565b60405180910390f35b34801561062f57600080fd5b5061064a60048036038101906106459190614436565b6113e2565b604051610657919061441b565b60405180910390f35b34801561066c57600080fd5b50610675611438565b60405161068291906144ec565b60405180910390f35b34801561069757600080fd5b506106a061143e565b6040516106ad919061441b565b60405180910390f35b3480156106c257600080fd5b506106dd60048036038101906106d89190614436565b611451565b6040516106ea91906144ec565b60405180910390f35b3480156106ff57600080fd5b50610708611499565b005b34801561071657600080fd5b5061071f6115f1565b60405161072c919061441b565b60405180910390f35b34801561074157600080fd5b5061075c600480360381019061075791906145b3565b6116ac565b005b34801561076a57600080fd5b5061077361179e565b60405161078091906144ec565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab9190614654565b6117a4565b005b3480156107be57600080fd5b506107c7611888565b005b3480156107d557600080fd5b506107de61195e565b6040516107eb9190614639565b60405180910390f35b34801561080057600080fd5b50610809611988565b60405161081691906144ec565b60405180910390f35b34801561082b57600080fd5b50610846600480360381019061084191906146a7565b61198e565b005b34801561085457600080fd5b5061085d611a42565b60405161086a9190614305565b60405180910390f35b34801561087f57600080fd5b5061089a600480360381019061089591906145b3565b611ad4565b005b3480156108a857600080fd5b506108b1611c08565b6040516108be91906144ec565b60405180910390f35b3480156108d357600080fd5b506108dc611c0e565b6040516108e991906144ec565b60405180910390f35b3480156108fe57600080fd5b50610907611c14565b60405161091491906144ec565b60405180910390f35b34801561092957600080fd5b50610944600480360381019061093f91906143c0565b611c1a565b604051610951919061441b565b60405180910390f35b34801561096657600080fd5b50610981600480360381019061097c91906143c0565b611ce7565b60405161098e919061441b565b60405180910390f35b3480156109a357600080fd5b506109be60048036038101906109b99190614436565b611d05565b005b3480156109cc57600080fd5b506109e760048036038101906109e29190614436565b611e5c565b6040516109f4919061441b565b60405180910390f35b348015610a0957600080fd5b50610a12611e7c565b604051610a1f919061441b565b60405180910390f35b348015610a3457600080fd5b50610a4f6004803603810190610a4a91906145b3565b611e8f565b005b348015610a5d57600080fd5b50610a786004803603810190610a739190614654565b611fcf565b005b348015610a8657600080fd5b50610aa16004803603810190610a9c9190614507565b6120b2565b005b348015610aaf57600080fd5b50610ab86121dc565b604051610ac5919061441b565b60405180910390f35b348015610ada57600080fd5b50610ae36121ef565b604051610af091906144ec565b60405180910390f35b348015610b0557600080fd5b50610b206004803603810190610b1b9190614507565b6121f5565b604051610b2d919061441b565b60405180910390f35b348015610b4257600080fd5b50610b4b612365565b604051610b5891906144ec565b60405180910390f35b348015610b6d57600080fd5b50610b886004803603810190610b8391906146d4565b61236b565b604051610b9591906144ec565b60405180910390f35b348015610baa57600080fd5b50610bb36123f2565b604051610bc091906144ec565b60405180910390f35b348015610bd557600080fd5b50610bde6123f8565b604051610beb919061441b565b60405180910390f35b348015610c0057600080fd5b50610c096124b3565b005b348015610c1757600080fd5b50610c20612596565b604051610c2d91906144ec565b60405180910390f35b348015610c4257600080fd5b50610c5d6004803603810190610c589190614436565b61259c565b005b348015610c6b57600080fd5b50610c74612763565b604051610c8191906144ec565b60405180910390f35b348015610c9657600080fd5b50610c9f612769565b604051610cac91906144ec565b60405180910390f35b606060038054610cc490614743565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf090614743565b8015610d3d5780601f10610d1257610100808354040283529160200191610d3d565b820191906000526020600020905b815481529060010190602001808311610d2057829003601f168201915b5050505050905090565b6000610d5b610d546127cd565b84846127d5565b6001905092915050565b610d6d6127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df3906147c1565b60405180910390fd5b600060138190555060016012819055506004601181905550601154601254601354610e279190614810565b610e319190614810565b60108190555060146010541115610e4757600080fd5b565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610e9f6127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f25906147c1565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b6110026127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611091576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611088906147c1565b60405180910390fd5b670de0b6b3a76400006103e860016110a7610e8d565b6110b19190614866565b6110bb91906148ef565b6110c591906148ef565b811015611107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fe90614992565b60405180910390fd5b670de0b6b3a76400008161111b9190614866565b60088190555050565b60006111318484846129a0565b6111f28461113d6127cd565b6111ed856040518060600160405280602881526020016156ac60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006111a36127cd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461371d9092919063ffffffff16565b6127d5565b600190509392505050565b6112056127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b906147c1565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006012905090565b60006113a16113056127cd565b8461139c85600160006113166127cd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461276f90919063ffffffff16565b6127d5565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114a16127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611530576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611527906147c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006115fb6127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461168a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611681906147c1565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6116b46127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611743576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173a906147c1565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60115481565b6117ac6127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461183b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611832906147c1565b60405180910390fd5b8260138190555081601281905550806011819055506011546012546013546118639190614810565b61186d9190614810565b6010819055506014601054111561188357600080fd5b505050565b6118906127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461191f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611916906147c1565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601b81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60155481565b6119966127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1c906147c1565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611a5190614743565b80601f0160208091040260200160405190810160405280929190818152602001828054611a7d90614743565b8015611aca5780601f10611a9f57610100808354040283529160200191611aca565b820191906000526020600020905b815481529060010190602001808311611aad57829003601f168201915b5050505050905090565b611adc6127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b62906147c1565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf190614a24565b60405180910390fd5b611c048282613781565b5050565b60135481565b601a5481565b60175481565b6000611cdd611c276127cd565b84611cd8856040518060600160405280602581526020016156d46025913960016000611c516127cd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461371d9092919063ffffffff16565b6127d5565b6001905092915050565b6000611cfb611cf46127cd565b84846129a0565b6001905092915050565b611d0d6127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d93906147c1565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611e976127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1d906147c1565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611fc3919061441b565b60405180910390a25050565b611fd76127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205d906147c1565b60405180910390fd5b82601781905550816016819055508060158190555060155460165460175461208e9190614810565b6120989190614810565b6014819055506014805411156120ad57600080fd5b505050565b6120ba6127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612149576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612140906147c1565b60405180910390fd5b670de0b6b3a76400006103e8600561215f610e8d565b6121699190614866565b61217391906148ef565b61217d91906148ef565b8110156121bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b690614ab6565b60405180910390fd5b670de0b6b3a7640000816121d39190614866565b600a8190555050565b600f60009054906101000a900460ff1681565b60085481565b60006121ff6127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461228e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612285906147c1565b60405180910390fd5b620186a0600161229c610e8d565b6122a69190614866565b6122b091906148ef565b8210156122f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e990614b48565b60405180910390fd5b6103e860056122ff610e8d565b6123099190614866565b61231391906148ef565b821115612355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234c90614bda565b60405180910390fd5b8160098190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006124026127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612491576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612488906147c1565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b6124bb6127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461254a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612541906147c1565b60405180910390fd5b6000601781905550600160168190555060046015819055506015546016546017546125759190614810565b61257f9190614810565b60148190555060148054111561259457600080fd5b565b60125481565b6125a46127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262a906147c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269a90614c6c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600a5481565b600080828461277e9190614810565b9050838110156127c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ba90614cd8565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283c90614d6a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ac90614dfc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161299391906144ec565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0790614e8e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7790614f20565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612b245750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5a90614fb2565b60405180910390fd5b6000811415612b7d57612b7883836000613822565b613718565b600b60009054906101000a900460ff161561324057612b9a61195e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612c085750612bd861195e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c415750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c7b575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c945750600560149054906101000a900460ff16155b1561323f57600b60019054906101000a900460ff16612d8e57601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d4e5750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d849061501e565b60405180910390fd5b5b600f60009054906101000a900460ff1615612f5657612dab61195e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612e3257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e8a57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612f555743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f07906150d6565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ff95750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130a057600854811115613043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303a90615168565b60405180910390fd5b600a5461304f83611451565b8261305a9190614810565b111561309b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613092906151d4565b60405180910390fd5b61323e565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131435750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131925760085481111561318d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318490615266565b60405180910390fd5b61323d565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661323c57600a546131ef83611451565b826131fa9190614810565b111561323b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613232906151d4565b60405180910390fd5b5b5b5b5b5b600061324b30611451565b9050600060095482101590508080156132705750600b60029054906101000a900460ff165b80156132895750600560149054906101000a900460ff16155b80156132df5750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133355750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561338b5750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156133cf576001600560146101000a81548160ff0219169083151502179055506133b3613ab7565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806134855750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561348f57600090505b6000811561370857601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156134f257506000601454115b156135bf5761351f606461351160145488613d9e90919063ffffffff16565b613e1990919063ffffffff16565b9050601454601654826135329190614866565b61353c91906148ef565b6019600082825461354d9190614810565b92505081905550601454601754826135659190614866565b61356f91906148ef565b601a60008282546135809190614810565b92505081905550601454601554826135989190614866565b6135a291906148ef565b601860008282546135b39190614810565b925050819055506136e4565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561361a57506000601054115b156136e357613647606461363960105488613d9e90919063ffffffff16565b613e1990919063ffffffff16565b90506010546012548261365a9190614866565b61366491906148ef565b601960008282546136759190614810565b925050819055506010546013548261368d9190614866565b61369791906148ef565b601a60008282546136a89190614810565b92505081905550601054601154826136c09190614866565b6136ca91906148ef565b601860008282546136db9190614810565b925050819055505b5b60008111156136f9576136f8873083613822565b5b80856137059190615286565b94505b613713878787613822565b505050505b505050565b6000838311158290613765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375c9190614305565b60405180910390fd5b50600083856137749190615286565b9050809150509392505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161388990614e8e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138f990614f20565b60405180910390fd5b61390d838383613e63565b61397881604051806060016040528060268152602001615686602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461371d9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613a0b816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461276f90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051613aaa91906144ec565b60405180910390a3505050565b6000613ac230611451565b90506000601a54601854601954613ad99190614810565b613ae39190614810565b9050600080831480613af55750600082145b15613b0257505050613d9c565b6014600954613b119190614866565b831115613b2a576014600954613b279190614866565b92505b600060028360195486613b3d9190614866565b613b4791906148ef565b613b5191906148ef565b90506000613b688286613e6890919063ffffffff16565b90506000479050613b7882613eb2565b6000613b8d8247613e6890919063ffffffff16565b90506000613bb887613baa60185485613d9e90919063ffffffff16565b613e1990919063ffffffff16565b90506000613be388613bd5601a5486613d9e90919063ffffffff16565b613e1990919063ffffffff16565b90506000818385613bf49190615286565b613bfe9190615286565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613c5e906152eb565b60006040518083038185875af1925050503d8060008114613c9b576040519150601f19603f3d011682016040523d82523d6000602084013e613ca0565b606091505b505080985050600087118015613cb65750600081115b15613d0357613cc587826140fe565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601954604051613cfa93929190615300565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613d49906152eb565b60006040518083038185875af1925050503d8060008114613d86576040519150601f19603f3d011682016040523d82523d6000602084013e613d8b565b606091505b505080985050505050505050505050505b565b600080831415613db15760009050613e13565b60008284613dbf9190614866565b9050828482613dce91906148ef565b14613e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e05906153a9565b60405180910390fd5b809150505b92915050565b6000613e5b83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614209565b905092915050565b505050565b6000613eaa83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061371d565b905092915050565b6000600267ffffffffffffffff811115613ecf57613ece6153c9565b5b604051908082528060200260200182016040528015613efd5781602001602082028036833780820191505090505b5090503081600081518110613f1557613f146153f8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613fb557600080fd5b505afa158015613fc9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613fed919061543c565b81600181518110614001576140006153f8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614066307f0000000000000000000000000000000000000000000000000000000000000000846127d5565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016140c8959493929190615562565b600060405180830381600087803b1580156140e257600080fd5b505af11580156140f6573d6000803e3d6000fd5b505050505050565b614129307f0000000000000000000000000000000000000000000000000000000000000000846127d5565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016141b0969594939291906155bc565b6060604051808303818588803b1580156141c957600080fd5b505af11580156141dd573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906142029190615632565b5050505050565b60008083118290614250576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016142479190614305565b60405180910390fd5b506000838561425f91906148ef565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156142a657808201518184015260208101905061428b565b838111156142b5576000848401525b50505050565b6000601f19601f8301169050919050565b60006142d78261426c565b6142e18185614277565b93506142f1818560208601614288565b6142fa816142bb565b840191505092915050565b6000602082019050818103600083015261431f81846142cc565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006143578261432c565b9050919050565b6143678161434c565b811461437257600080fd5b50565b6000813590506143848161435e565b92915050565b6000819050919050565b61439d8161438a565b81146143a857600080fd5b50565b6000813590506143ba81614394565b92915050565b600080604083850312156143d7576143d6614327565b5b60006143e585828601614375565b92505060206143f6858286016143ab565b9150509250929050565b60008115159050919050565b61441581614400565b82525050565b6000602082019050614430600083018461440c565b92915050565b60006020828403121561444c5761444b614327565b5b600061445a84828501614375565b91505092915050565b6000819050919050565b600061448861448361447e8461432c565b614463565b61432c565b9050919050565b600061449a8261446d565b9050919050565b60006144ac8261448f565b9050919050565b6144bc816144a1565b82525050565b60006020820190506144d760008301846144b3565b92915050565b6144e68161438a565b82525050565b600060208201905061450160008301846144dd565b92915050565b60006020828403121561451d5761451c614327565b5b600061452b848285016143ab565b91505092915050565b60008060006060848603121561454d5761454c614327565b5b600061455b86828701614375565b935050602061456c86828701614375565b925050604061457d868287016143ab565b9150509250925092565b61459081614400565b811461459b57600080fd5b50565b6000813590506145ad81614587565b92915050565b600080604083850312156145ca576145c9614327565b5b60006145d885828601614375565b92505060206145e98582860161459e565b9150509250929050565b600060ff82169050919050565b614609816145f3565b82525050565b60006020820190506146246000830184614600565b92915050565b6146338161434c565b82525050565b600060208201905061464e600083018461462a565b92915050565b60008060006060848603121561466d5761466c614327565b5b600061467b868287016143ab565b935050602061468c868287016143ab565b925050604061469d868287016143ab565b9150509250925092565b6000602082840312156146bd576146bc614327565b5b60006146cb8482850161459e565b91505092915050565b600080604083850312156146eb576146ea614327565b5b60006146f985828601614375565b925050602061470a85828601614375565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061475b57607f821691505b6020821081141561476f5761476e614714565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006147ab602083614277565b91506147b682614775565b602082019050919050565b600060208201905081810360008301526147da8161479e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061481b8261438a565b91506148268361438a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561485b5761485a6147e1565b5b828201905092915050565b60006148718261438a565b915061487c8361438a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148b5576148b46147e1565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006148fa8261438a565b91506149058361438a565b925082614915576149146148c0565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061497c602f83614277565b915061498782614920565b604082019050919050565b600060208201905081810360008301526149ab8161496f565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614a0e603983614277565b9150614a19826149b2565b604082019050919050565b60006020820190508181036000830152614a3d81614a01565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614aa0602483614277565b9150614aab82614a44565b604082019050919050565b60006020820190508181036000830152614acf81614a93565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614b32603583614277565b9150614b3d82614ad6565b604082019050919050565b60006020820190508181036000830152614b6181614b25565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614bc4603483614277565b9150614bcf82614b68565b604082019050919050565b60006020820190508181036000830152614bf381614bb7565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614c56602683614277565b9150614c6182614bfa565b604082019050919050565b60006020820190508181036000830152614c8581614c49565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614cc2601b83614277565b9150614ccd82614c8c565b602082019050919050565b60006020820190508181036000830152614cf181614cb5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614d54602483614277565b9150614d5f82614cf8565b604082019050919050565b60006020820190508181036000830152614d8381614d47565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614de6602283614277565b9150614df182614d8a565b604082019050919050565b60006020820190508181036000830152614e1581614dd9565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614e78602583614277565b9150614e8382614e1c565b604082019050919050565b60006020820190508181036000830152614ea781614e6b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614f0a602383614277565b9150614f1582614eae565b604082019050919050565b60006020820190508181036000830152614f3981614efd565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460008201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b6000614f9c603183614277565b9150614fa782614f40565b604082019050919050565b60006020820190508181036000830152614fcb81614f8f565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000615008601683614277565b915061501382614fd2565b602082019050919050565b6000602082019050818103600083015261503781614ffb565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006150c0604983614277565b91506150cb8261503e565b606082019050919050565b600060208201905081810360008301526150ef816150b3565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615152603583614277565b915061515d826150f6565b604082019050919050565b6000602082019050818103600083015261518181615145565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006151be601383614277565b91506151c982615188565b602082019050919050565b600060208201905081810360008301526151ed816151b1565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615250603683614277565b915061525b826151f4565b604082019050919050565b6000602082019050818103600083015261527f81615243565b9050919050565b60006152918261438a565b915061529c8361438a565b9250828210156152af576152ae6147e1565b5b828203905092915050565b600081905092915050565b50565b60006152d56000836152ba565b91506152e0826152c5565b600082019050919050565b60006152f6826152c8565b9150819050919050565b600060608201905061531560008301866144dd565b61532260208301856144dd565b61532f60408301846144dd565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000615393602183614277565b915061539e82615337565b604082019050919050565b600060208201905081810360008301526153c281615386565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506154368161435e565b92915050565b60006020828403121561545257615451614327565b5b600061546084828501615427565b91505092915050565b6000819050919050565b600061548e61548961548484615469565b614463565b61438a565b9050919050565b61549e81615473565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6154d98161434c565b82525050565b60006154eb83836154d0565b60208301905092915050565b6000602082019050919050565b600061550f826154a4565b61551981856154af565b9350615524836154c0565b8060005b8381101561555557815161553c88826154df565b9750615547836154f7565b925050600181019050615528565b5085935050505092915050565b600060a08201905061557760008301886144dd565b6155846020830187615495565b81810360408301526155968186615504565b90506155a5606083018561462a565b6155b260808301846144dd565b9695505050505050565b600060c0820190506155d1600083018961462a565b6155de60208301886144dd565b6155eb6040830187615495565b6155f86060830186615495565b615605608083018561462a565b61561260a08301846144dd565b979650505050505050565b60008151905061562c81614394565b92915050565b60008060006060848603121561564b5761564a614327565b5b60006156598682870161561d565b935050602061566a8682870161561d565b925050604061567b8682870161561d565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220bb299baddbfbc96b425ea4e5bcfa3866bdd7282e5e6ca04c49a8970ce6331e7f64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106103395760003560e01c806392136913116101ab578063c17b5b8c116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610c0b578063f2fde38b14610c36578063f637434214610c5f578063f8b45b0514610c8a57610340565b8063e2f4560514610b9e578063e884f26014610bc9578063eee1bdb114610bf457610340565b8063c8c8ebe4116100d1578063c8c8ebe414610ace578063d257b34f14610af9578063d85ba06314610b36578063dd62ed3e14610b6157610340565b8063c17b5b8c14610a51578063c18bc19514610a7a578063c876d0b914610aa357610340565b8063a0d82dc511610164578063aacebbe31161013e578063aacebbe314610997578063b62496f5146109c0578063bbc0c742146109fd578063c024666814610a2857610340565b8063a0d82dc5146108f2578063a457c2d71461091d578063a9059cbb1461095a57610340565b806392136913146107f4578063924de9b71461081f57806395d89b41146108485780639a7a23d6146108735780639c3b4fdc1461089c5780639fccce32146108c757610340565b80633950935111610285578063715018a6116102235780637bce5a04116101fd5780637bce5a041461075e5780638095d564146107895780638a8c523c146107b25780638da5cb5b146107c957610340565b8063715018a6146106f3578063751039fc1461070a5780637571336a1461073557610340565b80634fbee1931161025f5780634fbee193146106235780636a486a8e146106605780636ddd17131461068b57806370a08231146106b657610340565b8063395093511461059057806349bd5a5e146105cd5780634a62bb65146105f857610340565b80631816467f116102f2578063203e727e116102cc578063203e727e146104d657806323b872dd146104ff5780632d5a5d341461053c578063313ce5671461056557610340565b80631816467f146104575780631a8145bb146104805780631f3fed8f146104ab57610340565b806306fdde0314610345578063095ea7b3146103705780630ba82991146103ad57806310d5de53146103c45780631694505e1461040157806318160ddd1461042c57610340565b3661034057005b600080fd5b34801561035157600080fd5b5061035a610cb5565b6040516103679190614305565b60405180910390f35b34801561037c57600080fd5b50610397600480360381019061039291906143c0565b610d47565b6040516103a4919061441b565b60405180910390f35b3480156103b957600080fd5b506103c2610d65565b005b3480156103d057600080fd5b506103eb60048036038101906103e69190614436565b610e49565b6040516103f8919061441b565b60405180910390f35b34801561040d57600080fd5b50610416610e69565b60405161042391906144c2565b60405180910390f35b34801561043857600080fd5b50610441610e8d565b60405161044e91906144ec565b60405180910390f35b34801561046357600080fd5b5061047e60048036038101906104799190614436565b610e97565b005b34801561048c57600080fd5b50610495610fee565b6040516104a291906144ec565b60405180910390f35b3480156104b757600080fd5b506104c0610ff4565b6040516104cd91906144ec565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f89190614507565b610ffa565b005b34801561050b57600080fd5b5061052660048036038101906105219190614534565b611124565b604051610533919061441b565b60405180910390f35b34801561054857600080fd5b50610563600480360381019061055e91906145b3565b6111fd565b005b34801561057157600080fd5b5061057a6112ef565b604051610587919061460f565b60405180910390f35b34801561059c57600080fd5b506105b760048036038101906105b291906143c0565b6112f8565b6040516105c4919061441b565b60405180910390f35b3480156105d957600080fd5b506105e26113ab565b6040516105ef9190614639565b60405180910390f35b34801561060457600080fd5b5061060d6113cf565b60405161061a919061441b565b60405180910390f35b34801561062f57600080fd5b5061064a60048036038101906106459190614436565b6113e2565b604051610657919061441b565b60405180910390f35b34801561066c57600080fd5b50610675611438565b60405161068291906144ec565b60405180910390f35b34801561069757600080fd5b506106a061143e565b6040516106ad919061441b565b60405180910390f35b3480156106c257600080fd5b506106dd60048036038101906106d89190614436565b611451565b6040516106ea91906144ec565b60405180910390f35b3480156106ff57600080fd5b50610708611499565b005b34801561071657600080fd5b5061071f6115f1565b60405161072c919061441b565b60405180910390f35b34801561074157600080fd5b5061075c600480360381019061075791906145b3565b6116ac565b005b34801561076a57600080fd5b5061077361179e565b60405161078091906144ec565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab9190614654565b6117a4565b005b3480156107be57600080fd5b506107c7611888565b005b3480156107d557600080fd5b506107de61195e565b6040516107eb9190614639565b60405180910390f35b34801561080057600080fd5b50610809611988565b60405161081691906144ec565b60405180910390f35b34801561082b57600080fd5b50610846600480360381019061084191906146a7565b61198e565b005b34801561085457600080fd5b5061085d611a42565b60405161086a9190614305565b60405180910390f35b34801561087f57600080fd5b5061089a600480360381019061089591906145b3565b611ad4565b005b3480156108a857600080fd5b506108b1611c08565b6040516108be91906144ec565b60405180910390f35b3480156108d357600080fd5b506108dc611c0e565b6040516108e991906144ec565b60405180910390f35b3480156108fe57600080fd5b50610907611c14565b60405161091491906144ec565b60405180910390f35b34801561092957600080fd5b50610944600480360381019061093f91906143c0565b611c1a565b604051610951919061441b565b60405180910390f35b34801561096657600080fd5b50610981600480360381019061097c91906143c0565b611ce7565b60405161098e919061441b565b60405180910390f35b3480156109a357600080fd5b506109be60048036038101906109b99190614436565b611d05565b005b3480156109cc57600080fd5b506109e760048036038101906109e29190614436565b611e5c565b6040516109f4919061441b565b60405180910390f35b348015610a0957600080fd5b50610a12611e7c565b604051610a1f919061441b565b60405180910390f35b348015610a3457600080fd5b50610a4f6004803603810190610a4a91906145b3565b611e8f565b005b348015610a5d57600080fd5b50610a786004803603810190610a739190614654565b611fcf565b005b348015610a8657600080fd5b50610aa16004803603810190610a9c9190614507565b6120b2565b005b348015610aaf57600080fd5b50610ab86121dc565b604051610ac5919061441b565b60405180910390f35b348015610ada57600080fd5b50610ae36121ef565b604051610af091906144ec565b60405180910390f35b348015610b0557600080fd5b50610b206004803603810190610b1b9190614507565b6121f5565b604051610b2d919061441b565b60405180910390f35b348015610b4257600080fd5b50610b4b612365565b604051610b5891906144ec565b60405180910390f35b348015610b6d57600080fd5b50610b886004803603810190610b8391906146d4565b61236b565b604051610b9591906144ec565b60405180910390f35b348015610baa57600080fd5b50610bb36123f2565b604051610bc091906144ec565b60405180910390f35b348015610bd557600080fd5b50610bde6123f8565b604051610beb919061441b565b60405180910390f35b348015610c0057600080fd5b50610c096124b3565b005b348015610c1757600080fd5b50610c20612596565b604051610c2d91906144ec565b60405180910390f35b348015610c4257600080fd5b50610c5d6004803603810190610c589190614436565b61259c565b005b348015610c6b57600080fd5b50610c74612763565b604051610c8191906144ec565b60405180910390f35b348015610c9657600080fd5b50610c9f612769565b604051610cac91906144ec565b60405180910390f35b606060038054610cc490614743565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf090614743565b8015610d3d5780601f10610d1257610100808354040283529160200191610d3d565b820191906000526020600020905b815481529060010190602001808311610d2057829003601f168201915b5050505050905090565b6000610d5b610d546127cd565b84846127d5565b6001905092915050565b610d6d6127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df3906147c1565b60405180910390fd5b600060138190555060016012819055506004601181905550601154601254601354610e279190614810565b610e319190614810565b60108190555060146010541115610e4757600080fd5b565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610e9f6127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f25906147c1565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b6110026127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611091576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611088906147c1565b60405180910390fd5b670de0b6b3a76400006103e860016110a7610e8d565b6110b19190614866565b6110bb91906148ef565b6110c591906148ef565b811015611107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fe90614992565b60405180910390fd5b670de0b6b3a76400008161111b9190614866565b60088190555050565b60006111318484846129a0565b6111f28461113d6127cd565b6111ed856040518060600160405280602881526020016156ac60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006111a36127cd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461371d9092919063ffffffff16565b6127d5565b600190509392505050565b6112056127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b906147c1565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006012905090565b60006113a16113056127cd565b8461139c85600160006113166127cd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461276f90919063ffffffff16565b6127d5565b6001905092915050565b7f000000000000000000000000f09465263ef0ca71c8195103ebe6c62bbdc268f681565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114a16127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611530576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611527906147c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006115fb6127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461168a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611681906147c1565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6116b46127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611743576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173a906147c1565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60115481565b6117ac6127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461183b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611832906147c1565b60405180910390fd5b8260138190555081601281905550806011819055506011546012546013546118639190614810565b61186d9190614810565b6010819055506014601054111561188357600080fd5b505050565b6118906127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461191f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611916906147c1565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601b81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60155481565b6119966127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1c906147c1565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611a5190614743565b80601f0160208091040260200160405190810160405280929190818152602001828054611a7d90614743565b8015611aca5780601f10611a9f57610100808354040283529160200191611aca565b820191906000526020600020905b815481529060010190602001808311611aad57829003601f168201915b5050505050905090565b611adc6127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b62906147c1565b60405180910390fd5b7f000000000000000000000000f09465263ef0ca71c8195103ebe6c62bbdc268f673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf190614a24565b60405180910390fd5b611c048282613781565b5050565b60135481565b601a5481565b60175481565b6000611cdd611c276127cd565b84611cd8856040518060600160405280602581526020016156d46025913960016000611c516127cd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461371d9092919063ffffffff16565b6127d5565b6001905092915050565b6000611cfb611cf46127cd565b84846129a0565b6001905092915050565b611d0d6127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d93906147c1565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611e976127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1d906147c1565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611fc3919061441b565b60405180910390a25050565b611fd76127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205d906147c1565b60405180910390fd5b82601781905550816016819055508060158190555060155460165460175461208e9190614810565b6120989190614810565b6014819055506014805411156120ad57600080fd5b505050565b6120ba6127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612149576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612140906147c1565b60405180910390fd5b670de0b6b3a76400006103e8600561215f610e8d565b6121699190614866565b61217391906148ef565b61217d91906148ef565b8110156121bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b690614ab6565b60405180910390fd5b670de0b6b3a7640000816121d39190614866565b600a8190555050565b600f60009054906101000a900460ff1681565b60085481565b60006121ff6127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461228e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612285906147c1565b60405180910390fd5b620186a0600161229c610e8d565b6122a69190614866565b6122b091906148ef565b8210156122f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e990614b48565b60405180910390fd5b6103e860056122ff610e8d565b6123099190614866565b61231391906148ef565b821115612355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234c90614bda565b60405180910390fd5b8160098190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006124026127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612491576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612488906147c1565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b6124bb6127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461254a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612541906147c1565b60405180910390fd5b6000601781905550600160168190555060046015819055506015546016546017546125759190614810565b61257f9190614810565b60148190555060148054111561259457600080fd5b565b60125481565b6125a46127cd565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262a906147c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269a90614c6c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600a5481565b600080828461277e9190614810565b9050838110156127c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ba90614cd8565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283c90614d6a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ac90614dfc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161299391906144ec565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0790614e8e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7790614f20565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612b245750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5a90614fb2565b60405180910390fd5b6000811415612b7d57612b7883836000613822565b613718565b600b60009054906101000a900460ff161561324057612b9a61195e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612c085750612bd861195e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c415750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c7b575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c945750600560149054906101000a900460ff16155b1561323f57600b60019054906101000a900460ff16612d8e57601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d4e5750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d849061501e565b60405180910390fd5b5b600f60009054906101000a900460ff1615612f5657612dab61195e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612e3257507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e8a57507f000000000000000000000000f09465263ef0ca71c8195103ebe6c62bbdc268f673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612f555743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f07906150d6565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ff95750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130a057600854811115613043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303a90615168565b60405180910390fd5b600a5461304f83611451565b8261305a9190614810565b111561309b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613092906151d4565b60405180910390fd5b61323e565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131435750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131925760085481111561318d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318490615266565b60405180910390fd5b61323d565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661323c57600a546131ef83611451565b826131fa9190614810565b111561323b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613232906151d4565b60405180910390fd5b5b5b5b5b5b600061324b30611451565b9050600060095482101590508080156132705750600b60029054906101000a900460ff165b80156132895750600560149054906101000a900460ff16155b80156132df5750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133355750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561338b5750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156133cf576001600560146101000a81548160ff0219169083151502179055506133b3613ab7565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806134855750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561348f57600090505b6000811561370857601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156134f257506000601454115b156135bf5761351f606461351160145488613d9e90919063ffffffff16565b613e1990919063ffffffff16565b9050601454601654826135329190614866565b61353c91906148ef565b6019600082825461354d9190614810565b92505081905550601454601754826135659190614866565b61356f91906148ef565b601a60008282546135809190614810565b92505081905550601454601554826135989190614866565b6135a291906148ef565b601860008282546135b39190614810565b925050819055506136e4565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561361a57506000601054115b156136e357613647606461363960105488613d9e90919063ffffffff16565b613e1990919063ffffffff16565b90506010546012548261365a9190614866565b61366491906148ef565b601960008282546136759190614810565b925050819055506010546013548261368d9190614866565b61369791906148ef565b601a60008282546136a89190614810565b92505081905550601054601154826136c09190614866565b6136ca91906148ef565b601860008282546136db9190614810565b925050819055505b5b60008111156136f9576136f8873083613822565b5b80856137059190615286565b94505b613713878787613822565b505050505b505050565b6000838311158290613765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375c9190614305565b60405180910390fd5b50600083856137749190615286565b9050809150509392505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161388990614e8e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138f990614f20565b60405180910390fd5b61390d838383613e63565b61397881604051806060016040528060268152602001615686602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461371d9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613a0b816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461276f90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051613aaa91906144ec565b60405180910390a3505050565b6000613ac230611451565b90506000601a54601854601954613ad99190614810565b613ae39190614810565b9050600080831480613af55750600082145b15613b0257505050613d9c565b6014600954613b119190614866565b831115613b2a576014600954613b279190614866565b92505b600060028360195486613b3d9190614866565b613b4791906148ef565b613b5191906148ef565b90506000613b688286613e6890919063ffffffff16565b90506000479050613b7882613eb2565b6000613b8d8247613e6890919063ffffffff16565b90506000613bb887613baa60185485613d9e90919063ffffffff16565b613e1990919063ffffffff16565b90506000613be388613bd5601a5486613d9e90919063ffffffff16565b613e1990919063ffffffff16565b90506000818385613bf49190615286565b613bfe9190615286565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613c5e906152eb565b60006040518083038185875af1925050503d8060008114613c9b576040519150601f19603f3d011682016040523d82523d6000602084013e613ca0565b606091505b505080985050600087118015613cb65750600081115b15613d0357613cc587826140fe565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601954604051613cfa93929190615300565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613d49906152eb565b60006040518083038185875af1925050503d8060008114613d86576040519150601f19603f3d011682016040523d82523d6000602084013e613d8b565b606091505b505080985050505050505050505050505b565b600080831415613db15760009050613e13565b60008284613dbf9190614866565b9050828482613dce91906148ef565b14613e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e05906153a9565b60405180910390fd5b809150505b92915050565b6000613e5b83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614209565b905092915050565b505050565b6000613eaa83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061371d565b905092915050565b6000600267ffffffffffffffff811115613ecf57613ece6153c9565b5b604051908082528060200260200182016040528015613efd5781602001602082028036833780820191505090505b5090503081600081518110613f1557613f146153f8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613fb557600080fd5b505afa158015613fc9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613fed919061543c565b81600181518110614001576140006153f8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614066307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846127d5565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016140c8959493929190615562565b600060405180830381600087803b1580156140e257600080fd5b505af11580156140f6573d6000803e3d6000fd5b505050505050565b614129307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846127d5565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016141b0969594939291906155bc565b6060604051808303818588803b1580156141c957600080fd5b505af11580156141dd573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906142029190615632565b5050505050565b60008083118290614250576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016142479190614305565b60405180910390fd5b506000838561425f91906148ef565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156142a657808201518184015260208101905061428b565b838111156142b5576000848401525b50505050565b6000601f19601f8301169050919050565b60006142d78261426c565b6142e18185614277565b93506142f1818560208601614288565b6142fa816142bb565b840191505092915050565b6000602082019050818103600083015261431f81846142cc565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006143578261432c565b9050919050565b6143678161434c565b811461437257600080fd5b50565b6000813590506143848161435e565b92915050565b6000819050919050565b61439d8161438a565b81146143a857600080fd5b50565b6000813590506143ba81614394565b92915050565b600080604083850312156143d7576143d6614327565b5b60006143e585828601614375565b92505060206143f6858286016143ab565b9150509250929050565b60008115159050919050565b61441581614400565b82525050565b6000602082019050614430600083018461440c565b92915050565b60006020828403121561444c5761444b614327565b5b600061445a84828501614375565b91505092915050565b6000819050919050565b600061448861448361447e8461432c565b614463565b61432c565b9050919050565b600061449a8261446d565b9050919050565b60006144ac8261448f565b9050919050565b6144bc816144a1565b82525050565b60006020820190506144d760008301846144b3565b92915050565b6144e68161438a565b82525050565b600060208201905061450160008301846144dd565b92915050565b60006020828403121561451d5761451c614327565b5b600061452b848285016143ab565b91505092915050565b60008060006060848603121561454d5761454c614327565b5b600061455b86828701614375565b935050602061456c86828701614375565b925050604061457d868287016143ab565b9150509250925092565b61459081614400565b811461459b57600080fd5b50565b6000813590506145ad81614587565b92915050565b600080604083850312156145ca576145c9614327565b5b60006145d885828601614375565b92505060206145e98582860161459e565b9150509250929050565b600060ff82169050919050565b614609816145f3565b82525050565b60006020820190506146246000830184614600565b92915050565b6146338161434c565b82525050565b600060208201905061464e600083018461462a565b92915050565b60008060006060848603121561466d5761466c614327565b5b600061467b868287016143ab565b935050602061468c868287016143ab565b925050604061469d868287016143ab565b9150509250925092565b6000602082840312156146bd576146bc614327565b5b60006146cb8482850161459e565b91505092915050565b600080604083850312156146eb576146ea614327565b5b60006146f985828601614375565b925050602061470a85828601614375565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061475b57607f821691505b6020821081141561476f5761476e614714565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006147ab602083614277565b91506147b682614775565b602082019050919050565b600060208201905081810360008301526147da8161479e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061481b8261438a565b91506148268361438a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561485b5761485a6147e1565b5b828201905092915050565b60006148718261438a565b915061487c8361438a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148b5576148b46147e1565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006148fa8261438a565b91506149058361438a565b925082614915576149146148c0565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061497c602f83614277565b915061498782614920565b604082019050919050565b600060208201905081810360008301526149ab8161496f565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614a0e603983614277565b9150614a19826149b2565b604082019050919050565b60006020820190508181036000830152614a3d81614a01565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614aa0602483614277565b9150614aab82614a44565b604082019050919050565b60006020820190508181036000830152614acf81614a93565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614b32603583614277565b9150614b3d82614ad6565b604082019050919050565b60006020820190508181036000830152614b6181614b25565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614bc4603483614277565b9150614bcf82614b68565b604082019050919050565b60006020820190508181036000830152614bf381614bb7565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614c56602683614277565b9150614c6182614bfa565b604082019050919050565b60006020820190508181036000830152614c8581614c49565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614cc2601b83614277565b9150614ccd82614c8c565b602082019050919050565b60006020820190508181036000830152614cf181614cb5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614d54602483614277565b9150614d5f82614cf8565b604082019050919050565b60006020820190508181036000830152614d8381614d47565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614de6602283614277565b9150614df182614d8a565b604082019050919050565b60006020820190508181036000830152614e1581614dd9565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614e78602583614277565b9150614e8382614e1c565b604082019050919050565b60006020820190508181036000830152614ea781614e6b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614f0a602383614277565b9150614f1582614eae565b604082019050919050565b60006020820190508181036000830152614f3981614efd565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460008201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b6000614f9c603183614277565b9150614fa782614f40565b604082019050919050565b60006020820190508181036000830152614fcb81614f8f565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000615008601683614277565b915061501382614fd2565b602082019050919050565b6000602082019050818103600083015261503781614ffb565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006150c0604983614277565b91506150cb8261503e565b606082019050919050565b600060208201905081810360008301526150ef816150b3565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615152603583614277565b915061515d826150f6565b604082019050919050565b6000602082019050818103600083015261518181615145565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006151be601383614277565b91506151c982615188565b602082019050919050565b600060208201905081810360008301526151ed816151b1565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615250603683614277565b915061525b826151f4565b604082019050919050565b6000602082019050818103600083015261527f81615243565b9050919050565b60006152918261438a565b915061529c8361438a565b9250828210156152af576152ae6147e1565b5b828203905092915050565b600081905092915050565b50565b60006152d56000836152ba565b91506152e0826152c5565b600082019050919050565b60006152f6826152c8565b9150819050919050565b600060608201905061531560008301866144dd565b61532260208301856144dd565b61532f60408301846144dd565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000615393602183614277565b915061539e82615337565b604082019050919050565b600060208201905081810360008301526153c281615386565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506154368161435e565b92915050565b60006020828403121561545257615451614327565b5b600061546084828501615427565b91505092915050565b6000819050919050565b600061548e61548961548484615469565b614463565b61438a565b9050919050565b61549e81615473565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6154d98161434c565b82525050565b60006154eb83836154d0565b60208301905092915050565b6000602082019050919050565b600061550f826154a4565b61551981856154af565b9350615524836154c0565b8060005b8381101561555557815161553c88826154df565b9750615547836154f7565b925050600181019050615528565b5085935050505092915050565b600060a08201905061557760008301886144dd565b6155846020830187615495565b81810360408301526155968186615504565b90506155a5606083018561462a565b6155b260808301846144dd565b9695505050505050565b600060c0820190506155d1600083018961462a565b6155de60208301886144dd565b6155eb6040830187615495565b6155f86060830186615495565b615605608083018561462a565b61561260a08301846144dd565b979650505050505050565b60008151905061562c81614394565b92915050565b60008060006060848603121561564b5761564a614327565b5b60006156598682870161561d565b935050602061566a8682870161561d565b925050604061567b8682870161561d565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220bb299baddbfbc96b425ea4e5bcfa3866bdd7282e5e6ca04c49a8970ce6331e7f64736f6c63430008090033

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.