ETH Price: $3,455.35 (-1.06%)
Gas: 8 Gwei

Token

Rabbithereum (Carreth)
 

Overview

Max Total Supply

1,000,000 Carreth

Holders

125

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 Carreth

Value
$0.00
0xed553a0a5375a6b2bea2788e24c39e53ed19bd52
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:
CARRETH

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-30
*/

/**
 *                          
 *      Telegram:   https://t.me/RabbithereumETH 
 *      Miner: https://rabbithereum.network
*/         

//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 CARRETH is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool private swapping;

    address public taxWallet;
    address public TVLWallet;
        
    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 taxSellFee;
    uint256 public liquiditySellFee;
    
    uint256 public totalBuyFees;
    uint256 public taxBuyFee;
    uint256 public liquidityBuyFee;
    
    uint256 public tokensForTax;
    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 taxWalletUpdated(address indexed newWallet, address indexed oldWallet);

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

    constructor() ERC20("Rabbithereum", "Carreth") {
        
        address newOwner = address(0x66b05A08b6E42696bF0d9766C34616319edf810B);
    
        uint256 totalSupply = 1000000 * 10**18;
        
        maxTransactionAmount = totalSupply * 1 / 200; // 0,5% max transaction, will be higher
        swapTokensAtAmount = totalSupply * 1 / 1000; // 0.1% swap tokens amount
        maxWallet = totalSupply * 1 / 100; // 1% max wallet, will be higher

        taxSellFee = 16;   //First 2 hours
        liquiditySellFee = 4;    //First 2 hours
        totalSellFees = taxSellFee + liquiditySellFee;
        
        taxBuyFee = 4;
        liquidityBuyFee = 1;
        totalBuyFees = taxBuyFee + liquidityBuyFee;
            	
    	taxWallet = address(0x31241D95FFBd38772605929f1C0cc5D67e078856); // set as tax wallet

    	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 updateMaxAmount(uint256 newNum) external onlyOwner {
        require(newNum > (totalSupply() * 1 / 200)/1e18, "Cannot set maxTransactionAmount lower than 0,5%");
        maxTransactionAmount = newNum * (10**18);
    }
    
    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(newNum > (totalSupply() * 1 / 100)/1e18, "Cannot set maxWallet lower than 1%");
        maxWallet = newNum * (10**18);
    }
    
    function updateBuyFees(uint256 _taxFee, uint256 _liquidityFee) external onlyOwner {
        taxBuyFee = _taxFee;
        liquidityBuyFee = _liquidityFee;
        totalBuyFees = taxBuyFee + liquidityBuyFee;
        require(totalBuyFees <= 5, "Must keep fees at 5% or less");
    }
    
    function updateSellFees(uint256 _taxFee, uint256 _liquidityFee) external onlyOwner {
        taxSellFee = _taxFee;
        liquiditySellFee = _liquidityFee;
        totalSellFees = taxSellFee + liquiditySellFee;
        require(totalSellFees <= 20, "Must keep fees at 20% or less");
    }

    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
        emit ExcludedMaxTransactionAmount(updAds, isEx);
    }

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

        emit ExcludeFromFees(account, excluded);
    }

    function excludeMultipleAccountsFromFees(address[] calldata accounts, bool excluded) external onlyOwner {
        for(uint256 i = 0; i < accounts.length; i++) {
            _isExcludedFromFees[accounts[i]] = excluded;
        }

        emit ExcludeMultipleAccountsFromFees(accounts, 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 {
        automatedMarketMakerPairs[pair] = value;

        excludeFromMaxTransaction(pair, value);

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updatetaxWallet(address newtaxWallet) external onlyOwner {
        require(newtaxWallet != address(0), "cannot set to address 0");
        excludeFromFees(newtaxWallet, true);
        emit taxWalletUpdated(newtaxWallet, taxWallet);
        taxWallet = newtaxWallet;
    }

    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(100);
                tokensForLiquidity += fees * liquiditySellFee / totalSellFees;
                tokensForTax += fees * taxSellFee / totalSellFees;
            }
            // on buy
            else if(automatedMarketMakerPairs[from] && totalBuyFees > 0) {
        	    fees = amount.mul(totalBuyFees).div(100);
                tokensForLiquidity += fees * liquidityBuyFee / totalBuyFees;
                tokensForTax += fees * taxBuyFee / 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(0x66b05A08b6E42696bF0d9766C34616319edf810B),
            block.timestamp
        );

    }
    
    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        bool success;
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForTax;
        
        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 ethForTax = ethBalance.mul(tokensForTax).div(totalTokensToSwap);
        
        uint256 ethForLiquidity = ethBalance - ethForTax;
        
        tokensForLiquidity = 0;
        tokensForTax = 0;
        
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity);
        }
                        
        // send remainder to taxWallet
        (success,) = address(taxWallet).call{value: address(this).balance}("");
        
        
    }
    
    // useful for taxs or to reclaim any ETH on the contract in a way that helps holders.
    function taxTokens(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 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":false,"internalType":"uint256","name":"duration","type":"uint256"}],"name":"taxMultiplierActive","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"taxWalletUpdated","type":"event"},{"inputs":[],"name":"TVLWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"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":"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":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","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":"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":"taxBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"ethAmountInWei","type":"uint256"}],"name":"taxTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"taxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTax","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":"_taxFee","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":"_taxFee","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":"address","name":"newtaxWallet","type":"address"}],"name":"updatetaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526000600c556000600d556001600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055506000600e60026101000a81548160ff0219169083151502179055506001601060006101000a81548160ff0219169083151502179055503480156200008757600080fd5b506040518060400160405280600c81526020017f52616262697468657265756d00000000000000000000000000000000000000008152506040518060400160405280600781526020017f436172726574680000000000000000000000000000000000000000000000000081525081600390805190602001906200010c92919062000d41565b5080600490805190602001906200012592919062000d41565b50505060006200013a6200060060201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35060007366b05a08b6e42696bf0d9766c34616319edf810b9050600069d3c21bcecceda1000000905060c860018262000212919062000e2a565b6200021e919062000eba565b6009819055506103e860018262000236919062000e2a565b62000242919062000eba565b600a81905550606460018262000259919062000e2a565b62000265919062000eba565b600b81905550601060128190555060046013819055506013546012546200028d919062000ef2565b60118190555060046015819055506001601681905550601654601554620002b5919062000ef2565b6014819055507331241d95ffbd38772605929f1c0cc5d67e078856600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200037257600080fd5b505afa15801562000387573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003ad919062000fb9565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200041057600080fd5b505afa15801562000425573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200044b919062000fb9565b6040518363ffffffff1660e01b81526004016200046a92919062000ffc565b602060405180830381600087803b1580156200048557600080fd5b505af11580156200049a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004c0919062000fb9565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506200054a8160016200060860201b60201c565b6200055d846001620006bb60201b60201c565b62000570306001620006bb60201b60201c565b6200058561dead6001620006bb60201b60201c565b620005988460016200080860201b60201c565b620005ab3060016200080860201b60201c565b620005be8260016200080860201b60201c565b620005d361dead60016200080860201b60201c565b620005e584846200095560201b60201c565b620005f68462000b0460201b60201c565b50505050620012f5565b600033905090565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200067182826200080860201b60201c565b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b620006cb6200060060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146200075d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000754906200108a565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620007fc9190620010c9565b60405180910390a25050565b620008186200060060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620008aa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008a1906200108a565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f575f9d01836c9206322151b9e9ec3f2b77b87e71176933b9b44d2d732f768d9582604051620009499190620010c9565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009c8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009bf9062001136565b60405180910390fd5b620009dc6000838362000cd960201b60201c565b620009f88160025462000cde60201b620028901790919060201c565b60028190555062000a56816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000cde60201b620028901790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000af8919062001169565b60405180910390a35050565b62000b146200060060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000ba6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b9d906200108a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000c19576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c1090620011fc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b505050565b600080828462000cef919062000ef2565b90508381101562000d37576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d2e906200126e565b60405180910390fd5b8091505092915050565b82805462000d4f90620012bf565b90600052602060002090601f01602090048101928262000d73576000855562000dbf565b82601f1062000d8e57805160ff191683800117855562000dbf565b8280016001018555821562000dbf579182015b8281111562000dbe57825182559160200191906001019062000da1565b5b50905062000dce919062000dd2565b5090565b5b8082111562000ded57600081600090555060010162000dd3565b5090565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e378262000df1565b915062000e448362000df1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000e805762000e7f62000dfb565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000ec78262000df1565b915062000ed48362000df1565b92508262000ee75762000ee662000e8b565b5b828204905092915050565b600062000eff8262000df1565b915062000f0c8362000df1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000f445762000f4362000dfb565b5b828201905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000f818262000f54565b9050919050565b62000f938162000f74565b811462000f9f57600080fd5b50565b60008151905062000fb38162000f88565b92915050565b60006020828403121562000fd25762000fd162000f4f565b5b600062000fe28482850162000fa2565b91505092915050565b62000ff68162000f74565b82525050565b600060408201905062001013600083018562000feb565b62001022602083018462000feb565b9392505050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200107260208362001029565b91506200107f826200103a565b602082019050919050565b60006020820190508181036000830152620010a58162001063565b9050919050565b60008115159050919050565b620010c381620010ac565b82525050565b6000602082019050620010e06000830184620010b8565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200111e601f8362001029565b91506200112b82620010e6565b602082019050919050565b6000602082019050818103600083015262001151816200110f565b9050919050565b620011638162000df1565b82525050565b600060208201905062001180600083018462001158565b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000620011e460268362001029565b9150620011f18262001186565b604082019050919050565b600060208201905081810360008301526200121781620011d5565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062001256601b8362001029565b915062001263826200121e565b602082019050919050565b60006020820190508181036000830152620012898162001247565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620012d857607f821691505b60208210811415620012ef57620012ee62001290565b5b50919050565b6080516158356200131f6000396000818161117301528181611db40152612e7b01526158356000f3fe60806040526004361061031e5760003560e01c80637fa787ba116101ab578063c492f046116100f7578063e2f4560511610095578063f2fde38b1161006f578063f2fde38b14610bc9578063f5fc361c14610bf2578063f76e195114610c1b578063f8b45b0514610c4657610325565b8063e2f4560514610b48578063e884f26014610b73578063ee40166e14610b9e57610325565b8063ccb61358116100d1578063ccb6135814610a8a578063d0a3981414610ab5578063d57cfcdd14610ae0578063dd62ed3e14610b0b57610325565b8063c492f04614610a0b578063c876d0b914610a34578063c8c8ebe414610a5f57610325565b8063a457c2d711610164578063b9e937001161013e578063b9e9370014610963578063bbc0c7421461098e578063c0246668146109b9578063c18bc195146109e257610325565b8063a457c2d7146108ac578063a9059cbb146108e9578063b62496f51461092657610325565b80637fa787ba146107d65780638a8c523c146107ed5780638da5cb5b14610804578063924de9b71461082f57806395d89b41146108585780639a7a23d61461088357610325565b8063313ce5671161026a57806366ca9b831161022357806370a08231116101fd57806370a082311461072e578063715018a61461076b578063751039fc146107825780637571336a146107ad57610325565b806366ca9b83146106af5780636d7adcad146106d85780636ddd17131461070357610325565b8063313ce5671461058b57806339509351146105b657806349bd5a5e146105f35780634a62bb651461061e5780634fbee1931461064957806350a88f9f1461068657610325565b806310d5de53116102d75780631a8145bb116102b15780631a8145bb146104cd57806323b872dd146104f85780632beccd57146105355780632dc0562d1461056057610325565b806310d5de531461043a5780631694505e1461047757806318160ddd146104a257610325565b806302dbd8f81461032a57806306fdde0314610353578063095ea7b31461037e578063099d0d30146103bb5780630f4432e3146103e6578063106b5da11461041157610325565b3661032557005b600080fd5b34801561033657600080fd5b50610351600480360381019061034c919061418a565b610c71565b005b34801561035f57600080fd5b50610368610d76565b6040516103759190614263565b60405180910390f35b34801561038a57600080fd5b506103a560048036038101906103a091906142e3565b610e08565b6040516103b2919061433e565b60405180910390f35b3480156103c757600080fd5b506103d0610e26565b6040516103dd9190614368565b60405180910390f35b3480156103f257600080fd5b506103fb610e2c565b6040516104089190614368565b60405180910390f35b34801561041d57600080fd5b5061043860048036038101906104339190614383565b610e32565b005b34801561044657600080fd5b50610461600480360381019061045c91906143b0565b610f5a565b60405161046e919061433e565b60405180910390f35b34801561048357600080fd5b5061048c610f7a565b604051610499919061443c565b60405180910390f35b3480156104ae57600080fd5b506104b7610fa0565b6040516104c49190614368565b60405180910390f35b3480156104d957600080fd5b506104e2610faa565b6040516104ef9190614368565b60405180910390f35b34801561050457600080fd5b5061051f600480360381019061051a9190614457565b610fb0565b60405161052c919061433e565b60405180910390f35b34801561054157600080fd5b5061054a611089565b6040516105579190614368565b60405180910390f35b34801561056c57600080fd5b5061057561108f565b60405161058291906144b9565b60405180910390f35b34801561059757600080fd5b506105a06110b5565b6040516105ad91906144f0565b60405180910390f35b3480156105c257600080fd5b506105dd60048036038101906105d891906142e3565b6110be565b6040516105ea919061433e565b60405180910390f35b3480156105ff57600080fd5b50610608611171565b60405161061591906144b9565b60405180910390f35b34801561062a57600080fd5b50610633611195565b604051610640919061433e565b60405180910390f35b34801561065557600080fd5b50610670600480360381019061066b91906143b0565b6111a8565b60405161067d919061433e565b60405180910390f35b34801561069257600080fd5b506106ad60048036038101906106a89190614383565b6111fe565b005b3480156106bb57600080fd5b506106d660048036038101906106d1919061418a565b6114bb565b005b3480156106e457600080fd5b506106ed6115c0565b6040516106fa9190614368565b60405180910390f35b34801561070f57600080fd5b506107186115c6565b604051610725919061433e565b60405180910390f35b34801561073a57600080fd5b50610755600480360381019061075091906143b0565b6115d9565b6040516107629190614368565b60405180910390f35b34801561077757600080fd5b50610780611621565b005b34801561078e57600080fd5b50610797611779565b6040516107a4919061433e565b60405180910390f35b3480156107b957600080fd5b506107d460048036038101906107cf9190614537565b61184f565b005b3480156107e257600080fd5b506107eb61198f565b005b3480156107f957600080fd5b50610802611ad5565b005b34801561081057600080fd5b50610819611bab565b60405161082691906144b9565b60405180910390f35b34801561083b57600080fd5b5061085660048036038101906108519190614577565b611bd5565b005b34801561086457600080fd5b5061086d611c89565b60405161087a9190614263565b60405180910390f35b34801561088f57600080fd5b506108aa60048036038101906108a59190614537565b611d1b565b005b3480156108b857600080fd5b506108d360048036038101906108ce91906142e3565b611e4f565b6040516108e0919061433e565b60405180910390f35b3480156108f557600080fd5b50610910600480360381019061090b91906142e3565b611f1c565b60405161091d919061433e565b60405180910390f35b34801561093257600080fd5b5061094d600480360381019061094891906143b0565b611f3a565b60405161095a919061433e565b60405180910390f35b34801561096f57600080fd5b50610978611f5a565b6040516109859190614368565b60405180910390f35b34801561099a57600080fd5b506109a3611f60565b6040516109b0919061433e565b60405180910390f35b3480156109c557600080fd5b506109e060048036038101906109db9190614537565b611f73565b005b3480156109ee57600080fd5b50610a096004803603810190610a049190614383565b6120b3565b005b348015610a1757600080fd5b50610a326004803603810190610a2d9190614609565b6121db565b005b348015610a4057600080fd5b50610a49612352565b604051610a56919061433e565b60405180910390f35b348015610a6b57600080fd5b50610a74612365565b604051610a819190614368565b60405180910390f35b348015610a9657600080fd5b50610a9f61236b565b604051610aac9190614368565b60405180910390f35b348015610ac157600080fd5b50610aca612371565b604051610ad79190614368565b60405180910390f35b348015610aec57600080fd5b50610af5612377565b604051610b0291906144b9565b60405180910390f35b348015610b1757600080fd5b50610b326004803603810190610b2d9190614669565b61239d565b604051610b3f9190614368565b60405180910390f35b348015610b5457600080fd5b50610b5d612424565b604051610b6a9190614368565b60405180910390f35b348015610b7f57600080fd5b50610b8861242a565b604051610b95919061433e565b60405180910390f35b348015610baa57600080fd5b50610bb36124e5565b604051610bc09190614368565b60405180910390f35b348015610bd557600080fd5b50610bf06004803603810190610beb91906143b0565b6124eb565b005b348015610bfe57600080fd5b50610c196004803603810190610c1491906143b0565b6126b2565b005b348015610c2757600080fd5b50610c30612884565b604051610c3d9190614368565b60405180910390f35b348015610c5257600080fd5b50610c5b61288a565b604051610c689190614368565b60405180910390f35b610c796128ee565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff906146f5565b60405180910390fd5b8160128190555080601381905550601354601254610d269190614744565b60118190555060146011541115610d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d69906147e6565b60405180910390fd5b5050565b606060038054610d8590614835565b80601f0160208091040260200160405190810160405280929190818152602001828054610db190614835565b8015610dfe5780601f10610dd357610100808354040283529160200191610dfe565b820191906000526020600020905b815481529060010190602001808311610de157829003601f168201915b5050505050905090565b6000610e1c610e156128ee565b84846128f6565b6001905092915050565b60135481565b600c5481565b610e3a6128ee565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec0906146f5565b60405180910390fd5b670de0b6b3a764000060c86001610ede610fa0565b610ee89190614867565b610ef291906148f0565b610efc91906148f0565b8111610f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3490614993565b60405180910390fd5b670de0b6b3a764000081610f519190614867565b60098190555050565b601a6020528060005260406000206000915054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b60185481565b6000610fbd848484612ac1565b61107e84610fc96128ee565b611079856040518060600160405280602881526020016157b360289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061102f6128ee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136f79092919063ffffffff16565b6128f6565b600190509392505050565b60125481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b60006111676110cb6128ee565b8461116285600160006110dc6128ee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461289090919063ffffffff16565b6128f6565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600e60009054906101000a900460ff1681565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6112066128ee565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128c906146f5565b60405180910390fd5b6000600267ffffffffffffffff8111156112b2576112b16149b3565b5b6040519080825280602002602001820160405280156112e05781602001602082028036833780820191505090505b509050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561134b57600080fd5b505afa15801561135f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061138391906149f7565b8160008151811061139757611396614a24565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505030816001815181106113e6576113e5614a24565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b6f9de958360008461dead426040518663ffffffff1660e01b81526004016114859493929190614b4c565b6000604051808303818588803b15801561149e57600080fd5b505af11580156114b2573d6000803e3d6000fd5b50505050505050565b6114c36128ee565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611552576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611549906146f5565b60405180910390fd5b81601581905550806016819055506016546015546115709190614744565b601481905550600560145411156115bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b390614be4565b60405180910390fd5b5050565b60175481565b600e60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116296128ee565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116af906146f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006117836128ee565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611812576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611809906146f5565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506000601060006101000a81548160ff0219169083151502179055506001905090565b6118576128ee565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118dd906146f5565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f575f9d01836c9206322151b9e9ec3f2b77b87e71176933b9b44d2d732f768d9582604051611983919061433e565b60405180910390a25050565b6119976128ee565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1d906146f5565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611a4c90614c35565b60006040518083038185875af1925050503d8060008114611a89576040519150601f19603f3d011682016040523d82523d6000602084013e611a8e565b606091505b5050905080611ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac990614c96565b60405180910390fd5b50565b611add6128ee565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b63906146f5565b60405180910390fd5b6001600e60016101000a81548160ff0219169083151502179055506001600e60026101000a81548160ff02191690831515021790555043600d81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611bdd6128ee565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c63906146f5565b60405180910390fd5b80600e60026101000a81548160ff02191690831515021790555050565b606060048054611c9890614835565b80601f0160208091040260200160405190810160405280929190818152602001828054611cc490614835565b8015611d115780601f10611ce657610100808354040283529160200191611d11565b820191906000526020600020905b815481529060010190602001808311611cf457829003601f168201915b5050505050905090565b611d236128ee565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da9906146f5565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3890614d4e565b60405180910390fd5b611e4b828261375b565b5050565b6000611f12611e5c6128ee565b84611f0d856040518060600160405280602581526020016157db6025913960016000611e866128ee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136f79092919063ffffffff16565b6128f6565b6001905092915050565b6000611f30611f296128ee565b8484612ac1565b6001905092915050565b601b6020528060005260406000206000915054906101000a900460ff1681565b60145481565b600e60019054906101000a900460ff1681565b611f7b6128ee565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461200a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612001906146f5565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516120a7919061433e565b60405180910390a25050565b6120bb6128ee565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461214a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612141906146f5565b60405180910390fd5b670de0b6b3a76400006064600161215f610fa0565b6121699190614867565b61217391906148f0565b61217d91906148f0565b81116121be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b590614de0565b60405180910390fd5b670de0b6b3a7640000816121d29190614867565b600b8190555050565b6121e36128ee565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612272576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612269906146f5565b60405180910390fd5b60005b8383905081101561231157816019600086868581811061229857612297614a24565b5b90506020020160208101906122ad91906143b0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061230990614e00565b915050612275565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b3583838360405161234593929190614ed4565b60405180910390a1505050565b601060009054906101000a900460ff1681565b60095481565b60165481565b60115481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b60006124346128ee565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ba906146f5565b60405180910390fd5b6000601060006101000a81548160ff0219169083151502179055506001905090565b600d5481565b6124f36128ee565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612582576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612579906146f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e990614f78565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6126ba6128ee565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612749576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612740906146f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156127b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b090614fe4565b60405180910390fd5b6127c4816001611f73565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fb3dd4b0ccf73b51db7cb2a59fb88d1082b0fa9389d4ce0e85100fe3b26af78c460405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60155481565b600b5481565b600080828461289f9190614744565b9050838110156128e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128db90615050565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295d906150e2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cd90615174565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612ab49190614368565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2890615206565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9890615298565b60405180910390fd5b6000811415612bbb57612bb683836000613806565b6136f2565b600e60019054906101000a900460ff16612cb057601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c705750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca690615304565b60405180910390fd5b5b600e60009054906101000a900460ff161561328057612ccd611bab565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612d3b5750612d0b611bab565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d745750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612dae575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612dc75750600660149054906101000a900460ff16155b1561327f57601060009054906101000a900460ff1615612f9657612de9611bab565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612e725750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612eca57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612f955743600f60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f47906153bc565b60405180910390fd5b43600f60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130395750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130e057600954811115613083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307a9061544e565b60405180910390fd5b600b5461308f836115d9565b8261309a9190614744565b11156130db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130d2906154ba565b60405180910390fd5b61327e565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131835750601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131d2576009548111156131cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c49061554c565b60405180910390fd5b61327d565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661327c57600b5461322f836115d9565b8261323a9190614744565b111561327b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613272906154ba565b60405180910390fd5b5b5b5b5b5b600061328b306115d9565b90506000600a5482101590508080156132b05750600e60029054906101000a900460ff165b80156132c95750600660149054906101000a900460ff16155b801561331f5750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133755750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133cb5750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561340f576001600660146101000a81548160ff0219169083151502179055506133f3613a9b565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806134c55750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156134cf57600090505b600081156136e257601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561353257506000601154115b156135cc5761355f606461355160115488613c8090919063ffffffff16565b613cfb90919063ffffffff16565b9050601154601354826135729190614867565b61357c91906148f0565b6018600082825461358d9190614744565b92505081905550601154601254826135a59190614867565b6135af91906148f0565b601760008282546135c09190614744565b925050819055506136be565b601b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561362757506000601454115b156136bd57613654606461364660145488613c8090919063ffffffff16565b613cfb90919063ffffffff16565b9050601454601654826136679190614867565b61367191906148f0565b601860008282546136829190614744565b925050819055506014546015548261369a9190614867565b6136a491906148f0565b601760008282546136b59190614744565b925050819055505b5b60008111156136d3576136d2873083613806565b5b80856136df919061556c565b94505b6136ed878787613806565b505050505b505050565b600083831115829061373f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137369190614263565b60405180910390fd5b506000838561374e919061556c565b9050809150509392505050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506137bc828261184f565b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161386d90615206565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138dd90615298565b60405180910390fd5b6138f1838383613d45565b61395c8160405180606001604052806026815260200161578d602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136f79092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506139ef816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461289090919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051613a8e9190614368565b60405180910390a3505050565b6000613aa6306115d9565b9050600080601754601854613abb9190614744565b90506000831480613acc5750600081145b15613ad957505050613c7e565b600060028260185486613aec9190614867565b613af691906148f0565b613b0091906148f0565b90506000613b178286613d4a90919063ffffffff16565b90506000479050613b2782613d94565b6000613b3c8247613d4a90919063ffffffff16565b90506000613b6786613b5960175485613c8090919063ffffffff16565b613cfb90919063ffffffff16565b905060008183613b77919061556c565b905060006018819055506000601781905550600086118015613b995750600081115b15613be657613ba88682613fe6565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601854604051613bdd939291906155a0565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613c2c90614c35565b60006040518083038185875af1925050503d8060008114613c69576040519150601f19603f3d011682016040523d82523d6000602084013e613c6e565b606091505b5050809850505050505050505050505b565b600080831415613c935760009050613cf5565b60008284613ca19190614867565b9050828482613cb091906148f0565b14613cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ce790615649565b60405180910390fd5b809150505b92915050565b6000613d3d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506140e7565b905092915050565b505050565b6000613d8c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506136f7565b905092915050565b6000600267ffffffffffffffff811115613db157613db06149b3565b5b604051908082528060200260200182016040528015613ddf5781602001602082028036833780820191505090505b5090503081600081518110613df757613df6614a24565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613e9957600080fd5b505afa158015613ead573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ed191906149f7565b81600181518110613ee557613ee4614a24565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613f4c30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846128f6565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613fb0959493929190615669565b600060405180830381600087803b158015613fca57600080fd5b505af1158015613fde573d6000803e3d6000fd5b505050505050565b61401330600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846128f6565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000807366b05a08b6e42696bf0d9766c34616319edf810b426040518863ffffffff1660e01b815260040161408e969594939291906156c3565b6060604051808303818588803b1580156140a757600080fd5b505af11580156140bb573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906140e09190615739565b5050505050565b6000808311829061412e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016141259190614263565b60405180910390fd5b506000838561413d91906148f0565b9050809150509392505050565b600080fd5b600080fd5b6000819050919050565b61416781614154565b811461417257600080fd5b50565b6000813590506141848161415e565b92915050565b600080604083850312156141a1576141a061414a565b5b60006141af85828601614175565b92505060206141c085828601614175565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156142045780820151818401526020810190506141e9565b83811115614213576000848401525b50505050565b6000601f19601f8301169050919050565b6000614235826141ca565b61423f81856141d5565b935061424f8185602086016141e6565b61425881614219565b840191505092915050565b6000602082019050818103600083015261427d818461422a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006142b082614285565b9050919050565b6142c0816142a5565b81146142cb57600080fd5b50565b6000813590506142dd816142b7565b92915050565b600080604083850312156142fa576142f961414a565b5b6000614308858286016142ce565b925050602061431985828601614175565b9150509250929050565b60008115159050919050565b61433881614323565b82525050565b6000602082019050614353600083018461432f565b92915050565b61436281614154565b82525050565b600060208201905061437d6000830184614359565b92915050565b6000602082840312156143995761439861414a565b5b60006143a784828501614175565b91505092915050565b6000602082840312156143c6576143c561414a565b5b60006143d4848285016142ce565b91505092915050565b6000819050919050565b60006144026143fd6143f884614285565b6143dd565b614285565b9050919050565b6000614414826143e7565b9050919050565b600061442682614409565b9050919050565b6144368161441b565b82525050565b6000602082019050614451600083018461442d565b92915050565b6000806000606084860312156144705761446f61414a565b5b600061447e868287016142ce565b935050602061448f868287016142ce565b92505060406144a086828701614175565b9150509250925092565b6144b3816142a5565b82525050565b60006020820190506144ce60008301846144aa565b92915050565b600060ff82169050919050565b6144ea816144d4565b82525050565b600060208201905061450560008301846144e1565b92915050565b61451481614323565b811461451f57600080fd5b50565b6000813590506145318161450b565b92915050565b6000806040838503121561454e5761454d61414a565b5b600061455c858286016142ce565b925050602061456d85828601614522565b9150509250929050565b60006020828403121561458d5761458c61414a565b5b600061459b84828501614522565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126145c9576145c86145a4565b5b8235905067ffffffffffffffff8111156145e6576145e56145a9565b5b602083019150836020820283011115614602576146016145ae565b5b9250929050565b6000806000604084860312156146225761462161414a565b5b600084013567ffffffffffffffff8111156146405761463f61414f565b5b61464c868287016145b3565b9350935050602061465f86828701614522565b9150509250925092565b600080604083850312156146805761467f61414a565b5b600061468e858286016142ce565b925050602061469f858286016142ce565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006146df6020836141d5565b91506146ea826146a9565b602082019050919050565b6000602082019050818103600083015261470e816146d2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061474f82614154565b915061475a83614154565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561478f5761478e614715565b5b828201905092915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b60006147d0601d836141d5565b91506147db8261479a565b602082019050919050565b600060208201905081810360008301526147ff816147c3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061484d57607f821691505b6020821081141561486157614860614806565b5b50919050565b600061487282614154565b915061487d83614154565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148b6576148b5614715565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006148fb82614154565b915061490683614154565b925082614916576149156148c1565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302c35250000000000000000000000000000000000602082015250565b600061497d602f836141d5565b915061498882614921565b604082019050919050565b600060208201905081810360008301526149ac81614970565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000815190506149f1816142b7565b92915050565b600060208284031215614a0d57614a0c61414a565b5b6000614a1b848285016149e2565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000614a78614a73614a6e84614a53565b6143dd565b614154565b9050919050565b614a8881614a5d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614ac3816142a5565b82525050565b6000614ad58383614aba565b60208301905092915050565b6000602082019050919050565b6000614af982614a8e565b614b038185614a99565b9350614b0e83614aaa565b8060005b83811015614b3f578151614b268882614ac9565b9750614b3183614ae1565b925050600181019050614b12565b5085935050505092915050565b6000608082019050614b616000830187614a7f565b8181036020830152614b738186614aee565b9050614b8260408301856144aa565b614b8f6060830184614359565b95945050505050565b7f4d757374206b6565702066656573206174203525206f72206c65737300000000600082015250565b6000614bce601c836141d5565b9150614bd982614b98565b602082019050919050565b60006020820190508181036000830152614bfd81614bc1565b9050919050565b600081905092915050565b50565b6000614c1f600083614c04565b9150614c2a82614c0f565b600082019050919050565b6000614c4082614c12565b9150819050919050565b7f6661696c656420746f2077697468647261770000000000000000000000000000600082015250565b6000614c806012836141d5565b9150614c8b82614c4a565b602082019050919050565b60006020820190508181036000830152614caf81614c73565b9050919050565b7f54686520556e695377617020706169722063616e6e6f742062652072656d6f7660008201527f65642066726f6d206175746f6d617465644d61726b65744d616b65725061697260208201527f7300000000000000000000000000000000000000000000000000000000000000604082015250565b6000614d386041836141d5565b9150614d4382614cb6565b606082019050919050565b60006020820190508181036000830152614d6781614d2b565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b6000614dca6022836141d5565b9150614dd582614d6e565b604082019050919050565b60006020820190508181036000830152614df981614dbd565b9050919050565b6000614e0b82614154565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614e3e57614e3d614715565b5b600182019050919050565b6000819050919050565b6000614e6260208401846142ce565b905092915050565b6000602082019050919050565b6000614e838385614a99565b9350614e8e82614e49565b8060005b85811015614ec757614ea48284614e53565b614eae8882614ac9565b9750614eb983614e6a565b925050600181019050614e92565b5085925050509392505050565b60006040820190508181036000830152614eef818587614e77565b9050614efe602083018461432f565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614f626026836141d5565b9150614f6d82614f06565b604082019050919050565b60006020820190508181036000830152614f9181614f55565b9050919050565b7f63616e6e6f742073657420746f20616464726573732030000000000000000000600082015250565b6000614fce6017836141d5565b9150614fd982614f98565b602082019050919050565b60006020820190508181036000830152614ffd81614fc1565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061503a601b836141d5565b915061504582615004565b602082019050919050565b600060208201905081810360008301526150698161502d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006150cc6024836141d5565b91506150d782615070565b604082019050919050565b600060208201905081810360008301526150fb816150bf565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061515e6022836141d5565b915061516982615102565b604082019050919050565b6000602082019050818103600083015261518d81615151565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006151f06025836141d5565b91506151fb82615194565b604082019050919050565b6000602082019050818103600083015261521f816151e3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006152826023836141d5565b915061528d82615226565b604082019050919050565b600060208201905081810360008301526152b181615275565b9050919050565b7f54726164696e67206973206e6f7420616374697665207965742e000000000000600082015250565b60006152ee601a836141d5565b91506152f9826152b8565b602082019050919050565b6000602082019050818103600083015261531d816152e1565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006153a66049836141d5565b91506153b182615324565b606082019050919050565b600060208201905081810360008301526153d581615399565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006154386035836141d5565b9150615443826153dc565b604082019050919050565b600060208201905081810360008301526154678161542b565b9050919050565b7f556e61626c6520746f20657863656564204d61782057616c6c65740000000000600082015250565b60006154a4601b836141d5565b91506154af8261546e565b602082019050919050565b600060208201905081810360008301526154d381615497565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006155366036836141d5565b9150615541826154da565b604082019050919050565b6000602082019050818103600083015261556581615529565b9050919050565b600061557782614154565b915061558283614154565b92508282101561559557615594614715565b5b828203905092915050565b60006060820190506155b56000830186614359565b6155c26020830185614359565b6155cf6040830184614359565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006156336021836141d5565b915061563e826155d7565b604082019050919050565b6000602082019050818103600083015261566281615626565b9050919050565b600060a08201905061567e6000830188614359565b61568b6020830187614a7f565b818103604083015261569d8186614aee565b90506156ac60608301856144aa565b6156b96080830184614359565b9695505050505050565b600060c0820190506156d860008301896144aa565b6156e56020830188614359565b6156f26040830187614a7f565b6156ff6060830186614a7f565b61570c60808301856144aa565b61571960a0830184614359565b979650505050505050565b6000815190506157338161415e565b92915050565b6000806000606084860312156157525761575161414a565b5b600061576086828701615724565b935050602061577186828701615724565b925050604061578286828701615724565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209709c5800c99a9daa9d6453e5f14ff51533f277c293bc1e58fd9534d10822a3064736f6c63430008090033

