ETH Price: $2,631.64 (-1.78%)

Token

LOL Token (LOL)
 

Overview

Max Total Supply

100,000,000 LOL

Holders

50

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
LOL

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-14
*/

/**
 *   TG: https://t.me/lol_token_portal
 *   Twitter: https://twitter.com/Loltoken_1
 *   Website: https://loltoken.wsdapps.com/
 *
*/          

//SPDX-License-Identifier: MIT

pragma solidity^0.8.9;

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

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

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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


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

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 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 createInitialSupply(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

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

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

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

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

        return c;
    }

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

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

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

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

        return c;
    }

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

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

        return c;
    }

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

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

contract Ownable is Context {
    address private _owner;

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

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

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

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

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



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

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

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

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

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

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

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

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


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

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


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

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

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

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

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


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

    IUniswapV2Router02 public uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool private swapping;

    address public marketingWallet;
    address public ambassadorWallet;
    address public developmentWallet;
        
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
    
    uint256 public liquidityActiveBlock = 0; // 0 means liquidity is not active yet
    uint256 public tradingActiveBlock = 0; // 0 means trading is not active
    
    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;
    
     // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;
    
    
    uint256 public totalSellFees;
    uint256 public marketingSellFee;
    uint256 public liquiditySellFee;
    uint256 public AmbassadorSellFee;
    uint256 public developmentSellFee;
    
    uint256 public totalBuyFees;
    uint256 public marketingBuyFee;
    uint256 public liquidityBuyFee;
    uint256 public AmbassadorBuyFee;
    uint256 public developmentBuyFee;
    
    uint256 public tokensForMarketing;
    uint256 public tokensForAmbassador;
    uint256 public tokensForDevelopment;
    uint256 public tokensForLiquidity;


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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded);
    event ExcludedMaxTransactionAmount(address indexed account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event marketingWalletUpdated(address indexed newWallet, address indexed oldWallet);

    event taxMultiplierActive(uint256 duration);
    
    
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    constructor() ERC20("LOL Token","LOL")  {
        
        address newOwner = address(0x0092f3e7Fa9B89Bd60371D1326aFBA4D8a81783d);
    
        uint256 totalSupply = 100000000 * 10**18;
        
        maxTransactionAmount = totalSupply;
        swapTokensAtAmount = totalSupply / 500; //0.2% of tokens at default
        maxWallet = totalSupply;

        marketingSellFee = 40; 
        liquiditySellFee = 10;
        totalSellFees = marketingSellFee + liquiditySellFee;
        
        marketingBuyFee = 20;
        liquidityBuyFee = 10;
        totalBuyFees = marketingBuyFee + liquidityBuyFee;
            	
    	marketingWallet = address(0x5A430B8DA68092D8FdC67FBeb84864bE7b51cD63); // set as mw

    	IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    	
         // Create a uniswap pair for this new token
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        _setAutomatedMarketMakerPair(_uniswapV2Pair, true);

        
        // exclude from paying fees or having max transaction amount
        excludeFromFees(newOwner, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromMaxTransaction(newOwner, true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        excludeFromMaxTransaction(address(0xdead), true);
        
        /*
            createInitialSupply is a function that is only called here,
            and CANNOT be called ever again
        */
        
        createInitialSupply(newOwner, totalSupply);
        transferOwnership(newOwner);
    }

    receive() external payable {

  	}

 
     // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool){
        transferDelayEnabled = false;
        return true;
    }

     
    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        tradingActiveBlock = block.number;
    }
    
    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner(){
        swapEnabled = enabled;
    }

    function updateSwapTokensAtAmount(uint256 amount) external onlyOwner{
        require(amount < (totalSupply() / 200)/1e18, "Cannot set swapTokensAtAmount higher than 0.5%");
        swapTokensAtAmount = amount * (10**18);
    }

     function updateMaxAmount(uint256 newNum) external onlyOwner {
        require(newNum > (totalSupply() * 1 / 100)/1e18, "Cannot set maxTransactionAmount lower than 1%");
        maxTransactionAmount = newNum * (10**18);
    }
    
    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(newNum > (totalSupply() * 2 / 100)/1e18, "Cannot set maxWallet lower than 2%");
        maxWallet = newNum * (10**18);
    }

    function updateBuyFees(uint256 _marketingFee, uint256 _liquidityFee) external onlyOwner {
        marketingBuyFee = _marketingFee;
        liquidityBuyFee = _liquidityFee;
        totalBuyFees = marketingBuyFee + liquidityBuyFee;
        require(totalBuyFees <= 100, "Fees cannot be higher than 10%");
    }
    
    function updateSellFees(uint256 _marketingFee, uint256 _liquidityFee) external onlyOwner {
        marketingSellFee = _marketingFee;
        liquiditySellFee = _liquidityFee;
        totalSellFees = marketingSellFee + liquiditySellFee;
        require(totalSellFees <= 100, "Fees cannot be higher than 10%");
    }

    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
        _isExcludedMaxTransactionAmount[address(this)] = true;

        emit ExcludedMaxTransactionAmount(updAds, _isExcludedMaxTransactionAmount[updAds]);
    }

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

        emit ExcludeFromFees(account, excluded);
    }

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

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
    
    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool){
        limitsInEffect = false;
        transferDelayEnabled = false;
        return true;
    }
    
    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(!tradingActive){
            require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active yet.");
        }
        
        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){

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

		uint256 contractTokenBalance = balanceOf(address(this));
        
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }
        
        uint256 fees = 0;
        
        // no taxes on transfers (non buys/sells)
        if(takeFee){
            // on sell
            if (automatedMarketMakerPairs[to] && totalSellFees > 0){
                fees = amount.mul(totalSellFees).div(1000);
                tokensForLiquidity += fees * liquiditySellFee / totalSellFees;
                tokensForMarketing += fees * marketingSellFee / totalSellFees;
            }
            // on buy
            else if(automatedMarketMakerPairs[from] && totalBuyFees > 0) {
        	    fees = amount.mul(totalBuyFees).div(1000);
                tokensForLiquidity += fees * liquidityBuyFee / totalBuyFees;
                tokensForMarketing += fees * marketingBuyFee / totalBuyFees;
            }

            if(fees > 0){    
                super._transfer(from, address(this), fees);
            }
        	
        	amount -= fees;
        }

        super._transfer(from, to, amount);


    }

    
    function swapTokensForEth(uint256 tokenAmount) private {

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

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
        
    }
    
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(0x0092f3e7Fa9B89Bd60371D1326aFBA4D8a81783d),
            block.timestamp
        );

    }
    
    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        bool success;
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing;
        
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}
        
        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
        
        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH); 
        
        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
        
        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        
        uint256 ethForLiquidity = ethBalance - ethForMarketing;
        
        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity);
        }
                        
        // send eth for wallets

        (success,) = address(marketingWallet).call{value: ethForMarketing}("");
        
        
    }
    
    // useful for taxs or to reclaim any ETH on the contract in a way that helps holders.
    function marketingTokens(uint256 ethAmountInWei) external onlyOwner {
        // generate the uniswap pair path of weth -> eth
        address[] memory path = new address[](2);
        path[0] = uniswapV2Router.WETH();
        path[1] = address(this);

        // make the swap
        uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: ethAmountInWei}(
            0, // accept any amount of Ethereum
            path,
            address(0xdead),
            block.timestamp
        );
    }
    
    function withdrawStuckEth() external onlyOwner {
        (bool success,) = address(msg.sender).call{value: address(this).balance}("");
        require(success, "failed to withdraw");
    }

}


