ETH Price: $2,685.90 (+5.01%)
Gas: 3 Gwei

Token

LOL Token (LOL)
 

Overview

Max Total Supply

100,000,000 LOL

Holders

27

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,000,000 LOL

Value
$0.00
0x23172e489695e3e59097f9b9d002eea788c7cfe8
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-10-10
*/

/**
 *   TG: https://t.me/loltokenofficial1
 *   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 / 50; //2% at default
        swapTokensAtAmount = totalSupply / 500; //0.2% of tokens at default
        maxWallet = totalSupply / 50; //2% at default

        marketingSellFee = 40; 
        liquiditySellFee = 10;
        totalSellFees = marketingSellFee + liquiditySellFee;
        
        marketingBuyFee = 40;
        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"}]

60a06040526000600d556000600e556001600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055506000600f60026101000a81548160ff0219169083151502179055506001601160006101000a81548160ff0219169083151502179055503480156200008757600080fd5b506040518060400160405280600981526020017f4c4f4c20546f6b656e00000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4c4f4c0000000000000000000000000000000000000000000000000000000000815250816003908162000105919062000ff9565b50806004908162000117919062000ff9565b50505060006200012c6200059860201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35060007292f3e7fa9b89bd60371d1326afba4d8a81783d905060006a52b7d2dcc80cd2e400000090506032816200020291906200113e565b600a819055506101f4816200021891906200113e565b600b819055506032816200022d91906200113e565b600c819055506028601381905550600a60148190555060145460135462000255919062001176565b6012819055506028601881905550600a6019819055506019546018546200027d919062001176565b601781905550735a430b8da68092d8fdc67fbeb84864be7b51cd63600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200033f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200036591906200121b565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003cd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003f391906200121b565b6040518363ffffffff1660e01b8152600401620004129291906200125e565b6020604051808303816000875af115801562000432573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200045891906200121b565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1681525050620004e2816001620005a060201b60201c565b620004f58460016200065760201b60201c565b620005083060016200065760201b60201c565b6200051d61dead60016200065760201b60201c565b62000530846001620007a460201b60201c565b62000543306001620007a460201b60201c565b62000556826001620007a460201b60201c565b6200056b61dead6001620007a460201b60201c565b6200057d84846200099560201b60201c565b6200058e8462000b4360201b60201c565b50505050620014f2565b600033905090565b6001905080602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200060d8282620007a460201b60201c565b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b620006676200059860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620006f9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006f090620012ec565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200079891906200132b565b60405180910390a25050565b620007b46200059860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000846576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200083d90620012ec565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001602160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f575f9d01836c9206322151b9e9ec3f2b77b87e71176933b9b44d2d732f768d95602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166040516200098991906200132b565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009fe9062001398565b60405180910390fd5b62000a1b6000838362000d1760201b60201c565b62000a378160025462000d1c60201b620028b61790919060201c565b60028190555062000a95816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000d1c60201b620028b61790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b379190620013cb565b60405180910390a35050565b62000b536200059860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000be5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000bdc90620012ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000c57576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c4e906200145e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b505050565b600080828462000d2d919062001176565b90508381101562000d75576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d6c90620014d0565b60405180910390fd5b8091505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000e0157607f821691505b60208210810362000e175762000e1662000db9565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000e817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000e42565b62000e8d868362000e42565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000eda62000ed462000ece8462000ea5565b62000eaf565b62000ea5565b9050919050565b6000819050919050565b62000ef68362000eb9565b62000f0e62000f058262000ee1565b84845462000e4f565b825550505050565b600090565b62000f2562000f16565b62000f3281848462000eeb565b505050565b5b8181101562000f5a5762000f4e60008262000f1b565b60018101905062000f38565b5050565b601f82111562000fa95762000f738162000e1d565b62000f7e8462000e32565b8101602085101562000f8e578190505b62000fa662000f9d8562000e32565b83018262000f37565b50505b505050565b600082821c905092915050565b600062000fce6000198460080262000fae565b1980831691505092915050565b600062000fe9838362000fbb565b9150826002028217905092915050565b620010048262000d7f565b67ffffffffffffffff81111562001020576200101f62000d8a565b5b6200102c825462000de8565b6200103982828562000f5e565b600060209050601f8311600181146200107157600084156200105c578287015190505b62001068858262000fdb565b865550620010d8565b601f198416620010818662000e1d565b60005b82811015620010ab5784890151825560018201915060208501945060208101905062001084565b86831015620010cb5784890151620010c7601f89168262000fbb565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200114b8262000ea5565b9150620011588362000ea5565b9250826200116b576200116a620010e0565b5b828204905092915050565b6000620011838262000ea5565b9150620011908362000ea5565b9250828201905080821115620011ab57620011aa6200110f565b5b92915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620011e382620011b6565b9050919050565b620011f581620011d6565b81146200120157600080fd5b50565b6000815190506200121581620011ea565b92915050565b600060208284031215620012345762001233620011b1565b5b6000620012448482850162001204565b91505092915050565b6200125881620011d6565b82525050565b60006040820190506200127560008301856200124d565b6200128460208301846200124d565b9392505050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620012d46020836200128b565b9150620012e1826200129c565b602082019050919050565b600060208201905081810360008301526200130781620012c5565b9050919050565b60008115159050919050565b62001325816200130e565b82525050565b60006020820190506200134260008301846200131a565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001380601f836200128b565b91506200138d8262001348565b602082019050919050565b60006020820190508181036000830152620013b38162001371565b9050919050565b620013c58162000ea5565b82525050565b6000602082019050620013e26000830184620013ba565b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000620014466026836200128b565b91506200145382620013e8565b604082019050919050565b60006020820190508181036000830152620014798162001437565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000620014b8601b836200128b565b9150620014c58262001480565b602082019050919050565b60006020820190508181036000830152620014eb81620014a9565b9050919050565b6080516155e06200151c6000396000818161157101528181611fd70152612e9c01526155e06000f3fe6080604052600436106103905760003560e01c80637fa787ba116101dc578063c18bc19511610102578063e08c38b2116100a0578063ee40166e1161006f578063ee40166e14610d3d578063ef8700e514610d68578063f2fde38b14610d93578063f8b45b0514610dbc57610397565b8063e08c38b214610c91578063e2f4560514610cbc578063e7f444b314610ce7578063e884f26014610d1257610397565b8063ccb61358116100dc578063ccb6135814610bd5578063d0a3981414610c00578063d257b34f14610c2b578063dd62ed3e14610c5457610397565b8063c18bc19514610b56578063c876d0b914610b7f578063c8c8ebe414610baa57610397565b8063a457c2d71161017a578063b9e9370011610149578063b9e9370014610aac578063bbc0c74214610ad7578063c024666814610b02578063c04a541414610b2b57610397565b8063a457c2d7146109ca578063a9059cbb14610a07578063b071787b14610a44578063b62496f514610a6f57610397565b80638da5cb5b116101b65780638da5cb5b14610922578063924de9b71461094d57806395d89b41146109765780639a7a23d6146109a157610397565b80637fa787ba146108c95780638a8c523c146108e05780638d5985d3146108f757610397565b80633f3539ef116102c1578063703baa711161025f5780637571336a1161022e5780637571336a1461081f57806375f0a8741461084857806378b3ac70146108735780637be408611461089e57610397565b8063703baa711461077557806370a08231146107a0578063715018a6146107dd578063751039fc146107f457610397565b80634fbee1931161029b5780634fbee193146106b957806366ca9b83146106f6578063680789521461071f5780636ddd17131461074a57610397565b80633f3539ef1461063a57806349bd5a5e146106635780634a62bb651461068e57610397565b80631694505e1161032e5780631f3fed8f116103085780631f3fed8f1461056a57806323b872dd14610595578063313ce567146105d257806339509351146105fd57610397565b80631694505e146104e957806318160ddd146105145780631a8145bb1461053f57610397565b8063099d0d301161036a578063099d0d301461042d5780630f4432e314610458578063106b5da11461048357806310d5de53146104ac57610397565b806302dbd8f81461039c57806306fdde03146103c5578063095ea7b3146103f057610397565b3661039757005b600080fd5b3480156103a857600080fd5b506103c360048036038101906103be919061418a565b610de7565b005b3480156103d157600080fd5b506103da610eec565b6040516103e7919061425a565b60405180910390f35b3480156103fc57600080fd5b50610417600480360381019061041291906142da565b610f7e565b6040516104249190614335565b60405180910390f35b34801561043957600080fd5b50610442610f9c565b60405161044f919061435f565b60405180910390f35b34801561046457600080fd5b5061046d610fa2565b60405161047a919061435f565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a5919061437a565b610fa8565b005b3480156104b857600080fd5b506104d360048036038101906104ce91906143a7565b6110d0565b6040516104e09190614335565b60405180910390f35b3480156104f557600080fd5b506104fe6110f0565b60405161050b9190614433565b60405180910390f35b34801561052057600080fd5b50610529611116565b604051610536919061435f565b60405180910390f35b34801561054b57600080fd5b50610554611120565b604051610561919061435f565b60405180910390f35b34801561057657600080fd5b5061057f611126565b60405161058c919061435f565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b7919061444e565b61112c565b6040516105c99190614335565b60405180910390f35b3480156105de57600080fd5b506105e7611205565b6040516105f491906144bd565b60405180910390f35b34801561060957600080fd5b50610624600480360381019061061f91906142da565b61120e565b6040516106319190614335565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c919061437a565b6112c1565b005b34801561066f57600080fd5b5061067861156f565b60405161068591906144e7565b60405180910390f35b34801561069a57600080fd5b506106a3611593565b6040516106b09190614335565b60405180910390f35b3480156106c557600080fd5b506106e060048036038101906106db91906143a7565b6115a6565b6040516106ed9190614335565b60405180910390f35b34801561070257600080fd5b5061071d6004803603810190610718919061418a565b6115fc565b005b34801561072b57600080fd5b50610734611701565b604051610741919061435f565b60405180910390f35b34801561075657600080fd5b5061075f611707565b60405161076c9190614335565b60405180910390f35b34801561078157600080fd5b5061078a61171a565b604051610797919061435f565b60405180910390f35b3480156107ac57600080fd5b506107c760048036038101906107c291906143a7565b611720565b6040516107d4919061435f565b60405180910390f35b3480156107e957600080fd5b506107f2611768565b005b34801561080057600080fd5b506108096118c0565b6040516108169190614335565b60405180910390f35b34801561082b57600080fd5b506108466004803603810190610841919061452e565b611996565b005b34801561085457600080fd5b5061085d611b7a565b60405161086a91906144e7565b60405180910390f35b34801561087f57600080fd5b50610888611ba0565b604051610895919061435f565b60405180910390f35b3480156108aa57600080fd5b506108b3611ba6565b6040516108c0919061435f565b60405180910390f35b3480156108d557600080fd5b506108de611bac565b005b3480156108ec57600080fd5b506108f5611cf2565b005b34801561090357600080fd5b5061090c611dc8565b604051610919919061435f565b60405180910390f35b34801561092e57600080fd5b50610937611dce565b60405161094491906144e7565b60405180910390f35b34801561095957600080fd5b50610974600480360381019061096f919061456e565b611df8565b005b34801561098257600080fd5b5061098b611eac565b604051610998919061425a565b60405180910390f35b3480156109ad57600080fd5b506109c860048036038101906109c3919061452e565b611f3e565b005b3480156109d657600080fd5b506109f160048036038101906109ec91906142da565b612071565b6040516109fe9190614335565b60405180910390f35b348015610a1357600080fd5b50610a2e6004803603810190610a2991906142da565b61213e565b604051610a3b9190614335565b60405180910390f35b348015610a5057600080fd5b50610a5961215c565b604051610a6691906144e7565b60405180910390f35b348015610a7b57600080fd5b50610a966004803603810190610a9191906143a7565b612182565b604051610aa39190614335565b60405180910390f35b348015610ab857600080fd5b50610ac16121a2565b604051610ace919061435f565b60405180910390f35b348015610ae357600080fd5b50610aec6121a8565b604051610af99190614335565b60405180910390f35b348015610b0e57600080fd5b50610b296004803603810190610b24919061452e565b6121bb565b005b348015610b3757600080fd5b50610b406122fb565b604051610b4d91906144e7565b60405180910390f35b348015610b6257600080fd5b50610b7d6004803603810190610b78919061437a565b612321565b005b348015610b8b57600080fd5b50610b94612449565b604051610ba19190614335565b60405180910390f35b348015610bb657600080fd5b50610bbf61245c565b604051610bcc919061435f565b60405180910390f35b348015610be157600080fd5b50610bea612462565b604051610bf7919061435f565b60405180910390f35b348015610c0c57600080fd5b50610c15612468565b604051610c22919061435f565b60405180910390f35b348015610c3757600080fd5b50610c526004803603810190610c4d919061437a565b61246e565b005b348015610c6057600080fd5b50610c7b6004803603810190610c76919061459b565b61258a565b604051610c88919061435f565b60405180910390f35b348015610c9d57600080fd5b50610ca6612611565b604051610cb3919061435f565b60405180910390f35b348015610cc857600080fd5b50610cd1612617565b604051610cde919061435f565b60405180910390f35b348015610cf357600080fd5b50610cfc61261d565b604051610d09919061435f565b60405180910390f35b348015610d1e57600080fd5b50610d27612623565b604051610d349190614335565b60405180910390f35b348015610d4957600080fd5b50610d526126de565b604051610d5f919061435f565b60405180910390f35b348015610d7457600080fd5b50610d7d6126e4565b604051610d8a919061435f565b60405180910390f35b348015610d9f57600080fd5b50610dba6004803603810190610db591906143a7565b6126ea565b005b348015610dc857600080fd5b50610dd16128b0565b604051610dde919061435f565b60405180910390f35b610def612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7590614627565b60405180910390fd5b8160138190555080601481905550601454601354610e9c9190614676565b60128190555060646012541115610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf906146f6565b60405180910390fd5b5050565b606060038054610efb90614745565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2790614745565b8015610f745780601f10610f4957610100808354040283529160200191610f74565b820191906000526020600020905b815481529060010190602001808311610f5757829003601f168201915b5050505050905090565b6000610f92610f8b612914565b848461291c565b6001905092915050565b60145481565b600d5481565b610fb0612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461103f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103690614627565b60405180910390fd5b670de0b6b3a764000060646001611054611116565b61105e9190614776565b61106891906147e7565b61107291906147e7565b81116110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa9061488a565b60405180910390fd5b670de0b6b3a7640000816110c79190614776565b600a8190555050565b60216020528060005260406000206000915054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b601f5481565b601c5481565b6000611139848484612ae5565b6111fa84611145612914565b6111f58560405180606001604052806028815260200161555e60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006111ab612914565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461371a9092919063ffffffff16565b61291c565b600190509392505050565b60006012905090565b60006112b761121b612914565b846112b2856001600061122c612914565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546128b690919063ffffffff16565b61291c565b6001905092915050565b6112c9612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134f90614627565b60405180910390fd5b6000600267ffffffffffffffff811115611375576113746148aa565b5b6040519080825280602002602001820160405280156113a35781602001602082028036833780820191505090505b509050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611413573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061143791906148ee565b8160008151811061144b5761144a61491b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050308160018151811061149a5761149961491b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b6f9de958360008461dead426040518663ffffffff1660e01b81526004016115399493929190614a43565b6000604051808303818588803b15801561155257600080fd5b505af1158015611566573d6000803e3d6000fd5b50505050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600f60009054906101000a900460ff1681565b6000602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611604612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168a90614627565b60405180910390fd5b81601881905550806019819055506019546018546116b19190614676565b601781905550606460175411156116fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f4906146f6565b60405180910390fd5b5050565b60185481565b600f60029054906101000a900460ff1681565b601a5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611770612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f690614627565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006118ca612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611959576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195090614627565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506000601160006101000a81548160ff0219169083151502179055506001905090565b61199e612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2490614627565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001602160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f575f9d01836c9206322151b9e9ec3f2b77b87e71176933b9b44d2d732f768d95602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16604051611b6e9190614335565b60405180910390a25050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601b5481565b60165481565b611bb4612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3a90614627565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611c6990614ac0565b60006040518083038185875af1925050503d8060008114611ca6576040519150601f19603f3d011682016040523d82523d6000602084013e611cab565b606091505b5050905080611cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce690614b21565b60405180910390fd5b50565b611cfa612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8090614627565b60405180910390fd5b6001600f60016101000a81548160ff0219169083151502179055506001600f60026101000a81548160ff02191690831515021790555043600e81905550565b601d5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611e00612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8690614627565b60405180910390fd5b80600f60026101000a81548160ff02191690831515021790555050565b606060048054611ebb90614745565b80601f0160208091040260200160405190810160405280929190818152602001828054611ee790614745565b8015611f345780601f10611f0957610100808354040283529160200191611f34565b820191906000526020600020905b815481529060010190602001808311611f1757829003601f168201915b5050505050905090565b611f46612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcc90614627565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205a90614bd9565b60405180910390fd5b61206d828261377e565b5050565b600061213461207e612914565b8461212f8560405180606001604052806025815260200161558660259139600160006120a8612914565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461371a9092919063ffffffff16565b61291c565b6001905092915050565b600061215261214b612914565b8484612ae5565b6001905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60226020528060005260406000206000915054906101000a900460ff1681565b60175481565b600f60019054906101000a900460ff1681565b6121c3612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612252576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224990614627565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516122ef9190614335565b60405180910390a25050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612329612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123af90614627565b60405180910390fd5b670de0b6b3a7640000606460026123cd611116565b6123d79190614776565b6123e191906147e7565b6123eb91906147e7565b811161242c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242390614c6b565b60405180910390fd5b670de0b6b3a7640000816124409190614776565b600c8190555050565b601160009054906101000a900460ff1681565b600a5481565b60195481565b60125481565b612476612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fc90614627565b60405180910390fd5b670de0b6b3a764000060c8612518611116565b61252291906147e7565b61252c91906147e7565b811061256d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256490614cfd565b60405180910390fd5b670de0b6b3a7640000816125819190614776565b600b8190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60155481565b600b5481565b60135481565b600061262d612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146126bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b390614627565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b600e5481565b601e5481565b6126f2612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612781576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277890614627565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036127f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e790614d8f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c5481565b60008082846128c59190614676565b90508381101561290a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290190614dfb565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361298b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298290614e8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036129fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f190614f1f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612ad8919061435f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4b90614fb1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bba90615043565b60405180910390fd5b60008103612bdc57612bd78383600061382d565b613715565b600f60019054906101000a900460ff16612cd157602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c915750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc7906150af565b60405180910390fd5b5b600f60009054906101000a900460ff16156132a157612cee611dce565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612d5c5750612d2c611dce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d955750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612dcf575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612de85750600660149054906101000a900460ff16155b156132a057601160009054906101000a900460ff1615612fb757612e0a611dce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612e935750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612eeb57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612fb65743601060003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6890615167565b60405180910390fd5b43601060003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561305a5750602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561310157600a548111156130a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309b906151f9565b60405180910390fd5b600c546130b083611720565b826130bb9190614676565b11156130fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f390615265565b60405180910390fd5b61329f565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131a45750602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131f357600a548111156131ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e5906152f7565b60405180910390fd5b61329e565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661329d57600c5461325083611720565b8261325b9190614676565b111561329c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329390615265565b60405180910390fd5b5b5b5b5b5b60006132ac30611720565b90506000600b5482101590508080156132d15750600f60029054906101000a900460ff165b80156132ea5750600660149054906101000a900460ff16155b80156133405750602260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133965750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133ec5750602060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613430576001600660146101000a81548160ff021916908315150217905550613414613ac0565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806134e65750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156134f057600090505b6000811561370557602260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561355357506000601254115b156135ee576135816103e861357360125488613ca590919063ffffffff16565b613d1f90919063ffffffff16565b9050601254601454826135949190614776565b61359e91906147e7565b601f60008282546135af9190614676565b92505081905550601254601354826135c79190614776565b6135d191906147e7565b601c60008282546135e29190614676565b925050819055506136e1565b602260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561364957506000601754115b156136e0576136776103e861366960175488613ca590919063ffffffff16565b613d1f90919063ffffffff16565b90506017546019548261368a9190614776565b61369491906147e7565b601f60008282546136a59190614676565b92505081905550601754601854826136bd9190614776565b6136c791906147e7565b601c60008282546136d89190614676565b925050819055505b5b60008111156136f6576136f587308361382d565b5b80856137029190615317565b94505b61371087878761382d565b505050505b505050565b6000838311158290613762576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613759919061425a565b60405180910390fd5b50600083856137719190615317565b9050809150509392505050565b6001905080602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506137e38282611996565b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361389c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161389390614fb1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361390b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161390290615043565b60405180910390fd5b613916838383613d69565b61398181604051806060016040528060268152602001615538602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461371a9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613a14816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546128b690919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051613ab3919061435f565b60405180910390a3505050565b6000613acb30611720565b9050600080601c54601f54613ae09190614676565b90506000831480613af15750600081145b15613afe57505050613ca3565b6000600282601f5486613b119190614776565b613b1b91906147e7565b613b2591906147e7565b90506000613b3c8286613d6e90919063ffffffff16565b90506000479050613b4c82613db8565b6000613b618247613d6e90919063ffffffff16565b90506000613b8c86613b7e601c5485613ca590919063ffffffff16565b613d1f90919063ffffffff16565b905060008183613b9c9190615317565b90506000601f819055506000601c81905550600086118015613bbe5750600081115b15613c0b57613bcd8682613ffb565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601f54604051613c029392919061534b565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613c5190614ac0565b60006040518083038185875af1925050503d8060008114613c8e576040519150601f19603f3d011682016040523d82523d6000602084013e613c93565b606091505b5050809850505050505050505050505b565b6000808303613cb75760009050613d19565b60008284613cc59190614776565b9050828482613cd491906147e7565b14613d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d0b906153f4565b60405180910390fd5b809150505b92915050565b6000613d6183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506140ec565b905092915050565b505050565b6000613db083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061371a565b905092915050565b6000600267ffffffffffffffff811115613dd557613dd46148aa565b5b604051908082528060200260200182016040528015613e035781602001602082028036833780820191505090505b5090503081600081518110613e1b57613e1a61491b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613ec2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ee691906148ee565b81600181518110613efa57613ef961491b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613f6130600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461291c565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613fc5959493929190615414565b600060405180830381600087803b158015613fdf57600080fd5b505af1158015613ff3573d6000803e3d6000fd5b505050505050565b61402830600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461291c565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000807292f3e7fa9b89bd60371d1326afba4d8a81783d426040518863ffffffff1660e01b81526004016140a29695949392919061546e565b60606040518083038185885af11580156140c0573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906140e591906154e4565b5050505050565b60008083118290614133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161412a919061425a565b60405180910390fd5b506000838561414291906147e7565b9050809150509392505050565b600080fd5b6000819050919050565b61416781614154565b811461417257600080fd5b50565b6000813590506141848161415e565b92915050565b600080604083850312156141a1576141a061414f565b5b60006141af85828601614175565b92505060206141c085828601614175565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156142045780820151818401526020810190506141e9565b60008484015250505050565b6000601f19601f8301169050919050565b600061422c826141ca565b61423681856141d5565b93506142468185602086016141e6565b61424f81614210565b840191505092915050565b600060208201905081810360008301526142748184614221565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006142a78261427c565b9050919050565b6142b78161429c565b81146142c257600080fd5b50565b6000813590506142d4816142ae565b92915050565b600080604083850312156142f1576142f061414f565b5b60006142ff858286016142c5565b925050602061431085828601614175565b9150509250929050565b60008115159050919050565b61432f8161431a565b82525050565b600060208201905061434a6000830184614326565b92915050565b61435981614154565b82525050565b60006020820190506143746000830184614350565b92915050565b6000602082840312156143905761438f61414f565b5b600061439e84828501614175565b91505092915050565b6000602082840312156143bd576143bc61414f565b5b60006143cb848285016142c5565b91505092915050565b6000819050919050565b60006143f96143f46143ef8461427c565b6143d4565b61427c565b9050919050565b600061440b826143de565b9050919050565b600061441d82614400565b9050919050565b61442d81614412565b82525050565b60006020820190506144486000830184614424565b92915050565b6000806000606084860312156144675761446661414f565b5b6000614475868287016142c5565b9350506020614486868287016142c5565b925050604061449786828701614175565b9150509250925092565b600060ff82169050919050565b6144b7816144a1565b82525050565b60006020820190506144d260008301846144ae565b92915050565b6144e18161429c565b82525050565b60006020820190506144fc60008301846144d8565b92915050565b61450b8161431a565b811461451657600080fd5b50565b60008135905061452881614502565b92915050565b600080604083850312156145455761454461414f565b5b6000614553858286016142c5565b925050602061456485828601614519565b9150509250929050565b6000602082840312156145845761458361414f565b5b600061459284828501614519565b91505092915050565b600080604083850312156145b2576145b161414f565b5b60006145c0858286016142c5565b92505060206145d1858286016142c5565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006146116020836141d5565b915061461c826145db565b602082019050919050565b6000602082019050818103600083015261464081614604565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061468182614154565b915061468c83614154565b92508282019050808211156146a4576146a3614647565b5b92915050565b7f466565732063616e6e6f7420626520686967686572207468616e203130250000600082015250565b60006146e0601e836141d5565b91506146eb826146aa565b602082019050919050565b6000602082019050818103600083015261470f816146d3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061475d57607f821691505b6020821081036147705761476f614716565b5b50919050565b600061478182614154565b915061478c83614154565b925082820261479a81614154565b915082820484148315176147b1576147b0614647565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006147f282614154565b91506147fd83614154565b92508261480d5761480c6147b8565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20312500000000000000000000000000000000000000602082015250565b6000614874602d836141d5565b915061487f82614818565b604082019050919050565b600060208201905081810360008301526148a381614867565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000815190506148e8816142ae565b92915050565b6000602082840312156149045761490361414f565b5b6000614912848285016148d9565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600061496f61496a6149658461494a565b6143d4565b614154565b9050919050565b61497f81614954565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6149ba8161429c565b82525050565b60006149cc83836149b1565b60208301905092915050565b6000602082019050919050565b60006149f082614985565b6149fa8185614990565b9350614a05836149a1565b8060005b83811015614a36578151614a1d88826149c0565b9750614a28836149d8565b925050600181019050614a09565b5085935050505092915050565b6000608082019050614a586000830187614976565b8181036020830152614a6a81866149e5565b9050614a7960408301856144d8565b614a866060830184614350565b95945050505050565b600081905092915050565b50565b6000614aaa600083614a8f565b9150614ab582614a9a565b600082019050919050565b6000614acb82614a9d565b9150819050919050565b7f6661696c656420746f2077697468647261770000000000000000000000000000600082015250565b6000614b0b6012836141d5565b9150614b1682614ad5565b602082019050919050565b60006020820190508181036000830152614b3a81614afe565b9050919050565b7f54686520556e695377617020706169722063616e6e6f742062652072656d6f7660008201527f65642066726f6d206175746f6d617465644d61726b65744d616b65725061697260208201527f7300000000000000000000000000000000000000000000000000000000000000604082015250565b6000614bc36041836141d5565b9150614bce82614b41565b606082019050919050565b60006020820190508181036000830152614bf281614bb6565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3225000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c556022836141d5565b9150614c6082614bf9565b604082019050919050565b60006020820190508181036000830152614c8481614c48565b9050919050565b7f43616e6e6f74207365742073776170546f6b656e734174416d6f756e7420686960008201527f67686572207468616e20302e3525000000000000000000000000000000000000602082015250565b6000614ce7602e836141d5565b9150614cf282614c8b565b604082019050919050565b60006020820190508181036000830152614d1681614cda565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614d796026836141d5565b9150614d8482614d1d565b604082019050919050565b60006020820190508181036000830152614da881614d6c565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614de5601b836141d5565b9150614df082614daf565b602082019050919050565b60006020820190508181036000830152614e1481614dd8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614e776024836141d5565b9150614e8282614e1b565b604082019050919050565b60006020820190508181036000830152614ea681614e6a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614f096022836141d5565b9150614f1482614ead565b604082019050919050565b60006020820190508181036000830152614f3881614efc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614f9b6025836141d5565b9150614fa682614f3f565b604082019050919050565b60006020820190508181036000830152614fca81614f8e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061502d6023836141d5565b915061503882614fd1565b604082019050919050565b6000602082019050818103600083015261505c81615020565b9050919050565b7f54726164696e67206973206e6f7420616374697665207965742e000000000000600082015250565b6000615099601a836141d5565b91506150a482615063565b602082019050919050565b600060208201905081810360008301526150c88161508c565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006151516049836141d5565b915061515c826150cf565b606082019050919050565b6000602082019050818103600083015261518081615144565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006151e36035836141d5565b91506151ee82615187565b604082019050919050565b60006020820190508181036000830152615212816151d6565b9050919050565b7f556e61626c6520746f20657863656564204d61782057616c6c65740000000000600082015250565b600061524f601b836141d5565b915061525a82615219565b602082019050919050565b6000602082019050818103600083015261527e81615242565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006152e16036836141d5565b91506152ec82615285565b604082019050919050565b60006020820190508181036000830152615310816152d4565b9050919050565b600061532282614154565b915061532d83614154565b925082820390508181111561534557615344614647565b5b92915050565b60006060820190506153606000830186614350565b61536d6020830185614350565b61537a6040830184614350565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006153de6021836141d5565b91506153e982615382565b604082019050919050565b6000602082019050818103600083015261540d816153d1565b9050919050565b600060a0820190506154296000830188614350565b6154366020830187614976565b818103604083015261544881866149e5565b905061545760608301856144d8565b6154646080830184614350565b9695505050505050565b600060c08201905061548360008301896144d8565b6154906020830188614350565b61549d6040830187614976565b6154aa6060830186614976565b6154b760808301856144d8565b6154c460a0830184614350565b979650505050505050565b6000815190506154de8161415e565b92915050565b6000806000606084860312156154fd576154fc61414f565b5b600061550b868287016154cf565b935050602061551c868287016154cf565b925050604061552d868287016154cf565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a8a727d7f8396ab337e70fe193999e1acbe7d895fc538d2cacf62ab2c0030e3564736f6c63430008120033

Deployed Bytecode

0x6080604052600436106103905760003560e01c80637fa787ba116101dc578063c18bc19511610102578063e08c38b2116100a0578063ee40166e1161006f578063ee40166e14610d3d578063ef8700e514610d68578063f2fde38b14610d93578063f8b45b0514610dbc57610397565b8063e08c38b214610c91578063e2f4560514610cbc578063e7f444b314610ce7578063e884f26014610d1257610397565b8063ccb61358116100dc578063ccb6135814610bd5578063d0a3981414610c00578063d257b34f14610c2b578063dd62ed3e14610c5457610397565b8063c18bc19514610b56578063c876d0b914610b7f578063c8c8ebe414610baa57610397565b8063a457c2d71161017a578063b9e9370011610149578063b9e9370014610aac578063bbc0c74214610ad7578063c024666814610b02578063c04a541414610b2b57610397565b8063a457c2d7146109ca578063a9059cbb14610a07578063b071787b14610a44578063b62496f514610a6f57610397565b80638da5cb5b116101b65780638da5cb5b14610922578063924de9b71461094d57806395d89b41146109765780639a7a23d6146109a157610397565b80637fa787ba146108c95780638a8c523c146108e05780638d5985d3146108f757610397565b80633f3539ef116102c1578063703baa711161025f5780637571336a1161022e5780637571336a1461081f57806375f0a8741461084857806378b3ac70146108735780637be408611461089e57610397565b8063703baa711461077557806370a08231146107a0578063715018a6146107dd578063751039fc146107f457610397565b80634fbee1931161029b5780634fbee193146106b957806366ca9b83146106f6578063680789521461071f5780636ddd17131461074a57610397565b80633f3539ef1461063a57806349bd5a5e146106635780634a62bb651461068e57610397565b80631694505e1161032e5780631f3fed8f116103085780631f3fed8f1461056a57806323b872dd14610595578063313ce567146105d257806339509351146105fd57610397565b80631694505e146104e957806318160ddd146105145780631a8145bb1461053f57610397565b8063099d0d301161036a578063099d0d301461042d5780630f4432e314610458578063106b5da11461048357806310d5de53146104ac57610397565b806302dbd8f81461039c57806306fdde03146103c5578063095ea7b3146103f057610397565b3661039757005b600080fd5b3480156103a857600080fd5b506103c360048036038101906103be919061418a565b610de7565b005b3480156103d157600080fd5b506103da610eec565b6040516103e7919061425a565b60405180910390f35b3480156103fc57600080fd5b50610417600480360381019061041291906142da565b610f7e565b6040516104249190614335565b60405180910390f35b34801561043957600080fd5b50610442610f9c565b60405161044f919061435f565b60405180910390f35b34801561046457600080fd5b5061046d610fa2565b60405161047a919061435f565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a5919061437a565b610fa8565b005b3480156104b857600080fd5b506104d360048036038101906104ce91906143a7565b6110d0565b6040516104e09190614335565b60405180910390f35b3480156104f557600080fd5b506104fe6110f0565b60405161050b9190614433565b60405180910390f35b34801561052057600080fd5b50610529611116565b604051610536919061435f565b60405180910390f35b34801561054b57600080fd5b50610554611120565b604051610561919061435f565b60405180910390f35b34801561057657600080fd5b5061057f611126565b60405161058c919061435f565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b7919061444e565b61112c565b6040516105c99190614335565b60405180910390f35b3480156105de57600080fd5b506105e7611205565b6040516105f491906144bd565b60405180910390f35b34801561060957600080fd5b50610624600480360381019061061f91906142da565b61120e565b6040516106319190614335565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c919061437a565b6112c1565b005b34801561066f57600080fd5b5061067861156f565b60405161068591906144e7565b60405180910390f35b34801561069a57600080fd5b506106a3611593565b6040516106b09190614335565b60405180910390f35b3480156106c557600080fd5b506106e060048036038101906106db91906143a7565b6115a6565b6040516106ed9190614335565b60405180910390f35b34801561070257600080fd5b5061071d6004803603810190610718919061418a565b6115fc565b005b34801561072b57600080fd5b50610734611701565b604051610741919061435f565b60405180910390f35b34801561075657600080fd5b5061075f611707565b60405161076c9190614335565b60405180910390f35b34801561078157600080fd5b5061078a61171a565b604051610797919061435f565b60405180910390f35b3480156107ac57600080fd5b506107c760048036038101906107c291906143a7565b611720565b6040516107d4919061435f565b60405180910390f35b3480156107e957600080fd5b506107f2611768565b005b34801561080057600080fd5b506108096118c0565b6040516108169190614335565b60405180910390f35b34801561082b57600080fd5b506108466004803603810190610841919061452e565b611996565b005b34801561085457600080fd5b5061085d611b7a565b60405161086a91906144e7565b60405180910390f35b34801561087f57600080fd5b50610888611ba0565b604051610895919061435f565b60405180910390f35b3480156108aa57600080fd5b506108b3611ba6565b6040516108c0919061435f565b60405180910390f35b3480156108d557600080fd5b506108de611bac565b005b3480156108ec57600080fd5b506108f5611cf2565b005b34801561090357600080fd5b5061090c611dc8565b604051610919919061435f565b60405180910390f35b34801561092e57600080fd5b50610937611dce565b60405161094491906144e7565b60405180910390f35b34801561095957600080fd5b50610974600480360381019061096f919061456e565b611df8565b005b34801561098257600080fd5b5061098b611eac565b604051610998919061425a565b60405180910390f35b3480156109ad57600080fd5b506109c860048036038101906109c3919061452e565b611f3e565b005b3480156109d657600080fd5b506109f160048036038101906109ec91906142da565b612071565b6040516109fe9190614335565b60405180910390f35b348015610a1357600080fd5b50610a2e6004803603810190610a2991906142da565b61213e565b604051610a3b9190614335565b60405180910390f35b348015610a5057600080fd5b50610a5961215c565b604051610a6691906144e7565b60405180910390f35b348015610a7b57600080fd5b50610a966004803603810190610a9191906143a7565b612182565b604051610aa39190614335565b60405180910390f35b348015610ab857600080fd5b50610ac16121a2565b604051610ace919061435f565b60405180910390f35b348015610ae357600080fd5b50610aec6121a8565b604051610af99190614335565b60405180910390f35b348015610b0e57600080fd5b50610b296004803603810190610b24919061452e565b6121bb565b005b348015610b3757600080fd5b50610b406122fb565b604051610b4d91906144e7565b60405180910390f35b348015610b6257600080fd5b50610b7d6004803603810190610b78919061437a565b612321565b005b348015610b8b57600080fd5b50610b94612449565b604051610ba19190614335565b60405180910390f35b348015610bb657600080fd5b50610bbf61245c565b604051610bcc919061435f565b60405180910390f35b348015610be157600080fd5b50610bea612462565b604051610bf7919061435f565b60405180910390f35b348015610c0c57600080fd5b50610c15612468565b604051610c22919061435f565b60405180910390f35b348015610c3757600080fd5b50610c526004803603810190610c4d919061437a565b61246e565b005b348015610c6057600080fd5b50610c7b6004803603810190610c76919061459b565b61258a565b604051610c88919061435f565b60405180910390f35b348015610c9d57600080fd5b50610ca6612611565b604051610cb3919061435f565b60405180910390f35b348015610cc857600080fd5b50610cd1612617565b604051610cde919061435f565b60405180910390f35b348015610cf357600080fd5b50610cfc61261d565b604051610d09919061435f565b60405180910390f35b348015610d1e57600080fd5b50610d27612623565b604051610d349190614335565b60405180910390f35b348015610d4957600080fd5b50610d526126de565b604051610d5f919061435f565b60405180910390f35b348015610d7457600080fd5b50610d7d6126e4565b604051610d8a919061435f565b60405180910390f35b348015610d9f57600080fd5b50610dba6004803603810190610db591906143a7565b6126ea565b005b348015610dc857600080fd5b50610dd16128b0565b604051610dde919061435f565b60405180910390f35b610def612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7590614627565b60405180910390fd5b8160138190555080601481905550601454601354610e9c9190614676565b60128190555060646012541115610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf906146f6565b60405180910390fd5b5050565b606060038054610efb90614745565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2790614745565b8015610f745780601f10610f4957610100808354040283529160200191610f74565b820191906000526020600020905b815481529060010190602001808311610f5757829003601f168201915b5050505050905090565b6000610f92610f8b612914565b848461291c565b6001905092915050565b60145481565b600d5481565b610fb0612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461103f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103690614627565b60405180910390fd5b670de0b6b3a764000060646001611054611116565b61105e9190614776565b61106891906147e7565b61107291906147e7565b81116110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa9061488a565b60405180910390fd5b670de0b6b3a7640000816110c79190614776565b600a8190555050565b60216020528060005260406000206000915054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b601f5481565b601c5481565b6000611139848484612ae5565b6111fa84611145612914565b6111f58560405180606001604052806028815260200161555e60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006111ab612914565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461371a9092919063ffffffff16565b61291c565b600190509392505050565b60006012905090565b60006112b761121b612914565b846112b2856001600061122c612914565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546128b690919063ffffffff16565b61291c565b6001905092915050565b6112c9612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134f90614627565b60405180910390fd5b6000600267ffffffffffffffff811115611375576113746148aa565b5b6040519080825280602002602001820160405280156113a35781602001602082028036833780820191505090505b509050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611413573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061143791906148ee565b8160008151811061144b5761144a61491b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050308160018151811061149a5761149961491b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b6f9de958360008461dead426040518663ffffffff1660e01b81526004016115399493929190614a43565b6000604051808303818588803b15801561155257600080fd5b505af1158015611566573d6000803e3d6000fd5b50505050505050565b7f0000000000000000000000002495c70dccd56516c8836da9102bdd2c275575bc81565b600f60009054906101000a900460ff1681565b6000602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611604612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168a90614627565b60405180910390fd5b81601881905550806019819055506019546018546116b19190614676565b601781905550606460175411156116fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f4906146f6565b60405180910390fd5b5050565b60185481565b600f60029054906101000a900460ff1681565b601a5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611770612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f690614627565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006118ca612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611959576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195090614627565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506000601160006101000a81548160ff0219169083151502179055506001905090565b61199e612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2490614627565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001602160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f575f9d01836c9206322151b9e9ec3f2b77b87e71176933b9b44d2d732f768d95602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16604051611b6e9190614335565b60405180910390a25050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601b5481565b60165481565b611bb4612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3a90614627565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611c6990614ac0565b60006040518083038185875af1925050503d8060008114611ca6576040519150601f19603f3d011682016040523d82523d6000602084013e611cab565b606091505b5050905080611cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce690614b21565b60405180910390fd5b50565b611cfa612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8090614627565b60405180910390fd5b6001600f60016101000a81548160ff0219169083151502179055506001600f60026101000a81548160ff02191690831515021790555043600e81905550565b601d5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611e00612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8690614627565b60405180910390fd5b80600f60026101000a81548160ff02191690831515021790555050565b606060048054611ebb90614745565b80601f0160208091040260200160405190810160405280929190818152602001828054611ee790614745565b8015611f345780601f10611f0957610100808354040283529160200191611f34565b820191906000526020600020905b815481529060010190602001808311611f1757829003601f168201915b5050505050905090565b611f46612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcc90614627565b60405180910390fd5b7f0000000000000000000000002495c70dccd56516c8836da9102bdd2c275575bc73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205a90614bd9565b60405180910390fd5b61206d828261377e565b5050565b600061213461207e612914565b8461212f8560405180606001604052806025815260200161558660259139600160006120a8612914565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461371a9092919063ffffffff16565b61291c565b6001905092915050565b600061215261214b612914565b8484612ae5565b6001905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60226020528060005260406000206000915054906101000a900460ff1681565b60175481565b600f60019054906101000a900460ff1681565b6121c3612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612252576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224990614627565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516122ef9190614335565b60405180910390a25050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612329612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123af90614627565b60405180910390fd5b670de0b6b3a7640000606460026123cd611116565b6123d79190614776565b6123e191906147e7565b6123eb91906147e7565b811161242c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242390614c6b565b60405180910390fd5b670de0b6b3a7640000816124409190614776565b600c8190555050565b601160009054906101000a900460ff1681565b600a5481565b60195481565b60125481565b612476612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fc90614627565b60405180910390fd5b670de0b6b3a764000060c8612518611116565b61252291906147e7565b61252c91906147e7565b811061256d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256490614cfd565b60405180910390fd5b670de0b6b3a7640000816125819190614776565b600b8190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60155481565b600b5481565b60135481565b600061262d612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146126bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b390614627565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b600e5481565b601e5481565b6126f2612914565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612781576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277890614627565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036127f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e790614d8f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c5481565b60008082846128c59190614676565b90508381101561290a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290190614dfb565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361298b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298290614e8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036129fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f190614f1f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612ad8919061435f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4b90614fb1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bba90615043565b60405180910390fd5b60008103612bdc57612bd78383600061382d565b613715565b600f60019054906101000a900460ff16612cd157602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c915750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc7906150af565b60405180910390fd5b5b600f60009054906101000a900460ff16156132a157612cee611dce565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612d5c5750612d2c611dce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d955750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612dcf575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612de85750600660149054906101000a900460ff16155b156132a057601160009054906101000a900460ff1615612fb757612e0a611dce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612e935750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612eeb57507f0000000000000000000000002495c70dccd56516c8836da9102bdd2c275575bc73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612fb65743601060003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6890615167565b60405180910390fd5b43601060003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561305a5750602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561310157600a548111156130a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309b906151f9565b60405180910390fd5b600c546130b083611720565b826130bb9190614676565b11156130fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f390615265565b60405180910390fd5b61329f565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131a45750602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131f357600a548111156131ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e5906152f7565b60405180910390fd5b61329e565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661329d57600c5461325083611720565b8261325b9190614676565b111561329c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329390615265565b60405180910390fd5b5b5b5b5b5b60006132ac30611720565b90506000600b5482101590508080156132d15750600f60029054906101000a900460ff165b80156132ea5750600660149054906101000a900460ff16155b80156133405750602260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133965750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133ec5750602060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613430576001600660146101000a81548160ff021916908315150217905550613414613ac0565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806134e65750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156134f057600090505b6000811561370557602260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561355357506000601254115b156135ee576135816103e861357360125488613ca590919063ffffffff16565b613d1f90919063ffffffff16565b9050601254601454826135949190614776565b61359e91906147e7565b601f60008282546135af9190614676565b92505081905550601254601354826135c79190614776565b6135d191906147e7565b601c60008282546135e29190614676565b925050819055506136e1565b602260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561364957506000601754115b156136e0576136776103e861366960175488613ca590919063ffffffff16565b613d1f90919063ffffffff16565b90506017546019548261368a9190614776565b61369491906147e7565b601f60008282546136a59190614676565b92505081905550601754601854826136bd9190614776565b6136c791906147e7565b601c60008282546136d89190614676565b925050819055505b5b60008111156136f6576136f587308361382d565b5b80856137029190615317565b94505b61371087878761382d565b505050505b505050565b6000838311158290613762576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613759919061425a565b60405180910390fd5b50600083856137719190615317565b9050809150509392505050565b6001905080602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506137e38282611996565b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361389c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161389390614fb1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361390b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161390290615043565b60405180910390fd5b613916838383613d69565b61398181604051806060016040528060268152602001615538602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461371a9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613a14816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546128b690919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051613ab3919061435f565b60405180910390a3505050565b6000613acb30611720565b9050600080601c54601f54613ae09190614676565b90506000831480613af15750600081145b15613afe57505050613ca3565b6000600282601f5486613b119190614776565b613b1b91906147e7565b613b2591906147e7565b90506000613b3c8286613d6e90919063ffffffff16565b90506000479050613b4c82613db8565b6000613b618247613d6e90919063ffffffff16565b90506000613b8c86613b7e601c5485613ca590919063ffffffff16565b613d1f90919063ffffffff16565b905060008183613b9c9190615317565b90506000601f819055506000601c81905550600086118015613bbe5750600081115b15613c0b57613bcd8682613ffb565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601f54604051613c029392919061534b565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613c5190614ac0565b60006040518083038185875af1925050503d8060008114613c8e576040519150601f19603f3d011682016040523d82523d6000602084013e613c93565b606091505b5050809850505050505050505050505b565b6000808303613cb75760009050613d19565b60008284613cc59190614776565b9050828482613cd491906147e7565b14613d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d0b906153f4565b60405180910390fd5b809150505b92915050565b6000613d6183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506140ec565b905092915050565b505050565b6000613db083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061371a565b905092915050565b6000600267ffffffffffffffff811115613dd557613dd46148aa565b5b604051908082528060200260200182016040528015613e035781602001602082028036833780820191505090505b5090503081600081518110613e1b57613e1a61491b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613ec2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ee691906148ee565b81600181518110613efa57613ef961491b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613f6130600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461291c565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613fc5959493929190615414565b600060405180830381600087803b158015613fdf57600080fd5b505af1158015613ff3573d6000803e3d6000fd5b505050505050565b61402830600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461291c565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000807292f3e7fa9b89bd60371d1326afba4d8a81783d426040518863ffffffff1660e01b81526004016140a29695949392919061546e565b60606040518083038185885af11580156140c0573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906140e591906154e4565b5050505050565b60008083118290614133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161412a919061425a565b60405180910390fd5b506000838561414291906147e7565b9050809150509392505050565b600080fd5b6000819050919050565b61416781614154565b811461417257600080fd5b50565b6000813590506141848161415e565b92915050565b600080604083850312156141a1576141a061414f565b5b60006141af85828601614175565b92505060206141c085828601614175565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156142045780820151818401526020810190506141e9565b60008484015250505050565b6000601f19601f8301169050919050565b600061422c826141ca565b61423681856141d5565b93506142468185602086016141e6565b61424f81614210565b840191505092915050565b600060208201905081810360008301526142748184614221565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006142a78261427c565b9050919050565b6142b78161429c565b81146142c257600080fd5b50565b6000813590506142d4816142ae565b92915050565b600080604083850312156142f1576142f061414f565b5b60006142ff858286016142c5565b925050602061431085828601614175565b9150509250929050565b60008115159050919050565b61432f8161431a565b82525050565b600060208201905061434a6000830184614326565b92915050565b61435981614154565b82525050565b60006020820190506143746000830184614350565b92915050565b6000602082840312156143905761438f61414f565b5b600061439e84828501614175565b91505092915050565b6000602082840312156143bd576143bc61414f565b5b60006143cb848285016142c5565b91505092915050565b6000819050919050565b60006143f96143f46143ef8461427c565b6143d4565b61427c565b9050919050565b600061440b826143de565b9050919050565b600061441d82614400565b9050919050565b61442d81614412565b82525050565b60006020820190506144486000830184614424565b92915050565b6000806000606084860312156144675761446661414f565b5b6000614475868287016142c5565b9350506020614486868287016142c5565b925050604061449786828701614175565b9150509250925092565b600060ff82169050919050565b6144b7816144a1565b82525050565b60006020820190506144d260008301846144ae565b92915050565b6144e18161429c565b82525050565b60006020820190506144fc60008301846144d8565b92915050565b61450b8161431a565b811461451657600080fd5b50565b60008135905061452881614502565b92915050565b600080604083850312156145455761454461414f565b5b6000614553858286016142c5565b925050602061456485828601614519565b9150509250929050565b6000602082840312156145845761458361414f565b5b600061459284828501614519565b91505092915050565b600080604083850312156145b2576145b161414f565b5b60006145c0858286016142c5565b92505060206145d1858286016142c5565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006146116020836141d5565b915061461c826145db565b602082019050919050565b6000602082019050818103600083015261464081614604565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061468182614154565b915061468c83614154565b92508282019050808211156146a4576146a3614647565b5b92915050565b7f466565732063616e6e6f7420626520686967686572207468616e203130250000600082015250565b60006146e0601e836141d5565b91506146eb826146aa565b602082019050919050565b6000602082019050818103600083015261470f816146d3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061475d57607f821691505b6020821081036147705761476f614716565b5b50919050565b600061478182614154565b915061478c83614154565b925082820261479a81614154565b915082820484148315176147b1576147b0614647565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006147f282614154565b91506147fd83614154565b92508261480d5761480c6147b8565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20312500000000000000000000000000000000000000602082015250565b6000614874602d836141d5565b915061487f82614818565b604082019050919050565b600060208201905081810360008301526148a381614867565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000815190506148e8816142ae565b92915050565b6000602082840312156149045761490361414f565b5b6000614912848285016148d9565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600061496f61496a6149658461494a565b6143d4565b614154565b9050919050565b61497f81614954565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6149ba8161429c565b82525050565b60006149cc83836149b1565b60208301905092915050565b6000602082019050919050565b60006149f082614985565b6149fa8185614990565b9350614a05836149a1565b8060005b83811015614a36578151614a1d88826149c0565b9750614a28836149d8565b925050600181019050614a09565b5085935050505092915050565b6000608082019050614a586000830187614976565b8181036020830152614a6a81866149e5565b9050614a7960408301856144d8565b614a866060830184614350565b95945050505050565b600081905092915050565b50565b6000614aaa600083614a8f565b9150614ab582614a9a565b600082019050919050565b6000614acb82614a9d565b9150819050919050565b7f6661696c656420746f2077697468647261770000000000000000000000000000600082015250565b6000614b0b6012836141d5565b9150614b1682614ad5565b602082019050919050565b60006020820190508181036000830152614b3a81614afe565b9050919050565b7f54686520556e695377617020706169722063616e6e6f742062652072656d6f7660008201527f65642066726f6d206175746f6d617465644d61726b65744d616b65725061697260208201527f7300000000000000000000000000000000000000000000000000000000000000604082015250565b6000614bc36041836141d5565b9150614bce82614b41565b606082019050919050565b60006020820190508181036000830152614bf281614bb6565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3225000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c556022836141d5565b9150614c6082614bf9565b604082019050919050565b60006020820190508181036000830152614c8481614c48565b9050919050565b7f43616e6e6f74207365742073776170546f6b656e734174416d6f756e7420686960008201527f67686572207468616e20302e3525000000000000000000000000000000000000602082015250565b6000614ce7602e836141d5565b9150614cf282614c8b565b604082019050919050565b60006020820190508181036000830152614d1681614cda565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614d796026836141d5565b9150614d8482614d1d565b604082019050919050565b60006020820190508181036000830152614da881614d6c565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614de5601b836141d5565b9150614df082614daf565b602082019050919050565b60006020820190508181036000830152614e1481614dd8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614e776024836141d5565b9150614e8282614e1b565b604082019050919050565b60006020820190508181036000830152614ea681614e6a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614f096022836141d5565b9150614f1482614ead565b604082019050919050565b60006020820190508181036000830152614f3881614efc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614f9b6025836141d5565b9150614fa682614f3f565b604082019050919050565b60006020820190508181036000830152614fca81614f8e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061502d6023836141d5565b915061503882614fd1565b604082019050919050565b6000602082019050818103600083015261505c81615020565b9050919050565b7f54726164696e67206973206e6f7420616374697665207965742e000000000000600082015250565b6000615099601a836141d5565b91506150a482615063565b602082019050919050565b600060208201905081810360008301526150c88161508c565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006151516049836141d5565b915061515c826150cf565b606082019050919050565b6000602082019050818103600083015261518081615144565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006151e36035836141d5565b91506151ee82615187565b604082019050919050565b60006020820190508181036000830152615212816151d6565b9050919050565b7f556e61626c6520746f20657863656564204d61782057616c6c65740000000000600082015250565b600061524f601b836141d5565b915061525a82615219565b602082019050919050565b6000602082019050818103600083015261527e81615242565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006152e16036836141d5565b91506152ec82615285565b604082019050919050565b60006020820190508181036000830152615310816152d4565b9050919050565b600061532282614154565b915061532d83614154565b925082820390508181111561534557615344614647565b5b92915050565b60006060820190506153606000830186614350565b61536d6020830185614350565b61537a6040830184614350565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006153de6021836141d5565b91506153e982615382565b604082019050919050565b6000602082019050818103600083015261540d816153d1565b9050919050565b600060a0820190506154296000830188614350565b6154366020830187614976565b818103604083015261544881866149e5565b905061545760608301856144d8565b6154646080830184614350565b9695505050505050565b600060c08201905061548360008301896144d8565b6154906020830188614350565b61549d6040830187614976565b6154aa6060830186614976565b6154b760808301856144d8565b6154c460a0830184614350565b979650505050505050565b6000815190506154de8161415e565b92915050565b6000806000606084860312156154fd576154fc61414f565b5b600061550b868287016154cf565b935050602061551c868287016154cf565b925050604061552d868287016154cf565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a8a727d7f8396ab337e70fe193999e1acbe7d895fc538d2cacf62ab2c0030e3564736f6c63430008120033

Deployed Bytecode Sourcemap

29476:15315:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35765:319;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7616:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9783:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30519:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29917:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34983:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31141:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29549:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8736:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30956:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30833;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10434:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8578:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11198:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44054:529;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29597:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30085:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37121:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35441:312;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30676:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30165:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30750;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8907:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22095:148;;;;;;;;;;;;;:::i;:::-;;37302:159;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36092:303;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29674:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30788:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30596:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44595:191;;;;;;;;;;;;;:::i;:::-;;34379:156;;;;;;;;;;;;;:::i;:::-;;30873:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21453:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34635:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7835:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36595:250;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11919:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9247:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29711:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31363:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30642:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30125:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36403:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29749:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35222:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30388:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29798:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30713:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30446:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34744:230;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9485:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30557:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29840:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30481:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34184:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30002:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30914:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22398:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29880:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35765:319;21675:12;:10;:12::i;:::-;21665:22;;:6;;;;;;;;;;;:22;;;21657:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35884:13:::1;35865:16;:32;;;;35927:13;35908:16;:32;;;;35986:16;;35967;;:35;;;;:::i;:::-;35951:13;:51;;;;36038:3;36021:13;;:20;;36013:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;35765:319:::0;;:::o;7616:100::-;7670:13;7703:5;7696:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7616:100;:::o;9783:169::-;9866:4;9883:39;9892:12;:10;:12::i;:::-;9906:7;9915:6;9883:8;:39::i;:::-;9940:4;9933:11;;9783:169;;;;:::o;30519:31::-;;;;:::o;29917:39::-;;;;:::o;34983:227::-;21675:12;:10;:12::i;:::-;21665:22;;:6;;;;;;;;;;;:22;;;21657:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35097:4:::1;35092:3;35088:1;35072:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:23;;;;:::i;:::-;35071:30;;;;:::i;:::-;35062:6;:39;35054:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;35195:6;35185;:17;;;;:::i;:::-;35162:20;:40;;;;34983:227:::0;:::o;31141:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;29549:41::-;;;;;;;;;;;;;:::o;8736:108::-;8797:7;8824:12;;8817:19;;8736:108;:::o;30956:33::-;;;;:::o;30833:::-;;;;:::o;10434:355::-;10574:4;10591:36;10601:6;10609:9;10620:6;10591:9;:36::i;:::-;10638:121;10647:6;10655:12;:10;:12::i;:::-;10669:89;10707:6;10669:89;;;;;;;;;;;;;;;;;:11;:19;10681:6;10669:19;;;;;;;;;;;;;;;:33;10689:12;:10;:12::i;:::-;10669:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;10638:8;:121::i;:::-;10777:4;10770:11;;10434:355;;;;;:::o;8578:93::-;8636:5;8661:2;8654:9;;8578:93;:::o;11198:218::-;11286:4;11303:83;11312:12;:10;:12::i;:::-;11326:7;11335:50;11374:10;11335:11;:25;11347:12;:10;:12::i;:::-;11335:25;;;;;;;;;;;;;;;:34;11361:7;11335:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11303:8;:83::i;:::-;11404:4;11397:11;;11198:218;;;;:::o;44054:529::-;21675:12;:10;:12::i;:::-;21665:22;;:6;;;;;;;;;;;:22;;;21657:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;44191:21:::1;44229:1;44215:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44191:40;;44252:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44242:4;44247:1;44242:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;::::0;::::1;44303:4;44285;44290:1;44285:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;44347:15;;;;;;;;;;;:66;;;44421:14;44451:1;44500:4;44527:6;44549:15;44347:228;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;44122:461;44054:529:::0;:::o;29597:38::-;;;:::o;30085:33::-;;;;;;;;;;;;;:::o;37121:125::-;37186:4;37210:19;:28;37230:7;37210:28;;;;;;;;;;;;;;;;;;;;;;;;;37203:35;;37121:125;;;:::o;35441:312::-;21675:12;:10;:12::i;:::-;21665:22;;:6;;;;;;;;;;;:22;;;21657:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35558:13:::1;35540:15;:31;;;;35600:13;35582:15;:31;;;;35657:15;;35639;;:33;;;;:::i;:::-;35624:12;:48;;;;35707:3;35691:12;;:19;;35683:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;35441:312:::0;;:::o;30676:30::-;;;;:::o;30165:31::-;;;;;;;;;;;;;:::o;30750:::-;;;;:::o;8907:127::-;8981:7;9008:9;:18;9018:7;9008:18;;;;;;;;;;;;;;;;9001:25;;8907:127;;;:::o;22095:148::-;21675:12;:10;:12::i;:::-;21665:22;;:6;;;;;;;;;;;:22;;;21657:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22202:1:::1;22165:40;;22186:6;;;;;;;;;;;22165:40;;;;;;;;;;;;22233:1;22216:6;;:19;;;;;;;;;;;;;;;;;;22095:148::o:0;37302:159::-;37354:4;21675:12;:10;:12::i;:::-;21665:22;;:6;;;;;;;;;;;:22;;;21657:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37387:5:::1;37370:14;;:22;;;;;;;;;;;;;;;;;;37426:5;37403:20;;:28;;;;;;;;;;;;;;;;;;37449:4;37442:11;;37302:159:::0;:::o;36092:303::-;21675:12;:10;:12::i;:::-;21665:22;;:6;;;;;;;;;;;:22;;;21657:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36224:4:::1;36182:31;:39;36214:6;36182:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36288:4;36239:31;:46;36279:4;36239:46;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;36339:6;36310:77;;;36347:31;:39;36379:6;36347:39;;;;;;;;;;;;;;;;;;;;;;;;;36310:77;;;;;;:::i;:::-;;;;;;;;36092:303:::0;;:::o;29674:30::-;;;;;;;;;;;;;:::o;30788:32::-;;;;:::o;30596:33::-;;;;:::o;44595:191::-;21675:12;:10;:12::i;:::-;21665:22;;:6;;;;;;;;;;;:22;;;21657:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;44654:12:::1;44679:10;44671:24;;44703:21;44671:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44653:76;;;44748:7;44740:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;44642:144;44595:191::o:0;34379:156::-;21675:12;:10;:12::i;:::-;21665:22;;:6;;;;;;;;;;;:22;;;21657:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34450:4:::1;34434:13;;:20;;;;;;;;;;;;;;;;;;34479:4;34465:11;;:18;;;;;;;;;;;;;;;;;;34515:12;34494:18;:33;;;;34379:156::o:0;30873:34::-;;;;:::o;21453:79::-;21491:7;21518:6;;;;;;;;;;;21511:13;;21453:79;:::o;34635:101::-;21675:12;:10;:12::i;:::-;21665:22;;:6;;;;;;;;;;;:22;;;21657:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34721:7:::1;34707:11;;:21;;;;;;;;;;;;;;;;;;34635:101:::0;:::o;7835:104::-;7891:13;7924:7;7917:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7835:104;:::o;36595:250::-;21675:12;:10;:12::i;:::-;21665:22;;:6;;;;;;;;;;;:22;;;21657:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36702:13:::1;36694:21;;:4;:21;;::::0;36686:99:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;36796:41;36825:4;36831:5;36796:28;:41::i;:::-;36595:250:::0;;:::o;11919:269::-;12012:4;12029:129;12038:12;:10;:12::i;:::-;12052:7;12061:96;12100:15;12061:96;;;;;;;;;;;;;;;;;:11;:25;12073:12;:10;:12::i;:::-;12061:25;;;;;;;;;;;;;;;:34;12087:7;12061:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;12029:8;:129::i;:::-;12176:4;12169:11;;11919:269;;;;:::o;9247:175::-;9333:4;9350:42;9360:12;:10;:12::i;:::-;9374:9;9385:6;9350:9;:42::i;:::-;9410:4;9403:11;;9247:175;;;;:::o;29711:31::-;;;;;;;;;;;;;:::o;31363:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;30642:27::-;;;;:::o;30125:33::-;;;;;;;;;;;;;:::o;36403:184::-;21675:12;:10;:12::i;:::-;21665:22;;:6;;;;;;;;;;;:22;;;21657:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36519:8:::1;36488:19;:28;36508:7;36488:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36561:7;36545:34;;;36570:8;36545:34;;;;;;:::i;:::-;;;;;;;;36403:184:::0;;:::o;29749:32::-;;;;;;;;;;;;;:::o;35222:211::-;21675:12;:10;:12::i;:::-;21665:22;;:6;;;;;;;;;;;:22;;;21657:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35342:4:::1;35337:3;35333:1;35317:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:23;;;;:::i;:::-;35316:30;;;;:::i;:::-;35307:6;:39;35299:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;35418:6;35408;:17;;;;:::i;:::-;35396:9;:29;;;;35222:211:::0;:::o;30388:39::-;;;;;;;;;;;;;:::o;29798:35::-;;;;:::o;30713:30::-;;;;:::o;30446:28::-;;;;:::o;34744:230::-;21675:12;:10;:12::i;:::-;21665:22;;:6;;;;;;;;;;;:22;;;21657:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34862:4:::1;34857:3;34841:13;:11;:13::i;:::-;:19;;;;:::i;:::-;34840:26;;;;:::i;:::-;34831:6;:35;34823:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;34959:6;34949;:17;;;;:::i;:::-;34928:18;:38;;;;34744:230:::0;:::o;9485:151::-;9574:7;9601:11;:18;9613:5;9601:18;;;;;;;;;;;;;;;:27;9620:7;9601:27;;;;;;;;;;;;;;;;9594:34;;9485:151;;;;:::o;30557:32::-;;;;:::o;29840:33::-;;;;:::o;30481:31::-;;;;:::o;34184:134::-;34244:4;21675:12;:10;:12::i;:::-;21665:22;;:6;;;;;;;;;;;:22;;;21657:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34283:5:::1;34260:20;;:28;;;;;;;;;;;;;;;;;;34306:4;34299:11;;34184:134:::0;:::o;30002:37::-;;;;:::o;30914:35::-;;;;:::o;22398:244::-;21675:12;:10;:12::i;:::-;21665:22;;:6;;;;;;;;;;;:22;;;21657:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22507:1:::1;22487:22;;:8;:22;;::::0;22479:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;22597:8;22568:38;;22589:6;;;;;;;;;;;22568:38;;;;;;;;;;;;22626:8;22617:6;;:17;;;;;;;;;;;;;;;;;;22398:244:::0;:::o;29880:24::-;;;;:::o;16497:181::-;16555:7;16575:9;16591:1;16587;:5;;;;:::i;:::-;16575:17;;16616:1;16611;:6;;16603:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;16669:1;16662:8;;;16497:181;;;;:::o;250:98::-;303:7;330:10;323:17;;250:98;:::o;15119:380::-;15272:1;15255:19;;:5;:19;;;15247:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15353:1;15334:21;;:7;:21;;;15326:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15437:6;15407:11;:18;15419:5;15407:18;;;;;;;;;;;;;;;:27;15426:7;15407:27;;;;;;;;;;;;;;;:36;;;;15475:7;15459:32;;15468:5;15459:32;;;15484:6;15459:32;;;;;;:::i;:::-;;;;;;;;15119:380;;;:::o;37473:3917::-;37621:1;37605:18;;:4;:18;;;37597:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37698:1;37684:16;;:2;:16;;;37676:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;37775:1;37765:6;:11;37762:92;;37793:28;37809:4;37815:2;37819:1;37793:15;:28::i;:::-;37836:7;;37762:92;37878:13;;;;;;;;;;;37874:136;;37915:19;:25;37935:4;37915:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;37944:19;:23;37964:2;37944:23;;;;;;;;;;;;;;;;;;;;;;;;;37915:52;37907:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;37874:136;38033:14;;;;;;;;;;;38030:1662;;;38093:7;:5;:7::i;:::-;38085:15;;:4;:15;;;;:49;;;;;38127:7;:5;:7::i;:::-;38121:13;;:2;:13;;;;38085:49;:86;;;;;38169:1;38155:16;;:2;:16;;;;38085:86;:128;;;;;38206:6;38192:21;;:2;:21;;;;38085:128;:158;;;;;38235:8;;;;;;;;;;;38234:9;38085:158;38063:1618;;;38417:20;;;;;;;;;;;38413:423;;;38471:7;:5;:7::i;:::-;38465:13;;:2;:13;;;;:47;;;;;38496:15;;;;;;;;;;;38482:30;;:2;:30;;;;38465:47;:79;;;;;38530:13;38516:28;;:2;:28;;;;38465:79;38461:356;;;38622:12;38580:28;:39;38609:9;38580:39;;;;;;;;;;;;;;;;:54;38572:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;38781:12;38739:28;:39;38768:9;38739:39;;;;;;;;;;;;;;;:54;;;;38461:356;38413:423;38904:25;:31;38930:4;38904:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;38940:31;:35;38972:2;38940:35;;;;;;;;;;;;;;;;;;;;;;;;;38939:36;38904:71;38900:766;;;39018:20;;39008:6;:30;;39000:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;39153:9;;39136:13;39146:2;39136:9;:13::i;:::-;39127:6;:22;;;;:::i;:::-;:35;;39119:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;38900:766;;;39271:25;:29;39297:2;39271:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;39305:31;:37;39337:4;39305:37;;;;;;;;;;;;;;;;;;;;;;;;;39304:38;39271:71;39267:399;;;39385:20;;39375:6;:30;;39367:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;39267:399;;;39511:31;:35;39543:2;39511:35;;;;;;;;;;;;;;;;;;;;;;;;;39507:159;;39605:9;;39588:13;39598:2;39588:9;:13::i;:::-;39579:6;:22;;;;:::i;:::-;:35;;39571:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;39507:159;39267:399;38900:766;38063:1618;38030:1662;39698:28;39729:24;39747:4;39729:9;:24::i;:::-;39698:55;;39774:12;39813:18;;39789:20;:42;;39774:57;;39862:7;:35;;;;;39886:11;;;;;;;;;;;39862:35;:61;;;;;39915:8;;;;;;;;;;;39914:9;39862:61;:110;;;;;39941:25;:31;39967:4;39941:31;;;;;;;;;;;;;;;;;;;;;;;;;39940:32;39862:110;:153;;;;;39990:19;:25;40010:4;39990:25;;;;;;;;;;;;;;;;;;;;;;;;;39989:26;39862:153;:194;;;;;40033:19;:23;40053:2;40033:23;;;;;;;;;;;;;;;;;;;;;;;;;40032:24;39862:194;39844:322;;;40094:4;40083:8;;:15;;;;;;;;;;;;;;;;;;40113:10;:8;:10::i;:::-;40149:5;40138:8;;:16;;;;;;;;;;;;;;;;;;39844:322;40178:12;40194:8;;;;;;;;;;;40193:9;40178:24;;40303:19;:25;40323:4;40303:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;40332:19;:23;40352:2;40332:23;;;;;;;;;;;;;;;;;;;;;;;;;40303:52;40300:99;;;40382:5;40372:15;;40300:99;40419:12;40510:7;40507:826;;;40561:25;:29;40587:2;40561:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;40610:1;40594:13;;:17;40561:50;40557:619;;;40638:35;40668:4;40638:25;40649:13;;40638:6;:10;;:25;;;;:::i;:::-;:29;;:35;;;;:::i;:::-;40631:42;;40740:13;;40721:16;;40714:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;40692:18;;:61;;;;;;;:::i;:::-;;;;;;;;40820:13;;40801:16;;40794:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;40772:18;;:61;;;;;;;:::i;:::-;;;;;;;;40557:619;;;40894:25;:31;40920:4;40894:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;40944:1;40929:12;;:16;40894:51;40891:285;;;40970:34;40999:4;40970:24;40981:12;;40970:6;:10;;:24;;;;:::i;:::-;:28;;:34;;;;:::i;:::-;40963:41;;41070:12;;41052:15;;41045:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;41023:18;;:59;;;;;;;:::i;:::-;;;;;;;;41148:12;;41130:15;;41123:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;41101:18;;:59;;;;;;;:::i;:::-;;;;;;;;40891:285;40557:619;41202:1;41195:4;:8;41192:93;;;41227:42;41243:4;41257;41264;41227:15;:42::i;:::-;41192:93;41317:4;41307:14;;;;;:::i;:::-;;;40507:826;41345:33;41361:4;41367:2;41371:6;41345:15;:33::i;:::-;37586:3804;;;;37473:3917;;;;:::o;17400:192::-;17486:7;17519:1;17514;:6;;17522:12;17506:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17546:9;17562:1;17558;:5;;;;:::i;:::-;17546:17;;17583:1;17576:8;;;17400:192;;;;;:::o;36853:260::-;36944:4;36936:12;;36993:5;36959:25;:31;36985:4;36959:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37009:38;37035:4;37041:5;37009:25;:38::i;:::-;37099:5;37065:40;;37093:4;37065:40;;;;;;;;;;;;36853:260;;:::o;12678:573::-;12836:1;12818:20;;:6;:20;;;12810:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12920:1;12899:23;;:9;:23;;;12891:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12975:47;12996:6;13004:9;13015:6;12975:20;:47::i;:::-;13055:71;13077:6;13055:71;;;;;;;;;;;;;;;;;:9;:17;13065:6;13055:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;13035:9;:17;13045:6;13035:17;;;;;;;;;;;;;;;:91;;;;13160:32;13185:6;13160:9;:20;13170:9;13160:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;13137:9;:20;13147:9;13137:20;;;;;;;;;;;;;;;:55;;;;13225:9;13208:35;;13217:6;13208:35;;;13236:6;13208:35;;;;;;:::i;:::-;;;;;;;;12678:573;;;:::o;42588:1363::-;42627:23;42653:24;42671:4;42653:9;:24::i;:::-;42627:50;;42688:12;42711:25;42760:18;;42739;;:39;;;;:::i;:::-;42711:67;;42821:1;42802:15;:20;:46;;;;42847:1;42826:17;:22;42802:46;42799:60;;;42851:7;;;;;42799:60;42928:23;43013:1;42993:17;42972:18;;42954:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;42928:86;;43025:26;43054:36;43074:15;43054;:19;;:36;;;;:::i;:::-;43025:65;;43111:25;43139:21;43111:49;;43173:36;43190:18;43173:16;:36::i;:::-;43231:18;43252:44;43278:17;43252:21;:25;;:44;;;;:::i;:::-;43231:65;;43317:23;43343:57;43382:17;43343:34;43358:18;;43343:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;43317:83;;43421:23;43460:15;43447:10;:28;;;;:::i;:::-;43421:54;;43517:1;43496:18;:22;;;;43550:1;43529:18;:22;;;;43593:1;43575:15;:19;:42;;;;;43616:1;43598:15;:19;43575:42;43572:210;;;43633:46;43646:15;43663;43633:12;:46::i;:::-;43699:71;43714:18;43734:15;43751:18;;43699:71;;;;;;;;:::i;:::-;;;;;;;;43572:210;43874:15;;;;;;;;;;;43866:29;;43903:15;43866:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43853:70;;;;;42616:1335;;;;;;;;;42588:1363;:::o;17851:471::-;17909:7;18159:1;18154;:6;18150:47;;18184:1;18177:8;;;;18150:47;18209:9;18225:1;18221;:5;;;;:::i;:::-;18209:17;;18254:1;18249;18245;:5;;;;:::i;:::-;:10;18237:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;18313:1;18306:8;;;17851:471;;;;;:::o;18798:132::-;18856:7;18883:39;18887:1;18890;18883:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;18876:46;;18798:132;;;;:::o;16102:125::-;;;;:::o;16961:136::-;17019:7;17046:43;17050:1;17053;17046:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;17039:50;;16961:136;;;;:::o;41404:601::-;41532:21;41570:1;41556:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41532:40;;41601:4;41583;41588:1;41583:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;41627:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41617:4;41622:1;41617:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;41662:62;41679:4;41694:15;;;;;;;;;;;41712:11;41662:8;:62::i;:::-;41763:15;;;;;;;;;;;:66;;;41844:11;41870:1;41914:4;41941;41961:15;41763:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41459:546;41404:601;:::o;42017:559::-;42165:62;42182:4;42197:15;;;;;;;;;;;42215:11;42165:8;:62::i;:::-;42270:15;;;;;;;;;;;:31;;;42309:9;42342:4;42362:11;42388:1;42431;42482:42;42540:15;42270:296;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;42017:559;;:::o;19426:278::-;19512:7;19544:1;19540;:5;19547:12;19532:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;19571:9;19587:1;19583;:5;;;;:::i;:::-;19571:17;;19695:1;19688:8;;;19426: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://a8a727d7f8396ab337e70fe193999e1acbe7d895fc538d2cacf62ab2c0030e35
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.