Deployed Bytecode

0x60806040526004361061031e5760003560e01c80637fa787ba116101ab578063c492f046116100f7578063e2f4560511610095578063f2fde38b1161006f578063f2fde38b14610bc9578063f5fc361c14610bf2578063f76e195114610c1b578063f8b45b0514610c4657610325565b8063e2f4560514610b48578063e884f26014610b73578063ee40166e14610b9e57610325565b8063ccb61358116100d1578063ccb6135814610a8a578063d0a3981414610ab5578063d57cfcdd14610ae0578063dd62ed3e14610b0b57610325565b8063c492f04614610a0b578063c876d0b914610a34578063c8c8ebe414610a5f57610325565b8063a457c2d711610164578063b9e937001161013e578063b9e9370014610963578063bbc0c7421461098e578063c0246668146109b9578063c18bc195146109e257610325565b8063a457c2d7146108ac578063a9059cbb146108e9578063b62496f51461092657610325565b80637fa787ba146107d65780638a8c523c146107ed5780638da5cb5b14610804578063924de9b71461082f57806395d89b41146108585780639a7a23d61461088357610325565b8063313ce5671161026a57806366ca9b831161022357806370a08231116101fd57806370a082311461072e578063715018a61461076b578063751039fc146107825780637571336a146107ad57610325565b806366ca9b83146106af5780636d7adcad146106d85780636ddd17131461070357610325565b8063313ce5671461058b57806339509351146105b657806349bd5a5e146105f35780634a62bb651461061e5780634fbee1931461064957806350a88f9f1461068657610325565b806310d5de53116102d75780631a8145bb116102b15780631a8145bb146104cd57806323b872dd146104f85780632beccd57146105355780632dc0562d1461056057610325565b806310d5de531461043a5780631694505e1461047757806318160ddd146104a257610325565b806302dbd8f81461032a57806306fdde0314610353578063095ea7b31461037e578063099d0d30146103bb5780630f4432e3146103e6578063106b5da11461041157610325565b3661032557005b600080fd5b34801561033657600080fd5b50610351600480360381019061034c919061418a565b610c71565b005b34801561035f57600080fd5b50610368610d76565b6040516103759190614263565b60405180910390f35b34801561038a57600080fd5b506103a560048036038101906103a091906142e3565b610e08565b6040516103b2919061433e565b60405180910390f35b3480156103c757600080fd5b506103d0610e26565b6040516103dd9190614368565b60405180910390f35b3480156103f257600080fd5b506103fb610e2c565b6040516104089190614368565b60405180910390f35b34801561041d57600080fd5b5061043860048036038101906104339190614383565b610e32565b005b34801561044657600080fd5b50610461600480360381019061045c91906143b0565b610f5a565b60405161046e919061433e565b60405180910390f35b34801561048357600080fd5b5061048c610f7a565b604051610499919061443c565b60405180910390f35b3480156104ae57600080fd5b506104b7610fa0565b6040516104c49190614368565b60405180910390f35b3480156104d957600080fd5b506104e2610faa565b6040516104ef9190614368565b60405180910390f35b34801561050457600080fd5b5061051f600480360381019061051a9190614457565b610fb0565b60405161052c919061433e565b60405180910390f35b34801561054157600080fd5b5061054a611089565b6040516105579190614368565b60405180910390f35b34801561056c57600080fd5b5061057561108f565b60405161058291906144b9565b60405180910390f35b34801561059757600080fd5b506105a06110b5565b6040516105ad91906144f0565b60405180910390f35b3480156105c257600080fd5b506105dd60048036038101906105d891906142e3565b6110be565b6040516105ea919061433e565b60405180910390f35b3480156105ff57600080fd5b50610608611171565b60405161061591906144b9565b60405180910390f35b34801561062a57600080fd5b50610633611195565b604051610640919061433e565b60405180910390f35b34801561065557600080fd5b50610670600480360381019061066b91906143b0565b6111a8565b60405161067d919061433e565b60405180910390f35b34801561069257600080fd5b506106ad60048036038101906106a89190614383565b6111fe565b005b3480156106bb57600080fd5b506106d660048036038101906106d1919061418a565b6114bb565b005b3480156106e457600080fd5b506106ed6115c0565b6040516106fa9190614368565b60405180910390f35b34801561070f57600080fd5b506107186115c6565b604051610725919061433e565b60405180910390f35b34801561073a57600080fd5b50610755600480360381019061075091906143b0565b6115d9565b6040516107629190614368565b60405180910390f35b34801561077757600080fd5b50610780611621565b005b34801561078e57600080fd5b50610797611779565b6040516107a4919061433e565b60405180910390f35b3480156107b957600080fd5b506107d460048036038101906107cf9190614537565b61184f565b005b3480156107e257600080fd5b506107eb61198f565b005b3480156107f957600080fd5b50610802611ad5565b005b34801561081057600080fd5b50610819611bab565b60405161082691906144b9565b60405180910390f35b34801561083b57600080fd5b5061085660048036038101906108519190614577565b611bd5565b005b34801561086457600080fd5b5061086d611c89565b60405161087a9190614263565b60405180910390f35b34801561088f57600080fd5b506108aa60048036038101906108a59190614537565b611d1b565b005b3480156108b857600080fd5b506108d360048036038101906108ce91906142e3565b611e4f565b6040516108e0919061433e565b60405180910390f35b3480156108f557600080fd5b50610910600480360381019061090b91906142e3565b611f1c565b60405161091d919061433e565b60405180910390f35b34801561093257600080fd5b5061094d600480360381019061094891906143b0565b611f3a565b60405161095a919061433e565b60405180910390f35b34801561096f57600080fd5b50610978611f5a565b6040516109859190614368565b60405180910390f35b34801561099a57600080fd5b506109a3611f60565b6040516109b0919061433e565b60405180910390f35b3480156109c557600080fd5b506109e060048036038101906109db9190614537565b611f73565b005b3480156109ee57600080fd5b50610a096004803603810190610a049190614383565b6120b3565b005b348015610a1757600080fd5b50610a326004803603810190610a2d9190614609565b6121db565b005b348015610a4057600080fd5b50610a49612352565b604051610a56919061433e565b60405180910390f35b348015610a6b57600080fd5b50610a74612365565b604051610a819190614368565b60405180910390f35b348015610a9657600080fd5b50610a9f61236b565b604051610aac9190614368565b60405180910390f35b348015610ac157600080fd5b50610aca612371565b604051610ad79190614368565b60405180910390f35b348015610aec57600080fd5b50610af5612377565b604051610b0291906144b9565b60405180910390f35b348015610b1757600080fd5b50610b326004803603810190610b2d9190614669565b61239d565b604051610b3f9190614368565b60405180910390f35b348015610b5457600080fd5b50610b5d612424565b604051610b6a9190614368565b60405180910390f35b348015610b7f57600080fd5b50610b8861242a565b604051610b95919061433e565b60405180910390f35b348015610baa57600080fd5b50610bb36124e5565b604051610bc09190614368565b60405180910390f35b348015610bd557600080fd5b50610bf06004803603810190610beb91906143b0565b6124eb565b005b348015610bfe57600080fd5b50610c196004803603810190610c1491906143b0565b6126b2565b005b348015610c2757600080fd5b50610c30612884565b604051610c3d9190614368565b60405180910390f35b348015610c5257600080fd5b50610c5b61288a565b604051610c689190614368565b60405180910390f35b610c796128ee565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff906146f5565b60405180910390fd5b8160128190555080601381905550601354601254610d269190614744565b60118190555060146011541115610d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d69906147e6565b60405180910390fd5b5050565b606060038054610d8590614835565b80601f0160208091040260200160405190810160405280929190818152602001828054610db190614835565b8015610dfe5780601f10610dd357610100808354040283529160200191610dfe565b820191906000526020600020905b815481529060010190602001808311610de157829003601f168201915b5050505050905090565b6000610e1c610e156128ee565b84846128f6565b6001905092915050565b60135481565b600c5481565b610e3a6128ee565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec0906146f5565b60405180910390fd5b670de0b6b3a764000060c86001610ede610fa0565b610ee89190614867565b610ef291906148f0565b610efc91906148f0565b8111610f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3490614993565b60405180910390fd5b670de0b6b3a764000081610f519190614867565b60098190555050565b601a6020528060005260406000206000915054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b60185481565b6000610fbd848484612ac1565b61107e84610fc96128ee565b611079856040518060600160405280602881526020016157b360289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061102f6128ee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136f79092919063ffffffff16565b6128f6565b600190509392505050565b60125481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b60006111676110cb6128ee565b8461116285600160006110dc6128ee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461289090919063ffffffff16565b6128f6565b6001905092915050565b7f0000000000000000000000007cafe07c2bcdd064bf74f9fd8358c8ef443f257981565b600e60009054906101000a900460ff1681565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6112066128ee565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128c906146f5565b60405180910390fd5b6000600267ffffffffffffffff8111156112b2576112b16149b3565b5b6040519080825280602002602001820160405280156112e05781602001602082028036833780820191505090505b509050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561134b57600080fd5b505afa15801561135f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061138391906149f7565b8160008151811061139757611396614a24565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505030816001815181106113e6576113e5614a24565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b6f9de958360008461dead426040518663ffffffff1660e01b81526004016114859493929190614b4c565b6000604051808303818588803b15801561149e57600080fd5b505af11580156114b2573d6000803e3d6000fd5b50505050505050565b6114c36128ee565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611552576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611549906146f5565b60405180910390fd5b81601581905550806016819055506016546015546115709190614744565b601481905550600560145411156115bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b390614be4565b60405180910390fd5b5050565b60175481565b600e60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116296128ee565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116af906146f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006117836128ee565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611812576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611809906146f5565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506000601060006101000a81548160ff0219169083151502179055506001905090565b6118576128ee565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118dd906146f5565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f575f9d01836c9206322151b9e9ec3f2b77b87e71176933b9b44d2d732f768d9582604051611983919061433e565b60405180910390a25050565b6119976128ee565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1d906146f5565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611a4c90614c35565b60006040518083038185875af1925050503d8060008114611a89576040519150601f19603f3d011682016040523d82523d6000602084013e611a8e565b606091505b5050905080611ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac990614c96565b60405180910390fd5b50565b611add6128ee565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b63906146f5565b60405180910390fd5b6001600e60016101000a81548160ff0219169083151502179055506001600e60026101000a81548160ff02191690831515021790555043600d81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611bdd6128ee565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c63906146f5565b60405180910390fd5b80600e60026101000a81548160ff02191690831515021790555050565b606060048054611c9890614835565b80601f0160208091040260200160405190810160405280929190818152602001828054611cc490614835565b8015611d115780601f10611ce657610100808354040283529160200191611d11565b820191906000526020600020905b815481529060010190602001808311611cf457829003601f168201915b5050505050905090565b611d236128ee565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da9906146f5565b60405180910390fd5b7f0000000000000000000000007cafe07c2bcdd064bf74f9fd8358c8ef443f257973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3890614d4e565b60405180910390fd5b611e4b828261375b565b5050565b6000611f12611e5c6128ee565b84611f0d856040518060600160405280602581526020016157db6025913960016000611e866128ee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136f79092919063ffffffff16565b6128f6565b6001905092915050565b6000611f30611f296128ee565b8484612ac1565b6001905092915050565b601b6020528060005260406000206000915054906101000a900460ff1681565b60145481565b600e60019054906101000a900460ff1681565b611f7b6128ee565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461200a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612001906146f5565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516120a7919061433e565b60405180910390a25050565b6120bb6128ee565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461214a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612141906146f5565b60405180910390fd5b670de0b6b3a76400006064600161215f610fa0565b6121699190614867565b61217391906148f0565b61217d91906148f0565b81116121be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b590614de0565b60405180910390fd5b670de0b6b3a7640000816121d29190614867565b600b8190555050565b6121e36128ee565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612272576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612269906146f5565b60405180910390fd5b60005b8383905081101561231157816019600086868581811061229857612297614a24565b5b90506020020160208101906122ad91906143b0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061230990614e00565b915050612275565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b3583838360405161234593929190614ed4565b60405180910390a1505050565b601060009054906101000a900460ff1681565b60095481565b60165481565b60115481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b60006124346128ee565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ba906146f5565b60405180910390fd5b6000601060006101000a81548160ff0219169083151502179055506001905090565b600d5481565b6124f36128ee565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612582576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612579906146f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e990614f78565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6126ba6128ee565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612749576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612740906146f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156127b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b090614fe4565b60405180910390fd5b6127c4816001611f73565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fb3dd4b0ccf73b51db7cb2a59fb88d1082b0fa9389d4ce0e85100fe3b26af78c460405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60155481565b600b5481565b600080828461289f9190614744565b9050838110156128e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128db90615050565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295d906150e2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cd90615174565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612ab49190614368565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2890615206565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9890615298565b60405180910390fd5b6000811415612bbb57612bb683836000613806565b6136f2565b600e60019054906101000a900460ff16612cb057601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c705750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca690615304565b60405180910390fd5b5b600e60009054906101000a900460ff161561328057612ccd611bab565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612d3b5750612d0b611bab565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d745750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612dae575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612dc75750600660149054906101000a900460ff16155b1561327f57601060009054906101000a900460ff1615612f9657612de9611bab565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612e725750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612eca57507f0000000000000000000000007cafe07c2bcdd064bf74f9fd8358c8ef443f257973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612f955743600f60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f47906153bc565b60405180910390fd5b43600f60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130395750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130e057600954811115613083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307a9061544e565b60405180910390fd5b600b5461308f836115d9565b8261309a9190614744565b11156130db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130d2906154ba565b60405180910390fd5b61327e565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131835750601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131d2576009548111156131cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c49061554c565b60405180910390fd5b61327d565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661327c57600b5461322f836115d9565b8261323a9190614744565b111561327b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613272906154ba565b60405180910390fd5b5b5b5b5b5b600061328b306115d9565b90506000600a5482101590508080156132b05750600e60029054906101000a900460ff165b80156132c95750600660149054906101000a900460ff16155b801561331f5750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133755750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133cb5750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561340f576001600660146101000a81548160ff0219169083151502179055506133f3613a9b565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806134c55750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156134cf57600090505b600081156136e257601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561353257506000601154115b156135cc5761355f606461355160115488613c8090919063ffffffff16565b613cfb90919063ffffffff16565b9050601154601354826135729190614867565b61357c91906148f0565b6018600082825461358d9190614744565b92505081905550601154601254826135a59190614867565b6135af91906148f0565b601760008282546135c09190614744565b925050819055506136be565b601b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561362757506000601454115b156136bd57613654606461364660145488613c8090919063ffffffff16565b613cfb90919063ffffffff16565b9050601454601654826136679190614867565b61367191906148f0565b601860008282546136829190614744565b925050819055506014546015548261369a9190614867565b6136a491906148f0565b601760008282546136b59190614744565b925050819055505b5b60008111156136d3576136d2873083613806565b5b80856136df919061556c565b94505b6136ed878787613806565b505050505b505050565b600083831115829061373f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137369190614263565b60405180910390fd5b506000838561374e919061556c565b9050809150509392505050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506137bc828261184f565b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161386d90615206565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138dd90615298565b60405180910390fd5b6138f1838383613d45565b61395c8160405180606001604052806026815260200161578d602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136f79092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506139ef816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461289090919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051613a8e9190614368565b60405180910390a3505050565b6000613aa6306115d9565b9050600080601754601854613abb9190614744565b90506000831480613acc5750600081145b15613ad957505050613c7e565b600060028260185486613aec9190614867565b613af691906148f0565b613b0091906148f0565b90506000613b178286613d4a90919063ffffffff16565b90506000479050613b2782613d94565b6000613b3c8247613d4a90919063ffffffff16565b90506000613b6786613b5960175485613c8090919063ffffffff16565b613cfb90919063ffffffff16565b905060008183613b77919061556c565b905060006018819055506000601781905550600086118015613b995750600081115b15613be657613ba88682613fe6565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601854604051613bdd939291906155a0565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613c2c90614c35565b60006040518083038185875af1925050503d8060008114613c69576040519150601f19603f3d011682016040523d82523d6000602084013e613c6e565b606091505b5050809850505050505050505050505b565b600080831415613c935760009050613cf5565b60008284613ca19190614867565b9050828482613cb091906148f0565b14613cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ce790615649565b60405180910390fd5b809150505b92915050565b6000613d3d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506140e7565b905092915050565b505050565b6000613d8c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506136f7565b905092915050565b6000600267ffffffffffffffff811115613db157613db06149b3565b5b604051908082528060200260200182016040528015613ddf5781602001602082028036833780820191505090505b5090503081600081518110613df757613df6614a24565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613e9957600080fd5b505afa158015613ead573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ed191906149f7565b81600181518110613ee557613ee4614a24565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613f4c30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846128f6565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613fb0959493929190615669565b600060405180830381600087803b158015613fca57600080fd5b505af1158015613fde573d6000803e3d6000fd5b505050505050565b61401330600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846128f6565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000807366b05a08b6e42696bf0d9766c34616319edf810b426040518863ffffffff1660e01b815260040161408e969594939291906156c3565b6060604051808303818588803b1580156140a757600080fd5b505af11580156140bb573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906140e09190615739565b5050505050565b6000808311829061412e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016141259190614263565b60405180910390fd5b506000838561413d91906148f0565b9050809150509392505050565b600080fd5b600080fd5b6000819050919050565b61416781614154565b811461417257600080fd5b50565b6000813590506141848161415e565b92915050565b600080604083850312156141a1576141a061414a565b5b60006141af85828601614175565b92505060206141c085828601614175565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156142045780820151818401526020810190506141e9565b83811115614213576000848401525b50505050565b6000601f19601f8301169050919050565b6000614235826141ca565b61423f81856141d5565b935061424f8185602086016141e6565b61425881614219565b840191505092915050565b6000602082019050818103600083015261427d818461422a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006142b082614285565b9050919050565b6142c0816142a5565b81146142cb57600080fd5b50565b6000813590506142dd816142b7565b92915050565b600080604083850312156142fa576142f961414a565b5b6000614308858286016142ce565b925050602061431985828601614175565b9150509250929050565b60008115159050919050565b61433881614323565b82525050565b6000602082019050614353600083018461432f565b92915050565b61436281614154565b82525050565b600060208201905061437d6000830184614359565b92915050565b6000602082840312156143995761439861414a565b5b60006143a784828501614175565b91505092915050565b6000602082840312156143c6576143c561414a565b5b60006143d4848285016142ce565b91505092915050565b6000819050919050565b60006144026143fd6143f884614285565b6143dd565b614285565b9050919050565b6000614414826143e7565b9050919050565b600061442682614409565b9050919050565b6144368161441b565b82525050565b6000602082019050614451600083018461442d565b92915050565b6000806000606084860312156144705761446f61414a565b5b600061447e868287016142ce565b935050602061448f868287016142ce565b92505060406144a086828701614175565b9150509250925092565b6144b3816142a5565b82525050565b60006020820190506144ce60008301846144aa565b92915050565b600060ff82169050919050565b6144ea816144d4565b82525050565b600060208201905061450560008301846144e1565b92915050565b61451481614323565b811461451f57600080fd5b50565b6000813590506145318161450b565b92915050565b6000806040838503121561454e5761454d61414a565b5b600061455c858286016142ce565b925050602061456d85828601614522565b9150509250929050565b60006020828403121561458d5761458c61414a565b5b600061459b84828501614522565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126145c9576145c86145a4565b5b8235905067ffffffffffffffff8111156145e6576145e56145a9565b5b602083019150836020820283011115614602576146016145ae565b5b9250929050565b6000806000604084860312156146225761462161414a565b5b600084013567ffffffffffffffff8111156146405761463f61414f565b5b61464c868287016145b3565b9350935050602061465f86828701614522565b9150509250925092565b600080604083850312156146805761467f61414a565b5b600061468e858286016142ce565b925050602061469f858286016142ce565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006146df6020836141d5565b91506146ea826146a9565b602082019050919050565b6000602082019050818103600083015261470e816146d2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061474f82614154565b915061475a83614154565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561478f5761478e614715565b5b828201905092915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b60006147d0601d836141d5565b91506147db8261479a565b602082019050919050565b600060208201905081810360008301526147ff816147c3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061484d57607f821691505b6020821081141561486157614860614806565b5b50919050565b600061487282614154565b915061487d83614154565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148b6576148b5614715565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006148fb82614154565b915061490683614154565b925082614916576149156148c1565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302c35250000000000000000000000000000000000602082015250565b600061497d602f836141d5565b915061498882614921565b604082019050919050565b600060208201905081810360008301526149ac81614970565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000815190506149f1816142b7565b92915050565b600060208284031215614a0d57614a0c61414a565b5b6000614a1b848285016149e2565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000614a78614a73614a6e84614a53565b6143dd565b614154565b9050919050565b614a8881614a5d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614ac3816142a5565b82525050565b6000614ad58383614aba565b60208301905092915050565b6000602082019050919050565b6000614af982614a8e565b614b038185614a99565b9350614b0e83614aaa565b8060005b83811015614b3f578151614b268882614ac9565b9750614b3183614ae1565b925050600181019050614b12565b5085935050505092915050565b6000608082019050614b616000830187614a7f565b8181036020830152614b738186614aee565b9050614b8260408301856144aa565b614b8f6060830184614359565b95945050505050565b7f4d757374206b6565702066656573206174203525206f72206c65737300000000600082015250565b6000614bce601c836141d5565b9150614bd982614b98565b602082019050919050565b60006020820190508181036000830152614bfd81614bc1565b9050919050565b600081905092915050565b50565b6000614c1f600083614c04565b9150614c2a82614c0f565b600082019050919050565b6000614c4082614c12565b9150819050919050565b7f6661696c656420746f2077697468647261770000000000000000000000000000600082015250565b6000614c806012836141d5565b9150614c8b82614c4a565b602082019050919050565b60006020820190508181036000830152614caf81614c73565b9050919050565b7f54686520556e695377617020706169722063616e6e6f742062652072656d6f7660008201527f65642066726f6d206175746f6d617465644d61726b65744d616b65725061697260208201527f7300000000000000000000000000000000000000000000000000000000000000604082015250565b6000614d386041836141d5565b9150614d4382614cb6565b606082019050919050565b60006020820190508181036000830152614d6781614d2b565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b6000614dca6022836141d5565b9150614dd582614d6e565b604082019050919050565b60006020820190508181036000830152614df981614dbd565b9050919050565b6000614e0b82614154565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614e3e57614e3d614715565b5b600182019050919050565b6000819050919050565b6000614e6260208401846142ce565b905092915050565b6000602082019050919050565b6000614e838385614a99565b9350614e8e82614e49565b8060005b85811015614ec757614ea48284614e53565b614eae8882614ac9565b9750614eb983614e6a565b925050600181019050614e92565b5085925050509392505050565b60006040820190508181036000830152614eef818587614e77565b9050614efe602083018461432f565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614f626026836141d5565b9150614f6d82614f06565b604082019050919050565b60006020820190508181036000830152614f9181614f55565b9050919050565b7f63616e6e6f742073657420746f20616464726573732030000000000000000000600082015250565b6000614fce6017836141d5565b9150614fd982614f98565b602082019050919050565b60006020820190508181036000830152614ffd81614fc1565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061503a601b836141d5565b915061504582615004565b602082019050919050565b600060208201905081810360008301526150698161502d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006150cc6024836141d5565b91506150d782615070565b604082019050919050565b600060208201905081810360008301526150fb816150bf565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061515e6022836141d5565b915061516982615102565b604082019050919050565b6000602082019050818103600083015261518d81615151565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006151f06025836141d5565b91506151fb82615194565b604082019050919050565b6000602082019050818103600083015261521f816151e3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006152826023836141d5565b915061528d82615226565b604082019050919050565b600060208201905081810360008301526152b181615275565b9050919050565b7f54726164696e67206973206e6f7420616374697665207965742e000000000000600082015250565b60006152ee601a836141d5565b91506152f9826152b8565b602082019050919050565b6000602082019050818103600083015261531d816152e1565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006153a66049836141d5565b91506153b182615324565b606082019050919050565b600060208201905081810360008301526153d581615399565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006154386035836141d5565b9150615443826153dc565b604082019050919050565b600060208201905081810360008301526154678161542b565b9050919050565b7f556e61626c6520746f20657863656564204d61782057616c6c65740000000000600082015250565b60006154a4601b836141d5565b91506154af8261546e565b602082019050919050565b600060208201905081810360008301526154d381615497565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006155366036836141d5565b9150615541826154da565b604082019050919050565b6000602082019050818103600083015261556581615529565b9050919050565b600061557782614154565b915061558283614154565b92508282101561559557615594614715565b5b828203905092915050565b60006060820190506155b56000830186614359565b6155c26020830185614359565b6155cf6040830184614359565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006156336021836141d5565b915061563e826155d7565b604082019050919050565b6000602082019050818103600083015261566281615626565b9050919050565b600060a08201905061567e6000830188614359565b61568b6020830187614a7f565b818103604083015261569d8186614aee565b90506156ac60608301856144aa565b6156b96080830184614359565b9695505050505050565b600060c0820190506156d860008301896144aa565b6156e56020830188614359565b6156f26040830187614a7f565b6156ff6060830186614a7f565b61570c60808301856144aa565b61571960a0830184614359565b979650505050505050565b6000815190506157338161415e565b92915050565b6000806000606084860312156157525761575161414a565b5b600061576086828701615724565b935050602061577186828701615724565b925050604061578286828701615724565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209709c5800c99a9daa9d6453e5f14ff51533f277c293bc1e58fd9534d10822a3064736f6c63430008090033