/*
Contract is made by WOLFSTREETdApps (https://wsdapps.com)
Please always DYOR before investing about the team and plans!
**/

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":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedMaxTransactionAmount","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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"duration","type":"uint256"}],"name":"taxMultiplierActive","type":"event"},{"inputs":[],"name":"AmbassadorBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AmbassadorSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ambassadorWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"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":"developmentBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"developmentSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityActiveBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquiditySellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"ethAmountInWei","type":"uint256"}],"name":"marketingTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForAmbassador","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDevelopment","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":"totalBuyFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActiveBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526000600d556000600e556001600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055506000600f60026101000a81548160ff0219169083151502179055506001601160006101000a81548160ff0219169083151502179055503480156200008757600080fd5b506040518060400160405280600981526020017f4c4f4c20546f6b656e00000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4c4f4c0000000000000000000000000000000000000000000000000000000000815250816003908162000105919062000fdd565b50806004908162000117919062000fdd565b50505060006200012c6200057c60201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35060007292f3e7fa9b89bd60371d1326afba4d8a81783d905060006a52b7d2dcc80cd2e4000000905080600a819055506101f4816200020a919062001122565b600b8190555080600c819055506028601381905550600a6014819055506014546013546200023991906200115a565b6012819055506014601881905550600a6019819055506019546018546200026191906200115a565b601781905550735a430b8da68092d8fdc67fbeb84864be7b51cd63600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000323573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003499190620011ff565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003b1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003d79190620011ff565b6040518363ffffffff1660e01b8152600401620003f692919062001242565b6020604051808303816000875af115801562000416573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200043c9190620011ff565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1681525050620004c68160016200058460201b60201c565b620004d98460016200063b60201b60201c565b620004ec3060016200063b60201b60201c565b6200050161dead60016200063b60201b60201c565b620005148460016200078860201b60201c565b620005273060016200078860201b60201c565b6200053a8260016200078860201b60201c565b6200054f61dead60016200078860201b60201c565b6200056184846200097960201b60201c565b620005728462000b2760201b60201c565b50505050620014d6565b600033905090565b6001905080602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005f182826200078860201b60201c565b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6200064b6200057c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620006dd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006d490620012d0565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200077c91906200130f565b60405180910390a25050565b620007986200057c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146200082a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200082190620012d0565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001602160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f575f9d01836c9206322151b9e9ec3f2b77b87e71176933b9b44d2d732f768d95602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166040516200096d91906200130f565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009eb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009e2906200137c565b60405180910390fd5b620009ff6000838362000cfb60201b60201c565b62000a1b8160025462000d0060201b620028b61790919060201c565b60028190555062000a79816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000d0060201b620028b61790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b1b9190620013af565b60405180910390a35050565b62000b376200057c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000bc9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000bc090620012d0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000c3b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c329062001442565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b505050565b600080828462000d1191906200115a565b90508381101562000d59576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d5090620014b4565b60405180910390fd5b8091505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000de557607f821691505b60208210810362000dfb5762000dfa62000d9d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000e657fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000e26565b62000e71868362000e26565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000ebe62000eb862000eb28462000e89565b62000e93565b62000e89565b9050919050565b6000819050919050565b62000eda8362000e9d565b62000ef262000ee98262000ec5565b84845462000e33565b825550505050565b600090565b62000f0962000efa565b62000f1681848462000ecf565b505050565b5b8181101562000f3e5762000f3260008262000eff565b60018101905062000f1c565b5050565b601f82111562000f8d5762000f578162000e01565b62000f628462000e16565b8101602085101562000f72578190505b62000f8a62000f818562000e16565b83018262000f1b565b50505b505050565b600082821c905092915050565b600062000fb26000198460080262000f92565b1980831691505092915050565b600062000fcd838362000f9f565b9150826002028217905092915050565b62000fe88262000d63565b67ffffffffffffffff81111562001004576200100362000d6e565b5b62001010825462000dcc565b6200101d82828562000f42565b600060209050601f83116001811462001055576000841562001040578287015190505b6200104c858262000fbf565b865550620010bc565b601f198416620010658662000e01565b60005b828110156200108f5784890151825560018201915060208501945060208101905062001068565b86831015620010af5784890151620010ab601f89168262000f9f565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200112f8262000e89565b91506200113c8362000e89565b9250826200114f576200114e620010c4565b5b828204905092915050565b6000620011678262000e89565b9150620011748362000e89565b92508282019050808211156200118f576200118e620010f3565b5b92915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620011c7826200119a565b9050919050565b620011d981620011ba565b8114620011e557600080fd5b50565b600081519050620011f981620011ce565b92915050565b60006020828403121562001218576200121762001195565b5b60006200122884828501620011e8565b91505092915050565b6200123c81620011ba565b82525050565b600060408201905062001259600083018562001231565b62001268602083018462001231565b9392505050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620012b86020836200126f565b9150620012c58262001280565b602082019050919050565b60006020820190508181036000830152620012eb81620012a9565b9050919050565b60008115159050919050565b6200130981620012f2565b82525050565b6000602082019050620013266000830184620012fe565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001364601f836200126f565b915062001371826200132c565b602082019050919050565b60006020820190508181036000830152620013978162001355565b9050919050565b620013a98162000e89565b82525050565b6000602082019050620013c660008301846200139e565b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006200142a6026836200126f565b91506200143782620013cc565b604082019050919050565b600060208201905081810360008301526200145d816200141b565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b60006200149c601b836200126f565b9150620014a98262001464565b602082019050919050565b60006020820190508181036000830152620014cf816200148d565b9050919050565b6080516155e0620015006000396000818161157101528181611fd70152612e9c01526155e06000f3fe6080604052600436106103905760003560e01c80637fa787ba116101dc578063c18bc19511610102578063e08c38b2116100a0578063ee40166e1161006f578063ee40166e14610d3d578063ef8700e514610d68578063f2fde38b14610d93578063f8b45b0514610dbc57610397565b8063e08c38b214610c91578063e2f4560514610cbc578063e7f444b314610ce7578063e884f26014610d1257610397565b8063ccb61358116100dc578063ccb6135814610bd5578063d0a3981414610c00578063d257b34f14610c2b578063dd62ed3e14610c5457610397565b8063c18bc19514610b56578063c876d0b914610b7f578063c8c8ebe414610baa57610397565b8063a457c2d71161017a578063b9e9370011610149578063b9e9370014610aac578063bbc0c74214610ad7578063c024666814610b02578063c04a541414610b2b57610397565b8063a457c2d7146109ca578063a9059cbb14610a07578063b071787b14610a44578063b62496f514610a6f57610397565b80638da5cb5b116101b65780638da5cb5b14610922578063924de9b71461094d57806395d89b41146109765780639a7a23d6146109a157610397565b80637fa787ba146108c95780638a8c523c146108e05780638d5985d3146108f757610397565b80633f3539ef116102c1578063703baa711161025f5780637571336a1161022e5780637571336a1461081f57806375f0a8741461084857806378b3ac70146108735780637be408611461089e57610397565b8063703baa711461077557806370a08231146107a0578063715018a6146107dd578063751039fc146107f457610397565b80634fbee1931161029b5780634fbee193146106b957806366ca9b83146106f6578063680789521461071f5780636ddd17131461074a57610397565b80633f3539ef1461063a57806349bd5a5e146106635780634a62bb651461068e57610397565b80631694505e1161032e5780631f3fed8f116103085780631f3fed8f1461056a57806323b872dd14610595578063313ce567146105d257806339509351146105fd57610397565b80631694505e146104e957806318160ddd146105145780631a8145bb1461053f57610397565b8063099d0d301161036a578063099d0d301461042d5780630f4432e314610458578063106b5da11461048357806310d5de53146104ac57610397565b806302dbd8f81461039c57806306fdde03146103c5578063095ea7b3146103f057610397565b3661039757005b600080fd5b3480156103a857600080fd5b506103c360048036038101906103be919061418a565b610de7565b005b3480156103d157600080fd5b506103da610eec565b6040516103e7919061425a565b60405180910390f35b3480156103fc57600080fd5b50610417600480360381019061041291906142da565b610f7e565b6040516104249190614335565b60405180910390f35b34801561043957600080fd5b50610442610f9c565b60405161044f919061435f565b60405180910390f35b34801561046457600080fd5b5061046d610fa2565b60405161047a919061435f565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a5919061437a565b610fa8565b005b3480156104b857600080fd5b506104d360048036038101906104ce91906143a7565b6110d0565b6040516104e09190614335565b60405180910390f35b3480156104f557600080fd5b506104fe6110f0565b60405161050b9190614433565b60405180910390f35b34801561052057600080fd5b50610529611116565b604051610536919061435f565b60405180910390f35b34801561054b57600080fd5b50610554611120565b604051610561919061435f565b60405180910390f35b34801561057657600080fd5b5061057f611126565b60405161058c919061435f565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b7919061444e565b61112c565b6040516105c99190614335565b60405180910390f35b3480156105de57600080fd5b506105e7611205565b6040516105f491906144bd565b60405180910390f35b34801561060957600080fd5b50610624600480360381019061061f91906142da565b61120e565b6040516106319190614335565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c919061437a565b6112c1565b005b34801561066f57600080fd5b5061067861156f565b60405161068591906144e7565b60405180910390f35b34801561069a57600080fd5b506106a3611593565b6040516106b09190614335565b60405180910390f35b3480156106c557600080fd5b506106e060048036038101906106db91906143a7565b6115a6565b6040516106ed9190614335565b60405180910390f35b34801561070257600080fd5b5061071d6004803603810190610718919061418a565b6115fc565b005b34801561072b57600080fd5b50610734611701565b604051610741919061435f565b60405180910390f35b34801561075657600080fd5b5061075f611707565b60405161076c9190614335565b60405180910390f35b34801561078157600080fd5b5061078a61171a565b604051610797919061435f565b60405180910390f35b3480156107ac57600080fd5b506107c760048036038101906107c291906143a7565b611720565b6040516107d4919061435f565b60405180910390f35b3480156107e957600080fd5b506107f2611768565b005b34801561080057600080fd5b506108096118c0565b6040516108169190614335565b60405180910390f35b34801561082b57600080fd5b506108466004803603810190610841919061452e565b611996565b005b34801561085457600080fd5b5061085d611b7a565b60405161086a91906144e7565b60405180910390f35b34801561087f57600080fd5b50610888611ba0565b604051610895919061435f565b60405180910390f35b3480156108aa57600080fd5b506108b3611ba6565b6040516108c0919061435f565b60405180910390f35b3480156108d557600080fd5b506108de611bac565b005b3480156108ec57600080fd5b506108f5611cf2565b005b34801561090357600080fd5b5061090c611dc8565b604051610919919061435f565b60405180910390f35b34801561092e57600080fd5b50610937611dce565b60405161094491906144e7565b60405180910390f35b34801561095957600080fd5b50610974600480360381019061096f919061456e565b611df8565b005b34801561098257600080fd5b5061098b611eac565b604051610998919061425a565b60405180910390f35b3480156109ad57600080fd5b506109c860048036038101906109c3919061452e565b611f3e565b005b3480156109d657600080fd5b506109f160048036038101906109ec91906142da565b612071565b6040516109fe9190614335565b60405180910390f35b348015610a1357600080fd5b50610a2e6004803603810190610a2991906142da565b61213e565b604051610a3b9190614335565b60405180910390f35b348015610a5057600080fd5b50610a5961215c565b604051610a6691906144e7565b60405180910390f35b348015610a7b57600080fd5b50610a966004803603810190610a9191906143a7565b612182565b604051610aa39190614335565b60405180910390f35b348015610ab857600080fd5b50610ac16121a2565b604051610ace919061435f565b60405180910390f35b348015610ae357600080fd5b50610aec6121a8565b604051610af99190614335565b60405180910390f35b348015610b0e57600080fd5b50610b296004803603810190610b24919061452e565b6121bb565b005b348015610b3757600080fd5b50610b406122fb565b604051610b4d91906144e7565b60405180910390f35b348015610b6257600080fd5b50610b7d6004803603810190610b78919061437a565b612321565b005b348015610b8b57600080fd5b50610b94612449565b604051610ba19190614335565b60405180910390f35b348015610bb657600080fd5b50610bbf61245c565b604051610bcc919061435f565b60405180910390f35b348015610be157600080fd5b50610bea612462565b604051610bf7919061435f565b60405180910390f35b348015610c0c57600080fd5b50610c15612468565b604051610c22919061435f565b60405180910390f35b348015610c3757600080fd5b50610c526004803603810190610c4d919061437a565b61246e565b005b348015610c6057600080fd5b50610c7b6004803603810190610c76919061459b565b61258a565b604051610c88919061435f565b60405180910390f35b348015610c9d57600080fd5b50610ca6612611565b604051610cb3919061435f565b60405180910390f35b348015610cc857600080fd5b50610cd1612617565b604051610cde919061435f565b60405180910390f35b348015610cf357600080fd5b50610cfc61261d565b604051610d09919061435f565b60405180910390f35b348015610d1e57600080fd5b50610d27612623565b604051610d349190614335565b60405180910390f35b348015610d4957600080fd5b50610d526126de565b604051610d5f919061435f565b60405180910390f35b348015610d7457600080fd5b50610d7d6126e4565b604051610d8a919061435f565b60405180910390f35b348015610d9f57600080fd5b50610dba6004803603810190610db591906143a7565b6126ea565b005b348015610dc857600080fd5b50610dd16128b0565b604051610dde919061435f565b60405180910390f35b610def612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7590614627565b60405180910390fd5b8160138190555080601481905550601454601354610e9c9190614676565b60128190555060646012541115610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf906146f6565b60405180910390fd5b5050565b606060038054610efb90614745565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2790614745565b8015610f745780601f10610f4957610100808354040283529160200191610f74565b820191906000526020600020905b815481529060010190602001808311610f5757829003601f168201915b5050505050905090565b6000610f92610f8b612914565b848461291c565b6001905092915050565b60145481565b600d5481565b610fb0612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461103f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103690614627565b60405180910390fd5b670de0b6b3a764000060646001611054611116565b61105e9190614776565b61106891906147e7565b61107291906147e7565b81116110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa9061488a565b60405180910390fd5b670de0b6b3a7640000816110c79190614776565b600a8190555050565b60216020528060005260406000206000915054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b601f5481565b601c5481565b6000611139848484612ae5565b6111fa84611145612914565b6111f58560405180606001604052806028815260200161555e60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006111ab612914565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461371a9092919063ffffffff16565b61291c565b600190509392505050565b60006012905090565b60006112b761121b612914565b846112b2856001600061122c612914565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546128b690919063ffffffff16565b61291c565b6001905092915050565b6112c9612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134f90614627565b60405180910390fd5b6000600267ffffffffffffffff811115611375576113746148aa565b5b6040519080825280602002602001820160405280156113a35781602001602082028036833780820191505090505b509050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611413573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061143791906148ee565b8160008151811061144b5761144a61491b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050308160018151811061149a5761149961491b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b6f9de958360008461dead426040518663ffffffff1660e01b81526004016115399493929190614a43565b6000604051808303818588803b15801561155257600080fd5b505af1158015611566573d6000803e3d6000fd5b50505050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600f60009054906101000a900460ff1681565b6000602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611604612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168a90614627565b60405180910390fd5b81601881905550806019819055506019546018546116b19190614676565b601781905550606460175411156116fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f4906146f6565b60405180910390fd5b5050565b60185481565b600f60029054906101000a900460ff1681565b601a5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611770612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f690614627565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006118ca612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611959576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195090614627565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506000601160006101000a81548160ff0219169083151502179055506001905090565b61199e612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2490614627565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001602160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f575f9d01836c9206322151b9e9ec3f2b77b87e71176933b9b44d2d732f768d95602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16604051611b6e9190614335565b60405180910390a25050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601b5481565b60165481565b611bb4612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3a90614627565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611c6990614ac0565b60006040518083038185875af1925050503d8060008114611ca6576040519150601f19603f3d011682016040523d82523d6000602084013e611cab565b606091505b5050905080611cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce690614b21565b60405180910390fd5b50565b611cfa612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8090614627565b60405180910390fd5b6001600f60016101000a81548160ff0219169083151502179055506001600f60026101000a81548160ff02191690831515021790555043600e81905550565b601d5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611e00612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8690614627565b60405180910390fd5b80600f60026101000a81548160ff02191690831515021790555050565b606060048054611ebb90614745565b80601f0160208091040260200160405190810160405280929190818152602001828054611ee790614745565b8015611f345780601f10611f0957610100808354040283529160200191611f34565b820191906000526020600020905b815481529060010190602001808311611f1757829003601f168201915b5050505050905090565b611f46612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcc90614627565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205a90614bd9565b60405180910390fd5b61206d828261377e565b5050565b600061213461207e612914565b8461212f8560405180606001604052806025815260200161558660259139600160006120a8612914565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461371a9092919063ffffffff16565b61291c565b6001905092915050565b600061215261214b612914565b8484612ae5565b6001905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60226020528060005260406000206000915054906101000a900460ff1681565b60175481565b600f60019054906101000a900460ff1681565b6121c3612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612252576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224990614627565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516122ef9190614335565b60405180910390a25050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612329612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123af90614627565b60405180910390fd5b670de0b6b3a7640000606460026123cd611116565b6123d79190614776565b6123e191906147e7565b6123eb91906147e7565b811161242c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242390614c6b565b60405180910390fd5b670de0b6b3a7640000816124409190614776565b600c8190555050565b601160009054906101000a900460ff1681565b600a5481565b60195481565b60125481565b612476612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fc90614627565b60405180910390fd5b670de0b6b3a764000060c8612518611116565b61252291906147e7565b61252c91906147e7565b811061256d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256490614cfd565b60405180910390fd5b670de0b6b3a7640000816125819190614776565b600b8190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60155481565b600b5481565b60135481565b600061262d612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146126bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b390614627565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b600e5481565b601e5481565b6126f2612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612781576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277890614627565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036127f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e790614d8f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c5481565b60008082846128c59190614676565b90508381101561290a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290190614dfb565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361298b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298290614e8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036129fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f190614f1f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612ad8919061435f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4b90614fb1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bba90615043565b60405180910390fd5b60008103612bdc57612bd78383600061382d565b613715565b600f60019054906101000a900460ff16612cd157602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c915750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc7906150af565b60405180910390fd5b5b600f60009054906101000a900460ff16156132a157612cee611dce565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612d5c5750612d2c611dce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d955750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612dcf575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612de85750600660149054906101000a900460ff16155b156132a057601160009054906101000a900460ff1615612fb757612e0a611dce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612e935750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612eeb57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612fb65743601060003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6890615167565b60405180910390fd5b43601060003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561305a5750602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561310157600a548111156130a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309b906151f9565b60405180910390fd5b600c546130b083611720565b826130bb9190614676565b11156130fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f390615265565b60405180910390fd5b61329f565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131a45750602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131f357600a548111156131ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e5906152f7565b60405180910390fd5b61329e565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661329d57600c5461325083611720565b8261325b9190614676565b111561329c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329390615265565b60405180910390fd5b5b5b5b5b5b60006132ac30611720565b90506000600b5482101590508080156132d15750600f60029054906101000a900460ff165b80156132ea5750600660149054906101000a900460ff16155b80156133405750602260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133965750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133ec5750602060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613430576001600660146101000a81548160ff021916908315150217905550613414613ac0565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806134e65750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156134f057600090505b6000811561370557602260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561355357506000601254115b156135ee576135816103e861357360125488613ca590919063ffffffff16565b613d1f90919063ffffffff16565b9050601254601454826135949190614776565b61359e91906147e7565b601f60008282546135af9190614676565b92505081905550601254601354826135c79190614776565b6135d191906147e7565b601c60008282546135e29190614676565b925050819055506136e1565b602260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561364957506000601754115b156136e0576136776103e861366960175488613ca590919063ffffffff16565b613d1f90919063ffffffff16565b90506017546019548261368a9190614776565b61369491906147e7565b601f60008282546136a59190614676565b92505081905550601754601854826136bd9190614776565b6136c791906147e7565b601c60008282546136d89190614676565b925050819055505b5b60008111156136f6576136f587308361382d565b5b80856137029190615317565b94505b61371087878761382d565b505050505b505050565b6000838311158290613762576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613759919061425a565b60405180910390fd5b50600083856137719190615317565b9050809150509392505050565b6001905080602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506137e38282611996565b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361389c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161389390614fb1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361390b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161390290615043565b60405180910390fd5b613916838383613d69565b61398181604051806060016040528060268152602001615538602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461371a9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613a14816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546128b690919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051613ab3919061435f565b60405180910390a3505050565b6000613acb30611720565b9050600080601c54601f54613ae09190614676565b90506000831480613af15750600081145b15613afe57505050613ca3565b6000600282601f5486613b119190614776565b613b1b91906147e7565b613b2591906147e7565b90506000613b3c8286613d6e90919063ffffffff16565b90506000479050613b4c82613db8565b6000613b618247613d6e90919063ffffffff16565b90506000613b8c86613b7e601c5485613ca590919063ffffffff16565b613d1f90919063ffffffff16565b905060008183613b9c9190615317565b90506000601f819055506000601c81905550600086118015613bbe5750600081115b15613c0b57613bcd8682613ffb565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601f54604051613c029392919061534b565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613c5190614ac0565b60006040518083038185875af1925050503d8060008114613c8e576040519150601f19603f3d011682016040523d82523d6000602084013e613c93565b606091505b5050809850505050505050505050505b565b6000808303613cb75760009050613d19565b60008284613cc59190614776565b9050828482613cd491906147e7565b14613d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d0b906153f4565b60405180910390fd5b809150505b92915050565b6000613d6183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506140ec565b905092915050565b505050565b6000613db083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061371a565b905092915050565b6000600267ffffffffffffffff811115613dd557613dd46148aa565b5b604051908082528060200260200182016040528015613e035781602001602082028036833780820191505090505b5090503081600081518110613e1b57613e1a61491b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613ec2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ee691906148ee565b81600181518110613efa57613ef961491b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613f6130600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461291c565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613fc5959493929190615414565b600060405180830381600087803b158015613fdf57600080fd5b505af1158015613ff3573d6000803e3d6000fd5b505050505050565b61402830600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461291c565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000807292f3e7fa9b89bd60371d1326afba4d8a81783d426040518863ffffffff1660e01b81526004016140a29695949392919061546e565b60606040518083038185885af11580156140c0573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906140e591906154e4565b5050505050565b60008083118290614133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161412a919061425a565b60405180910390fd5b506000838561414291906147e7565b9050809150509392505050565b600080fd5b6000819050919050565b61416781614154565b811461417257600080fd5b50565b6000813590506141848161415e565b92915050565b600080604083850312156141a1576141a061414f565b5b60006141af85828601614175565b92505060206141c085828601614175565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156142045780820151818401526020810190506141e9565b60008484015250505050565b6000601f19601f8301169050919050565b600061422c826141ca565b61423681856141d5565b93506142468185602086016141e6565b61424f81614210565b840191505092915050565b600060208201905081810360008301526142748184614221565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006142a78261427c565b9050919050565b6142b78161429c565b81146142c257600080fd5b50565b6000813590506142d4816142ae565b92915050565b600080604083850312156142f1576142f061414f565b5b60006142ff858286016142c5565b925050602061431085828601614175565b9150509250929050565b60008115159050919050565b61432f8161431a565b82525050565b600060208201905061434a6000830184614326565b92915050565b61435981614154565b82525050565b60006020820190506143746000830184614350565b92915050565b6000602082840312156143905761438f61414f565b5b600061439e84828501614175565b91505092915050565b6000602082840312156143bd576143bc61414f565b5b60006143cb848285016142c5565b91505092915050565b6000819050919050565b60006143f96143f46143ef8461427c565b6143d4565b61427c565b9050919050565b600061440b826143de565b9050919050565b600061441d82614400565b9050919050565b61442d81614412565b82525050565b60006020820190506144486000830184614424565b92915050565b6000806000606084860312156144675761446661414f565b5b6000614475868287016142c5565b9350506020614486868287016142c5565b925050604061449786828701614175565b9150509250925092565b600060ff82169050919050565b6144b7816144a1565b82525050565b60006020820190506144d260008301846144ae565b92915050565b6144e18161429c565b82525050565b60006020820190506144fc60008301846144d8565b92915050565b61450b8161431a565b811461451657600080fd5b50565b60008135905061452881614502565b92915050565b600080604083850312156145455761454461414f565b5b6000614553858286016142c5565b925050602061456485828601614519565b9150509250929050565b6000602082840312156145845761458361414f565b5b600061459284828501614519565b91505092915050565b600080604083850312156145b2576145b161414f565b5b60006145c0858286016142c5565b92505060206145d1858286016142c5565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006146116020836141d5565b915061461c826145db565b602082019050919050565b6000602082019050818103600083015261464081614604565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061468182614154565b915061468c83614154565b92508282019050808211156146a4576146a3614647565b5b92915050565b7f466565732063616e6e6f7420626520686967686572207468616e203130250000600082015250565b60006146e0601e836141d5565b91506146eb826146aa565b602082019050919050565b6000602082019050818103600083015261470f816146d3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061475d57607f821691505b6020821081036147705761476f614716565b5b50919050565b600061478182614154565b915061478c83614154565b925082820261479a81614154565b915082820484148315176147b1576147b0614647565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006147f282614154565b91506147fd83614154565b92508261480d5761480c6147b8565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20312500000000000000000000000000000000000000602082015250565b6000614874602d836141d5565b915061487f82614818565b604082019050919050565b600060208201905081810360008301526148a381614867565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000815190506148e8816142ae565b92915050565b6000602082840312156149045761490361414f565b5b6000614912848285016148d9565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600061496f61496a6149658461494a565b6143d4565b614154565b9050919050565b61497f81614954565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6149ba8161429c565b82525050565b60006149cc83836149b1565b60208301905092915050565b6000602082019050919050565b60006149f082614985565b6149fa8185614990565b9350614a05836149a1565b8060005b83811015614a36578151614a1d88826149c0565b9750614a28836149d8565b925050600181019050614a09565b5085935050505092915050565b6000608082019050614a586000830187614976565b8181036020830152614a6a81866149e5565b9050614a7960408301856144d8565b614a866060830184614350565b95945050505050565b600081905092915050565b50565b6000614aaa600083614a8f565b9150614ab582614a9a565b600082019050919050565b6000614acb82614a9d565b9150819050919050565b7f6661696c656420746f2077697468647261770000000000000000000000000000600082015250565b6000614b0b6012836141d5565b9150614b1682614ad5565b602082019050919050565b60006020820190508181036000830152614b3a81614afe565b9050919050565b7f54686520556e695377617020706169722063616e6e6f742062652072656d6f7660008201527f65642066726f6d206175746f6d617465644d61726b65744d616b65725061697260208201527f7300000000000000000000000000000000000000000000000000000000000000604082015250565b6000614bc36041836141d5565b9150614bce82614b41565b606082019050919050565b60006020820190508181036000830152614bf281614bb6565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3225000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c556022836141d5565b9150614c6082614bf9565b604082019050919050565b60006020820190508181036000830152614c8481614c48565b9050919050565b7f43616e6e6f74207365742073776170546f6b656e734174416d6f756e7420686960008201527f67686572207468616e20302e3525000000000000000000000000000000000000602082015250565b6000614ce7602e836141d5565b9150614cf282614c8b565b604082019050919050565b60006020820190508181036000830152614d1681614cda565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614d796026836141d5565b9150614d8482614d1d565b604082019050919050565b60006020820190508181036000830152614da881614d6c565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614de5601b836141d5565b9150614df082614daf565b602082019050919050565b60006020820190508181036000830152614e1481614dd8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614e776024836141d5565b9150614e8282614e1b565b604082019050919050565b60006020820190508181036000830152614ea681614e6a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614f096022836141d5565b9150614f1482614ead565b604082019050919050565b60006020820190508181036000830152614f3881614efc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614f9b6025836141d5565b9150614fa682614f3f565b604082019050919050565b60006020820190508181036000830152614fca81614f8e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061502d6023836141d5565b915061503882614fd1565b604082019050919050565b6000602082019050818103600083015261505c81615020565b9050919050565b7f54726164696e67206973206e6f7420616374697665207965742e000000000000600082015250565b6000615099601a836141d5565b91506150a482615063565b602082019050919050565b600060208201905081810360008301526150c88161508c565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006151516049836141d5565b915061515c826150cf565b606082019050919050565b6000602082019050818103600083015261518081615144565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006151e36035836141d5565b91506151ee82615187565b604082019050919050565b60006020820190508181036000830152615212816151d6565b9050919050565b7f556e61626c6520746f20657863656564204d61782057616c6c65740000000000600082015250565b600061524f601b836141d5565b915061525a82615219565b602082019050919050565b6000602082019050818103600083015261527e81615242565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006152e16036836141d5565b91506152ec82615285565b604082019050919050565b60006020820190508181036000830152615310816152d4565b9050919050565b600061532282614154565b915061532d83614154565b925082820390508181111561534557615344614647565b5b92915050565b60006060820190506153606000830186614350565b61536d6020830185614350565b61537a6040830184614350565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006153de6021836141d5565b91506153e982615382565b604082019050919050565b6000602082019050818103600083015261540d816153d1565b9050919050565b600060a0820190506154296000830188614350565b6154366020830187614976565b818103604083015261544881866149e5565b905061545760608301856144d8565b6154646080830184614350565b9695505050505050565b600060c08201905061548360008301896144d8565b6154906020830188614350565b61549d6040830187614976565b6154aa6060830186614976565b6154b760808301856144d8565b6154c460a0830184614350565b979650505050505050565b6000815190506154de8161415e565b92915050565b6000806000606084860312156154fd576154fc61414f565b5b600061550b868287016154cf565b935050602061551c868287016154cf565b925050604061552d868287016154cf565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220eb011c6d2eef6a03e00dd0fd6f8253334a1f1acbbed9a3b98bc2e6359fd121ef64736f6c63430008120033

