ETH Price: $3,106.40 (+0.81%)
Gas: 4 Gwei

Token

Halloween Inu (HALLOWINU)
 

Overview

Max Total Supply

942,296.423939327185073165 HALLOWINU

Holders

66

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4,000 HALLOWINU

Value
$0.00
0x73a4eeecfdd0919611491fb850b8e1e2b281657a
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:
HalloweenInu

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

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

/**

Halloween Inu | $HALLOWINU

Halloween Inu [HALLOWINU] is an ERC-20 meme-token, celebrating one of the years most famous holidays, 
whilst combining the theme with the ever famous 'Shiba Inu'.

Supply - 1,000,000 HALLOWINU 
Max wallet - 20,000 HALLOWINU

Taxes: 5%/5% (Buys/Sells)
- 1% AutoBurn
- 4% Development / Marketing / BuyBacks

Website: https://www.halloween-inu.com
Twitter: https://twitter.com/inu_halloween
Telegram: t.me/HallowinuENTRY

*/
pragma solidity = 0.8.16;

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

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

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


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

    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 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 swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

pragma solidity >= 0.8.16;


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

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

    bool private swapping;

    uint256 public maxSellTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    uint256 public supply;

    address public marketingAddress;

    bool public tradingActive = false;
    bool public liquidityFeeActive = false;

    bool public limitsInEffect = true;
    bool public swapEnabled = true;

    bool public _renounceDelayFunction = false;
    bool public _renounceFeeFunctions = false;
    bool public _renounceMaxUpdateFunctions = false;
    bool public _renounceMarketMakerPairChanges = false;
    bool public _renounceWalletChanges = false;
    bool public _renounceExcludeInclude = false;

    mapping(address => uint256) private _holderLastTransferTimestamp;

    uint256 public buyBurnFee;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyTotalFees;

    uint256 public sellBurnFee;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellTotalFees;

    uint256 public feeUnits = 100;

    uint256 public tokensForBurn;
    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;

    uint256 private _previousBuyLiquidityFee = 0;
    uint256 private _previousSellLiquidityFee = 0;

    uint256 public maxWalletTotal;
    uint256 public maxSellTransaction;

    /******************/

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

    // Store the automatic market maker pair addresses. 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 SwapAndLiquify(uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity);
    event updateHolderLastTransferTimestamp(address indexed account, uint256 timestamp);


    constructor() ERC20("Halloween Inu", "HALLOWINU") {

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

        excludeFromMaxSellTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxSellTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyBurnFee = 1;
        uint256 _buyMarketingFee = 4;
        uint256 _buyLiquidityFee = 0;

        uint256 _sellBurnFee = 1;
        uint256 _sellMarketingFee = 4;
        uint256 _sellLiquidityFee = 0;

        uint256 totalSupply = 1000000 * (10 ** 18);
        supply += totalSupply;

        maxWallet = 2;
        maxSellTransaction = 2;

        maxSellTransactionAmount = supply * maxSellTransaction / 100;
        swapTokensAtAmount = supply * 5 / 100000; // 0.005% swap wallet;
        maxWalletTotal = supply * maxWallet / 50;

        buyBurnFee = _buyBurnFee;
        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTotalFees = buyBurnFee + buyMarketingFee + buyLiquidityFee;

        sellBurnFee = _sellBurnFee;
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTotalFees = sellBurnFee + sellMarketingFee + sellLiquidityFee;

        marketingAddress = 0xae61ae1Ec5E36c064AB46d9322906FB45e30E0aa;

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

        excludeFromMaxSellTransaction(owner(), true);
        excludeFromMaxSellTransaction(address(this), true);
        excludeFromMaxSellTransaction(address(0xdead), true);

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

    receive() external payable {}

    function toggleLiquidityFeeActive () external onlyOwner {
      require(!_renounceFeeFunctions, "Cannot update fees after renouncemennt");
        if (liquidityFeeActive) {
        _previousBuyLiquidityFee = buyLiquidityFee;
        _previousSellLiquidityFee = sellLiquidityFee;
        }
        buyLiquidityFee = liquidityFeeActive ? 0 : _previousBuyLiquidityFee;
        sellLiquidityFee = liquidityFeeActive ? 0 : _previousSellLiquidityFee;
        liquidityFeeActive = !liquidityFeeActive;
    }

    function enableTrading() external onlyOwner {
        buyBurnFee = 0;
        buyMarketingFee = 2;
        buyLiquidityFee = 2;
        buyTotalFees = buyBurnFee + buyMarketingFee + buyLiquidityFee;

        sellBurnFee = 2;
        sellMarketingFee = 2;
        sellLiquidityFee = 2;
        sellTotalFees = sellBurnFee + sellMarketingFee + sellLiquidityFee;

        tradingActive = true;
        liquidityFeeActive = true;
    }

    function updateMaxSellTransaction(uint256 newNum) external onlyOwner {
      require(!_renounceMaxUpdateFunctions, "Cannot update max transaction amount after renouncement");
        require(newNum >= 1);
        maxSellTransaction = newNum;
        updateLimits();
    }

    function updateMaxWallet(uint256 newNum) external onlyOwner {
      require(!_renounceMaxUpdateFunctions, "Cannot update max transaction amount after renouncement");
        require(newNum >= 1);
        maxWallet = newNum;
        updateLimits();
    }


    function excludeFromMaxSellTransaction(address updAds, bool isEx) public onlyOwner {
      require(!_renounceMaxUpdateFunctions, "Cannot update max transaction amount after renouncement");
        _isExcludedMaxSellTransactionAmount[updAds] = isEx;
    }

    // if want fractional % in future, need to increase the fee units
    function updateFeeUnits(uint256 newNum) external onlyOwner {
      require(!_renounceFeeFunctions, "Cannot update fees after renouncement");
        feeUnits = newNum;
    }

    function updateBuyFees(uint256 _burnFee, uint256 _marketingFee, uint256 _buyLiquidityFee) external onlyOwner {
      require(!_renounceFeeFunctions, "Cannot update fees after renouncement");
        buyBurnFee = _burnFee;
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTotalFees = buyBurnFee + buyMarketingFee + buyLiquidityFee;
        require(buyTotalFees <= 15 * feeUnits / 100, "Must keep fees at 15% or less");
    }

    function updateSellFees(uint256 _burnFee, uint256 _marketingFee, uint256 _sellLiquidityFee) external onlyOwner {
      require(!_renounceFeeFunctions, "Cannot update fees after renouncement");
        sellBurnFee = _burnFee;
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTotalFees = sellBurnFee + sellMarketingFee + sellLiquidityFee;
        require(sellTotalFees <= 25 * feeUnits / 100, "Must keep fees at 25% or less");
    }

    function updateMarketingAddress(address newWallet) external onlyOwner {
      require(!_renounceWalletChanges, "Cannot update wallet after renouncement");
        marketingAddress = newWallet;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
      require(!_renounceExcludeInclude, "Cannot update excluded accounts after renouncement");
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function includeInFees(address account) public onlyOwner {
      require(!_renounceExcludeInclude, "Cannot update excluded accounts after renouncement");
        excludeFromFees(account, false);
    }

    function setLiquidityAddress(address newAddress) public onlyOwner {
      require(!_renounceWalletChanges, "Cannot update wallet after renouncement");
        liquidityAddress = newAddress;
    }

    function updateLimits() private {
        maxSellTransactionAmount = supply * maxSellTransaction / 100;
        swapTokensAtAmount = supply * 5 / 10000; // 0.05% swap wallet;
        maxWalletTotal = supply * maxWallet / 100;
    }

    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
      require(!_renounceMarketMakerPairChanges, "Cannot update market maker pairs after renouncement");
        require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

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

                // add the wallet to the _holderLastTransferTimestamp(address, timestamp) map
                _holderLastTransferTimestamp[tx.origin] = block.timestamp;
                emit updateHolderLastTransferTimestamp(tx.origin, block.timestamp);

                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxSellTransactionAmount[to] && !automatedMarketMakerPairs[to]){
                        require(amount + balanceOf(to) <= maxWalletTotal, "Max wallet exceeded");
                }

                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxSellTransactionAmount[from] && !automatedMarketMakerPairs[from]){
                        require(amount <= maxSellTransactionAmount, "Sell transfer amount exceeds the maxSellTransactionAmount.");
                }
                else if(!_isExcludedMaxSellTransactionAmount[to]){
                    require(amount + balanceOf(to) <= maxWalletTotal, "Max wallet exceeded");
                }
            }
        }
        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;

        if(takeFee){
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0){
                fees = amount.mul(sellTotalFees).div(feeUnits);
                tokensForBurn += fees * sellBurnFee / sellTotalFees;
                tokensForMarketing += fees * sellMarketingFee / sellTotalFees;
                if (liquidityFeeActive) {
                    tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees;
                }
            }

            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
        	    fees = amount.mul(buyTotalFees).div(feeUnits);
        	    tokensForBurn += fees * buyBurnFee / buyTotalFees;
                tokensForMarketing += fees * buyMarketingFee / buyTotalFees;
                if (liquidityFeeActive) {
                    tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
                }
            }

            if(fees > 0){
                super._transfer(from, address(this), fees);
                if (tokensForBurn > 0) {
                    _burn(address(this), tokensForBurn);
                    supply = totalSupply();
                    updateLimits();
                    tokensForBurn = 0;
                }
            }
            if (tokensForLiquidity > 0) {
                super._transfer(address(this), uniswapV2Pair, tokensForLiquidity);
                tokensForLiquidity = 0;
            }
        	amount -= fees;
        }

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

    function renounceFeeFunctions () public onlyOwner {
        require(msg.sender == owner(), "Only the owner can renounce fee functions");
        _renounceFeeFunctions = true;
    }

    function renounceWalletChanges () public onlyOwner {
        require(msg.sender == owner(), "Only the owner can renounce wallet changes");
        _renounceWalletChanges = true;
    }

    function renounceMaxUpdateFunctions () public onlyOwner {
        require(msg.sender == owner(), "Only the owner can renounce max update functions");
        _renounceMaxUpdateFunctions = true;
    }

    function renounceMarketMakerPairChanges () public onlyOwner {
        require(msg.sender == owner(), "Only the owner can renounce market maker pair changes");
        _renounceMarketMakerPairChanges = true;
    }

    function renounceExcludeInclude () public onlyOwner {
        require(msg.sender == owner(), "Only the owner can renounce exclude include");
        _renounceExcludeInclude = true;
    }

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

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );

    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        bool success;

        if(contractBalance == 0) {return;}

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

        swapTokensForEth(contractBalance);

        tokensForMarketing = 0;

        (success,) = address(marketingAddress).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":"tokensIntoLiqudity","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":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"updateHolderLastTransferTimestamp","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxSellTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_renounceDelayFunction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_renounceExcludeInclude","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_renounceFeeFunctions","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_renounceMarketMakerPairChanges","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_renounceMaxUpdateFunctions","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_renounceWalletChanges","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":[],"name":"buyBurnFee","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":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"excludeFromMaxSellTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeUnits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFees","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":"liquidityAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFeeActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellTransactionAmount","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":"maxWalletTotal","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":"renounceExcludeInclude","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceFeeFunctions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceMarketMakerPairChanges","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceMaxUpdateFunctions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceWalletChanges","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellBurnFee","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":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setLiquidityAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleLiquidityFeeActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokensForBurn","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":[{"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":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_buyLiquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateFeeUnits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateMarketingAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxSellTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_sellLiquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526000600b60146101000a81548160ff0219169083151502179055506000600b60156101000a81548160ff0219169083151502179055506001600b60166101000a81548160ff0219169083151502179055506001600b60176101000a81548160ff0219169083151502179055506000600b60186101000a81548160ff0219169083151502179055506000600b60196101000a81548160ff0219169083151502179055506000600b601a6101000a81548160ff0219169083151502179055506000600b601b6101000a81548160ff0219169083151502179055506000600b601c6101000a81548160ff0219169083151502179055506000600b601d6101000a81548160ff021916908315150217905550606460155560006019556000601a553480156200012e57600080fd5b506040518060400160405280600d81526020017f48616c6c6f7765656e20496e75000000000000000000000000000000000000008152506040518060400160405280600981526020017f48414c4c4f57494e5500000000000000000000000000000000000000000000008152508160039081620001ac919062001124565b508060049081620001be919062001124565b5050506000620001d36200070060201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200029e8160016200070860201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200031e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000344919062001275565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003ac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003d2919062001275565b6040518363ffffffff1660e01b8152600401620003f1929190620012b8565b6020604051808303816000875af115801562000411573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000437919062001275565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200047f60a05160016200070860201b60201c565b6200049460a05160016200085860201b60201c565b6000600190506000600490506000806001905060006004905060008069d3c21bcecceda1000000905080600a6000828254620004d1919062001314565b9250508190555060026009819055506002601c819055506064601c54600a54620004fc91906200134f565b620005089190620013df565b600781905550620186a06005600a546200052391906200134f565b6200052f9190620013df565b6008819055506032600954600a546200054991906200134f565b620005559190620013df565b601b8190555086600d8190555085600e8190555084600f81905550600f54600e54600d5462000585919062001314565b62000591919062001314565b601081905550836011819055508260128190555081601381905550601354601254601154620005c1919062001314565b620005cd919062001314565b60148190555073ae61ae1ec5e36c064ab46d9322906fb45e30e0aa600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200064a6200063c620008f960201b60201c565b60016200092360201b60201c565b6200065d3060016200092360201b60201c565b6200067261dead60016200092360201b60201c565b6200069462000686620008f960201b60201c565b60016200070860201b60201c565b620006a73060016200070860201b60201c565b620006bc61dead60016200070860201b60201c565b620006e0620006d0620008f960201b60201c565b6080518362000ac360201b60201c565b620006f2338262000c9460201b60201c565b505050505050505062001846565b600033905090565b620007186200070060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620007aa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007a19062001478565b60405180910390fd5b600b601a9054906101000a900460ff1615620007fd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f49062001510565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620009336200070060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620009c5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009bc9062001478565b60405180910390fd5b600b601d9054906101000a900460ff161562000a18576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a0f90620015a8565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000ab79190620015e7565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000b35576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b2c906200167a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000ba7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b9e9062001712565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000c87919062001745565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000d06576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000cfd90620017b2565b60405180910390fd5b62000d1a6000838362000e4260201b60201c565b62000d368160025462000e4760201b62002fe01790919060201c565b60028190555062000d94816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000e4760201b62002fe01790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000e36919062001745565b60405180910390a35050565b505050565b600080828462000e58919062001314565b90508381101562000ea0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000e979062001824565b60405180910390fd5b8091505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f2c57607f821691505b60208210810362000f425762000f4162000ee4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000fac7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000f6d565b62000fb8868362000f6d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200100562000fff62000ff98462000fd0565b62000fda565b62000fd0565b9050919050565b6000819050919050565b620010218362000fe4565b6200103962001030826200100c565b84845462000f7a565b825550505050565b600090565b6200105062001041565b6200105d81848462001016565b505050565b5b8181101562001085576200107960008262001046565b60018101905062001063565b5050565b601f821115620010d4576200109e8162000f48565b620010a98462000f5d565b81016020851015620010b9578190505b620010d1620010c88562000f5d565b83018262001062565b50505b505050565b600082821c905092915050565b6000620010f960001984600802620010d9565b1980831691505092915050565b6000620011148383620010e6565b9150826002028217905092915050565b6200112f8262000eaa565b67ffffffffffffffff8111156200114b576200114a62000eb5565b5b62001157825462000f13565b6200116482828562001089565b600060209050601f8311600181146200119c576000841562001187578287015190505b62001193858262001106565b86555062001203565b601f198416620011ac8662000f48565b60005b82811015620011d657848901518255600182019150602085019450602081019050620011af565b86831015620011f65784890151620011f2601f891682620010e6565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200123d8262001210565b9050919050565b6200124f8162001230565b81146200125b57600080fd5b50565b6000815190506200126f8162001244565b92915050565b6000602082840312156200128e576200128d6200120b565b5b60006200129e848285016200125e565b91505092915050565b620012b28162001230565b82525050565b6000604082019050620012cf6000830185620012a7565b620012de6020830184620012a7565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620013218262000fd0565b91506200132e8362000fd0565b9250828201905080821115620013495762001348620012e5565b5b92915050565b60006200135c8262000fd0565b9150620013698362000fd0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620013a557620013a4620012e5565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620013ec8262000fd0565b9150620013f98362000fd0565b9250826200140c576200140b620013b0565b5b828204905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200146060208362001417565b91506200146d8262001428565b602082019050919050565b60006020820190508181036000830152620014938162001451565b9050919050565b7f43616e6e6f7420757064617465206d6178207472616e73616374696f6e20616d60008201527f6f756e742061667465722072656e6f756e63656d656e74000000000000000000602082015250565b6000620014f860378362001417565b915062001505826200149a565b604082019050919050565b600060208201905081810360008301526200152b81620014e9565b9050919050565b7f43616e6e6f7420757064617465206578636c75646564206163636f756e74732060008201527f61667465722072656e6f756e63656d656e740000000000000000000000000000602082015250565b60006200159060328362001417565b91506200159d8262001532565b604082019050919050565b60006020820190508181036000830152620015c38162001581565b9050919050565b60008115159050919050565b620015e181620015ca565b82525050565b6000602082019050620015fe6000830184620015d6565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006200166260248362001417565b91506200166f8262001604565b604082019050919050565b60006020820190508181036000830152620016958162001653565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000620016fa60228362001417565b915062001707826200169c565b604082019050919050565b600060208201905081810360008301526200172d81620016eb565b9050919050565b6200173f8162000fd0565b82525050565b60006020820190506200175c600083018462001734565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200179a601f8362001417565b9150620017a78262001762565b602082019050919050565b60006020820190508181036000830152620017cd816200178b565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b60006200180c601b8362001417565b91506200181982620017d4565b602082019050919050565b600060208201905081810360008301526200183f81620017fd565b9050919050565b60805160a051615fdc6200188f600039600081816116c8015281816122780152613e9001526000818161105e0152818161467a0152818161475b01526147820152615fdc6000f3fe6080604052600436106103f35760003560e01c8063715018a611610208578063b1099b8111610118578063dd62ed3e116100ab578063f11a24d31161007a578063f11a24d314610e92578063f2fde38b14610ebd578063f637434214610ee6578063f680f79914610f11578063f8b45b0514610f3c576103fa565b8063dd62ed3e14610dd6578063e18fc22414610e13578063e2f4560514610e3c578063e71dc3f514610e67576103fa565b8063c0246668116100e7578063c024666814610d2e578063c17b5b8c14610d57578063c94c2a5214610d80578063d85ba06314610dab576103fa565b8063b1099b8114610c98578063b116288414610caf578063b62496f514610cc6578063bbc0c74214610d03576103fa565b8063a333174f1161019b578063a5ece9411161016a578063a5ece94114610bc5578063a9059cbb14610bf0578063ac819f5414610c2d578063adb873bd14610c56578063b0a95bfa14610c81576103fa565b8063a333174f14610b07578063a457c2d714610b32578063a4c5ba9614610b6f578063a4d0341414610b9a576103fa565b80638da5cb5b116101d75780638da5cb5b14610a5d5780639213691314610a8857806395d89b4114610ab35780639a7a23d614610ade576103fa565b8063715018a6146109db5780637bce5a04146109f25780638095d56414610a1d5780638a8c523c14610a46576103fa565b806327c8f835116103035780634fbee19311610296578063637845c611610265578063637845c61461090657806365aaf3701461091d5780636a486a8e146109485780636ddd17131461097357806370a082311461099e576103fa565b80634fbee19314610860578063525fa81f1461089d5780635449f2ec146108c65780635dc08315146108dd576103fa565b80633b13cc16116102d25780633b13cc16146107b45780633fad50a9146107df57806349bd5a5e1461080a5780634a62bb6514610835576103fa565b806327c8f835146106f6578063313ce567146107215780633221c93f1461074c5780633950935114610777576103fa565b806316a2f82a116103865780631cd6e871116103555780631cd6e871146106235780631d7778561461063a5780631f3fed8f146106655780632369bf831461069057806323b872dd146106b9576103fa565b806316a2f82a1461057b57806318160ddd146105a45780631a8145bb146105cf5780631c499ab0146105fa576103fa565b806306fdde03116103c257806306fdde03146104ab5780630855f25d146104d6578063095ea7b3146105135780631694505e14610550576103fa565b806302259e9e146103ff578063023ad5811461042a578063047fc9aa14610455578063064f220514610480576103fa565b366103fa57005b600080fd5b34801561040b57600080fd5b50610414610f67565b60405161042191906148de565b60405180910390f35b34801561043657600080fd5b5061043f610f6d565b60405161044c91906148de565b60405180910390f35b34801561046157600080fd5b5061046a610f73565b60405161047791906148de565b60405180910390f35b34801561048c57600080fd5b50610495610f79565b6040516104a29190614914565b60405180910390f35b3480156104b757600080fd5b506104c0610f8c565b6040516104cd91906149bf565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f89190614a44565b61101e565b60405161050a9190614914565b60405180910390f35b34801561051f57600080fd5b5061053a60048036038101906105359190614a9d565b61103e565b6040516105479190614914565b60405180910390f35b34801561055c57600080fd5b5061056561105c565b6040516105729190614b3c565b60405180910390f35b34801561058757600080fd5b506105a2600480360381019061059d9190614a44565b611080565b005b3480156105b057600080fd5b506105b9611175565b6040516105c691906148de565b60405180910390f35b3480156105db57600080fd5b506105e461117f565b6040516105f191906148de565b60405180910390f35b34801561060657600080fd5b50610621600480360381019061061c9190614b57565b611185565b005b34801561062f57600080fd5b5061063861128c565b005b34801561064657600080fd5b5061064f6113b5565b60405161065c91906148de565b60405180910390f35b34801561067157600080fd5b5061067a6113bb565b60405161068791906148de565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b29190614a44565b6113c1565b005b3480156106c557600080fd5b506106e060048036038101906106db9190614b84565b6114ec565b6040516106ed9190614914565b60405180910390f35b34801561070257600080fd5b5061070b6115c5565b6040516107189190614be6565b60405180910390f35b34801561072d57600080fd5b506107366115cb565b6040516107439190614c1d565b60405180910390f35b34801561075857600080fd5b506107616115d4565b60405161076e9190614be6565b60405180910390f35b34801561078357600080fd5b5061079e60048036038101906107999190614a9d565b6115fa565b6040516107ab9190614914565b60405180910390f35b3480156107c057600080fd5b506107c96116ad565b6040516107d691906148de565b60405180910390f35b3480156107eb57600080fd5b506107f46116b3565b6040516108019190614914565b60405180910390f35b34801561081657600080fd5b5061081f6116c6565b60405161082c9190614be6565b60405180910390f35b34801561084157600080fd5b5061084a6116ea565b6040516108579190614914565b60405180910390f35b34801561086c57600080fd5b5061088760048036038101906108829190614a44565b6116fd565b6040516108949190614914565b60405180910390f35b3480156108a957600080fd5b506108c460048036038101906108bf9190614a44565b611753565b005b3480156108d257600080fd5b506108db61187e565b005b3480156108e957600080fd5b5061090460048036038101906108ff9190614b57565b6119a7565b005b34801561091257600080fd5b5061091b611aae565b005b34801561092957600080fd5b50610932611c33565b60405161093f9190614914565b60405180910390f35b34801561095457600080fd5b5061095d611c46565b60405161096a91906148de565b60405180910390f35b34801561097f57600080fd5b50610988611c4c565b6040516109959190614914565b60405180910390f35b3480156109aa57600080fd5b506109c560048036038101906109c09190614a44565b611c5f565b6040516109d291906148de565b60405180910390f35b3480156109e757600080fd5b506109f0611ca7565b005b3480156109fe57600080fd5b50610a07611dff565b604051610a1491906148de565b60405180910390f35b348015610a2957600080fd5b50610a446004803603810190610a3f9190614c38565b611e05565b005b348015610a5257600080fd5b50610a5b611f88565b005b348015610a6957600080fd5b50610a726120cd565b604051610a7f9190614be6565b60405180910390f35b348015610a9457600080fd5b50610a9d6120f7565b604051610aaa91906148de565b60405180910390f35b348015610abf57600080fd5b50610ac86120fd565b604051610ad591906149bf565b60405180910390f35b348015610aea57600080fd5b50610b056004803603810190610b009190614cb7565b61218f565b005b348015610b1357600080fd5b50610b1c612312565b604051610b299190614914565b60405180910390f35b348015610b3e57600080fd5b50610b596004803603810190610b549190614a9d565b612325565b604051610b669190614914565b60405180910390f35b348015610b7b57600080fd5b50610b846123f2565b604051610b919190614914565b60405180910390f35b348015610ba657600080fd5b50610baf612405565b604051610bbc9190614914565b60405180910390f35b348015610bd157600080fd5b50610bda612418565b604051610be79190614be6565b60405180910390f35b348015610bfc57600080fd5b50610c176004803603810190610c129190614a9d565b61243e565b604051610c249190614914565b60405180910390f35b348015610c3957600080fd5b50610c546004803603810190610c4f9190614cb7565b61245c565b005b348015610c6257600080fd5b50610c6b61259e565b604051610c7891906148de565b60405180910390f35b348015610c8d57600080fd5b50610c966125a4565b005b348015610ca457600080fd5b50610cad6126cd565b005b348015610cbb57600080fd5b50610cc46127f6565b005b348015610cd257600080fd5b50610ced6004803603810190610ce89190614a44565b61291f565b604051610cfa9190614914565b60405180910390f35b348015610d0f57600080fd5b50610d1861293f565b604051610d259190614914565b60405180910390f35b348015610d3a57600080fd5b50610d556004803603810190610d509190614cb7565b612952565b005b348015610d6357600080fd5b50610d7e6004803603810190610d799190614c38565b612ae2565b005b348015610d8c57600080fd5b50610d95612c65565b604051610da29190614914565b60405180910390f35b348015610db757600080fd5b50610dc0612c78565b604051610dcd91906148de565b60405180910390f35b348015610de257600080fd5b50610dfd6004803603810190610df89190614cf7565b612c7e565b604051610e0a91906148de565b60405180910390f35b348015610e1f57600080fd5b50610e3a6004803603810190610e359190614b57565b612d05565b005b348015610e4857600080fd5b50610e51612df6565b604051610e5e91906148de565b60405180910390f35b348015610e7357600080fd5b50610e7c612dfc565b604051610e8991906148de565b60405180910390f35b348015610e9e57600080fd5b50610ea7612e02565b604051610eb491906148de565b60405180910390f35b348015610ec957600080fd5b50610ee46004803603810190610edf9190614a44565b612e08565b005b348015610ef257600080fd5b50610efb612fce565b604051610f0891906148de565b60405180910390f35b348015610f1d57600080fd5b50610f26612fd4565b604051610f3391906148de565b60405180910390f35b348015610f4857600080fd5b50610f51612fda565b604051610f5e91906148de565b60405180910390f35b60075481565b601b5481565b600a5481565b600b60159054906101000a900460ff1681565b606060038054610f9b90614d66565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc790614d66565b80156110145780601f10610fe957610100808354040283529160200191611014565b820191906000526020600020905b815481529060010190602001808311610ff757829003601f168201915b5050505050905090565b601e6020528060005260406000206000915054906101000a900460ff1681565b600061105261104b61303e565b8484613046565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b61108861303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e90614de3565b60405180910390fd5b600b601d9054906101000a900460ff1615611167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115e90614e75565b60405180910390fd5b611172816000612952565b50565b6000600254905090565b60185481565b61118d61303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461121c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121390614de3565b60405180910390fd5b600b601a9054906101000a900460ff161561126c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126390614f07565b60405180910390fd5b600181101561127a57600080fd5b8060098190555061128961320f565b50565b61129461303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131a90614de3565b60405180910390fd5b61132b6120cd565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f90614f99565b60405180910390fd5b6001600b60196101000a81548160ff021916908315150217905550565b60165481565b60175481565b6113c961303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144f90614de3565b60405180910390fd5b600b601c9054906101000a900460ff16156114a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149f9061502b565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006114f9848484613277565b6115ba8461150561303e565b6115b585604051806060016040528060288152602001615f5a60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061156b61303e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613ee49092919063ffffffff16565b613046565b600190509392505050565b61dead81565b60006012905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006116a361160761303e565b8461169e856001600061161861303e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fe090919063ffffffff16565b613046565b6001905092915050565b601c5481565b600b601b9054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60169054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61175b61303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e190614de3565b60405180910390fd5b600b601c9054906101000a900460ff161561183a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118319061502b565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61188661303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190c90614de3565b60405180910390fd5b61191d6120cd565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461198a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611981906150bd565b60405180910390fd5b6001600b601d6101000a81548160ff021916908315150217905550565b6119af61303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3590614de3565b60405180910390fd5b600b601a9054906101000a900460ff1615611a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8590614f07565b60405180910390fd5b6001811015611a9c57600080fd5b80601c81905550611aab61320f565b50565b611ab661303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3c90614de3565b60405180910390fd5b600b60199054906101000a900460ff1615611b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8c9061514f565b60405180910390fd5b600b60159054906101000a900460ff1615611bbd57600f54601981905550601354601a819055505b600b60159054906101000a900460ff16611bd957601954611bdc565b60005b600f81905550600b60159054906101000a900460ff16611bfe57601a54611c01565b60005b601381905550600b60159054906101000a900460ff1615600b60156101000a81548160ff021916908315150217905550565b600b601c9054906101000a900460ff1681565b60145481565b600b60179054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611caf61303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3590614de3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600e5481565b611e0d61303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9390614de3565b60405180910390fd5b600b60199054906101000a900460ff1615611eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee3906151e1565b60405180910390fd5b82600d8190555081600e8190555080600f81905550600f54600e54600d54611f149190615230565b611f1e9190615230565b6010819055506064601554600f611f359190615264565b611f3f91906152ed565b6010541115611f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7a9061536a565b60405180910390fd5b505050565b611f9061303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461201f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201690614de3565b60405180910390fd5b6000600d819055506002600e819055506002600f81905550600f54600e54600d5461204a9190615230565b6120549190615230565b6010819055506002601181905550600260128190555060026013819055506013546012546011546120859190615230565b61208f9190615230565b6014819055506001600b60146101000a81548160ff0219169083151502179055506001600b60156101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60125481565b60606004805461210c90614d66565b80601f016020809104026020016040519081016040528092919081815260200182805461213890614d66565b80156121855780601f1061215a57610100808354040283529160200191612185565b820191906000526020600020905b81548152906001019060200180831161216857829003601f168201915b5050505050905090565b61219761303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221d90614de3565b60405180910390fd5b600b601b9054906101000a900460ff1615612276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226d906153fc565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fb9061548e565b60405180910390fd5b61230e8282613f48565b5050565b600b601d9054906101000a900460ff1681565b60006123e861233261303e565b846123e385604051806060016040528060258152602001615f82602591396001600061235c61303e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613ee49092919063ffffffff16565b613046565b6001905092915050565b600b60189054906101000a900460ff1681565b600b60199054906101000a900460ff1681565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061245261244b61303e565b8484613277565b6001905092915050565b61246461303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ea90614de3565b60405180910390fd5b600b601a9054906101000a900460ff1615612543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253a90614f07565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60115481565b6125ac61303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461263b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263290614de3565b60405180910390fd5b6126436120cd565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146126b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a790615520565b60405180910390fd5b6001600b601c6101000a81548160ff021916908315150217905550565b6126d561303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275b90614de3565b60405180910390fd5b61276c6120cd565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146127d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d0906155b2565b60405180910390fd5b6001600b601b6101000a81548160ff021916908315150217905550565b6127fe61303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461288d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288490614de3565b60405180910390fd5b6128956120cd565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f990615644565b60405180910390fd5b6001600b601a6101000a81548160ff021916908315150217905550565b601f6020528060005260406000206000915054906101000a900460ff1681565b600b60149054906101000a900460ff1681565b61295a61303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146129e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e090614de3565b60405180910390fd5b600b601d9054906101000a900460ff1615612a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3090614e75565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051612ad69190614914565b60405180910390a25050565b612aea61303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7090614de3565b60405180910390fd5b600b60199054906101000a900460ff1615612bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc0906151e1565b60405180910390fd5b826011819055508160128190555080601381905550601354601254601154612bf19190615230565b612bfb9190615230565b60148190555060646015546019612c129190615264565b612c1c91906152ed565b6014541115612c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c57906156b0565b60405180910390fd5b505050565b600b601a9054906101000a900460ff1681565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612d0d61303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9390614de3565b60405180910390fd5b600b60199054906101000a900460ff1615612dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de3906151e1565b60405180910390fd5b8060158190555050565b60085481565b600d5481565b600f5481565b612e1061303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9690614de3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0590615742565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b60155481565b60095481565b6000808284612fef9190615230565b905083811015613034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302b906157ae565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036130b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ac90615840565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311b906158d2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161320291906148de565b60405180910390a3505050565b6064601c54600a546132219190615264565b61322b91906152ed565b6007819055506127106005600a546132439190615264565b61324d91906152ed565b6008819055506064600954600a546132659190615264565b61326f91906152ed565b601b81905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036132e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132dd90615964565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334c906159f6565b60405180910390fd5b6000810361336e5761336983836000613fe9565b613edf565b600b60169054906101000a900460ff16156139625761338b6120cd565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156133f957506133c96120cd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156134325750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561346c575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156134855750600660149054906101000a900460ff16155b1561396157600b60149054906101000a900460ff1661357f57601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061353f5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61357e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161357590615a62565b60405180910390fd5b5b42600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503273ffffffffffffffffffffffffffffffffffffffff167fff12548a3ebb8257a10ea929ff01f69da0424c5bb36050f8d6df03452cbd4d004260405161360991906148de565b60405180910390a2601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156136b45750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561370a5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561376c57601b5461371b83611c5f565b826137269190615230565b1115613767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375e90615ace565b60405180910390fd5b613960565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561380f5750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156138655750601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156138b4576007548111156138af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138a690615b60565b60405180910390fd5b61395f565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661395e57601b5461391183611c5f565b8261391c9190615230565b111561395d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161395490615ace565b60405180910390fd5b5b5b5b5b5b600061396d30611c5f565b9050600060085482101590508080156139935750600660149054906101000a900460ff16155b80156139ab5750600b60179054906101000a900460ff165b8015613a015750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015613a575750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015613aad5750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613af1576001600660146101000a81548160ff021916908315150217905550613ad561427c565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613ba75750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613bb157600090505b60008115613ecf57601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613c1457506000601454115b15613cf857613c42601554613c346014548861436590919063ffffffff16565b6143df90919063ffffffff16565b905060145460115482613c559190615264565b613c5f91906152ed565b60166000828254613c709190615230565b9250508190555060145460125482613c889190615264565b613c9291906152ed565b60176000828254613ca39190615230565b92505081905550600b60159054906101000a900460ff1615613cf35760145460135482613cd09190615264565b613cda91906152ed565b60186000828254613ceb9190615230565b925050819055505b613e34565b601f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613d5357506000601054115b15613e3357613d81601554613d736010548861436590919063ffffffff16565b6143df90919063ffffffff16565b9050601054600d5482613d949190615264565b613d9e91906152ed565b60166000828254613daf9190615230565b92505081905550601054600e5482613dc79190615264565b613dd191906152ed565b60176000828254613de29190615230565b92505081905550600b60159054906101000a900460ff1615613e3257601054600f5482613e0f9190615264565b613e1991906152ed565b60186000828254613e2a9190615230565b925050819055505b5b5b6000811115613e7f57613e48873083613fe9565b60006016541115613e7e57613e5f30601654614429565b613e67611175565b600a81905550613e7561320f565b60006016819055505b5b60006018541115613ec057613eb7307f0000000000000000000000000000000000000000000000000000000000000000601854613fe9565b60006018819055505b8085613ecc9190615b80565b94505b613eda878787613fe9565b505050505b505050565b6000838311158290613f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f2391906149bf565b60405180910390fd5b5060008385613f3b9190615b80565b9050809150509392505050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603614058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161404f90615964565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036140c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016140be906159f6565b60405180910390fd5b6140d28383836145d6565b61413d81604051806060016040528060268152602001615f34602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613ee49092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506141d0816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fe090919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161426f91906148de565b60405180910390a3505050565b600061428730611c5f565b90506000808203614299575050614363565b60146008546142a89190615264565b8211156142c15760146008546142be9190615264565b91505b6142ca826145db565b6000601781905550600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161431890615be5565b60006040518083038185875af1925050503d8060008114614355576040519150601f19603f3d011682016040523d82523d6000602084013e61435a565b606091505b50508091505050505b565b600080830361437757600090506143d9565b600082846143859190615264565b905082848261439491906152ed565b146143d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016143cb90615c6c565b60405180910390fd5b809150505b92915050565b600061442183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614818565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603614498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161448f90615cfe565b60405180910390fd5b6144a4826000836145d6565b61450f81604051806060016040528060228152602001615f12602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613ee49092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506145668160025461487b90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516145ca91906148de565b60405180910390a35050565b505050565b6000600267ffffffffffffffff8111156145f8576145f7615d1e565b5b6040519080825280602002602001820160405280156146265781602001602082028036833780820191505090505b509050308160008151811061463e5761463d615d4d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156146e3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906147079190615d91565b8160018151811061471b5761471a615d4d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614780307f000000000000000000000000000000000000000000000000000000000000000084613046565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016147e2959493929190615eb7565b600060405180830381600087803b1580156147fc57600080fd5b505af1158015614810573d6000803e3d6000fd5b505050505050565b6000808311829061485f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161485691906149bf565b60405180910390fd5b506000838561486e91906152ed565b9050809150509392505050565b60006148bd83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613ee4565b905092915050565b6000819050919050565b6148d8816148c5565b82525050565b60006020820190506148f360008301846148cf565b92915050565b60008115159050919050565b61490e816148f9565b82525050565b60006020820190506149296000830184614905565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561496957808201518184015260208101905061494e565b60008484015250505050565b6000601f19601f8301169050919050565b60006149918261492f565b61499b818561493a565b93506149ab81856020860161494b565b6149b481614975565b840191505092915050565b600060208201905081810360008301526149d98184614986565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000614a11826149e6565b9050919050565b614a2181614a06565b8114614a2c57600080fd5b50565b600081359050614a3e81614a18565b92915050565b600060208284031215614a5a57614a596149e1565b5b6000614a6884828501614a2f565b91505092915050565b614a7a816148c5565b8114614a8557600080fd5b50565b600081359050614a9781614a71565b92915050565b60008060408385031215614ab457614ab36149e1565b5b6000614ac285828601614a2f565b9250506020614ad385828601614a88565b9150509250929050565b6000819050919050565b6000614b02614afd614af8846149e6565b614add565b6149e6565b9050919050565b6000614b1482614ae7565b9050919050565b6000614b2682614b09565b9050919050565b614b3681614b1b565b82525050565b6000602082019050614b516000830184614b2d565b92915050565b600060208284031215614b6d57614b6c6149e1565b5b6000614b7b84828501614a88565b91505092915050565b600080600060608486031215614b9d57614b9c6149e1565b5b6000614bab86828701614a2f565b9350506020614bbc86828701614a2f565b9250506040614bcd86828701614a88565b9150509250925092565b614be081614a06565b82525050565b6000602082019050614bfb6000830184614bd7565b92915050565b600060ff82169050919050565b614c1781614c01565b82525050565b6000602082019050614c326000830184614c0e565b92915050565b600080600060608486031215614c5157614c506149e1565b5b6000614c5f86828701614a88565b9350506020614c7086828701614a88565b9250506040614c8186828701614a88565b9150509250925092565b614c94816148f9565b8114614c9f57600080fd5b50565b600081359050614cb181614c8b565b92915050565b60008060408385031215614cce57614ccd6149e1565b5b6000614cdc85828601614a2f565b9250506020614ced85828601614ca2565b9150509250929050565b60008060408385031215614d0e57614d0d6149e1565b5b6000614d1c85828601614a2f565b9250506020614d2d85828601614a2f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614d7e57607f821691505b602082108103614d9157614d90614d37565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614dcd60208361493a565b9150614dd882614d97565b602082019050919050565b60006020820190508181036000830152614dfc81614dc0565b9050919050565b7f43616e6e6f7420757064617465206578636c75646564206163636f756e74732060008201527f61667465722072656e6f756e63656d656e740000000000000000000000000000602082015250565b6000614e5f60328361493a565b9150614e6a82614e03565b604082019050919050565b60006020820190508181036000830152614e8e81614e52565b9050919050565b7f43616e6e6f7420757064617465206d6178207472616e73616374696f6e20616d60008201527f6f756e742061667465722072656e6f756e63656d656e74000000000000000000602082015250565b6000614ef160378361493a565b9150614efc82614e95565b604082019050919050565b60006020820190508181036000830152614f2081614ee4565b9050919050565b7f4f6e6c7920746865206f776e65722063616e2072656e6f756e6365206665652060008201527f66756e6374696f6e730000000000000000000000000000000000000000000000602082015250565b6000614f8360298361493a565b9150614f8e82614f27565b604082019050919050565b60006020820190508181036000830152614fb281614f76565b9050919050565b7f43616e6e6f74207570646174652077616c6c65742061667465722072656e6f7560008201527f6e63656d656e7400000000000000000000000000000000000000000000000000602082015250565b600061501560278361493a565b915061502082614fb9565b604082019050919050565b6000602082019050818103600083015261504481615008565b9050919050565b7f4f6e6c7920746865206f776e65722063616e2072656e6f756e6365206578636c60008201527f75646520696e636c756465000000000000000000000000000000000000000000602082015250565b60006150a7602b8361493a565b91506150b28261504b565b604082019050919050565b600060208201905081810360008301526150d68161509a565b9050919050565b7f43616e6e6f742075706461746520666565732061667465722072656e6f756e6360008201527f656d656e6e740000000000000000000000000000000000000000000000000000602082015250565b600061513960268361493a565b9150615144826150dd565b604082019050919050565b600060208201905081810360008301526151688161512c565b9050919050565b7f43616e6e6f742075706461746520666565732061667465722072656e6f756e6360008201527f656d656e74000000000000000000000000000000000000000000000000000000602082015250565b60006151cb60258361493a565b91506151d68261516f565b604082019050919050565b600060208201905081810360008301526151fa816151be565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061523b826148c5565b9150615246836148c5565b925082820190508082111561525e5761525d615201565b5b92915050565b600061526f826148c5565b915061527a836148c5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156152b3576152b2615201565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006152f8826148c5565b9150615303836148c5565b925082615313576153126152be565b5b828204905092915050565b7f4d757374206b656570206665657320617420313525206f72206c657373000000600082015250565b6000615354601d8361493a565b915061535f8261531e565b602082019050919050565b6000602082019050818103600083015261538381615347565b9050919050565b7f43616e6e6f7420757064617465206d61726b6574206d616b657220706169727360008201527f2061667465722072656e6f756e63656d656e7400000000000000000000000000602082015250565b60006153e660338361493a565b91506153f18261538a565b604082019050919050565b60006020820190508181036000830152615415816153d9565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061547860398361493a565b91506154838261541c565b604082019050919050565b600060208201905081810360008301526154a78161546b565b9050919050565b7f4f6e6c7920746865206f776e65722063616e2072656e6f756e63652077616c6c60008201527f6574206368616e67657300000000000000000000000000000000000000000000602082015250565b600061550a602a8361493a565b9150615515826154ae565b604082019050919050565b60006020820190508181036000830152615539816154fd565b9050919050565b7f4f6e6c7920746865206f776e65722063616e2072656e6f756e6365206d61726b60008201527f6574206d616b65722070616972206368616e6765730000000000000000000000602082015250565b600061559c60358361493a565b91506155a782615540565b604082019050919050565b600060208201905081810360008301526155cb8161558f565b9050919050565b7f4f6e6c7920746865206f776e65722063616e2072656e6f756e6365206d61782060008201527f7570646174652066756e6374696f6e7300000000000000000000000000000000602082015250565b600061562e60308361493a565b9150615639826155d2565b604082019050919050565b6000602082019050818103600083015261565d81615621565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b600061569a601d8361493a565b91506156a582615664565b602082019050919050565b600060208201905081810360008301526156c98161568d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061572c60268361493a565b9150615737826156d0565b604082019050919050565b6000602082019050818103600083015261575b8161571f565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000615798601b8361493a565b91506157a382615762565b602082019050919050565b600060208201905081810360008301526157c78161578b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061582a60248361493a565b9150615835826157ce565b604082019050919050565b600060208201905081810360008301526158598161581d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006158bc60228361493a565b91506158c782615860565b604082019050919050565b600060208201905081810360008301526158eb816158af565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061594e60258361493a565b9150615959826158f2565b604082019050919050565b6000602082019050818103600083015261597d81615941565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006159e060238361493a565b91506159eb82615984565b604082019050919050565b60006020820190508181036000830152615a0f816159d3565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000615a4c60168361493a565b9150615a5782615a16565b602082019050919050565b60006020820190508181036000830152615a7b81615a3f565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615ab860138361493a565b9150615ac382615a82565b602082019050919050565b60006020820190508181036000830152615ae781615aab565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d617853656c6c5472616e73616374696f6e416d6f756e742e000000000000602082015250565b6000615b4a603a8361493a565b9150615b5582615aee565b604082019050919050565b60006020820190508181036000830152615b7981615b3d565b9050919050565b6000615b8b826148c5565b9150615b96836148c5565b9250828203905081811115615bae57615bad615201565b5b92915050565b600081905092915050565b50565b6000615bcf600083615bb4565b9150615bda82615bbf565b600082019050919050565b6000615bf082615bc2565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000615c5660218361493a565b9150615c6182615bfa565b604082019050919050565b60006020820190508181036000830152615c8581615c49565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615ce860218361493a565b9150615cf382615c8c565b604082019050919050565b60006020820190508181036000830152615d1781615cdb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615d8b81614a18565b92915050565b600060208284031215615da757615da66149e1565b5b6000615db584828501615d7c565b91505092915050565b6000819050919050565b6000615de3615dde615dd984615dbe565b614add565b6148c5565b9050919050565b615df381615dc8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615e2e81614a06565b82525050565b6000615e408383615e25565b60208301905092915050565b6000602082019050919050565b6000615e6482615df9565b615e6e8185615e04565b9350615e7983615e15565b8060005b83811015615eaa578151615e918882615e34565b9750615e9c83615e4c565b925050600181019050615e7d565b5085935050505092915050565b600060a082019050615ecc60008301886148cf565b615ed96020830187615dea565b8181036040830152615eeb8186615e59565b9050615efa6060830185614bd7565b615f0760808301846148cf565b969550505050505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ba9632989b6940ebd0836a7de2578721b4d04db12b7534812725e9b8f9fbe6c264736f6c63430008100033

Deployed Bytecode

0x6080604052600436106103f35760003560e01c8063715018a611610208578063b1099b8111610118578063dd62ed3e116100ab578063f11a24d31161007a578063f11a24d314610e92578063f2fde38b14610ebd578063f637434214610ee6578063f680f79914610f11578063f8b45b0514610f3c576103fa565b8063dd62ed3e14610dd6578063e18fc22414610e13578063e2f4560514610e3c578063e71dc3f514610e67576103fa565b8063c0246668116100e7578063c024666814610d2e578063c17b5b8c14610d57578063c94c2a5214610d80578063d85ba06314610dab576103fa565b8063b1099b8114610c98578063b116288414610caf578063b62496f514610cc6578063bbc0c74214610d03576103fa565b8063a333174f1161019b578063a5ece9411161016a578063a5ece94114610bc5578063a9059cbb14610bf0578063ac819f5414610c2d578063adb873bd14610c56578063b0a95bfa14610c81576103fa565b8063a333174f14610b07578063a457c2d714610b32578063a4c5ba9614610b6f578063a4d0341414610b9a576103fa565b80638da5cb5b116101d75780638da5cb5b14610a5d5780639213691314610a8857806395d89b4114610ab35780639a7a23d614610ade576103fa565b8063715018a6146109db5780637bce5a04146109f25780638095d56414610a1d5780638a8c523c14610a46576103fa565b806327c8f835116103035780634fbee19311610296578063637845c611610265578063637845c61461090657806365aaf3701461091d5780636a486a8e146109485780636ddd17131461097357806370a082311461099e576103fa565b80634fbee19314610860578063525fa81f1461089d5780635449f2ec146108c65780635dc08315146108dd576103fa565b80633b13cc16116102d25780633b13cc16146107b45780633fad50a9146107df57806349bd5a5e1461080a5780634a62bb6514610835576103fa565b806327c8f835146106f6578063313ce567146107215780633221c93f1461074c5780633950935114610777576103fa565b806316a2f82a116103865780631cd6e871116103555780631cd6e871146106235780631d7778561461063a5780631f3fed8f146106655780632369bf831461069057806323b872dd146106b9576103fa565b806316a2f82a1461057b57806318160ddd146105a45780631a8145bb146105cf5780631c499ab0146105fa576103fa565b806306fdde03116103c257806306fdde03146104ab5780630855f25d146104d6578063095ea7b3146105135780631694505e14610550576103fa565b806302259e9e146103ff578063023ad5811461042a578063047fc9aa14610455578063064f220514610480576103fa565b366103fa57005b600080fd5b34801561040b57600080fd5b50610414610f67565b60405161042191906148de565b60405180910390f35b34801561043657600080fd5b5061043f610f6d565b60405161044c91906148de565b60405180910390f35b34801561046157600080fd5b5061046a610f73565b60405161047791906148de565b60405180910390f35b34801561048c57600080fd5b50610495610f79565b6040516104a29190614914565b60405180910390f35b3480156104b757600080fd5b506104c0610f8c565b6040516104cd91906149bf565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f89190614a44565b61101e565b60405161050a9190614914565b60405180910390f35b34801561051f57600080fd5b5061053a60048036038101906105359190614a9d565b61103e565b6040516105479190614914565b60405180910390f35b34801561055c57600080fd5b5061056561105c565b6040516105729190614b3c565b60405180910390f35b34801561058757600080fd5b506105a2600480360381019061059d9190614a44565b611080565b005b3480156105b057600080fd5b506105b9611175565b6040516105c691906148de565b60405180910390f35b3480156105db57600080fd5b506105e461117f565b6040516105f191906148de565b60405180910390f35b34801561060657600080fd5b50610621600480360381019061061c9190614b57565b611185565b005b34801561062f57600080fd5b5061063861128c565b005b34801561064657600080fd5b5061064f6113b5565b60405161065c91906148de565b60405180910390f35b34801561067157600080fd5b5061067a6113bb565b60405161068791906148de565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b29190614a44565b6113c1565b005b3480156106c557600080fd5b506106e060048036038101906106db9190614b84565b6114ec565b6040516106ed9190614914565b60405180910390f35b34801561070257600080fd5b5061070b6115c5565b6040516107189190614be6565b60405180910390f35b34801561072d57600080fd5b506107366115cb565b6040516107439190614c1d565b60405180910390f35b34801561075857600080fd5b506107616115d4565b60405161076e9190614be6565b60405180910390f35b34801561078357600080fd5b5061079e60048036038101906107999190614a9d565b6115fa565b6040516107ab9190614914565b60405180910390f35b3480156107c057600080fd5b506107c96116ad565b6040516107d691906148de565b60405180910390f35b3480156107eb57600080fd5b506107f46116b3565b6040516108019190614914565b60405180910390f35b34801561081657600080fd5b5061081f6116c6565b60405161082c9190614be6565b60405180910390f35b34801561084157600080fd5b5061084a6116ea565b6040516108579190614914565b60405180910390f35b34801561086c57600080fd5b5061088760048036038101906108829190614a44565b6116fd565b6040516108949190614914565b60405180910390f35b3480156108a957600080fd5b506108c460048036038101906108bf9190614a44565b611753565b005b3480156108d257600080fd5b506108db61187e565b005b3480156108e957600080fd5b5061090460048036038101906108ff9190614b57565b6119a7565b005b34801561091257600080fd5b5061091b611aae565b005b34801561092957600080fd5b50610932611c33565b60405161093f9190614914565b60405180910390f35b34801561095457600080fd5b5061095d611c46565b60405161096a91906148de565b60405180910390f35b34801561097f57600080fd5b50610988611c4c565b6040516109959190614914565b60405180910390f35b3480156109aa57600080fd5b506109c560048036038101906109c09190614a44565b611c5f565b6040516109d291906148de565b60405180910390f35b3480156109e757600080fd5b506109f0611ca7565b005b3480156109fe57600080fd5b50610a07611dff565b604051610a1491906148de565b60405180910390f35b348015610a2957600080fd5b50610a446004803603810190610a3f9190614c38565b611e05565b005b348015610a5257600080fd5b50610a5b611f88565b005b348015610a6957600080fd5b50610a726120cd565b604051610a7f9190614be6565b60405180910390f35b348015610a9457600080fd5b50610a9d6120f7565b604051610aaa91906148de565b60405180910390f35b348015610abf57600080fd5b50610ac86120fd565b604051610ad591906149bf565b60405180910390f35b348015610aea57600080fd5b50610b056004803603810190610b009190614cb7565b61218f565b005b348015610b1357600080fd5b50610b1c612312565b604051610b299190614914565b60405180910390f35b348015610b3e57600080fd5b50610b596004803603810190610b549190614a9d565b612325565b604051610b669190614914565b60405180910390f35b348015610b7b57600080fd5b50610b846123f2565b604051610b919190614914565b60405180910390f35b348015610ba657600080fd5b50610baf612405565b604051610bbc9190614914565b60405180910390f35b348015610bd157600080fd5b50610bda612418565b604051610be79190614be6565b60405180910390f35b348015610bfc57600080fd5b50610c176004803603810190610c129190614a9d565b61243e565b604051610c249190614914565b60405180910390f35b348015610c3957600080fd5b50610c546004803603810190610c4f9190614cb7565b61245c565b005b348015610c6257600080fd5b50610c6b61259e565b604051610c7891906148de565b60405180910390f35b348015610c8d57600080fd5b50610c966125a4565b005b348015610ca457600080fd5b50610cad6126cd565b005b348015610cbb57600080fd5b50610cc46127f6565b005b348015610cd257600080fd5b50610ced6004803603810190610ce89190614a44565b61291f565b604051610cfa9190614914565b60405180910390f35b348015610d0f57600080fd5b50610d1861293f565b604051610d259190614914565b60405180910390f35b348015610d3a57600080fd5b50610d556004803603810190610d509190614cb7565b612952565b005b348015610d6357600080fd5b50610d7e6004803603810190610d799190614c38565b612ae2565b005b348015610d8c57600080fd5b50610d95612c65565b604051610da29190614914565b60405180910390f35b348015610db757600080fd5b50610dc0612c78565b604051610dcd91906148de565b60405180910390f35b348015610de257600080fd5b50610dfd6004803603810190610df89190614cf7565b612c7e565b604051610e0a91906148de565b60405180910390f35b348015610e1f57600080fd5b50610e3a6004803603810190610e359190614b57565b612d05565b005b348015610e4857600080fd5b50610e51612df6565b604051610e5e91906148de565b60405180910390f35b348015610e7357600080fd5b50610e7c612dfc565b604051610e8991906148de565b60405180910390f35b348015610e9e57600080fd5b50610ea7612e02565b604051610eb491906148de565b60405180910390f35b348015610ec957600080fd5b50610ee46004803603810190610edf9190614a44565b612e08565b005b348015610ef257600080fd5b50610efb612fce565b604051610f0891906148de565b60405180910390f35b348015610f1d57600080fd5b50610f26612fd4565b604051610f3391906148de565b60405180910390f35b348015610f4857600080fd5b50610f51612fda565b604051610f5e91906148de565b60405180910390f35b60075481565b601b5481565b600a5481565b600b60159054906101000a900460ff1681565b606060038054610f9b90614d66565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc790614d66565b80156110145780601f10610fe957610100808354040283529160200191611014565b820191906000526020600020905b815481529060010190602001808311610ff757829003601f168201915b5050505050905090565b601e6020528060005260406000206000915054906101000a900460ff1681565b600061105261104b61303e565b8484613046565b6001905092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b61108861303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e90614de3565b60405180910390fd5b600b601d9054906101000a900460ff1615611167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115e90614e75565b60405180910390fd5b611172816000612952565b50565b6000600254905090565b60185481565b61118d61303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461121c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121390614de3565b60405180910390fd5b600b601a9054906101000a900460ff161561126c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126390614f07565b60405180910390fd5b600181101561127a57600080fd5b8060098190555061128961320f565b50565b61129461303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131a90614de3565b60405180910390fd5b61132b6120cd565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f90614f99565b60405180910390fd5b6001600b60196101000a81548160ff021916908315150217905550565b60165481565b60175481565b6113c961303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144f90614de3565b60405180910390fd5b600b601c9054906101000a900460ff16156114a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149f9061502b565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006114f9848484613277565b6115ba8461150561303e565b6115b585604051806060016040528060288152602001615f5a60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061156b61303e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613ee49092919063ffffffff16565b613046565b600190509392505050565b61dead81565b60006012905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006116a361160761303e565b8461169e856001600061161861303e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fe090919063ffffffff16565b613046565b6001905092915050565b601c5481565b600b601b9054906101000a900460ff1681565b7f0000000000000000000000003246b5c071aabebb082189dbba1a2ae5c8d97bcb81565b600b60169054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61175b61303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e190614de3565b60405180910390fd5b600b601c9054906101000a900460ff161561183a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118319061502b565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61188661303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190c90614de3565b60405180910390fd5b61191d6120cd565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461198a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611981906150bd565b60405180910390fd5b6001600b601d6101000a81548160ff021916908315150217905550565b6119af61303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3590614de3565b60405180910390fd5b600b601a9054906101000a900460ff1615611a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8590614f07565b60405180910390fd5b6001811015611a9c57600080fd5b80601c81905550611aab61320f565b50565b611ab661303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3c90614de3565b60405180910390fd5b600b60199054906101000a900460ff1615611b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8c9061514f565b60405180910390fd5b600b60159054906101000a900460ff1615611bbd57600f54601981905550601354601a819055505b600b60159054906101000a900460ff16611bd957601954611bdc565b60005b600f81905550600b60159054906101000a900460ff16611bfe57601a54611c01565b60005b601381905550600b60159054906101000a900460ff1615600b60156101000a81548160ff021916908315150217905550565b600b601c9054906101000a900460ff1681565b60145481565b600b60179054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611caf61303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3590614de3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600e5481565b611e0d61303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9390614de3565b60405180910390fd5b600b60199054906101000a900460ff1615611eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee3906151e1565b60405180910390fd5b82600d8190555081600e8190555080600f81905550600f54600e54600d54611f149190615230565b611f1e9190615230565b6010819055506064601554600f611f359190615264565b611f3f91906152ed565b6010541115611f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7a9061536a565b60405180910390fd5b505050565b611f9061303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461201f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201690614de3565b60405180910390fd5b6000600d819055506002600e819055506002600f81905550600f54600e54600d5461204a9190615230565b6120549190615230565b6010819055506002601181905550600260128190555060026013819055506013546012546011546120859190615230565b61208f9190615230565b6014819055506001600b60146101000a81548160ff0219169083151502179055506001600b60156101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60125481565b60606004805461210c90614d66565b80601f016020809104026020016040519081016040528092919081815260200182805461213890614d66565b80156121855780601f1061215a57610100808354040283529160200191612185565b820191906000526020600020905b81548152906001019060200180831161216857829003601f168201915b5050505050905090565b61219761303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221d90614de3565b60405180910390fd5b600b601b9054906101000a900460ff1615612276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226d906153fc565b60405180910390fd5b7f0000000000000000000000003246b5c071aabebb082189dbba1a2ae5c8d97bcb73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fb9061548e565b60405180910390fd5b61230e8282613f48565b5050565b600b601d9054906101000a900460ff1681565b60006123e861233261303e565b846123e385604051806060016040528060258152602001615f82602591396001600061235c61303e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613ee49092919063ffffffff16565b613046565b6001905092915050565b600b60189054906101000a900460ff1681565b600b60199054906101000a900460ff1681565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061245261244b61303e565b8484613277565b6001905092915050565b61246461303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ea90614de3565b60405180910390fd5b600b601a9054906101000a900460ff1615612543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253a90614f07565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60115481565b6125ac61303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461263b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263290614de3565b60405180910390fd5b6126436120cd565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146126b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a790615520565b60405180910390fd5b6001600b601c6101000a81548160ff021916908315150217905550565b6126d561303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275b90614de3565b60405180910390fd5b61276c6120cd565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146127d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d0906155b2565b60405180910390fd5b6001600b601b6101000a81548160ff021916908315150217905550565b6127fe61303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461288d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288490614de3565b60405180910390fd5b6128956120cd565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f990615644565b60405180910390fd5b6001600b601a6101000a81548160ff021916908315150217905550565b601f6020528060005260406000206000915054906101000a900460ff1681565b600b60149054906101000a900460ff1681565b61295a61303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146129e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e090614de3565b60405180910390fd5b600b601d9054906101000a900460ff1615612a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3090614e75565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051612ad69190614914565b60405180910390a25050565b612aea61303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7090614de3565b60405180910390fd5b600b60199054906101000a900460ff1615612bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc0906151e1565b60405180910390fd5b826011819055508160128190555080601381905550601354601254601154612bf19190615230565b612bfb9190615230565b60148190555060646015546019612c129190615264565b612c1c91906152ed565b6014541115612c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c57906156b0565b60405180910390fd5b505050565b600b601a9054906101000a900460ff1681565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612d0d61303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9390614de3565b60405180910390fd5b600b60199054906101000a900460ff1615612dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de3906151e1565b60405180910390fd5b8060158190555050565b60085481565b600d5481565b600f5481565b612e1061303e565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9690614de3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0590615742565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b60155481565b60095481565b6000808284612fef9190615230565b905083811015613034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302b906157ae565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036130b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ac90615840565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311b906158d2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161320291906148de565b60405180910390a3505050565b6064601c54600a546132219190615264565b61322b91906152ed565b6007819055506127106005600a546132439190615264565b61324d91906152ed565b6008819055506064600954600a546132659190615264565b61326f91906152ed565b601b81905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036132e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132dd90615964565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334c906159f6565b60405180910390fd5b6000810361336e5761336983836000613fe9565b613edf565b600b60169054906101000a900460ff16156139625761338b6120cd565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156133f957506133c96120cd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156134325750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561346c575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156134855750600660149054906101000a900460ff16155b1561396157600b60149054906101000a900460ff1661357f57601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061353f5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61357e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161357590615a62565b60405180910390fd5b5b42600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503273ffffffffffffffffffffffffffffffffffffffff167fff12548a3ebb8257a10ea929ff01f69da0424c5bb36050f8d6df03452cbd4d004260405161360991906148de565b60405180910390a2601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156136b45750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561370a5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561376c57601b5461371b83611c5f565b826137269190615230565b1115613767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375e90615ace565b60405180910390fd5b613960565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561380f5750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156138655750601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156138b4576007548111156138af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138a690615b60565b60405180910390fd5b61395f565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661395e57601b5461391183611c5f565b8261391c9190615230565b111561395d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161395490615ace565b60405180910390fd5b5b5b5b5b5b600061396d30611c5f565b9050600060085482101590508080156139935750600660149054906101000a900460ff16155b80156139ab5750600b60179054906101000a900460ff165b8015613a015750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015613a575750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015613aad5750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613af1576001600660146101000a81548160ff021916908315150217905550613ad561427c565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613ba75750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613bb157600090505b60008115613ecf57601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613c1457506000601454115b15613cf857613c42601554613c346014548861436590919063ffffffff16565b6143df90919063ffffffff16565b905060145460115482613c559190615264565b613c5f91906152ed565b60166000828254613c709190615230565b9250508190555060145460125482613c889190615264565b613c9291906152ed565b60176000828254613ca39190615230565b92505081905550600b60159054906101000a900460ff1615613cf35760145460135482613cd09190615264565b613cda91906152ed565b60186000828254613ceb9190615230565b925050819055505b613e34565b601f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613d5357506000601054115b15613e3357613d81601554613d736010548861436590919063ffffffff16565b6143df90919063ffffffff16565b9050601054600d5482613d949190615264565b613d9e91906152ed565b60166000828254613daf9190615230565b92505081905550601054600e5482613dc79190615264565b613dd191906152ed565b60176000828254613de29190615230565b92505081905550600b60159054906101000a900460ff1615613e3257601054600f5482613e0f9190615264565b613e1991906152ed565b60186000828254613e2a9190615230565b925050819055505b5b5b6000811115613e7f57613e48873083613fe9565b60006016541115613e7e57613e5f30601654614429565b613e67611175565b600a81905550613e7561320f565b60006016819055505b5b60006018541115613ec057613eb7307f0000000000000000000000003246b5c071aabebb082189dbba1a2ae5c8d97bcb601854613fe9565b60006018819055505b8085613ecc9190615b80565b94505b613eda878787613fe9565b505050505b505050565b6000838311158290613f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f2391906149bf565b60405180910390fd5b5060008385613f3b9190615b80565b9050809150509392505050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603614058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161404f90615964565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036140c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016140be906159f6565b60405180910390fd5b6140d28383836145d6565b61413d81604051806060016040528060268152602001615f34602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613ee49092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506141d0816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fe090919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161426f91906148de565b60405180910390a3505050565b600061428730611c5f565b90506000808203614299575050614363565b60146008546142a89190615264565b8211156142c15760146008546142be9190615264565b91505b6142ca826145db565b6000601781905550600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161431890615be5565b60006040518083038185875af1925050503d8060008114614355576040519150601f19603f3d011682016040523d82523d6000602084013e61435a565b606091505b50508091505050505b565b600080830361437757600090506143d9565b600082846143859190615264565b905082848261439491906152ed565b146143d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016143cb90615c6c565b60405180910390fd5b809150505b92915050565b600061442183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614818565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603614498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161448f90615cfe565b60405180910390fd5b6144a4826000836145d6565b61450f81604051806060016040528060228152602001615f12602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613ee49092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506145668160025461487b90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516145ca91906148de565b60405180910390a35050565b505050565b6000600267ffffffffffffffff8111156145f8576145f7615d1e565b5b6040519080825280602002602001820160405280156146265781602001602082028036833780820191505090505b509050308160008151811061463e5761463d615d4d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156146e3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906147079190615d91565b8160018151811061471b5761471a615d4d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614780307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84613046565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016147e2959493929190615eb7565b600060405180830381600087803b1580156147fc57600080fd5b505af1158015614810573d6000803e3d6000fd5b505050505050565b6000808311829061485f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161485691906149bf565b60405180910390fd5b506000838561486e91906152ed565b9050809150509392505050565b60006148bd83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613ee4565b905092915050565b6000819050919050565b6148d8816148c5565b82525050565b60006020820190506148f360008301846148cf565b92915050565b60008115159050919050565b61490e816148f9565b82525050565b60006020820190506149296000830184614905565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561496957808201518184015260208101905061494e565b60008484015250505050565b6000601f19601f8301169050919050565b60006149918261492f565b61499b818561493a565b93506149ab81856020860161494b565b6149b481614975565b840191505092915050565b600060208201905081810360008301526149d98184614986565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000614a11826149e6565b9050919050565b614a2181614a06565b8114614a2c57600080fd5b50565b600081359050614a3e81614a18565b92915050565b600060208284031215614a5a57614a596149e1565b5b6000614a6884828501614a2f565b91505092915050565b614a7a816148c5565b8114614a8557600080fd5b50565b600081359050614a9781614a71565b92915050565b60008060408385031215614ab457614ab36149e1565b5b6000614ac285828601614a2f565b9250506020614ad385828601614a88565b9150509250929050565b6000819050919050565b6000614b02614afd614af8846149e6565b614add565b6149e6565b9050919050565b6000614b1482614ae7565b9050919050565b6000614b2682614b09565b9050919050565b614b3681614b1b565b82525050565b6000602082019050614b516000830184614b2d565b92915050565b600060208284031215614b6d57614b6c6149e1565b5b6000614b7b84828501614a88565b91505092915050565b600080600060608486031215614b9d57614b9c6149e1565b5b6000614bab86828701614a2f565b9350506020614bbc86828701614a2f565b9250506040614bcd86828701614a88565b9150509250925092565b614be081614a06565b82525050565b6000602082019050614bfb6000830184614bd7565b92915050565b600060ff82169050919050565b614c1781614c01565b82525050565b6000602082019050614c326000830184614c0e565b92915050565b600080600060608486031215614c5157614c506149e1565b5b6000614c5f86828701614a88565b9350506020614c7086828701614a88565b9250506040614c8186828701614a88565b9150509250925092565b614c94816148f9565b8114614c9f57600080fd5b50565b600081359050614cb181614c8b565b92915050565b60008060408385031215614cce57614ccd6149e1565b5b6000614cdc85828601614a2f565b9250506020614ced85828601614ca2565b9150509250929050565b60008060408385031215614d0e57614d0d6149e1565b5b6000614d1c85828601614a2f565b9250506020614d2d85828601614a2f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614d7e57607f821691505b602082108103614d9157614d90614d37565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614dcd60208361493a565b9150614dd882614d97565b602082019050919050565b60006020820190508181036000830152614dfc81614dc0565b9050919050565b7f43616e6e6f7420757064617465206578636c75646564206163636f756e74732060008201527f61667465722072656e6f756e63656d656e740000000000000000000000000000602082015250565b6000614e5f60328361493a565b9150614e6a82614e03565b604082019050919050565b60006020820190508181036000830152614e8e81614e52565b9050919050565b7f43616e6e6f7420757064617465206d6178207472616e73616374696f6e20616d60008201527f6f756e742061667465722072656e6f756e63656d656e74000000000000000000602082015250565b6000614ef160378361493a565b9150614efc82614e95565b604082019050919050565b60006020820190508181036000830152614f2081614ee4565b9050919050565b7f4f6e6c7920746865206f776e65722063616e2072656e6f756e6365206665652060008201527f66756e6374696f6e730000000000000000000000000000000000000000000000602082015250565b6000614f8360298361493a565b9150614f8e82614f27565b604082019050919050565b60006020820190508181036000830152614fb281614f76565b9050919050565b7f43616e6e6f74207570646174652077616c6c65742061667465722072656e6f7560008201527f6e63656d656e7400000000000000000000000000000000000000000000000000602082015250565b600061501560278361493a565b915061502082614fb9565b604082019050919050565b6000602082019050818103600083015261504481615008565b9050919050565b7f4f6e6c7920746865206f776e65722063616e2072656e6f756e6365206578636c60008201527f75646520696e636c756465000000000000000000000000000000000000000000602082015250565b60006150a7602b8361493a565b91506150b28261504b565b604082019050919050565b600060208201905081810360008301526150d68161509a565b9050919050565b7f43616e6e6f742075706461746520666565732061667465722072656e6f756e6360008201527f656d656e6e740000000000000000000000000000000000000000000000000000602082015250565b600061513960268361493a565b9150615144826150dd565b604082019050919050565b600060208201905081810360008301526151688161512c565b9050919050565b7f43616e6e6f742075706461746520666565732061667465722072656e6f756e6360008201527f656d656e74000000000000000000000000000000000000000000000000000000602082015250565b60006151cb60258361493a565b91506151d68261516f565b604082019050919050565b600060208201905081810360008301526151fa816151be565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061523b826148c5565b9150615246836148c5565b925082820190508082111561525e5761525d615201565b5b92915050565b600061526f826148c5565b915061527a836148c5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156152b3576152b2615201565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006152f8826148c5565b9150615303836148c5565b925082615313576153126152be565b5b828204905092915050565b7f4d757374206b656570206665657320617420313525206f72206c657373000000600082015250565b6000615354601d8361493a565b915061535f8261531e565b602082019050919050565b6000602082019050818103600083015261538381615347565b9050919050565b7f43616e6e6f7420757064617465206d61726b6574206d616b657220706169727360008201527f2061667465722072656e6f756e63656d656e7400000000000000000000000000602082015250565b60006153e660338361493a565b91506153f18261538a565b604082019050919050565b60006020820190508181036000830152615415816153d9565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061547860398361493a565b91506154838261541c565b604082019050919050565b600060208201905081810360008301526154a78161546b565b9050919050565b7f4f6e6c7920746865206f776e65722063616e2072656e6f756e63652077616c6c60008201527f6574206368616e67657300000000000000000000000000000000000000000000602082015250565b600061550a602a8361493a565b9150615515826154ae565b604082019050919050565b60006020820190508181036000830152615539816154fd565b9050919050565b7f4f6e6c7920746865206f776e65722063616e2072656e6f756e6365206d61726b60008201527f6574206d616b65722070616972206368616e6765730000000000000000000000602082015250565b600061559c60358361493a565b91506155a782615540565b604082019050919050565b600060208201905081810360008301526155cb8161558f565b9050919050565b7f4f6e6c7920746865206f776e65722063616e2072656e6f756e6365206d61782060008201527f7570646174652066756e6374696f6e7300000000000000000000000000000000602082015250565b600061562e60308361493a565b9150615639826155d2565b604082019050919050565b6000602082019050818103600083015261565d81615621565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b600061569a601d8361493a565b91506156a582615664565b602082019050919050565b600060208201905081810360008301526156c98161568d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061572c60268361493a565b9150615737826156d0565b604082019050919050565b6000602082019050818103600083015261575b8161571f565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000615798601b8361493a565b91506157a382615762565b602082019050919050565b600060208201905081810360008301526157c78161578b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061582a60248361493a565b9150615835826157ce565b604082019050919050565b600060208201905081810360008301526158598161581d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006158bc60228361493a565b91506158c782615860565b604082019050919050565b600060208201905081810360008301526158eb816158af565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061594e60258361493a565b9150615959826158f2565b604082019050919050565b6000602082019050818103600083015261597d81615941565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006159e060238361493a565b91506159eb82615984565b604082019050919050565b60006020820190508181036000830152615a0f816159d3565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000615a4c60168361493a565b9150615a5782615a16565b602082019050919050565b60006020820190508181036000830152615a7b81615a3f565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615ab860138361493a565b9150615ac382615a82565b602082019050919050565b60006020820190508181036000830152615ae781615aab565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d617853656c6c5472616e73616374696f6e416d6f756e742e000000000000602082015250565b6000615b4a603a8361493a565b9150615b5582615aee565b604082019050919050565b60006020820190508181036000830152615b7981615b3d565b9050919050565b6000615b8b826148c5565b9150615b96836148c5565b9250828203905081811115615bae57615bad615201565b5b92915050565b600081905092915050565b50565b6000615bcf600083615bb4565b9150615bda82615bbf565b600082019050919050565b6000615bf082615bc2565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000615c5660218361493a565b9150615c6182615bfa565b604082019050919050565b60006020820190508181036000830152615c8581615c49565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615ce860218361493a565b9150615cf382615c8c565b604082019050919050565b60006020820190508181036000830152615d1781615cdb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615d8b81614a18565b92915050565b600060208284031215615da757615da66149e1565b5b6000615db584828501615d7c565b91505092915050565b6000819050919050565b6000615de3615dde615dd984615dbe565b614add565b6148c5565b9050919050565b615df381615dc8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615e2e81614a06565b82525050565b6000615e408383615e25565b60208301905092915050565b6000602082019050919050565b6000615e6482615df9565b615e6e8185615e04565b9350615e7983615e15565b8060005b83811015615eaa578151615e918882615e34565b9750615e9c83615e4c565b925050600181019050615e7d565b5085935050505092915050565b600060a082019050615ecc60008301886148cf565b615ed96020830187615dea565b8181036040830152615eeb8186615e59565b9050615efa6060830185614bd7565b615f0760808301846148cf565b969550505050505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ba9632989b6940ebd0836a7de2578721b4d04db12b7534812725e9b8f9fbe6c264736f6c63430008100033

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.