Deployed Bytecode Sourcemap

29465:15220:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35255:293;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7605:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9772:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30454:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29858:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34495:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30827:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29542:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8725:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30640:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10423:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30422:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29667:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8567:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11187:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29590:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30026:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37072:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43954:523;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34959:284;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30606:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30106:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8896:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22084:148;;;;;;;;;;;;;:::i;:::-;;37253:159;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35556:202;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44489:191;;;;;;;;;;;;;:::i;:::-;;34130:156;;;;;;;;;;;;;:::i;:::-;;21442:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34386:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7824:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36272:252;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11908:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9236:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31049:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30498:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30066:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35766:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34736:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35958:306;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30329:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29739:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30563:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30387:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29698:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9474:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29781:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33935:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29943:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22387:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36779:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30532:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29821;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35255:293;21664:12;:10;:12::i;:::-;21654:22;;:6;;;;;;;;;;;:22;;;21646:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35362:7:::1;35349:10;:20;;;;35399:13;35380:16;:32;;;;35452:16;;35439:10;;:29;;;;:::i;:::-;35423:13;:45;;;;35504:2;35487:13;;:19;;35479:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;35255:293:::0;;:::o;7605:100::-;7659:13;7692:5;7685:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7605:100;:::o;9772:169::-;9855:4;9872:39;9881:12;:10;:12::i;:::-;9895:7;9904:6;9872:8;:39::i;:::-;9929:4;9922:11;;9772:169;;;;:::o;30454:31::-;;;;:::o;29858:39::-;;;;:::o;34495:229::-;21664:12;:10;:12::i;:::-;21654:22;;:6;;;;;;;;;;;:22;;;21646:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34609:4:::1;34604:3;34600:1;34584:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:23;;;;:::i;:::-;34583:30;;;;:::i;:::-;34574:6;:39;34566:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;34709:6;34699;:17;;;;:::i;:::-;34676:20;:40;;;;34495:229:::0;:::o;30827:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;29542:41::-;;;;;;;;;;;;;:::o;8725:108::-;8786:7;8813:12;;8806:19;;8725:108;:::o;30640:33::-;;;;:::o;10423:355::-;10563:4;10580:36;10590:6;10598:9;10609:6;10580:9;:36::i;:::-;10627:121;10636:6;10644:12;:10;:12::i;:::-;10658:89;10696:6;10658:89;;;;;;;;;;;;;;;;;:11;:19;10670:6;10658:19;;;;;;;;;;;;;;;:33;10678:12;:10;:12::i;:::-;10658:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;10627:8;:121::i;:::-;10766:4;10759:11;;10423:355;;;;;:::o;30422:25::-;;;;:::o;29667:24::-;;;;;;;;;;;;;:::o;8567:93::-;8625:5;8650:2;8643:9;;8567:93;:::o;11187:218::-;11275:4;11292:83;11301:12;:10;:12::i;:::-;11315:7;11324:50;11363:10;11324:11;:25;11336:12;:10;:12::i;:::-;11324:25;;;;;;;;;;;;;;;:34;11350:7;11324:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11292:8;:83::i;:::-;11393:4;11386:11;;11187:218;;;;:::o;29590:38::-;;;:::o;30026:33::-;;;;;;;;;;;;;:::o;37072:125::-;37137:4;37161:19;:28;37181:7;37161:28;;;;;;;;;;;;;;;;;;;;;;;;;37154:35;;37072:125;;;:::o;43954:523::-;21664:12;:10;:12::i;:::-;21654:22;;:6;;;;;;;;;;;:22;;;21646:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;44085:21:::1;44123:1;44109:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44085:40;;44146:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44136:4;44141:1;44136:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;::::0;::::1;44197:4;44179;44184:1;44179:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;44241:15;;;;;;;;;;;:66;;;44315:14;44345:1;44394:4;44421:6;44443:15;44241:228;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;44016:461;43954:523:::0;:::o;34959:284::-;21664:12;:10;:12::i;:::-;21654:22;;:6;;;;;;;;;;;:22;;;21646:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35064:7:::1;35052:9;:19;;;;35100:13;35082:15;:31;;;;35151:15;;35139:9;;:27;;;;:::i;:::-;35124:12;:42;;;;35201:1;35185:12;;:17;;35177:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;34959:284:::0;;:::o;30606:27::-;;;;:::o;30106:31::-;;;;;;;;;;;;;:::o;8896:127::-;8970:7;8997:9;:18;9007:7;8997:18;;;;;;;;;;;;;;;;8990:25;;8896:127;;;:::o;22084:148::-;21664:12;:10;:12::i;:::-;21654:22;;:6;;;;;;;;;;;:22;;;21646:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22191:1:::1;22154:40;;22175:6;;;;;;;;;;;22154:40;;;;;;;;;;;;22222:1;22205:6;;:19;;;;;;;;;;;;;;;;;;22084:148::o:0;37253:159::-;37305:4;21664:12;:10;:12::i;:::-;21654:22;;:6;;;;;;;;;;;:22;;;21646:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37338:5:::1;37321:14;;:22;;;;;;;;;;;;;;;;;;37377:5;37354:20;;:28;;;;;;;;;;;;;;;;;;37400:4;37393:11;;37253:159:::0;:::o;35556:202::-;21664:12;:10;:12::i;:::-;21654:22;;:6;;;;;;;;;;;:22;;;21646:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35688:4:::1;35646:31;:39;35678:6;35646:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35737:6;35708:42;;;35745:4;35708:42;;;;;;:::i;:::-;;;;;;;;35556:202:::0;;:::o;44489:191::-;21664:12;:10;:12::i;:::-;21654:22;;:6;;;;;;;;;;;:22;;;21646:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;44548:12:::1;44573:10;44565:24;;44597:21;44565:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44547:76;;;44642:7;44634:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;44536:144;44489:191::o:0;34130:156::-;21664:12;:10;:12::i;:::-;21654:22;;:6;;;;;;;;;;;:22;;;21646:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34201:4:::1;34185:13;;:20;;;;;;;;;;;;;;;;;;34230:4;34216:11;;:18;;;;;;;;;;;;;;;;;;34266:12;34245:18;:33;;;;34130:156::o:0;21442:79::-;21480:7;21507:6;;;;;;;;;;;21500:13;;21442:79;:::o;34386:101::-;21664:12;:10;:12::i;:::-;21654:22;;:6;;;;;;;;;;;:22;;;21646:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34472:7:::1;34458:11;;:21;;;;;;;;;;;;;;;;;;34386:101:::0;:::o;7824:104::-;7880:13;7913:7;7906:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7824:104;:::o;36272:252::-;21664:12;:10;:12::i;:::-;21654:22;;:6;;;;;;;;;;;:22;;;21646:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36379:13:::1;36371:21;;:4;:21;;;;36363:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;36475:41;36504:4;36510:5;36475:28;:41::i;:::-;36272:252:::0;;:::o;11908:269::-;12001:4;12018:129;12027:12;:10;:12::i;:::-;12041:7;12050:96;12089:15;12050:96;;;;;;;;;;;;;;;;;:11;:25;12062:12;:10;:12::i;:::-;12050:25;;;;;;;;;;;;;;;:34;12076:7;12050:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;12018:8;:129::i;:::-;12165:4;12158:11;;11908:269;;;;:::o;9236:175::-;9322:4;9339:42;9349:12;:10;:12::i;:::-;9363:9;9374:6;9339:9;:42::i;:::-;9399:4;9392:11;;9236:175;;;;:::o;31049:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;30498:27::-;;;;:::o;30066:33::-;;;;;;;;;;;;;:::o;35766:184::-;21664:12;:10;:12::i;:::-;21654:22;;:6;;;;;;;;;;;:22;;;21646:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35882:8:::1;35851:19;:28;35871:7;35851:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;35924:7;35908:34;;;35933:8;35908:34;;;;;;:::i;:::-;;;;;;;;35766:184:::0;;:::o;34736:211::-;21664:12;:10;:12::i;:::-;21654:22;;:6;;;;;;;;;;;:22;;;21646:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34856:4:::1;34851:3;34847:1;34831:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:23;;;;:::i;:::-;34830:30;;;;:::i;:::-;34821:6;:39;34813:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;34932:6;34922;:17;;;;:::i;:::-;34910:9;:29;;;;34736:211:::0;:::o;35958:306::-;21664:12;:10;:12::i;:::-;21654:22;;:6;;;;;;;;;;;:22;;;21646:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36077:9:::1;36073:115;36096:8;;:15;;36092:1;:19;36073:115;;;36168:8;36133:19;:32;36153:8;;36162:1;36153:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;36133:32;;;;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;36113:3;;;;;:::i;:::-;;;;36073:115;;;;36205:51;36237:8;;36247;36205:51;;;;;;;;:::i;:::-;;;;;;;;35958:306:::0;;;:::o;30329:39::-;;;;;;;;;;;;;:::o;29739:35::-;;;;:::o;30563:30::-;;;;:::o;30387:28::-;;;;:::o;29698:24::-;;;;;;;;;;;;;:::o;9474:151::-;9563:7;9590:11;:18;9602:5;9590:18;;;;;;;;;;;;;;;:27;9609:7;9590:27;;;;;;;;;;;;;;;;9583:34;;9474:151;;;;:::o;29781:33::-;;;;:::o;33935:134::-;33995:4;21664:12;:10;:12::i;:::-;21654:22;;:6;;;;;;;;;;;:22;;;21646:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34034:5:::1;34011:20;;:28;;;;;;;;;;;;;;;;;;34057:4;34050:11;;33935:134:::0;:::o;29943:37::-;;;;:::o;22387:244::-;21664:12;:10;:12::i;:::-;21654:22;;:6;;;;;;;;;;;:22;;;21646:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22496:1:::1;22476:22;;:8;:22;;;;22468:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22586:8;22557:38;;22578:6;;;;;;;;;;;22557:38;;;;;;;;;;;;22615:8;22606:6;;:17;;;;;;;;;;;;;;;;;;22387:244:::0;:::o;36779:285::-;21664:12;:10;:12::i;:::-;21654:22;;:6;;;;;;;;;;;:22;;;21646:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36888:1:::1;36864:26;;:12;:26;;;;36856:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;36929:35;36945:12;36959:4;36929:15;:35::i;:::-;37011:9;;;;;;;;;;;36980:41;;36997:12;36980:41;;;;;;;;;;;;37044:12;37032:9;;:24;;;;;;;;;;;;;;;;;;36779:285:::0;:::o;30532:24::-;;;;:::o;29821:::-;;;;:::o;16486:181::-;16544:7;16564:9;16580:1;16576;:5;;;;:::i;:::-;16564:17;;16605:1;16600;:6;;16592:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;16658:1;16651:8;;;16486:181;;;;:::o;239:98::-;292:7;319:10;312:17;;239:98;:::o;15108:380::-;15261:1;15244:19;;:5;:19;;;;15236:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15342:1;15323:21;;:7;:21;;;;15315:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15426:6;15396:11;:18;15408:5;15396:18;;;;;;;;;;;;;;;:27;15415:7;15396:27;;;;;;;;;;;;;;;:36;;;;15464:7;15448:32;;15457:5;15448:32;;;15473:6;15448:32;;;;;;:::i;:::-;;;;;;;;15108:380;;;:::o;37424:3891::-;37572:1;37556:18;;:4;:18;;;;37548:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37649:1;37635:16;;:2;:16;;;;37627:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;37726:1;37716:6;:11;37713:92;;;37744:28;37760:4;37766:2;37770:1;37744:15;:28::i;:::-;37787:7;;37713:92;37829:13;;;;;;;;;;;37825:136;;37866:19;:25;37886:4;37866:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;37895:19;:23;37915:2;37895:23;;;;;;;;;;;;;;;;;;;;;;;;;37866:52;37858:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;37825:136;37984:14;;;;;;;;;;;37981:1662;;;38044:7;:5;:7::i;:::-;38036:15;;:4;:15;;;;:49;;;;;38078:7;:5;:7::i;:::-;38072:13;;:2;:13;;;;38036:49;:86;;;;;38120:1;38106:16;;:2;:16;;;;38036:86;:128;;;;;38157:6;38143:21;;:2;:21;;;;38036:128;:158;;;;;38186:8;;;;;;;;;;;38185:9;38036:158;38014:1618;;;38368:20;;;;;;;;;;;38364:423;;;38422:7;:5;:7::i;:::-;38416:13;;:2;:13;;;;:47;;;;;38447:15;;;;;;;;;;;38433:30;;:2;:30;;;;38416:47;:79;;;;;38481:13;38467:28;;:2;:28;;;;38416:79;38412:356;;;38573:12;38531:28;:39;38560:9;38531:39;;;;;;;;;;;;;;;;:54;38523:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;38732:12;38690:28;:39;38719:9;38690:39;;;;;;;;;;;;;;;:54;;;;38412:356;38364:423;38855:25;:31;38881:4;38855:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;38891:31;:35;38923:2;38891:35;;;;;;;;;;;;;;;;;;;;;;;;;38890:36;38855:71;38851:766;;;38969:20;;38959:6;:30;;38951:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;39104:9;;39087:13;39097:2;39087:9;:13::i;:::-;39078:6;:22;;;;:::i;:::-;:35;;39070:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;38851:766;;;39222:25;:29;39248:2;39222:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;39256:31;:37;39288:4;39256:37;;;;;;;;;;;;;;;;;;;;;;;;;39255:38;39222:71;39218:399;;;39336:20;;39326:6;:30;;39318:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;39218:399;;;39462:31;:35;39494:2;39462:35;;;;;;;;;;;;;;;;;;;;;;;;;39458:159;;39556:9;;39539:13;39549:2;39539:9;:13::i;:::-;39530:6;:22;;;;:::i;:::-;:35;;39522:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;39458:159;39218:399;38851:766;38014:1618;37981:1662;39649:28;39680:24;39698:4;39680:9;:24::i;:::-;39649:55;;39725:12;39764:18;;39740:20;:42;;39725:57;;39813:7;:35;;;;;39837:11;;;;;;;;;;;39813:35;:61;;;;;39866:8;;;;;;;;;;;39865:9;39813:61;:110;;;;;39892:25;:31;39918:4;39892:31;;;;;;;;;;;;;;;;;;;;;;;;;39891:32;39813:110;:153;;;;;39941:19;:25;39961:4;39941:25;;;;;;;;;;;;;;;;;;;;;;;;;39940:26;39813:153;:194;;;;;39984:19;:23;40004:2;39984:23;;;;;;;;;;;;;;;;;;;;;;;;;39983:24;39813:194;39795:322;;;40045:4;40034:8;;:15;;;;;;;;;;;;;;;;;;40064:10;:8;:10::i;:::-;40100:5;40089:8;;:16;;;;;;;;;;;;;;;;;;39795:322;40129:12;40145:8;;;;;;;;;;;40144:9;40129:24;;40254:19;:25;40274:4;40254:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;40283:19;:23;40303:2;40283:23;;;;;;;;;;;;;;;;;;;;;;;;;40254:52;40251:99;;;40333:5;40323:15;;40251:99;40370:12;40461:7;40458:800;;;40512:25;:29;40538:2;40512:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;40561:1;40545:13;;:17;40512:50;40508:593;;;40589:34;40619:3;40589:25;40600:13;;40589:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;40582:41;;40690:13;;40671:16;;40664:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;40642:18;;:61;;;;;;;:::i;:::-;;;;;;;;40758:13;;40745:10;;40738:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;40722:12;;:49;;;;;;;:::i;:::-;;;;;;;;40508:593;;;40832:25;:31;40858:4;40832:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;40882:1;40867:12;;:16;40832:51;40829:272;;;40908:33;40937:3;40908:24;40919:12;;40908:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;40901:40;;41007:12;;40989:15;;40982:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;40960:18;;:59;;;;;;;:::i;:::-;;;;;;;;41073:12;;41061:9;;41054:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;41038:12;;:47;;;;;;;:::i;:::-;;;;;;;;40829:272;40508:593;41127:1;41120:4;:8;41117:93;;;41152:42;41168:4;41182;41189;41152:15;:42::i;:::-;41117:93;41242:4;41232:14;;;;;:::i;:::-;;;40458:800;41270:33;41286:4;41292:2;41296:6;41270:15;:33::i;:::-;37537:3778;;;;37424:3891;;;;:::o;17389:192::-;17475:7;17508:1;17503;:6;;17511:12;17495:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17535:9;17551:1;17547;:5;;;;:::i;:::-;17535:17;;17572:1;17565:8;;;17389:192;;;;;:::o;36532:239::-;36649:5;36615:25;:31;36641:4;36615:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36667:38;36693:4;36699:5;36667:25;:38::i;:::-;36757:5;36723:40;;36751:4;36723:40;;;;;;;;;;;;36532:239;;:::o;12667:573::-;12825:1;12807:20;;:6;:20;;;;12799:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12909:1;12888:23;;:9;:23;;;;12880:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12964:47;12985:6;12993:9;13004:6;12964:20;:47::i;:::-;13044:71;13066:6;13044:71;;;;;;;;;;;;;;;;;:9;:17;13054:6;13044:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;13024:9;:17;13034:6;13024:17;;;;;;;;;;;;;;;:91;;;;13149:32;13174:6;13149:9;:20;13159:9;13149:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;13126:9;:20;13136:9;13126:20;;;;;;;;;;;;;;;:55;;;;13214:9;13197:35;;13206:6;13197:35;;;13225:6;13197:35;;;;;;:::i;:::-;;;;;;;;12667:573;;;:::o;42513:1338::-;42552:23;42578:24;42596:4;42578:9;:24::i;:::-;42552:50;;42613:12;42636:25;42685:12;;42664:18;;:33;;;;:::i;:::-;42636:61;;42740:1;42721:15;:20;:46;;;;42766:1;42745:17;:22;42721:46;42718:60;;;42770:7;;;;;42718:60;42847:23;42932:1;42912:17;42891:18;;42873:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;42847:86;;42944:26;42973:36;42993:15;42973;:19;;:36;;;;:::i;:::-;42944:65;;43030:25;43058:21;43030:49;;43092:36;43109:18;43092:16;:36::i;:::-;43150:18;43171:44;43197:17;43171:21;:25;;:44;;;;:::i;:::-;43150:65;;43236:17;43256:51;43289:17;43256:28;43271:12;;43256:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;43236:71;;43328:23;43367:9;43354:10;:22;;;;:::i;:::-;43328:48;;43418:1;43397:18;:22;;;;43445:1;43430:12;:16;;;;43488:1;43470:15;:19;:42;;;;;43511:1;43493:15;:19;43470:42;43467:210;;;43528:46;43541:15;43558;43528:12;:46::i;:::-;43594:71;43609:18;43629:15;43646:18;;43594:71;;;;;;;;:::i;:::-;;;;;;;;43467:210;43774:9;;;;;;;;;;;43766:23;;43797:21;43766:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43753:70;;;;;42541:1310;;;;;;;;;42513:1338;:::o;17840:471::-;17898:7;18148:1;18143;:6;18139:47;;;18173:1;18166:8;;;;18139:47;18198:9;18214:1;18210;:5;;;;:::i;:::-;18198:17;;18243:1;18238;18234;:5;;;;:::i;:::-;:10;18226:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;18302:1;18295:8;;;17840:471;;;;;:::o;18787:132::-;18845:7;18872:39;18876:1;18879;18872:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;18865:46;;18787:132;;;;:::o;16091:125::-;;;;:::o;16950:136::-;17008:7;17035:43;17039:1;17042;17035:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;17028:50;;16950:136;;;;:::o;41329:601::-;41457:21;41495:1;41481:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41457:40;;41526:4;41508;41513:1;41508:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;41552:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41542:4;41547:1;41542:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;41587:62;41604:4;41619:15;;;;;;;;;;;41637:11;41587:8;:62::i;:::-;41688:15;;;;;;;;;;;:66;;;41769:11;41795:1;41839:4;41866;41886:15;41688:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41384:546;41329:601;:::o;41942:559::-;42090:62;42107:4;42122:15;;;;;;;;;;;42140:11;42090:8;:62::i;:::-;42195:15;;;;;;;;;;;:31;;;42234:9;42267:4;42287:11;42313:1;42356;42407:42;42465:15;42195:296;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;41942:559;;:::o;19415:278::-;19501:7;19533:1;19529;:5;19536:12;19521:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;19560:9;19576:1;19572;:5;;;;:::i;:::-;19560:17;;19684:1;19677:8;;;19415:278;;;;;:::o;88:117:1:-;197:1;194;187:12;211:117;320:1;317;310: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:307::-;1518:1;1528:113;1542:6;1539:1;1536:13;1528:113;;;1627:1;1622:3;1618:11;1612:18;1608:1;1603:3;1599:11;1592:39;1564:2;1561:1;1557:10;1552:15;;1528:113;;;1659:6;1656:1;1653:13;1650:101;;;1739:1;1730:6;1725:3;1721:16;1714:27;1650:101;1499:258;1450:307;;;:::o;1763:102::-;1804:6;1855:2;1851:7;1846:2;1839:5;1835:14;1831:28;1821:38;;1763:102;;;:::o;1871:364::-;1959:3;1987:39;2020:5;1987:39;:::i;:::-;2042:71;2106:6;2101:3;2042:71;:::i;:::-;2035:78;;2122:52;2167:6;2162:3;2155:4;2148:5;2144:16;2122:52;:::i;:::-;2199:29;2221:6;2199:29;:::i;:::-;2194:3;2190:39;2183:46;;1963:272;1871:364;;;;:::o;2241:313::-;2354:4;2392:2;2381:9;2377:18;2369:26;;2441:9;2435:4;2431:20;2427:1;2416:9;2412:17;2405:47;2469:78;2542:4;2533:6;2469:78;:::i;:::-;2461:86;;2241:313;;;;:::o;2560:126::-;2597:7;2637:42;2630:5;2626:54;2615:65;;2560:126;;;:::o;2692:96::-;2729:7;2758:24;2776:5;2758:24;:::i;:::-;2747:35;;2692:96;;;:::o;2794:122::-;2867:24;2885:5;2867:24;:::i;:::-;2860:5;2857:35;2847:63;;2906:1;2903;2896:12;2847:63;2794:122;:::o;2922:139::-;2968:5;3006:6;2993:20;2984:29;;3022:33;3049:5;3022:33;:::i;:::-;2922:139;;;;:::o;3067:474::-;3135:6;3143;3192:2;3180:9;3171:7;3167:23;3163:32;3160:119;;;3198:79;;:::i;:::-;3160:119;3318:1;3343:53;3388:7;3379:6;3368:9;3364:22;3343:53;:::i;:::-;3333:63;;3289:117;3445:2;3471:53;3516:7;3507:6;3496:9;3492:22;3471:53;:::i;:::-;3461:63;;3416:118;3067:474;;;;;:::o;3547:90::-;3581:7;3624:5;3617:13;3610:21;3599:32;;3547:90;;;:::o;3643:109::-;3724:21;3739:5;3724:21;:::i;:::-;3719:3;3712:34;3643:109;;:::o;3758:210::-;3845:4;3883:2;3872:9;3868:18;3860:26;;3896:65;3958:1;3947:9;3943:17;3934:6;3896:65;:::i;:::-;3758:210;;;;:::o;3974:118::-;4061:24;4079:5;4061:24;:::i;:::-;4056:3;4049:37;3974:118;;:::o;4098:222::-;4191:4;4229:2;4218:9;4214:18;4206:26;;4242:71;4310:1;4299:9;4295:17;4286:6;4242:71;:::i;:::-;4098:222;;;;:::o;4326:329::-;4385:6;4434:2;4422:9;4413:7;4409:23;4405:32;4402:119;;;4440:79;;:::i;:::-;4402:119;4560:1;4585:53;4630:7;4621:6;4610:9;4606:22;4585:53;:::i;:::-;4575:63;;4531:117;4326:329;;;;:::o;4661:::-;4720:6;4769:2;4757:9;4748:7;4744:23;4740:32;4737:119;;;4775:79;;:::i;:::-;4737:119;4895:1;4920:53;4965:7;4956:6;4945:9;4941:22;4920:53;:::i;:::-;4910:63;;4866:117;4661:329;;;;:::o;4996:60::-;5024:3;5045:5;5038:12;;4996:60;;;:::o;5062:142::-;5112:9;5145:53;5163:34;5172:24;5190:5;5172:24;:::i;:::-;5163:34;:::i;:::-;5145:53;:::i;:::-;5132:66;;5062:142;;;:::o;5210:126::-;5260:9;5293:37;5324:5;5293:37;:::i;:::-;5280:50;;5210:126;;;:::o;5342:153::-;5419:9;5452:37;5483:5;5452:37;:::i;:::-;5439:50;;5342:153;;;:::o;5501:185::-;5615:64;5673:5;5615:64;:::i;:::-;5610:3;5603:77;5501:185;;:::o;5692:276::-;5812:4;5850:2;5839:9;5835:18;5827:26;;5863:98;5958:1;5947:9;5943:17;5934:6;5863:98;:::i;:::-;5692:276;;;;:::o;5974:619::-;6051:6;6059;6067;6116:2;6104:9;6095:7;6091:23;6087:32;6084:119;;;6122:79;;:::i;:::-;6084:119;6242:1;6267:53;6312:7;6303:6;6292:9;6288:22;6267:53;:::i;:::-;6257:63;;6213:117;6369:2;6395:53;6440:7;6431:6;6420:9;6416:22;6395:53;:::i;:::-;6385:63;;6340:118;6497:2;6523:53;6568:7;6559:6;6548:9;6544:22;6523:53;:::i;:::-;6513:63;;6468:118;5974:619;;;;;:::o;6599:118::-;6686:24;6704:5;6686:24;:::i;:::-;6681:3;6674:37;6599:118;;:::o;6723:222::-;6816:4;6854:2;6843:9;6839:18;6831:26;;6867:71;6935:1;6924:9;6920:17;6911:6;6867:71;:::i;:::-;6723:222;;;;:::o;6951:86::-;6986:7;7026:4;7019:5;7015:16;7004:27;;6951:86;;;:::o;7043:112::-;7126:22;7142:5;7126:22;:::i;:::-;7121:3;7114:35;7043:112;;:::o;7161:214::-;7250:4;7288:2;7277:9;7273:18;7265:26;;7301:67;7365:1;7354:9;7350:17;7341:6;7301:67;:::i;:::-;7161:214;;;;:::o;7381:116::-;7451:21;7466:5;7451:21;:::i;:::-;7444:5;7441:32;7431:60;;7487:1;7484;7477:12;7431:60;7381:116;:::o;7503:133::-;7546:5;7584:6;7571:20;7562:29;;7600:30;7624:5;7600:30;:::i;:::-;7503:133;;;;:::o;7642:468::-;7707:6;7715;7764:2;7752:9;7743:7;7739:23;7735:32;7732:119;;;7770:79;;:::i;:::-;7732:119;7890:1;7915:53;7960:7;7951:6;7940:9;7936:22;7915:53;:::i;:::-;7905:63;;7861:117;8017:2;8043:50;8085:7;8076:6;8065:9;8061:22;8043:50;:::i;:::-;8033:60;;7988:115;7642:468;;;;;:::o;8116:323::-;8172:6;8221:2;8209:9;8200:7;8196:23;8192:32;8189:119;;;8227:79;;:::i;:::-;8189:119;8347:1;8372:50;8414:7;8405:6;8394:9;8390:22;8372:50;:::i;:::-;8362:60;;8318:114;8116:323;;;;:::o;8445:117::-;8554:1;8551;8544:12;8568:117;8677:1;8674;8667:12;8691:117;8800:1;8797;8790:12;8831:568;8904:8;8914:6;8964:3;8957:4;8949:6;8945:17;8941:27;8931:122;;8972:79;;:::i;:::-;8931:122;9085:6;9072:20;9062:30;;9115:18;9107:6;9104:30;9101:117;;;9137:79;;:::i;:::-;9101:117;9251:4;9243:6;9239:17;9227:29;;9305:3;9297:4;9289:6;9285:17;9275:8;9271:32;9268:41;9265:128;;;9312:79;;:::i;:::-;9265:128;8831:568;;;;;:::o;9405:698::-;9497:6;9505;9513;9562:2;9550:9;9541:7;9537:23;9533:32;9530:119;;;9568:79;;:::i;:::-;9530:119;9716:1;9705:9;9701:17;9688:31;9746:18;9738:6;9735:30;9732:117;;;9768:79;;:::i;:::-;9732:117;9881:80;9953:7;9944:6;9933:9;9929:22;9881:80;:::i;:::-;9863:98;;;;9659:312;10010:2;10036:50;10078:7;10069:6;10058:9;10054:22;10036:50;:::i;:::-;10026:60;;9981:115;9405:698;;;;;:::o;10109:474::-;10177:6;10185;10234:2;10222:9;10213:7;10209:23;10205:32;10202:119;;;10240:79;;:::i;:::-;10202:119;10360:1;10385:53;10430:7;10421:6;10410:9;10406:22;10385:53;:::i;:::-;10375:63;;10331:117;10487:2;10513:53;10558:7;10549:6;10538:9;10534:22;10513:53;:::i;:::-;10503:63;;10458:118;10109:474;;;;;:::o;10589:182::-;10729:34;10725:1;10717:6;10713:14;10706:58;10589:182;:::o;10777:366::-;10919:3;10940:67;11004:2;10999:3;10940:67;:::i;:::-;10933:74;;11016:93;11105:3;11016:93;:::i;:::-;11134:2;11129:3;11125:12;11118:19;;10777:366;;;:::o;11149:419::-;11315:4;11353:2;11342:9;11338:18;11330:26;;11402:9;11396:4;11392:20;11388:1;11377:9;11373:17;11366:47;11430:131;11556:4;11430:131;:::i;:::-;11422:139;;11149:419;;;:::o;11574:180::-;11622:77;11619:1;11612:88;11719:4;11716:1;11709:15;11743:4;11740:1;11733:15;11760:305;11800:3;11819:20;11837:1;11819:20;:::i;:::-;11814:25;;11853:20;11871:1;11853:20;:::i;:::-;11848:25;;12007:1;11939:66;11935:74;11932:1;11929:81;11926:107;;;12013:18;;:::i;:::-;11926:107;12057:1;12054;12050:9;12043:16;;11760:305;;;;:::o;12071:179::-;12211:31;12207:1;12199:6;12195:14;12188:55;12071:179;:::o;12256:366::-;12398:3;12419:67;12483:2;12478:3;12419:67;:::i;:::-;12412:74;;12495:93;12584:3;12495:93;:::i;:::-;12613:2;12608:3;12604:12;12597:19;;12256:366;;;:::o;12628:419::-;12794:4;12832:2;12821:9;12817:18;12809:26;;12881:9;12875:4;12871:20;12867:1;12856:9;12852:17;12845:47;12909:131;13035:4;12909:131;:::i;:::-;12901:139;;12628:419;;;:::o;13053:180::-;13101:77;13098:1;13091:88;13198:4;13195:1;13188:15;13222:4;13219:1;13212:15;13239:320;13283:6;13320:1;13314:4;13310:12;13300:22;;13367:1;13361:4;13357:12;13388:18;13378:81;;13444:4;13436:6;13432:17;13422:27;;13378:81;13506:2;13498:6;13495:14;13475:18;13472:38;13469:84;;;13525:18;;:::i;:::-;13469:84;13290:269;13239:320;;;:::o;13565:348::-;13605:7;13628:20;13646:1;13628:20;:::i;:::-;13623:25;;13662:20;13680:1;13662:20;:::i;:::-;13657:25;;13850:1;13782:66;13778:74;13775:1;13772:81;13767:1;13760:9;13753:17;13749:105;13746:131;;;13857:18;;:::i;:::-;13746:131;13905:1;13902;13898:9;13887:20;;13565:348;;;;:::o;13919:180::-;13967:77;13964:1;13957:88;14064:4;14061:1;14054:15;14088:4;14085:1;14078:15;14105:185;14145:1;14162:20;14180:1;14162:20;:::i;:::-;14157:25;;14196:20;14214:1;14196:20;:::i;:::-;14191:25;;14235:1;14225:35;;14240:18;;:::i;:::-;14225:35;14282:1;14279;14275:9;14270:14;;14105:185;;;;:::o;14296:234::-;14436:34;14432:1;14424:6;14420:14;14413:58;14505:17;14500:2;14492:6;14488:15;14481:42;14296:234;:::o;14536:366::-;14678:3;14699:67;14763:2;14758:3;14699:67;:::i;:::-;14692:74;;14775:93;14864:3;14775:93;:::i;:::-;14893:2;14888:3;14884:12;14877:19;;14536:366;;;:::o;14908:419::-;15074:4;15112:2;15101:9;15097:18;15089:26;;15161:9;15155:4;15151:20;15147:1;15136:9;15132:17;15125:47;15189:131;15315:4;15189:131;:::i;:::-;15181:139;;14908:419;;;:::o;15333:180::-;15381:77;15378:1;15371:88;15478:4;15475:1;15468:15;15502:4;15499:1;15492:15;15519:143;15576:5;15607:6;15601:13;15592:22;;15623:33;15650:5;15623:33;:::i;:::-;15519:143;;;;:::o;15668:351::-;15738:6;15787:2;15775:9;15766:7;15762:23;15758:32;15755:119;;;15793:79;;:::i;:::-;15755:119;15913:1;15938:64;15994:7;15985:6;15974:9;15970:22;15938:64;:::i;:::-;15928:74;;15884:128;15668:351;;;;:::o;16025:180::-;16073:77;16070:1;16063:88;16170:4;16167:1;16160:15;16194:4;16191:1;16184:15;16211:85;16256:7;16285:5;16274:16;;16211:85;;;:::o;16302:158::-;16360:9;16393:61;16411:42;16420:32;16446:5;16420:32;:::i;:::-;16411:42;:::i;:::-;16393:61;:::i;:::-;16380:74;;16302:158;;;:::o;16466:147::-;16561:45;16600:5;16561:45;:::i;:::-;16556:3;16549:58;16466:147;;:::o;16619:114::-;16686:6;16720:5;16714:12;16704:22;;16619:114;;;:::o;16739:184::-;16838:11;16872:6;16867:3;16860:19;16912:4;16907:3;16903:14;16888:29;;16739:184;;;;:::o;16929:132::-;16996:4;17019:3;17011:11;;17049:4;17044:3;17040:14;17032:22;;16929:132;;;:::o;17067:108::-;17144:24;17162:5;17144:24;:::i;:::-;17139:3;17132:37;17067:108;;:::o;17181:179::-;17250:10;17271:46;17313:3;17305:6;17271:46;:::i;:::-;17349:4;17344:3;17340:14;17326:28;;17181:179;;;;:::o;17366:113::-;17436:4;17468;17463:3;17459:14;17451:22;;17366:113;;;:::o;17515:732::-;17634:3;17663:54;17711:5;17663:54;:::i;:::-;17733:86;17812:6;17807:3;17733:86;:::i;:::-;17726:93;;17843:56;17893:5;17843:56;:::i;:::-;17922:7;17953:1;17938:284;17963:6;17960:1;17957:13;17938:284;;;18039:6;18033:13;18066:63;18125:3;18110:13;18066:63;:::i;:::-;18059:70;;18152:60;18205:6;18152:60;:::i;:::-;18142:70;;17998:224;17985:1;17982;17978:9;17973:14;;17938:284;;;17942:14;18238:3;18231:10;;17639:608;;;17515:732;;;;:::o;18253:720::-;18488:4;18526:3;18515:9;18511:19;18503:27;;18540:79;18616:1;18605:9;18601:17;18592:6;18540:79;:::i;:::-;18666:9;18660:4;18656:20;18651:2;18640:9;18636:18;18629:48;18694:108;18797:4;18788:6;18694:108;:::i;:::-;18686:116;;18812:72;18880:2;18869:9;18865:18;18856:6;18812:72;:::i;:::-;18894;18962:2;18951:9;18947:18;18938:6;18894:72;:::i;:::-;18253:720;;;;;;;:::o;18979:178::-;19119:30;19115:1;19107:6;19103:14;19096:54;18979:178;:::o;19163:366::-;19305:3;19326:67;19390:2;19385:3;19326:67;:::i;:::-;19319:74;;19402:93;19491:3;19402:93;:::i;:::-;19520:2;19515:3;19511:12;19504:19;;19163:366;;;:::o;19535:419::-;19701:4;19739:2;19728:9;19724:18;19716:26;;19788:9;19782:4;19778:20;19774:1;19763:9;19759:17;19752:47;19816:131;19942:4;19816:131;:::i;:::-;19808:139;;19535:419;;;:::o;19960:147::-;20061:11;20098:3;20083:18;;19960:147;;;;:::o;20113:114::-;;:::o;20233:398::-;20392:3;20413:83;20494:1;20489:3;20413:83;:::i;:::-;20406:90;;20505:93;20594:3;20505:93;:::i;:::-;20623:1;20618:3;20614:11;20607:18;;20233:398;;;:::o;20637:379::-;20821:3;20843:147;20986:3;20843:147;:::i;:::-;20836:154;;21007:3;21000:10;;20637:379;;;:::o;21022:168::-;21162:20;21158:1;21150:6;21146:14;21139:44;21022:168;:::o;21196:366::-;21338:3;21359:67;21423:2;21418:3;21359:67;:::i;:::-;21352:74;;21435:93;21524:3;21435:93;:::i;:::-;21553:2;21548:3;21544:12;21537:19;;21196:366;;;:::o;21568:419::-;21734:4;21772:2;21761:9;21757:18;21749:26;;21821:9;21815:4;21811:20;21807:1;21796:9;21792:17;21785:47;21849:131;21975:4;21849:131;:::i;:::-;21841:139;;21568:419;;;:::o;21993:289::-;22133:34;22129:1;22121:6;22117:14;22110:58;22202:34;22197:2;22189:6;22185:15;22178:59;22271:3;22266:2;22258:6;22254:15;22247:28;21993:289;:::o;22288:366::-;22430:3;22451:67;22515:2;22510:3;22451:67;:::i;:::-;22444:74;;22527:93;22616:3;22527:93;:::i;:::-;22645:2;22640:3;22636:12;22629:19;;22288:366;;;:::o;22660:419::-;22826:4;22864:2;22853:9;22849:18;22841:26;;22913:9;22907:4;22903:20;22899:1;22888:9;22884:17;22877:47;22941:131;23067:4;22941:131;:::i;:::-;22933:139;;22660:419;;;:::o;23085:221::-;23225:34;23221:1;23213:6;23209:14;23202:58;23294:4;23289:2;23281:6;23277:15;23270:29;23085:221;:::o;23312:366::-;23454:3;23475:67;23539:2;23534:3;23475:67;:::i;:::-;23468:74;;23551:93;23640:3;23551:93;:::i;:::-;23669:2;23664:3;23660:12;23653:19;;23312:366;;;:::o;23684:419::-;23850:4;23888:2;23877:9;23873:18;23865:26;;23937:9;23931:4;23927:20;23923:1;23912:9;23908:17;23901:47;23965:131;24091:4;23965:131;:::i;:::-;23957:139;;23684:419;;;:::o;24109:233::-;24148:3;24171:24;24189:5;24171:24;:::i;:::-;24162:33;;24217:66;24210:5;24207:77;24204:103;;;24287:18;;:::i;:::-;24204:103;24334:1;24327:5;24323:13;24316:20;;24109:233;;;:::o;24348:102::-;24417:4;24440:3;24432:11;;24348:102;;;:::o;24456:122::-;24508:5;24533:39;24568:2;24563:3;24559:12;24554:3;24533:39;:::i;:::-;24524:48;;24456:122;;;;:::o;24584:115::-;24656:4;24688;24683:3;24679:14;24671:22;;24584:115;;;:::o;24735:699::-;24864:3;24887:86;24966:6;24961:3;24887:86;:::i;:::-;24880:93;;24997:58;25049:5;24997:58;:::i;:::-;25078:7;25109:1;25094:315;25119:6;25116:1;25113:13;25094:315;;;25189:42;25224:6;25215:7;25189:42;:::i;:::-;25251:63;25310:3;25295:13;25251:63;:::i;:::-;25244:70;;25337:62;25392:6;25337:62;:::i;:::-;25327:72;;25154:255;25141:1;25138;25134:9;25129:14;;25094:315;;;25098:14;25425:3;25418:10;;24869:565;;24735:699;;;;;:::o;25440:491::-;25615:4;25653:2;25642:9;25638:18;25630:26;;25702:9;25696:4;25692:20;25688:1;25677:9;25673:17;25666:47;25730:118;25843:4;25834:6;25826;25730:118;:::i;:::-;25722:126;;25858:66;25920:2;25909:9;25905:18;25896:6;25858:66;:::i;:::-;25440:491;;;;;;:::o;25937:225::-;26077:34;26073:1;26065:6;26061:14;26054:58;26146:8;26141:2;26133:6;26129:15;26122:33;25937:225;:::o;26168:366::-;26310:3;26331:67;26395:2;26390:3;26331:67;:::i;:::-;26324:74;;26407:93;26496:3;26407:93;:::i;:::-;26525:2;26520:3;26516:12;26509:19;;26168:366;;;:::o;26540:419::-;26706:4;26744:2;26733:9;26729:18;26721:26;;26793:9;26787:4;26783:20;26779:1;26768:9;26764:17;26757:47;26821:131;26947:4;26821:131;:::i;:::-;26813:139;;26540:419;;;:::o;26965:173::-;27105:25;27101:1;27093:6;27089:14;27082:49;26965:173;:::o;27144:366::-;27286:3;27307:67;27371:2;27366:3;27307:67;:::i;:::-;27300:74;;27383:93;27472:3;27383:93;:::i;:::-;27501:2;27496:3;27492:12;27485:19;;27144:366;;;:::o;27516:419::-;27682:4;27720:2;27709:9;27705:18;27697:26;;27769:9;27763:4;27759:20;27755:1;27744:9;27740:17;27733:47;27797:131;27923:4;27797:131;:::i;:::-;27789:139;;27516:419;;;:::o;27941:177::-;28081:29;28077:1;28069:6;28065:14;28058:53;27941:177;:::o;28124:366::-;28266:3;28287:67;28351:2;28346:3;28287:67;:::i;:::-;28280:74;;28363:93;28452:3;28363:93;:::i;:::-;28481:2;28476:3;28472:12;28465:19;;28124:366;;;:::o;28496:419::-;28662:4;28700:2;28689:9;28685:18;28677:26;;28749:9;28743:4;28739:20;28735:1;28724:9;28720:17;28713:47;28777:131;28903:4;28777:131;:::i;:::-;28769:139;;28496:419;;;:::o;28921:223::-;29061:34;29057:1;29049:6;29045:14;29038:58;29130:6;29125:2;29117:6;29113:15;29106:31;28921:223;:::o;29150:366::-;29292:3;29313:67;29377:2;29372:3;29313:67;:::i;:::-;29306:74;;29389:93;29478:3;29389:93;:::i;:::-;29507:2;29502:3;29498:12;29491:19;;29150:366;;;:::o;29522:419::-;29688:4;29726:2;29715:9;29711:18;29703:26;;29775:9;29769:4;29765:20;29761:1;29750:9;29746:17;29739:47;29803:131;29929:4;29803:131;:::i;:::-;29795:139;;29522:419;;;:::o;29947:221::-;30087:34;30083:1;30075:6;30071:14;30064:58;30156:4;30151:2;30143:6;30139:15;30132:29;29947:221;:::o;30174:366::-;30316:3;30337:67;30401:2;30396:3;30337:67;:::i;:::-;30330:74;;30413:93;30502:3;30413:93;:::i;:::-;30531:2;30526:3;30522:12;30515:19;;30174:366;;;:::o;30546:419::-;30712:4;30750:2;30739:9;30735:18;30727:26;;30799:9;30793:4;30789:20;30785:1;30774:9;30770:17;30763:47;30827:131;30953:4;30827:131;:::i;:::-;30819:139;;30546:419;;;:::o;30971:224::-;31111:34;31107:1;31099:6;31095:14;31088:58;31180:7;31175:2;31167:6;31163:15;31156:32;30971:224;:::o;31201:366::-;31343:3;31364:67;31428:2;31423:3;31364:67;:::i;:::-;31357:74;;31440:93;31529:3;31440:93;:::i;:::-;31558:2;31553:3;31549:12;31542:19;;31201:366;;;:::o;31573:419::-;31739:4;31777:2;31766:9;31762:18;31754:26;;31826:9;31820:4;31816:20;31812:1;31801:9;31797:17;31790:47;31854:131;31980:4;31854:131;:::i;:::-;31846:139;;31573:419;;;:::o;31998:222::-;32138:34;32134:1;32126:6;32122:14;32115:58;32207:5;32202:2;32194:6;32190:15;32183:30;31998:222;:::o;32226:366::-;32368:3;32389:67;32453:2;32448:3;32389:67;:::i;:::-;32382:74;;32465:93;32554:3;32465:93;:::i;:::-;32583:2;32578:3;32574:12;32567:19;;32226:366;;;:::o;32598:419::-;32764:4;32802:2;32791:9;32787:18;32779:26;;32851:9;32845:4;32841:20;32837:1;32826:9;32822:17;32815:47;32879:131;33005:4;32879:131;:::i;:::-;32871:139;;32598:419;;;:::o;33023:176::-;33163:28;33159:1;33151:6;33147:14;33140:52;33023:176;:::o;33205:366::-;33347:3;33368:67;33432:2;33427:3;33368:67;:::i;:::-;33361:74;;33444:93;33533:3;33444:93;:::i;:::-;33562:2;33557:3;33553:12;33546:19;;33205:366;;;:::o;33577:419::-;33743:4;33781:2;33770:9;33766:18;33758:26;;33830:9;33824:4;33820:20;33816:1;33805:9;33801:17;33794:47;33858:131;33984:4;33858:131;:::i;:::-;33850:139;;33577:419;;;:::o;34002:297::-;34142:34;34138:1;34130:6;34126:14;34119:58;34211:34;34206:2;34198:6;34194:15;34187:59;34280:11;34275:2;34267:6;34263:15;34256:36;34002:297;:::o;34305:366::-;34447:3;34468:67;34532:2;34527:3;34468:67;:::i;:::-;34461:74;;34544:93;34633:3;34544:93;:::i;:::-;34662:2;34657:3;34653:12;34646:19;;34305:366;;;:::o;34677:419::-;34843:4;34881:2;34870:9;34866:18;34858:26;;34930:9;34924:4;34920:20;34916:1;34905:9;34901:17;34894:47;34958:131;35084:4;34958:131;:::i;:::-;34950:139;;34677:419;;;:::o;35102:240::-;35242:34;35238:1;35230:6;35226:14;35219:58;35311:23;35306:2;35298:6;35294:15;35287:48;35102:240;:::o;35348:366::-;35490:3;35511:67;35575:2;35570:3;35511:67;:::i;:::-;35504:74;;35587:93;35676:3;35587:93;:::i;:::-;35705:2;35700:3;35696:12;35689:19;;35348:366;;;:::o;35720:419::-;35886:4;35924:2;35913:9;35909:18;35901:26;;35973:9;35967:4;35963:20;35959:1;35948:9;35944:17;35937:47;36001:131;36127:4;36001:131;:::i;:::-;35993:139;;35720:419;;;:::o;36145:177::-;36285:29;36281:1;36273:6;36269:14;36262:53;36145:177;:::o;36328:366::-;36470:3;36491:67;36555:2;36550:3;36491:67;:::i;:::-;36484:74;;36567:93;36656:3;36567:93;:::i;:::-;36685:2;36680:3;36676:12;36669:19;;36328:366;;;:::o;36700:419::-;36866:4;36904:2;36893:9;36889:18;36881:26;;36953:9;36947:4;36943:20;36939:1;36928:9;36924:17;36917:47;36981:131;37107:4;36981:131;:::i;:::-;36973:139;;36700:419;;;:::o;37125:241::-;37265:34;37261:1;37253:6;37249:14;37242:58;37334:24;37329:2;37321:6;37317:15;37310:49;37125:241;:::o;37372:366::-;37514:3;37535:67;37599:2;37594:3;37535:67;:::i;:::-;37528:74;;37611:93;37700:3;37611:93;:::i;:::-;37729:2;37724:3;37720:12;37713:19;;37372:366;;;:::o;37744:419::-;37910:4;37948:2;37937:9;37933:18;37925:26;;37997:9;37991:4;37987:20;37983:1;37972:9;37968:17;37961:47;38025:131;38151:4;38025:131;:::i;:::-;38017:139;;37744:419;;;:::o;38169:191::-;38209:4;38229:20;38247:1;38229:20;:::i;:::-;38224:25;;38263:20;38281:1;38263:20;:::i;:::-;38258:25;;38302:1;38299;38296:8;38293:34;;;38307:18;;:::i;:::-;38293:34;38352:1;38349;38345:9;38337:17;;38169:191;;;;:::o;38366:442::-;38515:4;38553:2;38542:9;38538:18;38530:26;;38566:71;38634:1;38623:9;38619:17;38610:6;38566:71;:::i;:::-;38647:72;38715:2;38704:9;38700:18;38691:6;38647:72;:::i;:::-;38729;38797:2;38786:9;38782:18;38773:6;38729:72;:::i;:::-;38366:442;;;;;;:::o;38814:220::-;38954:34;38950:1;38942:6;38938:14;38931:58;39023:3;39018:2;39010:6;39006:15;38999:28;38814:220;:::o;39040:366::-;39182:3;39203:67;39267:2;39262:3;39203:67;:::i;:::-;39196:74;;39279:93;39368:3;39279:93;:::i;:::-;39397:2;39392:3;39388:12;39381:19;;39040:366;;;:::o;39412:419::-;39578:4;39616:2;39605:9;39601:18;39593:26;;39665:9;39659:4;39655:20;39651:1;39640:9;39636:17;39629:47;39693:131;39819:4;39693:131;:::i;:::-;39685:139;;39412:419;;;:::o;39837:831::-;40100:4;40138:3;40127:9;40123:19;40115:27;;40152:71;40220:1;40209:9;40205:17;40196:6;40152:71;:::i;:::-;40233:80;40309:2;40298:9;40294:18;40285:6;40233:80;:::i;:::-;40360:9;40354:4;40350:20;40345:2;40334:9;40330:18;40323:48;40388:108;40491:4;40482:6;40388:108;:::i;:::-;40380:116;;40506:72;40574:2;40563:9;40559:18;40550:6;40506:72;:::i;:::-;40588:73;40656:3;40645:9;40641:19;40632:6;40588:73;:::i;:::-;39837:831;;;;;;;;:::o;40674:807::-;40923:4;40961:3;40950:9;40946:19;40938:27;;40975:71;41043:1;41032:9;41028:17;41019:6;40975:71;:::i;:::-;41056:72;41124:2;41113:9;41109:18;41100:6;41056:72;:::i;:::-;41138:80;41214:2;41203:9;41199:18;41190:6;41138:80;:::i;:::-;41228;41304:2;41293:9;41289:18;41280:6;41228:80;:::i;:::-;41318:73;41386:3;41375:9;41371:19;41362:6;41318:73;:::i;:::-;41401;41469:3;41458:9;41454:19;41445:6;41401:73;:::i;:::-;40674:807;;;;;;;;;:::o;41487:143::-;41544:5;41575:6;41569:13;41560:22;;41591:33;41618:5;41591:33;:::i;:::-;41487:143;;;;:::o;41636:663::-;41724:6;41732;41740;41789:2;41777:9;41768:7;41764:23;41760:32;41757:119;;;41795:79;;:::i;:::-;41757:119;41915:1;41940:64;41996:7;41987:6;41976:9;41972:22;41940:64;:::i;:::-;41930:74;;41886:128;42053:2;42079:64;42135:7;42126:6;42115:9;42111:22;42079:64;:::i;:::-;42069:74;;42024:129;42192:2;42218:64;42274:7;42265:6;42254:9;42250:22;42218:64;:::i;:::-;42208:74;;42163:129;41636:663;;;;;:::o

Swarm Source

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