Deployed Bytecode

0x6080604052600436106103905760003560e01c80637fa787ba116101dc578063c18bc19511610102578063e08c38b2116100a0578063ee40166e1161006f578063ee40166e14610d3d578063ef8700e514610d68578063f2fde38b14610d93578063f8b45b0514610dbc57610397565b8063e08c38b214610c91578063e2f4560514610cbc578063e7f444b314610ce7578063e884f26014610d1257610397565b8063ccb61358116100dc578063ccb6135814610bd5578063d0a3981414610c00578063d257b34f14610c2b578063dd62ed3e14610c5457610397565b8063c18bc19514610b56578063c876d0b914610b7f578063c8c8ebe414610baa57610397565b8063a457c2d71161017a578063b9e9370011610149578063b9e9370014610aac578063bbc0c74214610ad7578063c024666814610b02578063c04a541414610b2b57610397565b8063a457c2d7146109ca578063a9059cbb14610a07578063b071787b14610a44578063b62496f514610a6f57610397565b80638da5cb5b116101b65780638da5cb5b14610922578063924de9b71461094d57806395d89b41146109765780639a7a23d6146109a157610397565b80637fa787ba146108c95780638a8c523c146108e05780638d5985d3146108f757610397565b80633f3539ef116102c1578063703baa711161025f5780637571336a1161022e5780637571336a1461081f57806375f0a8741461084857806378b3ac70146108735780637be408611461089e57610397565b8063703baa711461077557806370a08231146107a0578063715018a6146107dd578063751039fc146107f457610397565b80634fbee1931161029b5780634fbee193146106b957806366ca9b83146106f6578063680789521461071f5780636ddd17131461074a57610397565b80633f3539ef1461063a57806349bd5a5e146106635780634a62bb651461068e57610397565b80631694505e1161032e5780631f3fed8f116103085780631f3fed8f1461056a57806323b872dd14610595578063313ce567146105d257806339509351146105fd57610397565b80631694505e146104e957806318160ddd146105145780631a8145bb1461053f57610397565b8063099d0d301161036a578063099d0d301461042d5780630f4432e314610458578063106b5da11461048357806310d5de53146104ac57610397565b806302dbd8f81461039c57806306fdde03146103c5578063095ea7b3146103f057610397565b3661039757005b600080fd5b3480156103a857600080fd5b506103c360048036038101906103be919061418a565b610de7565b005b3480156103d157600080fd5b506103da610eec565b6040516103e7919061425a565b60405180910390f35b3480156103fc57600080fd5b50610417600480360381019061041291906142da565b610f7e565b6040516104249190614335565b60405180910390f35b34801561043957600080fd5b50610442610f9c565b60405161044f919061435f565b60405180910390f35b34801561046457600080fd5b5061046d610fa2565b60405161047a919061435f565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a5919061437a565b610fa8565b005b3480156104b857600080fd5b506104d360048036038101906104ce91906143a7565b6110d0565b6040516104e09190614335565b60405180910390f35b3480156104f557600080fd5b506104fe6110f0565b60405161050b9190614433565b60405180910390f35b34801561052057600080fd5b50610529611116565b604051610536919061435f565b60405180910390f35b34801561054b57600080fd5b50610554611120565b604051610561919061435f565b60405180910390f35b34801561057657600080fd5b5061057f611126565b60405161058c919061435f565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b7919061444e565b61112c565b6040516105c99190614335565b60405180910390f35b3480156105de57600080fd5b506105e7611205565b6040516105f491906144bd565b60405180910390f35b34801561060957600080fd5b50610624600480360381019061061f91906142da565b61120e565b6040516106319190614335565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c919061437a565b6112c1565b005b34801561066f57600080fd5b5061067861156f565b60405161068591906144e7565b60405180910390f35b34801561069a57600080fd5b506106a3611593565b6040516106b09190614335565b60405180910390f35b3480156106c557600080fd5b506106e060048036038101906106db91906143a7565b6115a6565b6040516106ed9190614335565b60405180910390f35b34801561070257600080fd5b5061071d6004803603810190610718919061418a565b6115fc565b005b34801561072b57600080fd5b50610734611701565b604051610741919061435f565b60405180910390f35b34801561075657600080fd5b5061075f611707565b60405161076c9190614335565b60405180910390f35b34801561078157600080fd5b5061078a61171a565b604051610797919061435f565b60405180910390f35b3480156107ac57600080fd5b506107c760048036038101906107c291906143a7565b611720565b6040516107d4919061435f565b60405180910390f35b3480156107e957600080fd5b506107f2611768565b005b34801561080057600080fd5b506108096118c0565b6040516108169190614335565b60405180910390f35b34801561082b57600080fd5b506108466004803603810190610841919061452e565b611996565b005b34801561085457600080fd5b5061085d611b7a565b60405161086a91906144e7565b60405180910390f35b34801561087f57600080fd5b50610888611ba0565b604051610895919061435f565b60405180910390f35b3480156108aa57600080fd5b506108b3611ba6565b6040516108c0919061435f565b60405180910390f35b3480156108d557600080fd5b506108de611bac565b005b3480156108ec57600080fd5b506108f5611cf2565b005b34801561090357600080fd5b5061090c611dc8565b604051610919919061435f565b60405180910390f35b34801561092e57600080fd5b50610937611dce565b60405161094491906144e7565b60405180910390f35b34801561095957600080fd5b50610974600480360381019061096f919061456e565b611df8565b005b34801561098257600080fd5b5061098b611eac565b604051610998919061425a565b60405180910390f35b3480156109ad57600080fd5b506109c860048036038101906109c3919061452e565b611f3e565b005b3480156109d657600080fd5b506109f160048036038101906109ec91906142da565b612071565b6040516109fe9190614335565b60405180910390f35b348015610a1357600080fd5b50610a2e6004803603810190610a2991906142da565b61213e565b604051610a3b9190614335565b60405180910390f35b348015610a5057600080fd5b50610a5961215c565b604051610a6691906144e7565b60405180910390f35b348015610a7b57600080fd5b50610a966004803603810190610a9191906143a7565b612182565b604051610aa39190614335565b60405180910390f35b348015610ab857600080fd5b50610ac16121a2565b604051610ace919061435f565b60405180910390f35b348015610ae357600080fd5b50610aec6121a8565b604051610af99190614335565b60405180910390f35b348015610b0e57600080fd5b50610b296004803603810190610b24919061452e565b6121bb565b005b348015610b3757600080fd5b50610b406122fb565b604051610b4d91906144e7565b60405180910390f35b348015610b6257600080fd5b50610b7d6004803603810190610b78919061437a565b612321565b005b348015610b8b57600080fd5b50610b94612449565b604051610ba19190614335565b60405180910390f35b348015610bb657600080fd5b50610bbf61245c565b604051610bcc919061435f565b60405180910390f35b348015610be157600080fd5b50610bea612462565b604051610bf7919061435f565b60405180910390f35b348015610c0c57600080fd5b50610c15612468565b604051610c22919061435f565b60405180910390f35b348015610c3757600080fd5b50610c526004803603810190610c4d919061437a565b61246e565b005b348015610c6057600080fd5b50610c7b6004803603810190610c76919061459b565b61258a565b604051610c88919061435f565b60405180910390f35b348015610c9d57600080fd5b50610ca6612611565b604051610cb3919061435f565b60405180910390f35b348015610cc857600080fd5b50610cd1612617565b604051610cde919061435f565b60405180910390f35b348015610cf357600080fd5b50610cfc61261d565b604051610d09919061435f565b60405180910390f35b348015610d1e57600080fd5b50610d27612623565b604051610d349190614335565b60405180910390f35b348015610d4957600080fd5b50610d526126de565b604051610d5f919061435f565b60405180910390f35b348015610d7457600080fd5b50610d7d6126e4565b604051610d8a919061435f565b60405180910390f35b348015610d9f57600080fd5b50610dba6004803603810190610db591906143a7565b6126ea565b005b348015610dc857600080fd5b50610dd16128b0565b604051610dde919061435f565b60405180910390f35b610def612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7590614627565b60405180910390fd5b8160138190555080601481905550601454601354610e9c9190614676565b60128190555060646012541115610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf906146f6565b60405180910390fd5b5050565b606060038054610efb90614745565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2790614745565b8015610f745780601f10610f4957610100808354040283529160200191610f74565b820191906000526020600020905b815481529060010190602001808311610f5757829003601f168201915b5050505050905090565b6000610f92610f8b612914565b848461291c565b6001905092915050565b60145481565b600d5481565b610fb0612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461103f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103690614627565b60405180910390fd5b670de0b6b3a764000060646001611054611116565b61105e9190614776565b61106891906147e7565b61107291906147e7565b81116110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa9061488a565b60405180910390fd5b670de0b6b3a7640000816110c79190614776565b600a8190555050565b60216020528060005260406000206000915054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b601f5481565b601c5481565b6000611139848484612ae5565b6111fa84611145612914565b6111f58560405180606001604052806028815260200161555e60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006111ab612914565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461371a9092919063ffffffff16565b61291c565b600190509392505050565b60006012905090565b60006112b761121b612914565b846112b2856001600061122c612914565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546128b690919063ffffffff16565b61291c565b6001905092915050565b6112c9612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134f90614627565b60405180910390fd5b6000600267ffffffffffffffff811115611375576113746148aa565b5b6040519080825280602002602001820160405280156113a35781602001602082028036833780820191505090505b509050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611413573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061143791906148ee565b8160008151811061144b5761144a61491b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050308160018151811061149a5761149961491b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b6f9de958360008461dead426040518663ffffffff1660e01b81526004016115399493929190614a43565b6000604051808303818588803b15801561155257600080fd5b505af1158015611566573d6000803e3d6000fd5b50505050505050565b7f0000000000000000000000000b50cc443e435bae186e2f18ffb77bbff168d0e181565b600f60009054906101000a900460ff1681565b6000602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611604612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168a90614627565b60405180910390fd5b81601881905550806019819055506019546018546116b19190614676565b601781905550606460175411156116fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f4906146f6565b60405180910390fd5b5050565b60185481565b600f60029054906101000a900460ff1681565b601a5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611770612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f690614627565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006118ca612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611959576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195090614627565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506000601160006101000a81548160ff0219169083151502179055506001905090565b61199e612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2490614627565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001602160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f575f9d01836c9206322151b9e9ec3f2b77b87e71176933b9b44d2d732f768d95602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16604051611b6e9190614335565b60405180910390a25050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601b5481565b60165481565b611bb4612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3a90614627565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611c6990614ac0565b60006040518083038185875af1925050503d8060008114611ca6576040519150601f19603f3d011682016040523d82523d6000602084013e611cab565b606091505b5050905080611cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce690614b21565b60405180910390fd5b50565b611cfa612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8090614627565b60405180910390fd5b6001600f60016101000a81548160ff0219169083151502179055506001600f60026101000a81548160ff02191690831515021790555043600e81905550565b601d5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611e00612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8690614627565b60405180910390fd5b80600f60026101000a81548160ff02191690831515021790555050565b606060048054611ebb90614745565b80601f0160208091040260200160405190810160405280929190818152602001828054611ee790614745565b8015611f345780601f10611f0957610100808354040283529160200191611f34565b820191906000526020600020905b815481529060010190602001808311611f1757829003601f168201915b5050505050905090565b611f46612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcc90614627565b60405180910390fd5b7f0000000000000000000000000b50cc443e435bae186e2f18ffb77bbff168d0e173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205a90614bd9565b60405180910390fd5b61206d828261377e565b5050565b600061213461207e612914565b8461212f8560405180606001604052806025815260200161558660259139600160006120a8612914565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461371a9092919063ffffffff16565b61291c565b6001905092915050565b600061215261214b612914565b8484612ae5565b6001905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60226020528060005260406000206000915054906101000a900460ff1681565b60175481565b600f60019054906101000a900460ff1681565b6121c3612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612252576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224990614627565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516122ef9190614335565b60405180910390a25050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612329612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123af90614627565b60405180910390fd5b670de0b6b3a7640000606460026123cd611116565b6123d79190614776565b6123e191906147e7565b6123eb91906147e7565b811161242c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242390614c6b565b60405180910390fd5b670de0b6b3a7640000816124409190614776565b600c8190555050565b601160009054906101000a900460ff1681565b600a5481565b60195481565b60125481565b612476612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fc90614627565b60405180910390fd5b670de0b6b3a764000060c8612518611116565b61252291906147e7565b61252c91906147e7565b811061256d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256490614cfd565b60405180910390fd5b670de0b6b3a7640000816125819190614776565b600b8190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60155481565b600b5481565b60135481565b600061262d612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146126bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b390614627565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b600e5481565b601e5481565b6126f2612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612781576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277890614627565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036127f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e790614d8f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c5481565b60008082846128c59190614676565b90508381101561290a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290190614dfb565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361298b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298290614e8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036129fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f190614f1f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612ad8919061435f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4b90614fb1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bba90615043565b60405180910390fd5b60008103612bdc57612bd78383600061382d565b613715565b600f60019054906101000a900460ff16612cd157602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c915750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc7906150af565b60405180910390fd5b5b600f60009054906101000a900460ff16156132a157612cee611dce565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612d5c5750612d2c611dce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d955750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612dcf575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612de85750600660149054906101000a900460ff16155b156132a057601160009054906101000a900460ff1615612fb757612e0a611dce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612e935750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612eeb57507f0000000000000000000000000b50cc443e435bae186e2f18ffb77bbff168d0e173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612fb65743601060003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6890615167565b60405180910390fd5b43601060003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561305a5750602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561310157600a548111156130a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309b906151f9565b60405180910390fd5b600c546130b083611720565b826130bb9190614676565b11156130fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f390615265565b60405180910390fd5b61329f565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131a45750602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131f357600a548111156131ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e5906152f7565b60405180910390fd5b61329e565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661329d57600c5461325083611720565b8261325b9190614676565b111561329c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329390615265565b60405180910390fd5b5b5b5b5b5b60006132ac30611720565b90506000600b5482101590508080156132d15750600f60029054906101000a900460ff165b80156132ea5750600660149054906101000a900460ff16155b80156133405750602260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133965750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133ec5750602060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613430576001600660146101000a81548160ff021916908315150217905550613414613ac0565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806134e65750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156134f057600090505b6000811561370557602260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561355357506000601254115b156135ee576135816103e861357360125488613ca590919063ffffffff16565b613d1f90919063ffffffff16565b9050601254601454826135949190614776565b61359e91906147e7565b601f60008282546135af9190614676565b92505081905550601254601354826135c79190614776565b6135d191906147e7565b601c60008282546135e29190614676565b925050819055506136e1565b602260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561364957506000601754115b156136e0576136776103e861366960175488613ca590919063ffffffff16565b613d1f90919063ffffffff16565b90506017546019548261368a9190614776565b61369491906147e7565b601f60008282546136a59190614676565b92505081905550601754601854826136bd9190614776565b6136c791906147e7565b601c60008282546136d89190614676565b925050819055505b5b60008111156136f6576136f587308361382d565b5b80856137029190615317565b94505b61371087878761382d565b505050505b505050565b6000838311158290613762576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613759919061425a565b60405180910390fd5b50600083856137719190615317565b9050809150509392505050565b6001905080602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506137e38282611996565b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361389c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161389390614fb1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361390b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161390290615043565b60405180910390fd5b613916838383613d69565b61398181604051806060016040528060268152602001615538602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461371a9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613a14816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546128b690919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051613ab3919061435f565b60405180910390a3505050565b6000613acb30611720565b9050600080601c54601f54613ae09190614676565b90506000831480613af15750600081145b15613afe57505050613ca3565b6000600282601f5486613b119190614776565b613b1b91906147e7565b613b2591906147e7565b90506000613b3c8286613d6e90919063ffffffff16565b90506000479050613b4c82613db8565b6000613b618247613d6e90919063ffffffff16565b90506000613b8c86613b7e601c5485613ca590919063ffffffff16565b613d1f90919063ffffffff16565b905060008183613b9c9190615317565b90506000601f819055506000601c81905550600086118015613bbe5750600081115b15613c0b57613bcd8682613ffb565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601f54604051613c029392919061534b565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613c5190614ac0565b60006040518083038185875af1925050503d8060008114613c8e576040519150601f19603f3d011682016040523d82523d6000602084013e613c93565b606091505b5050809850505050505050505050505b565b6000808303613cb75760009050613d19565b60008284613cc59190614776565b9050828482613cd491906147e7565b14613d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d0b906153f4565b60405180910390fd5b809150505b92915050565b6000613d6183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506140ec565b905092915050565b505050565b6000613db083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061371a565b905092915050565b6000600267ffffffffffffffff811115613dd557613dd46148aa565b5b604051908082528060200260200182016040528015613e035781602001602082028036833780820191505090505b5090503081600081518110613e1b57613e1a61491b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613ec2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ee691906148ee565b81600181518110613efa57613ef961491b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613f6130600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461291c565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613fc5959493929190615414565b600060405180830381600087803b158015613fdf57600080fd5b505af1158015613ff3573d6000803e3d6000fd5b505050505050565b61402830600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461291c565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000807292f3e7fa9b89bd60371d1326afba4d8a81783d426040518863ffffffff1660e01b81526004016140a29695949392919061546e565b60606040518083038185885af11580156140c0573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906140e591906154e4565b5050505050565b60008083118290614133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161412a919061425a565b60405180910390fd5b506000838561414291906147e7565b9050809150509392505050565b600080fd5b6000819050919050565b61416781614154565b811461417257600080fd5b50565b6000813590506141848161415e565b92915050565b600080604083850312156141a1576141a061414f565b5b60006141af85828601614175565b92505060206141c085828601614175565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156142045780820151818401526020810190506141e9565b60008484015250505050565b6000601f19601f8301169050919050565b600061422c826141ca565b61423681856141d5565b93506142468185602086016141e6565b61424f81614210565b840191505092915050565b600060208201905081810360008301526142748184614221565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006142a78261427c565b9050919050565b6142b78161429c565b81146142c257600080fd5b50565b6000813590506142d4816142ae565b92915050565b600080604083850312156142f1576142f061414f565b5b60006142ff858286016142c5565b925050602061431085828601614175565b9150509250929050565b60008115159050919050565b61432f8161431a565b82525050565b600060208201905061434a6000830184614326565b92915050565b61435981614154565b82525050565b60006020820190506143746000830184614350565b92915050565b6000602082840312156143905761438f61414f565b5b600061439e84828501614175565b91505092915050565b6000602082840312156143bd576143bc61414f565b5b60006143cb848285016142c5565b91505092915050565b6000819050919050565b60006143f96143f46143ef8461427c565b6143d4565b61427c565b9050919050565b600061440b826143de565b9050919050565b600061441d82614400565b9050919050565b61442d81614412565b82525050565b60006020820190506144486000830184614424565b92915050565b6000806000606084860312156144675761446661414f565b5b6000614475868287016142c5565b9350506020614486868287016142c5565b925050604061449786828701614175565b9150509250925092565b600060ff82169050919050565b6144b7816144a1565b82525050565b60006020820190506144d260008301846144ae565b92915050565b6144e18161429c565b82525050565b60006020820190506144fc60008301846144d8565b92915050565b61450b8161431a565b811461451657600080fd5b50565b60008135905061452881614502565b92915050565b600080604083850312156145455761454461414f565b5b6000614553858286016142c5565b925050602061456485828601614519565b9150509250929050565b6000602082840312156145845761458361414f565b5b600061459284828501614519565b91505092915050565b600080604083850312156145b2576145b161414f565b5b60006145c0858286016142c5565b92505060206145d1858286016142c5565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006146116020836141d5565b915061461c826145db565b602082019050919050565b6000602082019050818103600083015261464081614604565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061468182614154565b915061468c83614154565b92508282019050808211156146a4576146a3614647565b5b92915050565b7f466565732063616e6e6f7420626520686967686572207468616e203130250000600082015250565b60006146e0601e836141d5565b91506146eb826146aa565b602082019050919050565b6000602082019050818103600083015261470f816146d3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061475d57607f821691505b6020821081036147705761476f614716565b5b50919050565b600061478182614154565b915061478c83614154565b925082820261479a81614154565b915082820484148315176147b1576147b0614647565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006147f282614154565b91506147fd83614154565b92508261480d5761480c6147b8565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20312500000000000000000000000000000000000000602082015250565b6000614874602d836141d5565b915061487f82614818565b604082019050919050565b600060208201905081810360008301526148a381614867565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000815190506148e8816142ae565b92915050565b6000602082840312156149045761490361414f565b5b6000614912848285016148d9565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600061496f61496a6149658461494a565b6143d4565b614154565b9050919050565b61497f81614954565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6149ba8161429c565b82525050565b60006149cc83836149b1565b60208301905092915050565b6000602082019050919050565b60006149f082614985565b6149fa8185614990565b9350614a05836149a1565b8060005b83811015614a36578151614a1d88826149c0565b9750614a28836149d8565b925050600181019050614a09565b5085935050505092915050565b6000608082019050614a586000830187614976565b8181036020830152614a6a81866149e5565b9050614a7960408301856144d8565b614a866060830184614350565b95945050505050565b600081905092915050565b50565b6000614aaa600083614a8f565b9150614ab582614a9a565b600082019050919050565b6000614acb82614a9d565b9150819050919050565b7f6661696c656420746f2077697468647261770000000000000000000000000000600082015250565b6000614b0b6012836141d5565b9150614b1682614ad5565b602082019050919050565b60006020820190508181036000830152614b3a81614afe565b9050919050565b7f54686520556e695377617020706169722063616e6e6f742062652072656d6f7660008201527f65642066726f6d206175746f6d617465644d61726b65744d616b65725061697260208201527f7300000000000000000000000000000000000000000000000000000000000000604082015250565b6000614bc36041836141d5565b9150614bce82614b41565b606082019050919050565b60006020820190508181036000830152614bf281614bb6565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3225000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c556022836141d5565b9150614c6082614bf9565b604082019050919050565b60006020820190508181036000830152614c8481614c48565b9050919050565b7f43616e6e6f74207365742073776170546f6b656e734174416d6f756e7420686960008201527f67686572207468616e20302e3525000000000000000000000000000000000000602082015250565b6000614ce7602e836141d5565b9150614cf282614c8b565b604082019050919050565b60006020820190508181036000830152614d1681614cda565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614d796026836141d5565b9150614d8482614d1d565b604082019050919050565b60006020820190508181036000830152614da881614d6c565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614de5601b836141d5565b9150614df082614daf565b602082019050919050565b60006020820190508181036000830152614e1481614dd8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614e776024836141d5565b9150614e8282614e1b565b604082019050919050565b60006020820190508181036000830152614ea681614e6a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614f096022836141d5565b9150614f1482614ead565b604082019050919050565b60006020820190508181036000830152614f3881614efc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614f9b6025836141d5565b9150614fa682614f3f565b604082019050919050565b60006020820190508181036000830152614fca81614f8e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061502d6023836141d5565b915061503882614fd1565b604082019050919050565b6000602082019050818103600083015261505c81615020565b9050919050565b7f54726164696e67206973206e6f7420616374697665207965742e000000000000600082015250565b6000615099601a836141d5565b91506150a482615063565b602082019050919050565b600060208201905081810360008301526150c88161508c565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006151516049836141d5565b915061515c826150cf565b606082019050919050565b6000602082019050818103600083015261518081615144565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006151e36035836141d5565b91506151ee82615187565b604082019050919050565b60006020820190508181036000830152615212816151d6565b9050919050565b7f556e61626c6520746f20657863656564204d61782057616c6c65740000000000600082015250565b600061524f601b836141d5565b915061525a82615219565b602082019050919050565b6000602082019050818103600083015261527e81615242565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006152e16036836141d5565b91506152ec82615285565b604082019050919050565b60006020820190508181036000830152615310816152d4565b9050919050565b600061532282614154565b915061532d83614154565b925082820390508181111561534557615344614647565b5b92915050565b60006060820190506153606000830186614350565b61536d6020830185614350565b61537a6040830184614350565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006153de6021836141d5565b91506153e982615382565b604082019050919050565b6000602082019050818103600083015261540d816153d1565b9050919050565b600060a0820190506154296000830188614350565b6154366020830187614976565b818103604083015261544881866149e5565b905061545760608301856144d8565b6154646080830184614350565b9695505050505050565b600060c08201905061548360008301896144d8565b6154906020830188614350565b61549d6040830187614976565b6154aa6060830186614976565b6154b760808301856144d8565b6154c460a0830184614350565b979650505050505050565b6000815190506154de8161415e565b92915050565b6000806000606084860312156154fd576154fc61414f565b5b600061550b868287016154cf565b935050602061551c868287016154cf565b925050604061552d868287016154cf565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220eb011c6d2eef6a03e00dd0fd6f8253334a1f1acbbed9a3b98bc2e6359fd121ef64736f6c63430008120033

Deployed Bytecode Sourcemap

29475:15273:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35722:319;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7615:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9782:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30518:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29916:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34940:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31140:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29548:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8735:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30955:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30832;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10433:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8577:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11197:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44011:529;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29596:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30084:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37078:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35398:312;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30675:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30164:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30749;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8906:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22094:148;;;;;;;;;;;;;:::i;:::-;;37259:159;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36049:303;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29673:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30787:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30595:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44552:191;;;;;;;;;;;;;:::i;:::-;;34336:156;;;;;;;;;;;;;:::i;:::-;;30872:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21452:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34592:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7834:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36552:250;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11918:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9246:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29710:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31362:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30641:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30124:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36360:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29748:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35179:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30387:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29797:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30712:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30445:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34701:230;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9484:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30556:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29839:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30480:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34141:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30001:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30913:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22397:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29879:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35722:319;21674:12;:10;:12::i;:::-;21664:22;;:6;;;;;;;;;;;:22;;;21656:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35841:13:::1;35822:16;:32;;;;35884:13;35865:16;:32;;;;35943:16;;35924;;:35;;;;:::i;:::-;35908:13;:51;;;;35995:3;35978:13;;:20;;35970:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;35722:319:::0;;:::o;7615:100::-;7669:13;7702:5;7695:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7615:100;:::o;9782:169::-;9865:4;9882:39;9891:12;:10;:12::i;:::-;9905:7;9914:6;9882:8;:39::i;:::-;9939:4;9932:11;;9782:169;;;;:::o;30518:31::-;;;;:::o;29916:39::-;;;;:::o;34940:227::-;21674:12;:10;:12::i;:::-;21664:22;;:6;;;;;;;;;;;:22;;;21656:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35054:4:::1;35049:3;35045:1;35029:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:23;;;;:::i;:::-;35028:30;;;;:::i;:::-;35019:6;:39;35011:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;35152:6;35142;:17;;;;:::i;:::-;35119:20;:40;;;;34940:227:::0;:::o;31140:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;29548:41::-;;;;;;;;;;;;;:::o;8735:108::-;8796:7;8823:12;;8816:19;;8735:108;:::o;30955:33::-;;;;:::o;30832:::-;;;;:::o;10433:355::-;10573:4;10590:36;10600:6;10608:9;10619:6;10590:9;:36::i;:::-;10637:121;10646:6;10654:12;:10;:12::i;:::-;10668:89;10706:6;10668:89;;;;;;;;;;;;;;;;;:11;:19;10680:6;10668:19;;;;;;;;;;;;;;;:33;10688:12;:10;:12::i;:::-;10668:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;10637:8;:121::i;:::-;10776:4;10769:11;;10433:355;;;;;:::o;8577:93::-;8635:5;8660:2;8653:9;;8577:93;:::o;11197:218::-;11285:4;11302:83;11311:12;:10;:12::i;:::-;11325:7;11334:50;11373:10;11334:11;:25;11346:12;:10;:12::i;:::-;11334:25;;;;;;;;;;;;;;;:34;11360:7;11334:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11302:8;:83::i;:::-;11403:4;11396:11;;11197:218;;;;:::o;44011:529::-;21674:12;:10;:12::i;:::-;21664:22;;:6;;;;;;;;;;;:22;;;21656:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;44148:21:::1;44186:1;44172:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44148:40;;44209:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44199:4;44204:1;44199:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;::::0;::::1;44260:4;44242;44247:1;44242:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;44304:15;;;;;;;;;;;:66;;;44378:14;44408:1;44457:4;44484:6;44506:15;44304:228;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;44079:461;44011:529:::0;:::o;29596:38::-;;;:::o;30084:33::-;;;;;;;;;;;;;:::o;37078:125::-;37143:4;37167:19;:28;37187:7;37167:28;;;;;;;;;;;;;;;;;;;;;;;;;37160:35;;37078:125;;;:::o;35398:312::-;21674:12;:10;:12::i;:::-;21664:22;;:6;;;;;;;;;;;:22;;;21656:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35515:13:::1;35497:15;:31;;;;35557:13;35539:15;:31;;;;35614:15;;35596;;:33;;;;:::i;:::-;35581:12;:48;;;;35664:3;35648:12;;:19;;35640:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;35398:312:::0;;:::o;30675:30::-;;;;:::o;30164:31::-;;;;;;;;;;;;;:::o;30749:::-;;;;:::o;8906:127::-;8980:7;9007:9;:18;9017:7;9007:18;;;;;;;;;;;;;;;;9000:25;;8906:127;;;:::o;22094:148::-;21674:12;:10;:12::i;:::-;21664:22;;:6;;;;;;;;;;;:22;;;21656:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22201:1:::1;22164:40;;22185:6;;;;;;;;;;;22164:40;;;;;;;;;;;;22232:1;22215:6;;:19;;;;;;;;;;;;;;;;;;22094:148::o:0;37259:159::-;37311:4;21674:12;:10;:12::i;:::-;21664:22;;:6;;;;;;;;;;;:22;;;21656:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37344:5:::1;37327:14;;:22;;;;;;;;;;;;;;;;;;37383:5;37360:20;;:28;;;;;;;;;;;;;;;;;;37406:4;37399:11;;37259:159:::0;:::o;36049:303::-;21674:12;:10;:12::i;:::-;21664:22;;:6;;;;;;;;;;;:22;;;21656:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36181:4:::1;36139:31;:39;36171:6;36139:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36245:4;36196:31;:46;36236:4;36196:46;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;36296:6;36267:77;;;36304:31;:39;36336:6;36304:39;;;;;;;;;;;;;;;;;;;;;;;;;36267:77;;;;;;:::i;:::-;;;;;;;;36049:303:::0;;:::o;29673:30::-;;;;;;;;;;;;;:::o;30787:32::-;;;;:::o;30595:33::-;;;;:::o;44552:191::-;21674:12;:10;:12::i;:::-;21664:22;;:6;;;;;;;;;;;:22;;;21656:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;44611:12:::1;44636:10;44628:24;;44660:21;44628:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44610:76;;;44705:7;44697:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;44599:144;44552:191::o:0;34336:156::-;21674:12;:10;:12::i;:::-;21664:22;;:6;;;;;;;;;;;:22;;;21656:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34407:4:::1;34391:13;;:20;;;;;;;;;;;;;;;;;;34436:4;34422:11;;:18;;;;;;;;;;;;;;;;;;34472:12;34451:18;:33;;;;34336:156::o:0;30872:34::-;;;;:::o;21452:79::-;21490:7;21517:6;;;;;;;;;;;21510:13;;21452:79;:::o;34592:101::-;21674:12;:10;:12::i;:::-;21664:22;;:6;;;;;;;;;;;:22;;;21656:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34678:7:::1;34664:11;;:21;;;;;;;;;;;;;;;;;;34592:101:::0;:::o;7834:104::-;7890:13;7923:7;7916:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7834:104;:::o;36552:250::-;21674:12;:10;:12::i;:::-;21664:22;;:6;;;;;;;;;;;:22;;;21656:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36659:13:::1;36651:21;;:4;:21;;::::0;36643:99:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;36753:41;36782:4;36788:5;36753:28;:41::i;:::-;36552:250:::0;;:::o;11918:269::-;12011:4;12028:129;12037:12;:10;:12::i;:::-;12051:7;12060:96;12099:15;12060:96;;;;;;;;;;;;;;;;;:11;:25;12072:12;:10;:12::i;:::-;12060:25;;;;;;;;;;;;;;;:34;12086:7;12060:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;12028:8;:129::i;:::-;12175:4;12168:11;;11918:269;;;;:::o;9246:175::-;9332:4;9349:42;9359:12;:10;:12::i;:::-;9373:9;9384:6;9349:9;:42::i;:::-;9409:4;9402:11;;9246:175;;;;:::o;29710:31::-;;;;;;;;;;;;;:::o;31362:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;30641:27::-;;;;:::o;30124:33::-;;;;;;;;;;;;;:::o;36360:184::-;21674:12;:10;:12::i;:::-;21664:22;;:6;;;;;;;;;;;:22;;;21656:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36476:8:::1;36445:19;:28;36465:7;36445:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36518:7;36502:34;;;36527:8;36502:34;;;;;;:::i;:::-;;;;;;;;36360:184:::0;;:::o;29748:32::-;;;;;;;;;;;;;:::o;35179:211::-;21674:12;:10;:12::i;:::-;21664:22;;:6;;;;;;;;;;;:22;;;21656:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35299:4:::1;35294:3;35290:1;35274:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:23;;;;:::i;:::-;35273:30;;;;:::i;:::-;35264:6;:39;35256:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;35375:6;35365;:17;;;;:::i;:::-;35353:9;:29;;;;35179:211:::0;:::o;30387:39::-;;;;;;;;;;;;;:::o;29797:35::-;;;;:::o;30712:30::-;;;;:::o;30445:28::-;;;;:::o;34701:230::-;21674:12;:10;:12::i;:::-;21664:22;;:6;;;;;;;;;;;:22;;;21656:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34819:4:::1;34814:3;34798:13;:11;:13::i;:::-;:19;;;;:::i;:::-;34797:26;;;;:::i;:::-;34788:6;:35;34780:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;34916:6;34906;:17;;;;:::i;:::-;34885:18;:38;;;;34701:230:::0;:::o;9484:151::-;9573:7;9600:11;:18;9612:5;9600:18;;;;;;;;;;;;;;;:27;9619:7;9600:27;;;;;;;;;;;;;;;;9593:34;;9484:151;;;;:::o;30556:32::-;;;;:::o;29839:33::-;;;;:::o;30480:31::-;;;;:::o;34141:134::-;34201:4;21674:12;:10;:12::i;:::-;21664:22;;:6;;;;;;;;;;;:22;;;21656:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34240:5:::1;34217:20;;:28;;;;;;;;;;;;;;;;;;34263:4;34256:11;;34141:134:::0;:::o;30001:37::-;;;;:::o;30913:35::-;;;;:::o;22397:244::-;21674:12;:10;:12::i;:::-;21664:22;;:6;;;;;;;;;;;:22;;;21656:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22506:1:::1;22486:22;;:8;:22;;::::0;22478:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;22596:8;22567:38;;22588:6;;;;;;;;;;;22567:38;;;;;;;;;;;;22625:8;22616:6;;:17;;;;;;;;;;;;;;;;;;22397:244:::0;:::o;29879:24::-;;;;:::o;16496:181::-;16554:7;16574:9;16590:1;16586;:5;;;;:::i;:::-;16574:17;;16615:1;16610;:6;;16602:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;16668:1;16661:8;;;16496:181;;;;:::o;249:98::-;302:7;329:10;322:17;;249:98;:::o;15118:380::-;15271:1;15254:19;;:5;:19;;;15246:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15352:1;15333:21;;:7;:21;;;15325:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15436:6;15406:11;:18;15418:5;15406:18;;;;;;;;;;;;;;;:27;15425:7;15406:27;;;;;;;;;;;;;;;:36;;;;15474:7;15458:32;;15467:5;15458:32;;;15483:6;15458:32;;;;;;:::i;:::-;;;;;;;;15118:380;;;:::o;37430:3917::-;37578:1;37562:18;;:4;:18;;;37554:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37655:1;37641:16;;:2;:16;;;37633:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;37732:1;37722:6;:11;37719:92;;37750:28;37766:4;37772:2;37776:1;37750:15;:28::i;:::-;37793:7;;37719:92;37835:13;;;;;;;;;;;37831:136;;37872:19;:25;37892:4;37872:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;37901:19;:23;37921:2;37901:23;;;;;;;;;;;;;;;;;;;;;;;;;37872:52;37864:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;37831:136;37990:14;;;;;;;;;;;37987:1662;;;38050:7;:5;:7::i;:::-;38042:15;;:4;:15;;;;:49;;;;;38084:7;:5;:7::i;:::-;38078:13;;:2;:13;;;;38042:49;:86;;;;;38126:1;38112:16;;:2;:16;;;;38042:86;:128;;;;;38163:6;38149:21;;:2;:21;;;;38042:128;:158;;;;;38192:8;;;;;;;;;;;38191:9;38042:158;38020:1618;;;38374:20;;;;;;;;;;;38370:423;;;38428:7;:5;:7::i;:::-;38422:13;;:2;:13;;;;:47;;;;;38453:15;;;;;;;;;;;38439:30;;:2;:30;;;;38422:47;:79;;;;;38487:13;38473:28;;:2;:28;;;;38422:79;38418:356;;;38579:12;38537:28;:39;38566:9;38537:39;;;;;;;;;;;;;;;;:54;38529:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;38738:12;38696:28;:39;38725:9;38696:39;;;;;;;;;;;;;;;:54;;;;38418:356;38370:423;38861:25;:31;38887:4;38861:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;38897:31;:35;38929:2;38897:35;;;;;;;;;;;;;;;;;;;;;;;;;38896:36;38861:71;38857:766;;;38975:20;;38965:6;:30;;38957:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;39110:9;;39093:13;39103:2;39093:9;:13::i;:::-;39084:6;:22;;;;:::i;:::-;:35;;39076:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;38857:766;;;39228:25;:29;39254:2;39228:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;39262:31;:37;39294:4;39262:37;;;;;;;;;;;;;;;;;;;;;;;;;39261:38;39228:71;39224:399;;;39342:20;;39332:6;:30;;39324:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;39224:399;;;39468:31;:35;39500:2;39468:35;;;;;;;;;;;;;;;;;;;;;;;;;39464:159;;39562:9;;39545:13;39555:2;39545:9;:13::i;:::-;39536:6;:22;;;;:::i;:::-;:35;;39528:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;39464:159;39224:399;38857:766;38020:1618;37987:1662;39655:28;39686:24;39704:4;39686:9;:24::i;:::-;39655:55;;39731:12;39770:18;;39746:20;:42;;39731:57;;39819:7;:35;;;;;39843:11;;;;;;;;;;;39819:35;:61;;;;;39872:8;;;;;;;;;;;39871:9;39819:61;:110;;;;;39898:25;:31;39924:4;39898:31;;;;;;;;;;;;;;;;;;;;;;;;;39897:32;39819:110;:153;;;;;39947:19;:25;39967:4;39947:25;;;;;;;;;;;;;;;;;;;;;;;;;39946:26;39819:153;:194;;;;;39990:19;:23;40010:2;39990:23;;;;;;;;;;;;;;;;;;;;;;;;;39989:24;39819:194;39801:322;;;40051:4;40040:8;;:15;;;;;;;;;;;;;;;;;;40070:10;:8;:10::i;:::-;40106:5;40095:8;;:16;;;;;;;;;;;;;;;;;;39801:322;40135:12;40151:8;;;;;;;;;;;40150:9;40135:24;;40260:19;:25;40280:4;40260:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;40289:19;:23;40309:2;40289:23;;;;;;;;;;;;;;;;;;;;;;;;;40260:52;40257:99;;;40339:5;40329:15;;40257:99;40376:12;40467:7;40464:826;;;40518:25;:29;40544:2;40518:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;40567:1;40551:13;;:17;40518:50;40514:619;;;40595:35;40625:4;40595:25;40606:13;;40595:6;:10;;:25;;;;:::i;:::-;:29;;:35;;;;:::i;:::-;40588:42;;40697:13;;40678:16;;40671:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;40649:18;;:61;;;;;;;:::i;:::-;;;;;;;;40777:13;;40758:16;;40751:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;40729:18;;:61;;;;;;;:::i;:::-;;;;;;;;40514:619;;;40851:25;:31;40877:4;40851:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;40901:1;40886:12;;:16;40851:51;40848:285;;;40927:34;40956:4;40927:24;40938:12;;40927:6;:10;;:24;;;;:::i;:::-;:28;;:34;;;;:::i;:::-;40920:41;;41027:12;;41009:15;;41002:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;40980:18;;:59;;;;;;;:::i;:::-;;;;;;;;41105:12;;41087:15;;41080:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;41058:18;;:59;;;;;;;:::i;:::-;;;;;;;;40848:285;40514:619;41159:1;41152:4;:8;41149:93;;;41184:42;41200:4;41214;41221;41184:15;:42::i;:::-;41149:93;41274:4;41264:14;;;;;:::i;:::-;;;40464:826;41302:33;41318:4;41324:2;41328:6;41302:15;:33::i;:::-;37543:3804;;;;37430:3917;;;;:::o;17399:192::-;17485:7;17518:1;17513;:6;;17521:12;17505:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17545:9;17561:1;17557;:5;;;;:::i;:::-;17545:17;;17582:1;17575:8;;;17399:192;;;;;:::o;36810:260::-;36901:4;36893:12;;36950:5;36916:25;:31;36942:4;36916:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36966:38;36992:4;36998:5;36966:25;:38::i;:::-;37056:5;37022:40;;37050:4;37022:40;;;;;;;;;;;;36810:260;;:::o;12677:573::-;12835:1;12817:20;;:6;:20;;;12809:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12919:1;12898:23;;:9;:23;;;12890:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12974:47;12995:6;13003:9;13014:6;12974:20;:47::i;:::-;13054:71;13076:6;13054:71;;;;;;;;;;;;;;;;;:9;:17;13064:6;13054:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;13034:9;:17;13044:6;13034:17;;;;;;;;;;;;;;;:91;;;;13159:32;13184:6;13159:9;:20;13169:9;13159:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;13136:9;:20;13146:9;13136:20;;;;;;;;;;;;;;;:55;;;;13224:9;13207:35;;13216:6;13207:35;;;13235:6;13207:35;;;;;;:::i;:::-;;;;;;;;12677:573;;;:::o;42545:1363::-;42584:23;42610:24;42628:4;42610:9;:24::i;:::-;42584:50;;42645:12;42668:25;42717:18;;42696;;:39;;;;:::i;:::-;42668:67;;42778:1;42759:15;:20;:46;;;;42804:1;42783:17;:22;42759:46;42756:60;;;42808:7;;;;;42756:60;42885:23;42970:1;42950:17;42929:18;;42911:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;42885:86;;42982:26;43011:36;43031:15;43011;:19;;:36;;;;:::i;:::-;42982:65;;43068:25;43096:21;43068:49;;43130:36;43147:18;43130:16;:36::i;:::-;43188:18;43209:44;43235:17;43209:21;:25;;:44;;;;:::i;:::-;43188:65;;43274:23;43300:57;43339:17;43300:34;43315:18;;43300:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;43274:83;;43378:23;43417:15;43404:10;:28;;;;:::i;:::-;43378:54;;43474:1;43453:18;:22;;;;43507:1;43486:18;:22;;;;43550:1;43532:15;:19;:42;;;;;43573:1;43555:15;:19;43532:42;43529:210;;;43590:46;43603:15;43620;43590:12;:46::i;:::-;43656:71;43671:18;43691:15;43708:18;;43656:71;;;;;;;;:::i;:::-;;;;;;;;43529:210;43831:15;;;;;;;;;;;43823:29;;43860:15;43823:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43810:70;;;;;42573:1335;;;;;;;;;42545:1363;:::o;17850:471::-;17908:7;18158:1;18153;:6;18149:47;;18183:1;18176:8;;;;18149:47;18208:9;18224:1;18220;:5;;;;:::i;:::-;18208:17;;18253:1;18248;18244;:5;;;;:::i;:::-;:10;18236:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;18312:1;18305:8;;;17850:471;;;;;:::o;18797:132::-;18855:7;18882:39;18886:1;18889;18882:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;18875:46;;18797:132;;;;:::o;16101:125::-;;;;:::o;16960:136::-;17018:7;17045:43;17049:1;17052;17045:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;17038:50;;16960:136;;;;:::o;41361:601::-;41489:21;41527:1;41513:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41489:40;;41558:4;41540;41545:1;41540:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;41584:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41574:4;41579:1;41574:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;41619:62;41636:4;41651:15;;;;;;;;;;;41669:11;41619:8;:62::i;:::-;41720:15;;;;;;;;;;;:66;;;41801:11;41827:1;41871:4;41898;41918:15;41720:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41416:546;41361:601;:::o;41974:559::-;42122:62;42139:4;42154:15;;;;;;;;;;;42172:11;42122:8;:62::i;:::-;42227:15;;;;;;;;;;;:31;;;42266:9;42299:4;42319:11;42345:1;42388;42439:42;42497:15;42227:296;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;41974:559;;:::o;19425:278::-;19511:7;19543:1;19539;:5;19546:12;19531:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;19570:9;19586:1;19582;:5;;;;:::i;:::-;19570:17;;19694:1;19687:8;;;19425:278;;;;;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:99::-;1222:6;1256:5;1250:12;1240:22;;1170:99;;;:::o;1275:169::-;1359:11;1393:6;1388:3;1381:19;1433:4;1428:3;1424:14;1409:29;;1275:169;;;;:::o;1450:246::-;1531:1;1541:113;1555:6;1552:1;1549:13;1541:113;;;1640:1;1635:3;1631:11;1625:18;1621:1;1616:3;1612:11;1605:39;1577:2;1574:1;1570:10;1565:15;;1541:113;;;1688:1;1679:6;1674:3;1670:16;1663:27;1512:184;1450:246;;;:::o;1702:102::-;1743:6;1794:2;1790:7;1785:2;1778:5;1774:14;1770:28;1760:38;;1702:102;;;:::o;1810:377::-;1898:3;1926:39;1959:5;1926:39;:::i;:::-;1981:71;2045:6;2040:3;1981:71;:::i;:::-;1974:78;;2061:65;2119:6;2114:3;2107:4;2100:5;2096:16;2061:65;:::i;:::-;2151:29;2173:6;2151:29;:::i;:::-;2146:3;2142:39;2135:46;;1902:285;1810:377;;;;:::o;2193:313::-;2306:4;2344:2;2333:9;2329:18;2321:26;;2393:9;2387:4;2383:20;2379:1;2368:9;2364:17;2357:47;2421:78;2494:4;2485:6;2421:78;:::i;:::-;2413:86;;2193:313;;;;:::o;2512:126::-;2549:7;2589:42;2582:5;2578:54;2567:65;;2512:126;;;:::o;2644:96::-;2681:7;2710:24;2728:5;2710:24;:::i;:::-;2699:35;;2644:96;;;:::o;2746:122::-;2819:24;2837:5;2819:24;:::i;:::-;2812:5;2809:35;2799:63;;2858:1;2855;2848:12;2799:63;2746:122;:::o;2874:139::-;2920:5;2958:6;2945:20;2936:29;;2974:33;3001:5;2974:33;:::i;:::-;2874:139;;;;:::o;3019:474::-;3087:6;3095;3144:2;3132:9;3123:7;3119:23;3115:32;3112:119;;;3150:79;;:::i;:::-;3112:119;3270:1;3295:53;3340:7;3331:6;3320:9;3316:22;3295:53;:::i;:::-;3285:63;;3241:117;3397:2;3423:53;3468:7;3459:6;3448:9;3444:22;3423:53;:::i;:::-;3413:63;;3368:118;3019:474;;;;;:::o;3499:90::-;3533:7;3576:5;3569:13;3562:21;3551:32;;3499:90;;;:::o;3595:109::-;3676:21;3691:5;3676:21;:::i;:::-;3671:3;3664:34;3595:109;;:::o;3710:210::-;3797:4;3835:2;3824:9;3820:18;3812:26;;3848:65;3910:1;3899:9;3895:17;3886:6;3848:65;:::i;:::-;3710:210;;;;:::o;3926:118::-;4013:24;4031:5;4013:24;:::i;:::-;4008:3;4001:37;3926:118;;:::o;4050:222::-;4143:4;4181:2;4170:9;4166:18;4158:26;;4194:71;4262:1;4251:9;4247:17;4238:6;4194:71;:::i;:::-;4050:222;;;;:::o;4278:329::-;4337:6;4386:2;4374:9;4365:7;4361:23;4357:32;4354:119;;;4392:79;;:::i;:::-;4354:119;4512:1;4537:53;4582:7;4573:6;4562:9;4558:22;4537:53;:::i;:::-;4527:63;;4483:117;4278:329;;;;:::o;4613:::-;4672:6;4721:2;4709:9;4700:7;4696:23;4692:32;4689:119;;;4727:79;;:::i;:::-;4689:119;4847:1;4872:53;4917:7;4908:6;4897:9;4893:22;4872:53;:::i;:::-;4862:63;;4818:117;4613:329;;;;:::o;4948:60::-;4976:3;4997:5;4990:12;;4948:60;;;:::o;5014:142::-;5064:9;5097:53;5115:34;5124:24;5142:5;5124:24;:::i;:::-;5115:34;:::i;:::-;5097:53;:::i;:::-;5084:66;;5014:142;;;:::o;5162:126::-;5212:9;5245:37;5276:5;5245:37;:::i;:::-;5232:50;;5162:126;;;:::o;5294:153::-;5371:9;5404:37;5435:5;5404:37;:::i;:::-;5391:50;;5294:153;;;:::o;5453:185::-;5567:64;5625:5;5567:64;:::i;:::-;5562:3;5555:77;5453:185;;:::o;5644:276::-;5764:4;5802:2;5791:9;5787:18;5779:26;;5815:98;5910:1;5899:9;5895:17;5886:6;5815:98;:::i;:::-;5644:276;;;;:::o;5926:619::-;6003:6;6011;6019;6068:2;6056:9;6047:7;6043:23;6039:32;6036:119;;;6074:79;;:::i;:::-;6036:119;6194:1;6219:53;6264:7;6255:6;6244:9;6240:22;6219:53;:::i;:::-;6209:63;;6165:117;6321:2;6347:53;6392:7;6383:6;6372:9;6368:22;6347:53;:::i;:::-;6337:63;;6292:118;6449:2;6475:53;6520:7;6511:6;6500:9;6496:22;6475:53;:::i;:::-;6465:63;;6420:118;5926:619;;;;;:::o;6551:86::-;6586:7;6626:4;6619:5;6615:16;6604:27;;6551:86;;;:::o;6643:112::-;6726:22;6742:5;6726:22;:::i;:::-;6721:3;6714:35;6643:112;;:::o;6761:214::-;6850:4;6888:2;6877:9;6873:18;6865:26;;6901:67;6965:1;6954:9;6950:17;6941:6;6901:67;:::i;:::-;6761:214;;;;:::o;6981:118::-;7068:24;7086:5;7068:24;:::i;:::-;7063:3;7056:37;6981:118;;:::o;7105:222::-;7198:4;7236:2;7225:9;7221:18;7213:26;;7249:71;7317:1;7306:9;7302:17;7293:6;7249:71;:::i;:::-;7105:222;;;;:::o;7333:116::-;7403:21;7418:5;7403:21;:::i;:::-;7396:5;7393:32;7383:60;;7439:1;7436;7429:12;7383:60;7333:116;:::o;7455:133::-;7498:5;7536:6;7523:20;7514:29;;7552:30;7576:5;7552:30;:::i;:::-;7455:133;;;;:::o;7594:468::-;7659:6;7667;7716:2;7704:9;7695:7;7691:23;7687:32;7684:119;;;7722:79;;:::i;:::-;7684:119;7842:1;7867:53;7912:7;7903:6;7892:9;7888:22;7867:53;:::i;:::-;7857:63;;7813:117;7969:2;7995:50;8037:7;8028:6;8017:9;8013:22;7995:50;:::i;:::-;7985:60;;7940:115;7594:468;;;;;:::o;8068:323::-;8124:6;8173:2;8161:9;8152:7;8148:23;8144:32;8141:119;;;8179:79;;:::i;:::-;8141:119;8299:1;8324:50;8366:7;8357:6;8346:9;8342:22;8324:50;:::i;:::-;8314:60;;8270:114;8068:323;;;;:::o;8397:474::-;8465:6;8473;8522:2;8510:9;8501:7;8497:23;8493:32;8490:119;;;8528:79;;:::i;:::-;8490:119;8648:1;8673:53;8718:7;8709:6;8698:9;8694:22;8673:53;:::i;:::-;8663:63;;8619:117;8775:2;8801:53;8846:7;8837:6;8826:9;8822:22;8801:53;:::i;:::-;8791:63;;8746:118;8397:474;;;;;:::o;8877:182::-;9017:34;9013:1;9005:6;9001:14;8994:58;8877:182;:::o;9065:366::-;9207:3;9228:67;9292:2;9287:3;9228:67;:::i;:::-;9221:74;;9304:93;9393:3;9304:93;:::i;:::-;9422:2;9417:3;9413:12;9406:19;;9065:366;;;:::o;9437:419::-;9603:4;9641:2;9630:9;9626:18;9618:26;;9690:9;9684:4;9680:20;9676:1;9665:9;9661:17;9654:47;9718:131;9844:4;9718:131;:::i;:::-;9710:139;;9437:419;;;:::o;9862:180::-;9910:77;9907:1;9900:88;10007:4;10004:1;9997:15;10031:4;10028:1;10021:15;10048:191;10088:3;10107:20;10125:1;10107:20;:::i;:::-;10102:25;;10141:20;10159:1;10141:20;:::i;:::-;10136:25;;10184:1;10181;10177:9;10170:16;;10205:3;10202:1;10199:10;10196:36;;;10212:18;;:::i;:::-;10196:36;10048:191;;;;:::o;10245:180::-;10385:32;10381:1;10373:6;10369:14;10362:56;10245:180;:::o;10431:366::-;10573:3;10594:67;10658:2;10653:3;10594:67;:::i;:::-;10587:74;;10670:93;10759:3;10670:93;:::i;:::-;10788:2;10783:3;10779:12;10772:19;;10431:366;;;:::o;10803:419::-;10969:4;11007:2;10996:9;10992:18;10984:26;;11056:9;11050:4;11046:20;11042:1;11031:9;11027:17;11020:47;11084:131;11210:4;11084:131;:::i;:::-;11076:139;;10803:419;;;:::o;11228:180::-;11276:77;11273:1;11266:88;11373:4;11370:1;11363:15;11397:4;11394:1;11387:15;11414:320;11458:6;11495:1;11489:4;11485:12;11475:22;;11542:1;11536:4;11532:12;11563:18;11553:81;;11619:4;11611:6;11607:17;11597:27;;11553:81;11681:2;11673:6;11670:14;11650:18;11647:38;11644:84;;11700:18;;:::i;:::-;11644:84;11465:269;11414:320;;;:::o;11740:410::-;11780:7;11803:20;11821:1;11803:20;:::i;:::-;11798:25;;11837:20;11855:1;11837:20;:::i;:::-;11832:25;;11892:1;11889;11885:9;11914:30;11932:11;11914:30;:::i;:::-;11903:41;;12093:1;12084:7;12080:15;12077:1;12074:22;12054:1;12047:9;12027:83;12004:139;;12123:18;;:::i;:::-;12004:139;11788:362;11740:410;;;;:::o;12156:180::-;12204:77;12201:1;12194:88;12301:4;12298:1;12291:15;12325:4;12322:1;12315:15;12342:185;12382:1;12399:20;12417:1;12399:20;:::i;:::-;12394:25;;12433:20;12451:1;12433:20;:::i;:::-;12428:25;;12472:1;12462:35;;12477:18;;:::i;:::-;12462:35;12519:1;12516;12512:9;12507:14;;12342:185;;;;:::o;12533:232::-;12673:34;12669:1;12661:6;12657:14;12650:58;12742:15;12737:2;12729:6;12725:15;12718:40;12533:232;:::o;12771:366::-;12913:3;12934:67;12998:2;12993:3;12934:67;:::i;:::-;12927:74;;13010:93;13099:3;13010:93;:::i;:::-;13128:2;13123:3;13119:12;13112:19;;12771:366;;;:::o;13143:419::-;13309:4;13347:2;13336:9;13332:18;13324:26;;13396:9;13390:4;13386:20;13382:1;13371:9;13367:17;13360:47;13424:131;13550:4;13424:131;:::i;:::-;13416:139;;13143:419;;;:::o;13568:180::-;13616:77;13613:1;13606:88;13713:4;13710:1;13703:15;13737:4;13734:1;13727:15;13754:143;13811:5;13842:6;13836:13;13827:22;;13858:33;13885:5;13858:33;:::i;:::-;13754:143;;;;:::o;13903:351::-;13973:6;14022:2;14010:9;14001:7;13997:23;13993:32;13990:119;;;14028:79;;:::i;:::-;13990:119;14148:1;14173:64;14229:7;14220:6;14209:9;14205:22;14173:64;:::i;:::-;14163:74;;14119:128;13903:351;;;;:::o;14260:180::-;14308:77;14305:1;14298:88;14405:4;14402:1;14395:15;14429:4;14426:1;14419:15;14446:85;14491:7;14520:5;14509:16;;14446:85;;;:::o;14537:158::-;14595:9;14628:61;14646:42;14655:32;14681:5;14655:32;:::i;:::-;14646:42;:::i;:::-;14628:61;:::i;:::-;14615:74;;14537:158;;;:::o;14701:147::-;14796:45;14835:5;14796:45;:::i;:::-;14791:3;14784:58;14701:147;;:::o;14854:114::-;14921:6;14955:5;14949:12;14939:22;;14854:114;;;:::o;14974:184::-;15073:11;15107:6;15102:3;15095:19;15147:4;15142:3;15138:14;15123:29;;14974:184;;;;:::o;15164:132::-;15231:4;15254:3;15246:11;;15284:4;15279:3;15275:14;15267:22;;15164:132;;;:::o;15302:108::-;15379:24;15397:5;15379:24;:::i;:::-;15374:3;15367:37;15302:108;;:::o;15416:179::-;15485:10;15506:46;15548:3;15540:6;15506:46;:::i;:::-;15584:4;15579:3;15575:14;15561:28;;15416:179;;;;:::o;15601:113::-;15671:4;15703;15698:3;15694:14;15686:22;;15601:113;;;:::o;15750:732::-;15869:3;15898:54;15946:5;15898:54;:::i;:::-;15968:86;16047:6;16042:3;15968:86;:::i;:::-;15961:93;;16078:56;16128:5;16078:56;:::i;:::-;16157:7;16188:1;16173:284;16198:6;16195:1;16192:13;16173:284;;;16274:6;16268:13;16301:63;16360:3;16345:13;16301:63;:::i;:::-;16294:70;;16387:60;16440:6;16387:60;:::i;:::-;16377:70;;16233:224;16220:1;16217;16213:9;16208:14;;16173:284;;;16177:14;16473:3;16466:10;;15874:608;;;15750:732;;;;:::o;16488:720::-;16723:4;16761:3;16750:9;16746:19;16738:27;;16775:79;16851:1;16840:9;16836:17;16827:6;16775:79;:::i;:::-;16901:9;16895:4;16891:20;16886:2;16875:9;16871:18;16864:48;16929:108;17032:4;17023:6;16929:108;:::i;:::-;16921:116;;17047:72;17115:2;17104:9;17100:18;17091:6;17047:72;:::i;:::-;17129;17197:2;17186:9;17182:18;17173:6;17129:72;:::i;:::-;16488:720;;;;;;;:::o;17214:147::-;17315:11;17352:3;17337:18;;17214:147;;;;:::o;17367:114::-;;:::o;17487:398::-;17646:3;17667:83;17748:1;17743:3;17667:83;:::i;:::-;17660:90;;17759:93;17848:3;17759:93;:::i;:::-;17877:1;17872:3;17868:11;17861:18;;17487:398;;;:::o;17891:379::-;18075:3;18097:147;18240:3;18097:147;:::i;:::-;18090:154;;18261:3;18254:10;;17891:379;;;:::o;18276:168::-;18416:20;18412:1;18404:6;18400:14;18393:44;18276:168;:::o;18450:366::-;18592:3;18613:67;18677:2;18672:3;18613:67;:::i;:::-;18606:74;;18689:93;18778:3;18689:93;:::i;:::-;18807:2;18802:3;18798:12;18791:19;;18450:366;;;:::o;18822:419::-;18988:4;19026:2;19015:9;19011:18;19003:26;;19075:9;19069:4;19065:20;19061:1;19050:9;19046:17;19039:47;19103:131;19229:4;19103:131;:::i;:::-;19095:139;;18822:419;;;:::o;19247:289::-;19387:34;19383:1;19375:6;19371:14;19364:58;19456:34;19451:2;19443:6;19439:15;19432:59;19525:3;19520:2;19512:6;19508:15;19501:28;19247:289;:::o;19542:366::-;19684:3;19705:67;19769:2;19764:3;19705:67;:::i;:::-;19698:74;;19781:93;19870:3;19781:93;:::i;:::-;19899:2;19894:3;19890:12;19883:19;;19542:366;;;:::o;19914:419::-;20080:4;20118:2;20107:9;20103:18;20095:26;;20167:9;20161:4;20157:20;20153:1;20142:9;20138:17;20131:47;20195:131;20321:4;20195:131;:::i;:::-;20187:139;;19914:419;;;:::o;20339:221::-;20479:34;20475:1;20467:6;20463:14;20456:58;20548:4;20543:2;20535:6;20531:15;20524:29;20339:221;:::o;20566:366::-;20708:3;20729:67;20793:2;20788:3;20729:67;:::i;:::-;20722:74;;20805:93;20894:3;20805:93;:::i;:::-;20923:2;20918:3;20914:12;20907:19;;20566:366;;;:::o;20938:419::-;21104:4;21142:2;21131:9;21127:18;21119:26;;21191:9;21185:4;21181:20;21177:1;21166:9;21162:17;21155:47;21219:131;21345:4;21219:131;:::i;:::-;21211:139;;20938:419;;;:::o;21363:233::-;21503:34;21499:1;21491:6;21487:14;21480:58;21572:16;21567:2;21559:6;21555:15;21548:41;21363:233;:::o;21602:366::-;21744:3;21765:67;21829:2;21824:3;21765:67;:::i;:::-;21758:74;;21841:93;21930:3;21841:93;:::i;:::-;21959:2;21954:3;21950:12;21943:19;;21602:366;;;:::o;21974:419::-;22140:4;22178:2;22167:9;22163:18;22155:26;;22227:9;22221:4;22217:20;22213:1;22202:9;22198:17;22191:47;22255:131;22381:4;22255:131;:::i;:::-;22247:139;;21974:419;;;:::o;22399:225::-;22539:34;22535:1;22527:6;22523:14;22516:58;22608:8;22603:2;22595:6;22591:15;22584:33;22399:225;:::o;22630:366::-;22772:3;22793:67;22857:2;22852:3;22793:67;:::i;:::-;22786:74;;22869:93;22958:3;22869:93;:::i;:::-;22987:2;22982:3;22978:12;22971:19;;22630:366;;;:::o;23002:419::-;23168:4;23206:2;23195:9;23191:18;23183:26;;23255:9;23249:4;23245:20;23241:1;23230:9;23226:17;23219:47;23283:131;23409:4;23283:131;:::i;:::-;23275:139;;23002:419;;;:::o;23427:177::-;23567:29;23563:1;23555:6;23551:14;23544:53;23427:177;:::o;23610:366::-;23752:3;23773:67;23837:2;23832:3;23773:67;:::i;:::-;23766:74;;23849:93;23938:3;23849:93;:::i;:::-;23967:2;23962:3;23958:12;23951:19;;23610:366;;;:::o;23982:419::-;24148:4;24186:2;24175:9;24171:18;24163:26;;24235:9;24229:4;24225:20;24221:1;24210:9;24206:17;24199:47;24263:131;24389:4;24263:131;:::i;:::-;24255:139;;23982:419;;;:::o;24407:223::-;24547:34;24543:1;24535:6;24531:14;24524:58;24616:6;24611:2;24603:6;24599:15;24592:31;24407:223;:::o;24636:366::-;24778:3;24799:67;24863:2;24858:3;24799:67;:::i;:::-;24792:74;;24875:93;24964:3;24875:93;:::i;:::-;24993:2;24988:3;24984:12;24977:19;;24636:366;;;:::o;25008:419::-;25174:4;25212:2;25201:9;25197:18;25189:26;;25261:9;25255:4;25251:20;25247:1;25236:9;25232:17;25225:47;25289:131;25415:4;25289:131;:::i;:::-;25281:139;;25008:419;;;:::o;25433:221::-;25573:34;25569:1;25561:6;25557:14;25550:58;25642:4;25637:2;25629:6;25625:15;25618:29;25433:221;:::o;25660:366::-;25802:3;25823:67;25887:2;25882:3;25823:67;:::i;:::-;25816:74;;25899:93;25988:3;25899:93;:::i;:::-;26017:2;26012:3;26008:12;26001:19;;25660:366;;;:::o;26032:419::-;26198:4;26236:2;26225:9;26221:18;26213:26;;26285:9;26279:4;26275:20;26271:1;26260:9;26256:17;26249:47;26313:131;26439:4;26313:131;:::i;:::-;26305:139;;26032:419;;;:::o;26457:224::-;26597:34;26593:1;26585:6;26581:14;26574:58;26666:7;26661:2;26653:6;26649:15;26642:32;26457:224;:::o;26687:366::-;26829:3;26850:67;26914:2;26909:3;26850:67;:::i;:::-;26843:74;;26926:93;27015:3;26926:93;:::i;:::-;27044:2;27039:3;27035:12;27028:19;;26687:366;;;:::o;27059:419::-;27225:4;27263:2;27252:9;27248:18;27240:26;;27312:9;27306:4;27302:20;27298:1;27287:9;27283:17;27276:47;27340:131;27466:4;27340:131;:::i;:::-;27332:139;;27059:419;;;:::o;27484:222::-;27624:34;27620:1;27612:6;27608:14;27601:58;27693:5;27688:2;27680:6;27676:15;27669:30;27484:222;:::o;27712:366::-;27854:3;27875:67;27939:2;27934:3;27875:67;:::i;:::-;27868:74;;27951:93;28040:3;27951:93;:::i;:::-;28069:2;28064:3;28060:12;28053:19;;27712:366;;;:::o;28084:419::-;28250:4;28288:2;28277:9;28273:18;28265:26;;28337:9;28331:4;28327:20;28323:1;28312:9;28308:17;28301:47;28365:131;28491:4;28365:131;:::i;:::-;28357:139;;28084:419;;;:::o;28509:176::-;28649:28;28645:1;28637:6;28633:14;28626:52;28509:176;:::o;28691:366::-;28833:3;28854:67;28918:2;28913:3;28854:67;:::i;:::-;28847:74;;28930:93;29019:3;28930:93;:::i;:::-;29048:2;29043:3;29039:12;29032:19;;28691:366;;;:::o;29063:419::-;29229:4;29267:2;29256:9;29252:18;29244:26;;29316:9;29310:4;29306:20;29302:1;29291:9;29287:17;29280:47;29344:131;29470:4;29344:131;:::i;:::-;29336:139;;29063:419;;;:::o;29488:297::-;29628:34;29624:1;29616:6;29612:14;29605:58;29697:34;29692:2;29684:6;29680:15;29673:59;29766:11;29761:2;29753:6;29749:15;29742:36;29488:297;:::o;29791:366::-;29933:3;29954:67;30018:2;30013:3;29954:67;:::i;:::-;29947:74;;30030:93;30119:3;30030:93;:::i;:::-;30148:2;30143:3;30139:12;30132:19;;29791:366;;;:::o;30163:419::-;30329:4;30367:2;30356:9;30352:18;30344:26;;30416:9;30410:4;30406:20;30402:1;30391:9;30387:17;30380:47;30444:131;30570:4;30444:131;:::i;:::-;30436:139;;30163:419;;;:::o;30588:240::-;30728:34;30724:1;30716:6;30712:14;30705:58;30797:23;30792:2;30784:6;30780:15;30773:48;30588:240;:::o;30834:366::-;30976:3;30997:67;31061:2;31056:3;30997:67;:::i;:::-;30990:74;;31073:93;31162:3;31073:93;:::i;:::-;31191:2;31186:3;31182:12;31175:19;;30834:366;;;:::o;31206:419::-;31372:4;31410:2;31399:9;31395:18;31387:26;;31459:9;31453:4;31449:20;31445:1;31434:9;31430:17;31423:47;31487:131;31613:4;31487:131;:::i;:::-;31479:139;;31206:419;;;:::o;31631:177::-;31771:29;31767:1;31759:6;31755:14;31748:53;31631:177;:::o;31814:366::-;31956:3;31977:67;32041:2;32036:3;31977:67;:::i;:::-;31970:74;;32053:93;32142:3;32053:93;:::i;:::-;32171:2;32166:3;32162:12;32155:19;;31814:366;;;:::o;32186:419::-;32352:4;32390:2;32379:9;32375:18;32367:26;;32439:9;32433:4;32429:20;32425:1;32414:9;32410:17;32403:47;32467:131;32593:4;32467:131;:::i;:::-;32459:139;;32186:419;;;:::o;32611:241::-;32751:34;32747:1;32739:6;32735:14;32728:58;32820:24;32815:2;32807:6;32803:15;32796:49;32611:241;:::o;32858:366::-;33000:3;33021:67;33085:2;33080:3;33021:67;:::i;:::-;33014:74;;33097:93;33186:3;33097:93;:::i;:::-;33215:2;33210:3;33206:12;33199:19;;32858:366;;;:::o;33230:419::-;33396:4;33434:2;33423:9;33419:18;33411:26;;33483:9;33477:4;33473:20;33469:1;33458:9;33454:17;33447:47;33511:131;33637:4;33511:131;:::i;:::-;33503:139;;33230:419;;;:::o;33655:194::-;33695:4;33715:20;33733:1;33715:20;:::i;:::-;33710:25;;33749:20;33767:1;33749:20;:::i;:::-;33744:25;;33793:1;33790;33786:9;33778:17;;33817:1;33811:4;33808:11;33805:37;;;33822:18;;:::i;:::-;33805:37;33655:194;;;;:::o;33855:442::-;34004:4;34042:2;34031:9;34027:18;34019:26;;34055:71;34123:1;34112:9;34108:17;34099:6;34055:71;:::i;:::-;34136:72;34204:2;34193:9;34189:18;34180:6;34136:72;:::i;:::-;34218;34286:2;34275:9;34271:18;34262:6;34218:72;:::i;:::-;33855:442;;;;;;:::o;34303:220::-;34443:34;34439:1;34431:6;34427:14;34420:58;34512:3;34507:2;34499:6;34495:15;34488:28;34303:220;:::o;34529:366::-;34671:3;34692:67;34756:2;34751:3;34692:67;:::i;:::-;34685:74;;34768:93;34857:3;34768:93;:::i;:::-;34886:2;34881:3;34877:12;34870:19;;34529:366;;;:::o;34901:419::-;35067:4;35105:2;35094:9;35090:18;35082:26;;35154:9;35148:4;35144:20;35140:1;35129:9;35125:17;35118:47;35182:131;35308:4;35182:131;:::i;:::-;35174:139;;34901:419;;;:::o;35326:831::-;35589:4;35627:3;35616:9;35612:19;35604:27;;35641:71;35709:1;35698:9;35694:17;35685:6;35641:71;:::i;:::-;35722:80;35798:2;35787:9;35783:18;35774:6;35722:80;:::i;:::-;35849:9;35843:4;35839:20;35834:2;35823:9;35819:18;35812:48;35877:108;35980:4;35971:6;35877:108;:::i;:::-;35869:116;;35995:72;36063:2;36052:9;36048:18;36039:6;35995:72;:::i;:::-;36077:73;36145:3;36134:9;36130:19;36121:6;36077:73;:::i;:::-;35326:831;;;;;;;;:::o;36163:807::-;36412:4;36450:3;36439:9;36435:19;36427:27;;36464:71;36532:1;36521:9;36517:17;36508:6;36464:71;:::i;:::-;36545:72;36613:2;36602:9;36598:18;36589:6;36545:72;:::i;:::-;36627:80;36703:2;36692:9;36688:18;36679:6;36627:80;:::i;:::-;36717;36793:2;36782:9;36778:18;36769:6;36717:80;:::i;:::-;36807:73;36875:3;36864:9;36860:19;36851:6;36807:73;:::i;:::-;36890;36958:3;36947:9;36943:19;36934:6;36890:73;:::i;:::-;36163:807;;;;;;;;;:::o;36976:143::-;37033:5;37064:6;37058:13;37049:22;;37080:33;37107:5;37080:33;:::i;:::-;36976:143;;;;:::o;37125:663::-;37213:6;37221;37229;37278:2;37266:9;37257:7;37253:23;37249:32;37246:119;;;37284:79;;:::i;:::-;37246:119;37404:1;37429:64;37485:7;37476:6;37465:9;37461:22;37429:64;:::i;:::-;37419:74;;37375:128;37542:2;37568:64;37624:7;37615:6;37604:9;37600:22;37568:64;:::i;:::-;37558:74;;37513:129;37681:2;37707:64;37763:7;37754:6;37743:9;37739:22;37707:64;:::i;:::-;37697:74;;37652:129;37125:663;;;;;:::o

Swarm Source

ipfs://eb011c6d2eef6a03e00dd0fd6f8253334a1f1acbbed9a3b98bc2e6359fd121ef
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.