ETH Price: $3,315.44 (-2.81%)
Gas: 12 Gwei

Token

Meme Protocol (MEME)
 

Overview

Max Total Supply

1,000,000,000 MEME

Holders

615

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
38.652593589298568725 MEME

Value
$0.00
0x60536cbc501ea0a215329fbeb7431bf6f3f2e43a
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:
MemeProtocol

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-06
*/

/**
 The purpose of the protocol is to give people a chance to place leverage on Memecoins. 
 Use your knowledge of the meme space to make 2x- 1000x just by guessing if a token price will rise 
 or fall. Users will be able to choose their leverage and the amounts. 
 Theoretically a Memecoin master could make a substantial amount of money without having to buy any 
 coins. Keep in mind that even though leverage trading can be extremely lucrative it can also be very
risky.

Telegram: https://t.me/memeprotocoleth
Twitter: https://twitter.com/protocol_meme
Medium: https://memeprotocol.medium.com/meme-protocol-7f2ae956892a

5% Tax
2% max tx and wallet until limits are lifted

Telegram announcement channel is currently being used to avoid early fud and bot attcks
Community telegram will be made shortly


*/



//SPDX-License-Identifier: Unlicensed
pragma solidity 0.8.9;
 
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
 
    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}
 
interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);
 
    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);
 
    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);
 
    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);
 
    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
 
    event Mint(address indexed sender, uint amount0, uint amount1);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);
 
    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);
 
    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;
 
    function initialize(address, address) external;
}
 
interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);
 
    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);
 
    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);
 
    function createPair(address tokenA, address tokenB) external returns (address pair);
 
    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}
 
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);
 
    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);
 
    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);
 
    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);
 
    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);
 
    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);
 
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);
 
    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}
 
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);
 
    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);
 
    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}
 
 
contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;
 
    mapping(address => uint256) private _balances;
 
    mapping(address => mapping(address => uint256)) private _allowances;
 
    uint256 private _totalSupply;
 
    string private _name;
    string private _symbol;
 
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }
 
    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }
 
    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
 
    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }
 
    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }
 
    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }
 
    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }
 
    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }
 
    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }
 
    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }
 
    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }
 
    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }
 
    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
 
        _beforeTokenTransfer(sender, recipient, amount);
 
        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }
 
    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
 
        _beforeTokenTransfer(address(0), account, amount);
 
        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }
 
    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");
 
        _beforeTokenTransfer(account, address(0), amount);
 
        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }
 
    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
 
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }
 
    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}
 
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
 
        return c;
    }
 
    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }
 
    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;
 
        return c;
    }
 
    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }
 
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
 
        return c;
    }
 
    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }
 
    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold
 
        return c;
    }
 
    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }
 
    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}
 
contract Ownable is Context {
    address private _owner;
 
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
 
    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }
 
    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }
 
    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
 
    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }
 
    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}
 
 
 
library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);
 
    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;
 
        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }
 
    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);
 
        // Solidity already throws when dividing by 0.
        return a / b;
    }
 
    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }
 
    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }
 
    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }
 
 
    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}
 
library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}
 
 
interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
 
    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
 
    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}
 
interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);
 
    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}
 
contract MemeProtocol is ERC20, Ownable {
    using SafeMath for uint256;
 
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
 
    bool private swapping;
 
    address private marketingWallet;
    address private devWallet;
 
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
 
    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;
 
     // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
 
    // Seller Map
    mapping (address => uint256) private _holderFirstBuyTimestamp;
 
    // Blacklist Map
    mapping (address => bool) private _blacklist;
    bool public transferDelayEnabled = true;
 
    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;
 
    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;
 
    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;
 
    // block number of opened trading
    uint256 launchedAt;
 
    /******************/
 
    // exclude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) public _isExcludedMaxTransactionAmount;
 
    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;
 
    event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);
 
    event ExcludeFromFees(address indexed account, bool isExcluded);
 
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
 
    event marketingWalletUpdated(address indexed newWallet, address indexed oldWallet);
 
    event devWalletUpdated(address indexed newWallet, address indexed oldWallet);
 
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );
 
    event AutoNukeLP();
 
    event ManualNukeLP();
 
    constructor() ERC20("Meme Protocol", "MEME") {
 
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
 
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;
 
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
 
        uint256 _buyMarketingFee = 10;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;
 
        uint256 _sellMarketingFee = 10;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;
 
        uint256 totalSupply = 1 * 1e9 * 1e18;
 
        maxTransactionAmount = totalSupply * 20 / 1000; // 2%
        maxWallet = totalSupply * 20 / 1000; // 2% 
        swapTokensAtAmount = totalSupply * 5 / 10000; // 0.1%
 
        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
 
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
 
        marketingWallet = address(owner()); // set as marketing wallet
        devWallet = address(owner()); // set as dev wallet
 
        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
 
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
 
        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }
 
    receive() external payable {
 
    }
 
    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        launchedAt = block.number;
    }
 
    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool){
        limitsInEffect = false;
        return true;
    }
 
    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool){
        transferDelayEnabled = false;
        return true;
    }
 
     // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool){
        require(newAmount >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply.");
        require(newAmount <= totalSupply() * 5 / 1000, "Swap amount cannot be higher than 0.5% total supply.");
        swapTokensAtAmount = newAmount;
        return true;
    }
 
    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 1 / 1000)/1e18, "Cannot set maxTransactionAmount lower than 0.1%");
        maxTransactionAmount = newNum * (10**18);
    }
 
    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 5 / 1000)/1e18, "Cannot set maxWallet lower than 0.5%");
        maxWallet = newNum * (10**18);
    }
 
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

          function updateBuyFees(
        uint256 _devFee,
        uint256 _liquidityFee,
        uint256 _marketingFee
    ) external onlyOwner {
        buyDevFee = _devFee;
        buyLiquidityFee = _liquidityFee;
        buyMarketingFee = _marketingFee;
        buyTotalFees = buyDevFee + buyLiquidityFee + buyMarketingFee;
        require(buyTotalFees <= 10, "Must keep fees at 10% or less");
    }

    function updateSellFees(
        uint256 _devFee,
        uint256 _liquidityFee,
        uint256 _marketingFee
    ) external onlyOwner {
        sellDevFee = _devFee;
        sellLiquidityFee = _liquidityFee;
        sellMarketingFee = _marketingFee;
        sellTotalFees = sellDevFee + sellLiquidityFee + sellMarketingFee;
        require(sellTotalFees <= 10, "Must keep fees at 10% or less");
    }
 
    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner(){
        swapEnabled = enabled;
    }
 
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }
 
    function blacklistAccount (address account, bool isBlacklisted) public onlyOwner {
        _blacklist[account] = isBlacklisted;
    }
 
    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");
 
        _setAutomatedMarketMakerPair(pair, value);
    }
 
    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;
 
        emit SetAutomatedMarketMakerPair(pair, value);
    }
 
    function updateMarketingWallet(address newMarketingWallet) external onlyOwner {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }
 
    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }
 
 
    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
 
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!_blacklist[to] && !_blacklist[from], "You have been blacklisted from transfering tokens");
         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
 
        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){
                if(!tradingActive){
                    require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
                }
 
                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.  
                if (transferDelayEnabled){
                    if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){
                        require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed.");
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }
 
                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                        require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                        require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
 
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                        require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                }
                else if(!_isExcludedMaxTransactionAmount[to]){
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
            }
        }
 
        uint256 contractTokenBalance = balanceOf(address(this));
 
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;
 
        if( 
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
 
            swapBack();
 
            swapping = false;
        }
 
        bool takeFee = !swapping;
 
        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }
 
        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if(takeFee){
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0){
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees;
                tokensForDev += fees * sellDevFee / sellTotalFees;
                tokensForMarketing += fees * sellMarketingFee / sellTotalFees;
            }
            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
                tokensForDev += fees * buyDevFee / buyTotalFees;
                tokensForMarketing += fees * buyMarketingFee / buyTotalFees;
            }
 
            if(fees > 0){    
                super._transfer(from, address(this), fees);
            }
 
            amount -= fees;
        }
 
        super._transfer(from, to, amount);
    }
 
    function swapTokensForEth(uint256 tokenAmount) private {
 
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
 
        _approve(address(this), address(uniswapV2Router), tokenAmount);
 
        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
 
    }
 
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);
 
        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(this),
            block.timestamp
        );
    }
 
    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev;
        bool success;
 
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}
 
        if(contractBalance > swapTokensAtAmount * 20){
          contractBalance = swapTokensAtAmount * 20;
        }
 
        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
 
        uint256 initialETHBalance = address(this).balance;
 
        swapTokensForEth(amountToSwapForETH); 
 
        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
 
        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);
        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;
 
 
        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;
 
        (success,) = address(devWallet).call{value: ethForDev}("");
 
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity);
        }
 
        (success,) = address(marketingWallet).call{value: address(this).balance}("");
    }
}

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":[],"name":"AutoNukeLP","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":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"blacklistAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506001600f60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600d81526020017f4d656d652050726f746f636f6c000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d454d450000000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000bb0565b5080600490805190602001906200011b92919062000bb0565b5050506000620001306200067c60201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001fb8160016200068460201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200027657600080fd5b505afa1580156200028b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b1919062000cca565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200031457600080fd5b505afa15801562000329573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034f919062000cca565b6040518363ffffffff1660e01b81526004016200036e92919062000d0d565b602060405180830381600087803b1580156200038957600080fd5b505af11580156200039e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003c4919062000cca565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200040c60a05160016200068460201b60201c565b6200042160a05160016200078160201b60201c565b6000600a90506000806000600a905060008060006b033b2e3c9fd0803ce800000090506103e860148262000456919062000d73565b62000462919062000e03565b6008819055506103e86014826200047a919062000d73565b62000486919062000e03565b600a819055506127106005826200049e919062000d73565b620004aa919062000e03565b600981905550866011819055508560128190555084601381905550601354601254601154620004da919062000e3b565b620004e6919062000e3b565b60108190555083601581905550826016819055508160178190555060175460165460155462000516919062000e3b565b62000522919062000e3b565b601481905550620005386200082260201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005886200082260201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005ea620005dc6200082260201b60201c565b60016200084c60201b60201c565b620005fd3060016200084c60201b60201c565b6200061261dead60016200084c60201b60201c565b62000634620006266200082260201b60201c565b60016200068460201b60201c565b620006473060016200068460201b60201c565b6200065c61dead60016200068460201b60201c565b6200066e33826200099960201b60201c565b5050505050505050620010cc565b600033905090565b620006946200067c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000726576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200071d9062000ef9565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200085c6200067c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620008ee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008e59062000ef9565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200098d919062000f38565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a0c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a039062000fa5565b60405180910390fd5b62000a206000838362000b4860201b60201c565b62000a3c8160025462000b4d60201b620025b11790919060201c565b60028190555062000a9a816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000b4d60201b620025b11790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b3c919062000fd8565b60405180910390a35050565b505050565b600080828462000b5e919062000e3b565b90508381101562000ba6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b9d9062001045565b60405180910390fd5b8091505092915050565b82805462000bbe9062001096565b90600052602060002090601f01602090048101928262000be2576000855562000c2e565b82601f1062000bfd57805160ff191683800117855562000c2e565b8280016001018555821562000c2e579182015b8281111562000c2d57825182559160200191906001019062000c10565b5b50905062000c3d919062000c41565b5090565b5b8082111562000c5c57600081600090555060010162000c42565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c928262000c65565b9050919050565b62000ca48162000c85565b811462000cb057600080fd5b50565b60008151905062000cc48162000c99565b92915050565b60006020828403121562000ce35762000ce262000c60565b5b600062000cf38482850162000cb3565b91505092915050565b62000d078162000c85565b82525050565b600060408201905062000d24600083018562000cfc565b62000d33602083018462000cfc565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d808262000d3a565b915062000d8d8362000d3a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000dc95762000dc862000d44565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000e108262000d3a565b915062000e1d8362000d3a565b92508262000e305762000e2f62000dd4565b5b828204905092915050565b600062000e488262000d3a565b915062000e558362000d3a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e8d5762000e8c62000d44565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000ee160208362000e98565b915062000eee8262000ea9565b602082019050919050565b6000602082019050818103600083015262000f148162000ed2565b9050919050565b60008115159050919050565b62000f328162000f1b565b82525050565b600060208201905062000f4f600083018462000f27565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f8d601f8362000e98565b915062000f9a8262000f55565b602082019050919050565b6000602082019050818103600083015262000fc08162000f7e565b9050919050565b62000fd28162000d3a565b82525050565b600060208201905062000fef600083018462000fc7565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b60006200102d601b8362000e98565b91506200103a8262000ff5565b602082019050919050565b6000602082019050818103600083015262001060816200101e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620010af57607f821691505b60208210811415620010c657620010c562001067565b5b50919050565b60805160a0516155ba6200112a6000396000818161126501528181611a5b0152612c7d015260008181610d2301528181612c2501528181613d9301528181613e8301528181613eaa01528181613f460152613f6d01526155ba6000f3fe6080604052600436106103035760003560e01c80639213691311610190578063c17b5b8c116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610ba7578063f2fde38b14610bd2578063f637434214610bfb578063f8b45b0514610c265761030a565b8063dd62ed3e14610b14578063e2f4560514610b51578063e884f26014610b7c5761030a565b8063c17b5b8c14610a04578063c18bc19514610a2d578063c876d0b914610a56578063c8c8ebe414610a81578063d257b34f14610aac578063d85ba06314610ae95761030a565b8063a0d82dc511610149578063aacebbe311610123578063aacebbe31461094a578063b62496f514610973578063bbc0c742146109b0578063c0246668146109db5761030a565b8063a0d82dc5146108a5578063a457c2d7146108d0578063a9059cbb1461090d5761030a565b806392136913146107a7578063924de9b7146107d257806395d89b41146107fb5780639a7a23d6146108265780639c3b4fdc1461084f5780639fccce321461087a5761030a565b806349bd5a5e1161024f578063715018a6116102085780637bce5a04116101e25780637bce5a04146107115780638095d5641461073c5780638a8c523c146107655780638da5cb5b1461077c5761030a565b8063715018a6146106a6578063751039fc146106bd5780637571336a146106e85761030a565b806349bd5a5e146105805780634a62bb65146105ab5780634fbee193146105d65780636a486a8e146106135780636ddd17131461063e57806370a08231146106695761030a565b80631a8145bb116102bc57806323b872dd1161029657806323b872dd146104b25780632d5a5d34146104ef578063313ce5671461051857806339509351146105435761030a565b80631a8145bb146104335780631f3fed8f1461045e578063203e727e146104895761030a565b806306fdde031461030f578063095ea7b31461033a57806310d5de53146103775780631694505e146103b457806318160ddd146103df5780631816467f1461040a5761030a565b3661030a57005b600080fd5b34801561031b57600080fd5b50610324610c51565b6040516103319190614125565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c91906141e0565b610ce3565b60405161036e919061423b565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190614256565b610d01565b6040516103ab919061423b565b60405180910390f35b3480156103c057600080fd5b506103c9610d21565b6040516103d691906142e2565b60405180910390f35b3480156103eb57600080fd5b506103f4610d45565b604051610401919061430c565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c9190614256565b610d4f565b005b34801561043f57600080fd5b50610448610ea6565b604051610455919061430c565b60405180910390f35b34801561046a57600080fd5b50610473610eac565b604051610480919061430c565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190614327565b610eb2565b005b3480156104be57600080fd5b506104d960048036038101906104d49190614354565b610fdc565b6040516104e6919061423b565b60405180910390f35b3480156104fb57600080fd5b50610516600480360381019061051191906143d3565b6110b5565b005b34801561052457600080fd5b5061052d6111a7565b60405161053a919061442f565b60405180910390f35b34801561054f57600080fd5b5061056a600480360381019061056591906141e0565b6111b0565b604051610577919061423b565b60405180910390f35b34801561058c57600080fd5b50610595611263565b6040516105a29190614459565b60405180910390f35b3480156105b757600080fd5b506105c0611287565b6040516105cd919061423b565b60405180910390f35b3480156105e257600080fd5b506105fd60048036038101906105f89190614256565b61129a565b60405161060a919061423b565b60405180910390f35b34801561061f57600080fd5b506106286112f0565b604051610635919061430c565b60405180910390f35b34801561064a57600080fd5b506106536112f6565b604051610660919061423b565b60405180910390f35b34801561067557600080fd5b50610690600480360381019061068b9190614256565b611309565b60405161069d919061430c565b60405180910390f35b3480156106b257600080fd5b506106bb611351565b005b3480156106c957600080fd5b506106d26114a9565b6040516106df919061423b565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a91906143d3565b611564565b005b34801561071d57600080fd5b50610726611656565b604051610733919061430c565b60405180910390f35b34801561074857600080fd5b50610763600480360381019061075e9190614474565b61165c565b005b34801561077157600080fd5b5061077a611776565b005b34801561078857600080fd5b5061079161184c565b60405161079e9190614459565b60405180910390f35b3480156107b357600080fd5b506107bc611876565b6040516107c9919061430c565b60405180910390f35b3480156107de57600080fd5b506107f960048036038101906107f491906144c7565b61187c565b005b34801561080757600080fd5b50610810611930565b60405161081d9190614125565b60405180910390f35b34801561083257600080fd5b5061084d600480360381019061084891906143d3565b6119c2565b005b34801561085b57600080fd5b50610864611af6565b604051610871919061430c565b60405180910390f35b34801561088657600080fd5b5061088f611afc565b60405161089c919061430c565b60405180910390f35b3480156108b157600080fd5b506108ba611b02565b6040516108c7919061430c565b60405180910390f35b3480156108dc57600080fd5b506108f760048036038101906108f291906141e0565b611b08565b604051610904919061423b565b60405180910390f35b34801561091957600080fd5b50610934600480360381019061092f91906141e0565b611bd5565b604051610941919061423b565b60405180910390f35b34801561095657600080fd5b50610971600480360381019061096c9190614256565b611bf3565b005b34801561097f57600080fd5b5061099a60048036038101906109959190614256565b611d4a565b6040516109a7919061423b565b60405180910390f35b3480156109bc57600080fd5b506109c5611d6a565b6040516109d2919061423b565b60405180910390f35b3480156109e757600080fd5b50610a0260048036038101906109fd91906143d3565b611d7d565b005b348015610a1057600080fd5b50610a2b6004803603810190610a269190614474565b611ebd565b005b348015610a3957600080fd5b50610a546004803603810190610a4f9190614327565b611fd7565b005b348015610a6257600080fd5b50610a6b612101565b604051610a78919061423b565b60405180910390f35b348015610a8d57600080fd5b50610a96612114565b604051610aa3919061430c565b60405180910390f35b348015610ab857600080fd5b50610ad36004803603810190610ace9190614327565b61211a565b604051610ae0919061423b565b60405180910390f35b348015610af557600080fd5b50610afe61228a565b604051610b0b919061430c565b60405180910390f35b348015610b2057600080fd5b50610b3b6004803603810190610b3691906144f4565b612290565b604051610b48919061430c565b60405180910390f35b348015610b5d57600080fd5b50610b66612317565b604051610b73919061430c565b60405180910390f35b348015610b8857600080fd5b50610b9161231d565b604051610b9e919061423b565b60405180910390f35b348015610bb357600080fd5b50610bbc6123d8565b604051610bc9919061430c565b60405180910390f35b348015610bde57600080fd5b50610bf96004803603810190610bf49190614256565b6123de565b005b348015610c0757600080fd5b50610c106125a5565b604051610c1d919061430c565b60405180910390f35b348015610c3257600080fd5b50610c3b6125ab565b604051610c48919061430c565b60405180910390f35b606060038054610c6090614563565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8c90614563565b8015610cd95780601f10610cae57610100808354040283529160200191610cd9565b820191906000526020600020905b815481529060010190602001808311610cbc57829003601f168201915b5050505050905090565b6000610cf7610cf061260f565b8484612617565b6001905092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610d5761260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd906145e1565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b610eba61260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f40906145e1565b60405180910390fd5b670de0b6b3a76400006103e86001610f5f610d45565b610f699190614630565b610f7391906146b9565b610f7d91906146b9565b811015610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb69061475c565b60405180910390fd5b670de0b6b3a764000081610fd39190614630565b60088190555050565b6000610fe98484846127e2565b6110aa84610ff561260f565b6110a58560405180606001604052806028815260200161553860289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061105b61260f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461355f9092919063ffffffff16565b612617565b600190509392505050565b6110bd61260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461114c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611143906145e1565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006012905090565b60006112596111bd61260f565b8461125485600160006111ce61260f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125b190919063ffffffff16565b612617565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61135961260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113df906145e1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006114b361260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611542576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611539906145e1565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61156c61260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f2906145e1565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60115481565b61166461260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ea906145e1565b60405180910390fd5b82601381905550816012819055508060118190555060115460125460135461171b919061477c565b611725919061477c565b601081905550600a6010541115611771576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117689061481e565b60405180910390fd5b505050565b61177e61260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461180d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611804906145e1565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601b81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60155481565b61188461260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190a906145e1565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461193f90614563565b80601f016020809104026020016040519081016040528092919081815260200182805461196b90614563565b80156119b85780601f1061198d576101008083540402835291602001916119b8565b820191906000526020600020905b81548152906001019060200180831161199b57829003601f168201915b5050505050905090565b6119ca61260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a50906145e1565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adf906148b0565b60405180910390fd5b611af282826135c3565b5050565b60135481565b601a5481565b60175481565b6000611bcb611b1561260f565b84611bc6856040518060600160405280602581526020016155606025913960016000611b3f61260f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461355f9092919063ffffffff16565b612617565b6001905092915050565b6000611be9611be261260f565b84846127e2565b6001905092915050565b611bfb61260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c81906145e1565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611d8561260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0b906145e1565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611eb1919061423b565b60405180910390a25050565b611ec561260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4b906145e1565b60405180910390fd5b826017819055508160168190555080601581905550601554601654601754611f7c919061477c565b611f86919061477c565b601481905550600a6014541115611fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc99061481e565b60405180910390fd5b505050565b611fdf61260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461206e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612065906145e1565b60405180910390fd5b670de0b6b3a76400006103e86005612084610d45565b61208e9190614630565b61209891906146b9565b6120a291906146b9565b8110156120e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120db90614942565b60405180910390fd5b670de0b6b3a7640000816120f89190614630565b600a8190555050565b600f60009054906101000a900460ff1681565b60085481565b600061212461260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121aa906145e1565b60405180910390fd5b620186a060016121c1610d45565b6121cb9190614630565b6121d591906146b9565b821015612217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220e906149d4565b60405180910390fd5b6103e86005612224610d45565b61222e9190614630565b61223891906146b9565b82111561227a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227190614a66565b60405180910390fd5b8160098190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061232761260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ad906145e1565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b6123e661260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246c906145e1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124dc90614af8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600a5481565b60008082846125c0919061477c565b905083811015612605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fc90614b64565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267e90614bf6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ee90614c88565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516127d5919061430c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612852576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284990614d1a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b990614dac565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156129665750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6129a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299c90614e3e565b60405180910390fd5b60008114156129bf576129ba83836000613664565b61355a565b600b60009054906101000a900460ff1615613082576129dc61184c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a4a5750612a1a61184c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a835750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612abd575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ad65750600560149054906101000a900460ff16155b1561308157600b60019054906101000a900460ff16612bd057601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b905750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc690614eaa565b60405180910390fd5b5b600f60009054906101000a900460ff1615612d9857612bed61184c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612c7457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ccc57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612d975743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4990614f62565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e3b5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ee257600854811115612e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7c90614ff4565b60405180910390fd5b600a54612e9183611309565b82612e9c919061477c565b1115612edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed490615060565b60405180910390fd5b613080565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f855750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612fd457600854811115612fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc6906150f2565b60405180910390fd5b61307f565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661307e57600a5461303183611309565b8261303c919061477c565b111561307d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307490615060565b60405180910390fd5b5b5b5b5b5b600061308d30611309565b9050600060095482101590508080156130b25750600b60029054906101000a900460ff165b80156130cb5750600560149054906101000a900460ff16155b80156131215750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131775750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131cd5750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613211576001600560146101000a81548160ff0219169083151502179055506131f56138f9565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806132c75750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156132d157600090505b6000811561354a57601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561333457506000601454115b1561340157613361606461335360145488613be090919063ffffffff16565b613c5b90919063ffffffff16565b9050601454601654826133749190614630565b61337e91906146b9565b6019600082825461338f919061477c565b92505081905550601454601754826133a79190614630565b6133b191906146b9565b601a60008282546133c2919061477c565b92505081905550601454601554826133da9190614630565b6133e491906146b9565b601860008282546133f5919061477c565b92505081905550613526565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561345c57506000601054115b1561352557613489606461347b60105488613be090919063ffffffff16565b613c5b90919063ffffffff16565b90506010546012548261349c9190614630565b6134a691906146b9565b601960008282546134b7919061477c565b92505081905550601054601354826134cf9190614630565b6134d991906146b9565b601a60008282546134ea919061477c565b92505081905550601054601154826135029190614630565b61350c91906146b9565b6018600082825461351d919061477c565b925050819055505b5b600081111561353b5761353a873083613664565b5b80856135479190615112565b94505b613555878787613664565b505050505b505050565b60008383111582906135a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161359e9190614125565b60405180910390fd5b50600083856135b69190615112565b9050809150509392505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156136d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136cb90614d1a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161373b90614dac565b60405180910390fd5b61374f838383613ca5565b6137ba81604051806060016040528060268152602001615512602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461355f9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061384d816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125b190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516138ec919061430c565b60405180910390a3505050565b600061390430611309565b90506000601a5460185460195461391b919061477c565b613925919061477c565b90506000808314806139375750600082145b1561394457505050613bde565b60146009546139539190614630565b83111561396c5760146009546139699190614630565b92505b60006002836019548661397f9190614630565b61398991906146b9565b61399391906146b9565b905060006139aa8286613caa90919063ffffffff16565b905060004790506139ba82613cf4565b60006139cf8247613caa90919063ffffffff16565b905060006139fa876139ec60185485613be090919063ffffffff16565b613c5b90919063ffffffff16565b90506000613a2588613a17601a5486613be090919063ffffffff16565b613c5b90919063ffffffff16565b90506000818385613a369190615112565b613a409190615112565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613aa090615177565b60006040518083038185875af1925050503d8060008114613add576040519150601f19603f3d011682016040523d82523d6000602084013e613ae2565b606091505b505080985050600087118015613af85750600081115b15613b4557613b078782613f40565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601954604051613b3c9392919061518c565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613b8b90615177565b60006040518083038185875af1925050503d8060008114613bc8576040519150601f19603f3d011682016040523d82523d6000602084013e613bcd565b606091505b505080985050505050505050505050505b565b600080831415613bf35760009050613c55565b60008284613c019190614630565b9050828482613c1091906146b9565b14613c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c4790615235565b60405180910390fd5b809150505b92915050565b6000613c9d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614029565b905092915050565b505050565b6000613cec83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061355f565b905092915050565b6000600267ffffffffffffffff811115613d1157613d10615255565b5b604051908082528060200260200182016040528015613d3f5781602001602082028036833780820191505090505b5090503081600081518110613d5757613d56615284565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613df757600080fd5b505afa158015613e0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e2f91906152c8565b81600181518110613e4357613e42615284565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613ea8307f000000000000000000000000000000000000000000000000000000000000000084612617565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613f0a9594939291906153ee565b600060405180830381600087803b158015613f2457600080fd5b505af1158015613f38573d6000803e3d6000fd5b505050505050565b613f6b307f000000000000000000000000000000000000000000000000000000000000000084612617565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401613fd096959493929190615448565b6060604051808303818588803b158015613fe957600080fd5b505af1158015613ffd573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061402291906154be565b5050505050565b60008083118290614070576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016140679190614125565b60405180910390fd5b506000838561407f91906146b9565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156140c65780820151818401526020810190506140ab565b838111156140d5576000848401525b50505050565b6000601f19601f8301169050919050565b60006140f78261408c565b6141018185614097565b93506141118185602086016140a8565b61411a816140db565b840191505092915050565b6000602082019050818103600083015261413f81846140ec565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006141778261414c565b9050919050565b6141878161416c565b811461419257600080fd5b50565b6000813590506141a48161417e565b92915050565b6000819050919050565b6141bd816141aa565b81146141c857600080fd5b50565b6000813590506141da816141b4565b92915050565b600080604083850312156141f7576141f6614147565b5b600061420585828601614195565b9250506020614216858286016141cb565b9150509250929050565b60008115159050919050565b61423581614220565b82525050565b6000602082019050614250600083018461422c565b92915050565b60006020828403121561426c5761426b614147565b5b600061427a84828501614195565b91505092915050565b6000819050919050565b60006142a86142a361429e8461414c565b614283565b61414c565b9050919050565b60006142ba8261428d565b9050919050565b60006142cc826142af565b9050919050565b6142dc816142c1565b82525050565b60006020820190506142f760008301846142d3565b92915050565b614306816141aa565b82525050565b600060208201905061432160008301846142fd565b92915050565b60006020828403121561433d5761433c614147565b5b600061434b848285016141cb565b91505092915050565b60008060006060848603121561436d5761436c614147565b5b600061437b86828701614195565b935050602061438c86828701614195565b925050604061439d868287016141cb565b9150509250925092565b6143b081614220565b81146143bb57600080fd5b50565b6000813590506143cd816143a7565b92915050565b600080604083850312156143ea576143e9614147565b5b60006143f885828601614195565b9250506020614409858286016143be565b9150509250929050565b600060ff82169050919050565b61442981614413565b82525050565b60006020820190506144446000830184614420565b92915050565b6144538161416c565b82525050565b600060208201905061446e600083018461444a565b92915050565b60008060006060848603121561448d5761448c614147565b5b600061449b868287016141cb565b93505060206144ac868287016141cb565b92505060406144bd868287016141cb565b9150509250925092565b6000602082840312156144dd576144dc614147565b5b60006144eb848285016143be565b91505092915050565b6000806040838503121561450b5761450a614147565b5b600061451985828601614195565b925050602061452a85828601614195565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061457b57607f821691505b6020821081141561458f5761458e614534565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006145cb602083614097565b91506145d682614595565b602082019050919050565b600060208201905081810360008301526145fa816145be565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061463b826141aa565b9150614646836141aa565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561467f5761467e614601565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006146c4826141aa565b91506146cf836141aa565b9250826146df576146de61468a565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614746602f83614097565b9150614751826146ea565b604082019050919050565b6000602082019050818103600083015261477581614739565b9050919050565b6000614787826141aa565b9150614792836141aa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147c7576147c6614601565b5b828201905092915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b6000614808601d83614097565b9150614813826147d2565b602082019050919050565b60006020820190508181036000830152614837816147fb565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061489a603983614097565b91506148a58261483e565b604082019050919050565b600060208201905081810360008301526148c98161488d565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061492c602483614097565b9150614937826148d0565b604082019050919050565b6000602082019050818103600083015261495b8161491f565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006149be603583614097565b91506149c982614962565b604082019050919050565b600060208201905081810360008301526149ed816149b1565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614a50603483614097565b9150614a5b826149f4565b604082019050919050565b60006020820190508181036000830152614a7f81614a43565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614ae2602683614097565b9150614aed82614a86565b604082019050919050565b60006020820190508181036000830152614b1181614ad5565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614b4e601b83614097565b9150614b5982614b18565b602082019050919050565b60006020820190508181036000830152614b7d81614b41565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614be0602483614097565b9150614beb82614b84565b604082019050919050565b60006020820190508181036000830152614c0f81614bd3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c72602283614097565b9150614c7d82614c16565b604082019050919050565b60006020820190508181036000830152614ca181614c65565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614d04602583614097565b9150614d0f82614ca8565b604082019050919050565b60006020820190508181036000830152614d3381614cf7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614d96602383614097565b9150614da182614d3a565b604082019050919050565b60006020820190508181036000830152614dc581614d89565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460008201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b6000614e28603183614097565b9150614e3382614dcc565b604082019050919050565b60006020820190508181036000830152614e5781614e1b565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614e94601683614097565b9150614e9f82614e5e565b602082019050919050565b60006020820190508181036000830152614ec381614e87565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614f4c604983614097565b9150614f5782614eca565b606082019050919050565b60006020820190508181036000830152614f7b81614f3f565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614fde603583614097565b9150614fe982614f82565b604082019050919050565b6000602082019050818103600083015261500d81614fd1565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061504a601383614097565b915061505582615014565b602082019050919050565b600060208201905081810360008301526150798161503d565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006150dc603683614097565b91506150e782615080565b604082019050919050565b6000602082019050818103600083015261510b816150cf565b9050919050565b600061511d826141aa565b9150615128836141aa565b92508282101561513b5761513a614601565b5b828203905092915050565b600081905092915050565b50565b6000615161600083615146565b915061516c82615151565b600082019050919050565b600061518282615154565b9150819050919050565b60006060820190506151a160008301866142fd565b6151ae60208301856142fd565b6151bb60408301846142fd565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b600061521f602183614097565b915061522a826151c3565b604082019050919050565b6000602082019050818103600083015261524e81615212565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506152c28161417e565b92915050565b6000602082840312156152de576152dd614147565b5b60006152ec848285016152b3565b91505092915050565b6000819050919050565b600061531a615315615310846152f5565b614283565b6141aa565b9050919050565b61532a816152ff565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6153658161416c565b82525050565b6000615377838361535c565b60208301905092915050565b6000602082019050919050565b600061539b82615330565b6153a5818561533b565b93506153b08361534c565b8060005b838110156153e15781516153c8888261536b565b97506153d383615383565b9250506001810190506153b4565b5085935050505092915050565b600060a08201905061540360008301886142fd565b6154106020830187615321565b81810360408301526154228186615390565b9050615431606083018561444a565b61543e60808301846142fd565b9695505050505050565b600060c08201905061545d600083018961444a565b61546a60208301886142fd565b6154776040830187615321565b6154846060830186615321565b615491608083018561444a565b61549e60a08301846142fd565b979650505050505050565b6000815190506154b8816141b4565b92915050565b6000806000606084860312156154d7576154d6614147565b5b60006154e5868287016154a9565b93505060206154f6868287016154a9565b9250506040615507868287016154a9565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122088ad7474537605b8e6d0380bae5c7032b2fb7d1106897c93760eda2945ab0dea64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106103035760003560e01c80639213691311610190578063c17b5b8c116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610ba7578063f2fde38b14610bd2578063f637434214610bfb578063f8b45b0514610c265761030a565b8063dd62ed3e14610b14578063e2f4560514610b51578063e884f26014610b7c5761030a565b8063c17b5b8c14610a04578063c18bc19514610a2d578063c876d0b914610a56578063c8c8ebe414610a81578063d257b34f14610aac578063d85ba06314610ae95761030a565b8063a0d82dc511610149578063aacebbe311610123578063aacebbe31461094a578063b62496f514610973578063bbc0c742146109b0578063c0246668146109db5761030a565b8063a0d82dc5146108a5578063a457c2d7146108d0578063a9059cbb1461090d5761030a565b806392136913146107a7578063924de9b7146107d257806395d89b41146107fb5780639a7a23d6146108265780639c3b4fdc1461084f5780639fccce321461087a5761030a565b806349bd5a5e1161024f578063715018a6116102085780637bce5a04116101e25780637bce5a04146107115780638095d5641461073c5780638a8c523c146107655780638da5cb5b1461077c5761030a565b8063715018a6146106a6578063751039fc146106bd5780637571336a146106e85761030a565b806349bd5a5e146105805780634a62bb65146105ab5780634fbee193146105d65780636a486a8e146106135780636ddd17131461063e57806370a08231146106695761030a565b80631a8145bb116102bc57806323b872dd1161029657806323b872dd146104b25780632d5a5d34146104ef578063313ce5671461051857806339509351146105435761030a565b80631a8145bb146104335780631f3fed8f1461045e578063203e727e146104895761030a565b806306fdde031461030f578063095ea7b31461033a57806310d5de53146103775780631694505e146103b457806318160ddd146103df5780631816467f1461040a5761030a565b3661030a57005b600080fd5b34801561031b57600080fd5b50610324610c51565b6040516103319190614125565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c91906141e0565b610ce3565b60405161036e919061423b565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190614256565b610d01565b6040516103ab919061423b565b60405180910390f35b3480156103c057600080fd5b506103c9610d21565b6040516103d691906142e2565b60405180910390f35b3480156103eb57600080fd5b506103f4610d45565b604051610401919061430c565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c9190614256565b610d4f565b005b34801561043f57600080fd5b50610448610ea6565b604051610455919061430c565b60405180910390f35b34801561046a57600080fd5b50610473610eac565b604051610480919061430c565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190614327565b610eb2565b005b3480156104be57600080fd5b506104d960048036038101906104d49190614354565b610fdc565b6040516104e6919061423b565b60405180910390f35b3480156104fb57600080fd5b50610516600480360381019061051191906143d3565b6110b5565b005b34801561052457600080fd5b5061052d6111a7565b60405161053a919061442f565b60405180910390f35b34801561054f57600080fd5b5061056a600480360381019061056591906141e0565b6111b0565b604051610577919061423b565b60405180910390f35b34801561058c57600080fd5b50610595611263565b6040516105a29190614459565b60405180910390f35b3480156105b757600080fd5b506105c0611287565b6040516105cd919061423b565b60405180910390f35b3480156105e257600080fd5b506105fd60048036038101906105f89190614256565b61129a565b60405161060a919061423b565b60405180910390f35b34801561061f57600080fd5b506106286112f0565b604051610635919061430c565b60405180910390f35b34801561064a57600080fd5b506106536112f6565b604051610660919061423b565b60405180910390f35b34801561067557600080fd5b50610690600480360381019061068b9190614256565b611309565b60405161069d919061430c565b60405180910390f35b3480156106b257600080fd5b506106bb611351565b005b3480156106c957600080fd5b506106d26114a9565b6040516106df919061423b565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a91906143d3565b611564565b005b34801561071d57600080fd5b50610726611656565b604051610733919061430c565b60405180910390f35b34801561074857600080fd5b50610763600480360381019061075e9190614474565b61165c565b005b34801561077157600080fd5b5061077a611776565b005b34801561078857600080fd5b5061079161184c565b60405161079e9190614459565b60405180910390f35b3480156107b357600080fd5b506107bc611876565b6040516107c9919061430c565b60405180910390f35b3480156107de57600080fd5b506107f960048036038101906107f491906144c7565b61187c565b005b34801561080757600080fd5b50610810611930565b60405161081d9190614125565b60405180910390f35b34801561083257600080fd5b5061084d600480360381019061084891906143d3565b6119c2565b005b34801561085b57600080fd5b50610864611af6565b604051610871919061430c565b60405180910390f35b34801561088657600080fd5b5061088f611afc565b60405161089c919061430c565b60405180910390f35b3480156108b157600080fd5b506108ba611b02565b6040516108c7919061430c565b60405180910390f35b3480156108dc57600080fd5b506108f760048036038101906108f291906141e0565b611b08565b604051610904919061423b565b60405180910390f35b34801561091957600080fd5b50610934600480360381019061092f91906141e0565b611bd5565b604051610941919061423b565b60405180910390f35b34801561095657600080fd5b50610971600480360381019061096c9190614256565b611bf3565b005b34801561097f57600080fd5b5061099a60048036038101906109959190614256565b611d4a565b6040516109a7919061423b565b60405180910390f35b3480156109bc57600080fd5b506109c5611d6a565b6040516109d2919061423b565b60405180910390f35b3480156109e757600080fd5b50610a0260048036038101906109fd91906143d3565b611d7d565b005b348015610a1057600080fd5b50610a2b6004803603810190610a269190614474565b611ebd565b005b348015610a3957600080fd5b50610a546004803603810190610a4f9190614327565b611fd7565b005b348015610a6257600080fd5b50610a6b612101565b604051610a78919061423b565b60405180910390f35b348015610a8d57600080fd5b50610a96612114565b604051610aa3919061430c565b60405180910390f35b348015610ab857600080fd5b50610ad36004803603810190610ace9190614327565b61211a565b604051610ae0919061423b565b60405180910390f35b348015610af557600080fd5b50610afe61228a565b604051610b0b919061430c565b60405180910390f35b348015610b2057600080fd5b50610b3b6004803603810190610b3691906144f4565b612290565b604051610b48919061430c565b60405180910390f35b348015610b5d57600080fd5b50610b66612317565b604051610b73919061430c565b60405180910390f35b348015610b8857600080fd5b50610b9161231d565b604051610b9e919061423b565b60405180910390f35b348015610bb357600080fd5b50610bbc6123d8565b604051610bc9919061430c565b60405180910390f35b348015610bde57600080fd5b50610bf96004803603810190610bf49190614256565b6123de565b005b348015610c0757600080fd5b50610c106125a5565b604051610c1d919061430c565b60405180910390f35b348015610c3257600080fd5b50610c3b6125ab565b604051610c48919061430c565b60405180910390f35b606060038054610c6090614563565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8c90614563565b8015610cd95780601f10610cae57610100808354040283529160200191610cd9565b820191906000526020600020905b815481529060010190602001808311610cbc57829003601f168201915b5050505050905090565b6000610cf7610cf061260f565b8484612617565b6001905092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610d5761260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd906145e1565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b610eba61260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f40906145e1565b60405180910390fd5b670de0b6b3a76400006103e86001610f5f610d45565b610f699190614630565b610f7391906146b9565b610f7d91906146b9565b811015610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb69061475c565b60405180910390fd5b670de0b6b3a764000081610fd39190614630565b60088190555050565b6000610fe98484846127e2565b6110aa84610ff561260f565b6110a58560405180606001604052806028815260200161553860289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061105b61260f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461355f9092919063ffffffff16565b612617565b600190509392505050565b6110bd61260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461114c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611143906145e1565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006012905090565b60006112596111bd61260f565b8461125485600160006111ce61260f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125b190919063ffffffff16565b612617565b6001905092915050565b7f000000000000000000000000cce0efd53db0ecb6fef0c6a062af05badce7981981565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61135961260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113df906145e1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006114b361260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611542576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611539906145e1565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61156c61260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f2906145e1565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60115481565b61166461260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ea906145e1565b60405180910390fd5b82601381905550816012819055508060118190555060115460125460135461171b919061477c565b611725919061477c565b601081905550600a6010541115611771576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117689061481e565b60405180910390fd5b505050565b61177e61260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461180d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611804906145e1565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601b81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60155481565b61188461260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190a906145e1565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461193f90614563565b80601f016020809104026020016040519081016040528092919081815260200182805461196b90614563565b80156119b85780601f1061198d576101008083540402835291602001916119b8565b820191906000526020600020905b81548152906001019060200180831161199b57829003601f168201915b5050505050905090565b6119ca61260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a50906145e1565b60405180910390fd5b7f000000000000000000000000cce0efd53db0ecb6fef0c6a062af05badce7981973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adf906148b0565b60405180910390fd5b611af282826135c3565b5050565b60135481565b601a5481565b60175481565b6000611bcb611b1561260f565b84611bc6856040518060600160405280602581526020016155606025913960016000611b3f61260f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461355f9092919063ffffffff16565b612617565b6001905092915050565b6000611be9611be261260f565b84846127e2565b6001905092915050565b611bfb61260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c81906145e1565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611d8561260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0b906145e1565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611eb1919061423b565b60405180910390a25050565b611ec561260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4b906145e1565b60405180910390fd5b826017819055508160168190555080601581905550601554601654601754611f7c919061477c565b611f86919061477c565b601481905550600a6014541115611fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc99061481e565b60405180910390fd5b505050565b611fdf61260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461206e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612065906145e1565b60405180910390fd5b670de0b6b3a76400006103e86005612084610d45565b61208e9190614630565b61209891906146b9565b6120a291906146b9565b8110156120e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120db90614942565b60405180910390fd5b670de0b6b3a7640000816120f89190614630565b600a8190555050565b600f60009054906101000a900460ff1681565b60085481565b600061212461260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121aa906145e1565b60405180910390fd5b620186a060016121c1610d45565b6121cb9190614630565b6121d591906146b9565b821015612217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220e906149d4565b60405180910390fd5b6103e86005612224610d45565b61222e9190614630565b61223891906146b9565b82111561227a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227190614a66565b60405180910390fd5b8160098190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061232761260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ad906145e1565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b6123e661260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246c906145e1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124dc90614af8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600a5481565b60008082846125c0919061477c565b905083811015612605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fc90614b64565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267e90614bf6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ee90614c88565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516127d5919061430c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612852576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284990614d1a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b990614dac565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156129665750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6129a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299c90614e3e565b60405180910390fd5b60008114156129bf576129ba83836000613664565b61355a565b600b60009054906101000a900460ff1615613082576129dc61184c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a4a5750612a1a61184c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a835750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612abd575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ad65750600560149054906101000a900460ff16155b1561308157600b60019054906101000a900460ff16612bd057601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b905750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc690614eaa565b60405180910390fd5b5b600f60009054906101000a900460ff1615612d9857612bed61184c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612c7457507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ccc57507f000000000000000000000000cce0efd53db0ecb6fef0c6a062af05badce7981973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612d975743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4990614f62565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e3b5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ee257600854811115612e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7c90614ff4565b60405180910390fd5b600a54612e9183611309565b82612e9c919061477c565b1115612edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed490615060565b60405180910390fd5b613080565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f855750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612fd457600854811115612fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc6906150f2565b60405180910390fd5b61307f565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661307e57600a5461303183611309565b8261303c919061477c565b111561307d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307490615060565b60405180910390fd5b5b5b5b5b5b600061308d30611309565b9050600060095482101590508080156130b25750600b60029054906101000a900460ff165b80156130cb5750600560149054906101000a900460ff16155b80156131215750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131775750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131cd5750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613211576001600560146101000a81548160ff0219169083151502179055506131f56138f9565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806132c75750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156132d157600090505b6000811561354a57601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561333457506000601454115b1561340157613361606461335360145488613be090919063ffffffff16565b613c5b90919063ffffffff16565b9050601454601654826133749190614630565b61337e91906146b9565b6019600082825461338f919061477c565b92505081905550601454601754826133a79190614630565b6133b191906146b9565b601a60008282546133c2919061477c565b92505081905550601454601554826133da9190614630565b6133e491906146b9565b601860008282546133f5919061477c565b92505081905550613526565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561345c57506000601054115b1561352557613489606461347b60105488613be090919063ffffffff16565b613c5b90919063ffffffff16565b90506010546012548261349c9190614630565b6134a691906146b9565b601960008282546134b7919061477c565b92505081905550601054601354826134cf9190614630565b6134d991906146b9565b601a60008282546134ea919061477c565b92505081905550601054601154826135029190614630565b61350c91906146b9565b6018600082825461351d919061477c565b925050819055505b5b600081111561353b5761353a873083613664565b5b80856135479190615112565b94505b613555878787613664565b505050505b505050565b60008383111582906135a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161359e9190614125565b60405180910390fd5b50600083856135b69190615112565b9050809150509392505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156136d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136cb90614d1a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161373b90614dac565b60405180910390fd5b61374f838383613ca5565b6137ba81604051806060016040528060268152602001615512602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461355f9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061384d816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125b190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516138ec919061430c565b60405180910390a3505050565b600061390430611309565b90506000601a5460185460195461391b919061477c565b613925919061477c565b90506000808314806139375750600082145b1561394457505050613bde565b60146009546139539190614630565b83111561396c5760146009546139699190614630565b92505b60006002836019548661397f9190614630565b61398991906146b9565b61399391906146b9565b905060006139aa8286613caa90919063ffffffff16565b905060004790506139ba82613cf4565b60006139cf8247613caa90919063ffffffff16565b905060006139fa876139ec60185485613be090919063ffffffff16565b613c5b90919063ffffffff16565b90506000613a2588613a17601a5486613be090919063ffffffff16565b613c5b90919063ffffffff16565b90506000818385613a369190615112565b613a409190615112565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613aa090615177565b60006040518083038185875af1925050503d8060008114613add576040519150601f19603f3d011682016040523d82523d6000602084013e613ae2565b606091505b505080985050600087118015613af85750600081115b15613b4557613b078782613f40565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601954604051613b3c9392919061518c565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613b8b90615177565b60006040518083038185875af1925050503d8060008114613bc8576040519150601f19603f3d011682016040523d82523d6000602084013e613bcd565b606091505b505080985050505050505050505050505b565b600080831415613bf35760009050613c55565b60008284613c019190614630565b9050828482613c1091906146b9565b14613c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c4790615235565b60405180910390fd5b809150505b92915050565b6000613c9d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614029565b905092915050565b505050565b6000613cec83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061355f565b905092915050565b6000600267ffffffffffffffff811115613d1157613d10615255565b5b604051908082528060200260200182016040528015613d3f5781602001602082028036833780820191505090505b5090503081600081518110613d5757613d56615284565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613df757600080fd5b505afa158015613e0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e2f91906152c8565b81600181518110613e4357613e42615284565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613ea8307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612617565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613f0a9594939291906153ee565b600060405180830381600087803b158015613f2457600080fd5b505af1158015613f38573d6000803e3d6000fd5b505050505050565b613f6b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612617565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401613fd096959493929190615448565b6060604051808303818588803b158015613fe957600080fd5b505af1158015613ffd573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061402291906154be565b5050505050565b60008083118290614070576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016140679190614125565b60405180910390fd5b506000838561407f91906146b9565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156140c65780820151818401526020810190506140ab565b838111156140d5576000848401525b50505050565b6000601f19601f8301169050919050565b60006140f78261408c565b6141018185614097565b93506141118185602086016140a8565b61411a816140db565b840191505092915050565b6000602082019050818103600083015261413f81846140ec565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006141778261414c565b9050919050565b6141878161416c565b811461419257600080fd5b50565b6000813590506141a48161417e565b92915050565b6000819050919050565b6141bd816141aa565b81146141c857600080fd5b50565b6000813590506141da816141b4565b92915050565b600080604083850312156141f7576141f6614147565b5b600061420585828601614195565b9250506020614216858286016141cb565b9150509250929050565b60008115159050919050565b61423581614220565b82525050565b6000602082019050614250600083018461422c565b92915050565b60006020828403121561426c5761426b614147565b5b600061427a84828501614195565b91505092915050565b6000819050919050565b60006142a86142a361429e8461414c565b614283565b61414c565b9050919050565b60006142ba8261428d565b9050919050565b60006142cc826142af565b9050919050565b6142dc816142c1565b82525050565b60006020820190506142f760008301846142d3565b92915050565b614306816141aa565b82525050565b600060208201905061432160008301846142fd565b92915050565b60006020828403121561433d5761433c614147565b5b600061434b848285016141cb565b91505092915050565b60008060006060848603121561436d5761436c614147565b5b600061437b86828701614195565b935050602061438c86828701614195565b925050604061439d868287016141cb565b9150509250925092565b6143b081614220565b81146143bb57600080fd5b50565b6000813590506143cd816143a7565b92915050565b600080604083850312156143ea576143e9614147565b5b60006143f885828601614195565b9250506020614409858286016143be565b9150509250929050565b600060ff82169050919050565b61442981614413565b82525050565b60006020820190506144446000830184614420565b92915050565b6144538161416c565b82525050565b600060208201905061446e600083018461444a565b92915050565b60008060006060848603121561448d5761448c614147565b5b600061449b868287016141cb565b93505060206144ac868287016141cb565b92505060406144bd868287016141cb565b9150509250925092565b6000602082840312156144dd576144dc614147565b5b60006144eb848285016143be565b91505092915050565b6000806040838503121561450b5761450a614147565b5b600061451985828601614195565b925050602061452a85828601614195565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061457b57607f821691505b6020821081141561458f5761458e614534565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006145cb602083614097565b91506145d682614595565b602082019050919050565b600060208201905081810360008301526145fa816145be565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061463b826141aa565b9150614646836141aa565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561467f5761467e614601565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006146c4826141aa565b91506146cf836141aa565b9250826146df576146de61468a565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614746602f83614097565b9150614751826146ea565b604082019050919050565b6000602082019050818103600083015261477581614739565b9050919050565b6000614787826141aa565b9150614792836141aa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147c7576147c6614601565b5b828201905092915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b6000614808601d83614097565b9150614813826147d2565b602082019050919050565b60006020820190508181036000830152614837816147fb565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061489a603983614097565b91506148a58261483e565b604082019050919050565b600060208201905081810360008301526148c98161488d565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061492c602483614097565b9150614937826148d0565b604082019050919050565b6000602082019050818103600083015261495b8161491f565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006149be603583614097565b91506149c982614962565b604082019050919050565b600060208201905081810360008301526149ed816149b1565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614a50603483614097565b9150614a5b826149f4565b604082019050919050565b60006020820190508181036000830152614a7f81614a43565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614ae2602683614097565b9150614aed82614a86565b604082019050919050565b60006020820190508181036000830152614b1181614ad5565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614b4e601b83614097565b9150614b5982614b18565b602082019050919050565b60006020820190508181036000830152614b7d81614b41565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614be0602483614097565b9150614beb82614b84565b604082019050919050565b60006020820190508181036000830152614c0f81614bd3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c72602283614097565b9150614c7d82614c16565b604082019050919050565b60006020820190508181036000830152614ca181614c65565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614d04602583614097565b9150614d0f82614ca8565b604082019050919050565b60006020820190508181036000830152614d3381614cf7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614d96602383614097565b9150614da182614d3a565b604082019050919050565b60006020820190508181036000830152614dc581614d89565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460008201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b6000614e28603183614097565b9150614e3382614dcc565b604082019050919050565b60006020820190508181036000830152614e5781614e1b565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614e94601683614097565b9150614e9f82614e5e565b602082019050919050565b60006020820190508181036000830152614ec381614e87565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614f4c604983614097565b9150614f5782614eca565b606082019050919050565b60006020820190508181036000830152614f7b81614f3f565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614fde603583614097565b9150614fe982614f82565b604082019050919050565b6000602082019050818103600083015261500d81614fd1565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061504a601383614097565b915061505582615014565b602082019050919050565b600060208201905081810360008301526150798161503d565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006150dc603683614097565b91506150e782615080565b604082019050919050565b6000602082019050818103600083015261510b816150cf565b9050919050565b600061511d826141aa565b9150615128836141aa565b92508282101561513b5761513a614601565b5b828203905092915050565b600081905092915050565b50565b6000615161600083615146565b915061516c82615151565b600082019050919050565b600061518282615154565b9150819050919050565b60006060820190506151a160008301866142fd565b6151ae60208301856142fd565b6151bb60408301846142fd565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b600061521f602183614097565b915061522a826151c3565b604082019050919050565b6000602082019050818103600083015261524e81615212565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506152c28161417e565b92915050565b6000602082840312156152de576152dd614147565b5b60006152ec848285016152b3565b91505092915050565b6000819050919050565b600061531a615315615310846152f5565b614283565b6141aa565b9050919050565b61532a816152ff565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6153658161416c565b82525050565b6000615377838361535c565b60208301905092915050565b6000602082019050919050565b600061539b82615330565b6153a5818561533b565b93506153b08361534c565b8060005b838110156153e15781516153c8888261536b565b97506153d383615383565b9250506001810190506153b4565b5085935050505092915050565b600060a08201905061540360008301886142fd565b6154106020830187615321565b81810360408301526154228186615390565b9050615431606083018561444a565b61543e60808301846142fd565b9695505050505050565b600060c08201905061545d600083018961444a565b61546a60208301886142fd565b6154776040830187615321565b6154846060830186615321565b615491608083018561444a565b61549e60a08301846142fd565b979650505050505050565b6000815190506154b8816141b4565b92915050565b6000806000606084860312156154d7576154d6614147565b5b60006154e5868287016154a9565b93505060206154f6868287016154a9565b9250506040615507868287016154a9565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122088ad7474537605b8e6d0380bae5c7032b2fb7d1106897c93760eda2945ab0dea64736f6c63430008090033

Deployed Bytecode Sourcemap

30149:15485:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8247:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10421:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31687:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30232:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9370:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38471:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31401:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31361;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35812:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11073:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37658:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9211:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11838:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30290:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30558:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38640:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31215:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30638:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9542:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22749:148;;;;;;;;;;;;;:::i;:::-;;35029:120;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36279:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31107:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36437:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34828:148;;;;;;;;;;;;;:::i;:::-;;22105:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31250:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37357:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8467:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37802:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31181:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31441:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31326:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12560:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9883:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38254:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31910:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30598:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37467:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36848:412;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36055:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31024:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30442:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35417:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31073:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10122:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30484:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35211:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31144:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23053:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31288:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30524:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8247:100;8301:13;8334:5;8327:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8247:100;:::o;10421:169::-;10504:4;10521:39;10530:12;:10;:12::i;:::-;10544:7;10553:6;10521:8;:39::i;:::-;10578:4;10571:11;;10421:169;;;;:::o;31687:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;30232:51::-;;;:::o;9370:108::-;9431:7;9458:12;;9451:19;;9370:108;:::o;38471:157::-;22328:12;:10;:12::i;:::-;22318:22;;:6;;;;;;;;;;;:22;;;22310:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38578:9:::1;;;;;;;;;;;38550:38;;38567:9;38550:38;;;;;;;;;;;;38611:9;38599;;:21;;;;;;;;;;;;;;;;;;38471:157:::0;:::o;31401:33::-;;;;:::o;31361:::-;;;;:::o;35812:234::-;22328:12;:10;:12::i;:::-;22318:22;;:6;;;;;;;;;;;:22;;;22310:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35931:4:::1;35925;35921:1;35905:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35904:31;;;;:::i;:::-;35894:6;:41;;35886:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;36031:6;36021;:17;;;;:::i;:::-;35998:20;:40;;;;35812:234:::0;:::o;11073:355::-;11213:4;11230:36;11240:6;11248:9;11259:6;11230:9;:36::i;:::-;11277:121;11286:6;11294:12;:10;:12::i;:::-;11308:89;11346:6;11308:89;;;;;;;;;;;;;;;;;:11;:19;11320:6;11308:19;;;;;;;;;;;;;;;:33;11328:12;:10;:12::i;:::-;11308:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;11277:8;:121::i;:::-;11416:4;11409:11;;11073:355;;;;;:::o;37658:135::-;22328:12;:10;:12::i;:::-;22318:22;;:6;;;;;;;;;;;:22;;;22310:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37772:13:::1;37750:10;:19;37761:7;37750:19;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;37658:135:::0;;:::o;9211:93::-;9269:5;9294:2;9287:9;;9211:93;:::o;11838:218::-;11926:4;11943:83;11952:12;:10;:12::i;:::-;11966:7;11975:50;12014:10;11975:11;:25;11987:12;:10;:12::i;:::-;11975:25;;;;;;;;;;;;;;;:34;12001:7;11975:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11943:8;:83::i;:::-;12044:4;12037:11;;11838:218;;;;:::o;30290:38::-;;;:::o;30558:33::-;;;;;;;;;;;;;:::o;38640:125::-;38705:4;38729:19;:28;38749:7;38729:28;;;;;;;;;;;;;;;;;;;;;;;;;38722:35;;38640:125;;;:::o;31215:28::-;;;;:::o;30638:31::-;;;;;;;;;;;;;:::o;9542:127::-;9616:7;9643:9;:18;9653:7;9643:18;;;;;;;;;;;;;;;;9636:25;;9542:127;;;:::o;22749:148::-;22328:12;:10;:12::i;:::-;22318:22;;:6;;;;;;;;;;;:22;;;22310:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22856:1:::1;22819:40;;22840:6;;;;;;;;;;;22819:40;;;;;;;;;;;;22887:1;22870:6;;:19;;;;;;;;;;;;;;;;;;22749:148::o:0;35029:120::-;35081:4;22328:12;:10;:12::i;:::-;22318:22;;:6;;;;;;;;;;;:22;;;22310:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35114:5:::1;35097:14;;:22;;;;;;;;;;;;;;;;;;35137:4;35130:11;;35029:120:::0;:::o;36279:144::-;22328:12;:10;:12::i;:::-;22318:22;;:6;;;;;;;;;;;:22;;;22310:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36411:4:::1;36369:31;:39;36401:6;36369:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36279:144:::0;;:::o;31107:30::-;;;;:::o;36437:403::-;22328:12;:10;:12::i;:::-;22318:22;;:6;;;;;;;;;;;:22;;;22310:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36599:7:::1;36587:9;:19;;;;36635:13;36617:15;:31;;;;36677:13;36659:15;:31;;;;36746:15;;36728;;36716:9;;:27;;;;:::i;:::-;:45;;;;:::i;:::-;36701:12;:60;;;;36796:2;36780:12;;:18;;36772:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;36437:403:::0;;;:::o;34828:148::-;22328:12;:10;:12::i;:::-;22318:22;;:6;;;;;;;;;;;:22;;;22310:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34899:4:::1;34883:13;;:20;;;;;;;;;;;;;;;;;;34928:4;34914:11;;:18;;;;;;;;;;;;;;;;;;34956:12;34943:10;:25;;;;34828:148::o:0;22105:79::-;22143:7;22170:6;;;;;;;;;;;22163:13;;22105:79;:::o;31250:31::-;;;;:::o;37357:101::-;22328:12;:10;:12::i;:::-;22318:22;;:6;;;;;;;;;;;:22;;;22310:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37443:7:::1;37429:11;;:21;;;;;;;;;;;;;;;;;;37357:101:::0;:::o;8467:104::-;8523:13;8556:7;8549:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8467:104;:::o;37802:245::-;22328:12;:10;:12::i;:::-;22318:22;;:6;;;;;;;;;;;:22;;;22310:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37909:13:::1;37901:21;;:4;:21;;;;37893:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;37998:41;38027:4;38033:5;37998:28;:41::i;:::-;37802:245:::0;;:::o;31181:24::-;;;;:::o;31441:27::-;;;;:::o;31326:25::-;;;;:::o;12560:269::-;12653:4;12670:129;12679:12;:10;:12::i;:::-;12693:7;12702:96;12741:15;12702:96;;;;;;;;;;;;;;;;;:11;:25;12714:12;:10;:12::i;:::-;12702:25;;;;;;;;;;;;;;;:34;12728:7;12702:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;12670:8;:129::i;:::-;12817:4;12810:11;;12560:269;;;;:::o;9883:175::-;9969:4;9986:42;9996:12;:10;:12::i;:::-;10010:9;10021:6;9986:9;:42::i;:::-;10046:4;10039:11;;9883:175;;;;:::o;38254:208::-;22328:12;:10;:12::i;:::-;22318:22;;:6;;;;;;;;;;;:22;;;22310:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38391:15:::1;;;;;;;;;;;38348:59;;38371:18;38348:59;;;;;;;;;;;;38436:18;38418:15;;:36;;;;;;;;;;;;;;;;;;38254:208:::0;:::o;31910:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;30598:33::-;;;;;;;;;;;;;:::o;37467:182::-;22328:12;:10;:12::i;:::-;22318:22;;:6;;;;;;;;;;;:22;;;22310:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37583:8:::1;37552:19;:28;37572:7;37552:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37623:7;37607:34;;;37632:8;37607:34;;;;;;:::i;:::-;;;;;;;;37467:182:::0;;:::o;36848:412::-;22328:12;:10;:12::i;:::-;22318:22;;:6;;;;;;;;;;;:22;;;22310:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37012:7:::1;36999:10;:20;;;;37049:13;37030:16;:32;;;;37092:13;37073:16;:32;;;;37164:16;;37145;;37132:10;;:29;;;;:::i;:::-;:48;;;;:::i;:::-;37116:13;:64;;;;37216:2;37199:13;;:19;;37191:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;36848:412:::0;;;:::o;36055:215::-;22328:12;:10;:12::i;:::-;22318:22;;:6;;;;;;;;;;;:22;;;22310:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36177:4:::1;36171;36167:1;36151:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;36150:31;;;;:::i;:::-;36140:6;:41;;36132:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;36255:6;36245;:17;;;;:::i;:::-;36233:9;:29;;;;36055:215:::0;:::o;31024:39::-;;;;;;;;;;;;;:::o;30442:35::-;;;;:::o;35417:386::-;35498:4;22328:12;:10;:12::i;:::-;22318:22;;:6;;;;;;;;;;;:22;;;22310:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35555:6:::1;35551:1;35535:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:26;;;;:::i;:::-;35522:9;:39;;35514:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;35671:4;35667:1;35651:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35638:9;:37;;35630:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;35764:9;35743:18;:30;;;;35791:4;35784:11;;35417:386:::0;;;:::o;31073:27::-;;;;:::o;10122:151::-;10211:7;10238:11;:18;10250:5;10238:18;;;;;;;;;;;;;;;:27;10257:7;10238:27;;;;;;;;;;;;;;;;10231:34;;10122:151;;;;:::o;30484:33::-;;;;:::o;35211:134::-;35271:4;22328:12;:10;:12::i;:::-;22318:22;;:6;;;;;;;;;;;:22;;;22310:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35310:5:::1;35287:20;;:28;;;;;;;;;;;;;;;;;;35333:4;35326:11;;35211:134:::0;:::o;31144:30::-;;;;:::o;23053:244::-;22328:12;:10;:12::i;:::-;22318:22;;:6;;;;;;;;;;;:22;;;22310:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;23162:1:::1;23142:22;;:8;:22;;;;23134:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23252:8;23223:38;;23244:6;;;;;;;;;;;23223:38;;;;;;;;;;;;23281:8;23272:6;;:17;;;;;;;;;;;;;;;;;;23053:244:::0;:::o;31288:31::-;;;;:::o;30524:24::-;;;;:::o;17137:182::-;17195:7;17215:9;17231:1;17227;:5;;;;:::i;:::-;17215:17;;17256:1;17251;:6;;17243:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;17310:1;17303:8;;;17137:182;;;;:::o;938:98::-;991:7;1018:10;1011:17;;938:98;:::o;15756:381::-;15909:1;15892:19;;:5;:19;;;;15884:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15990:1;15971:21;;:7;:21;;;;15963:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16075:6;16045:11;:18;16057:5;16045:18;;;;;;;;;;;;;;;:27;16064:7;16045:27;;;;;;;;;;;;;;;:36;;;;16113:7;16097:32;;16106:5;16097:32;;;16122:6;16097:32;;;;;;:::i;:::-;;;;;;;;15756:381;;;:::o;38774:4145::-;38922:1;38906:18;;:4;:18;;;;38898:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38999:1;38985:16;;:2;:16;;;;38977:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;39061:10;:14;39072:2;39061:14;;;;;;;;;;;;;;;;;;;;;;;;;39060:15;:36;;;;;39080:10;:16;39091:4;39080:16;;;;;;;;;;;;;;;;;;;;;;;;;39079:17;39060:36;39052:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;39175:1;39165:6;:11;39162:92;;;39193:28;39209:4;39215:2;39219:1;39193:15;:28::i;:::-;39236:7;;39162:92;39270:14;;;;;;;;;;;39267:1811;;;39330:7;:5;:7::i;:::-;39322:15;;:4;:15;;;;:49;;;;;39364:7;:5;:7::i;:::-;39358:13;;:2;:13;;;;39322:49;:86;;;;;39406:1;39392:16;;:2;:16;;;;39322:86;:128;;;;;39443:6;39429:21;;:2;:21;;;;39322:128;:158;;;;;39472:8;;;;;;;;;;;39471:9;39322:158;39300:1767;;;39518:13;;;;;;;;;;;39514:148;;39563:19;:25;39583:4;39563:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;39592:19;:23;39612:2;39592:23;;;;;;;;;;;;;;;;;;;;;;;;;39563:52;39555:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;39514:148;39821:20;;;;;;;;;;;39817:423;;;39875:7;:5;:7::i;:::-;39869:13;;:2;:13;;;;:47;;;;;39900:15;39886:30;;:2;:30;;;;39869:47;:79;;;;;39934:13;39920:28;;:2;:28;;;;39869:79;39865:356;;;40026:12;39984:28;:39;40013:9;39984:39;;;;;;;;;;;;;;;;:54;39976:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;40185:12;40143:28;:39;40172:9;40143:39;;;;;;;;;;;;;;;:54;;;;39865:356;39817:423;40293:25;:31;40319:4;40293:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;40329:31;:35;40361:2;40329:35;;;;;;;;;;;;;;;;;;;;;;;;;40328:36;40293:71;40289:763;;;40411:20;;40401:6;:30;;40393:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;40550:9;;40533:13;40543:2;40533:9;:13::i;:::-;40524:6;:22;;;;:::i;:::-;:35;;40516:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;40289:763;;;40662:25;:29;40688:2;40662:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;40696:31;:37;40728:4;40696:37;;;;;;;;;;;;;;;;;;;;;;;;;40695:38;40662:71;40658:394;;;40780:20;;40770:6;:30;;40762:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;40658:394;;;40906:31;:35;40938:2;40906:35;;;;;;;;;;;;;;;;;;;;;;;;;40902:150;;40999:9;;40982:13;40992:2;40982:9;:13::i;:::-;40973:6;:22;;;;:::i;:::-;:35;;40965:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;40902:150;40658:394;40289:763;39300:1767;39267:1811;41091:28;41122:24;41140:4;41122:9;:24::i;:::-;41091:55;;41160:12;41199:18;;41175:20;:42;;41160:57;;41249:7;:35;;;;;41273:11;;;;;;;;;;;41249:35;:61;;;;;41302:8;;;;;;;;;;;41301:9;41249:61;:110;;;;;41328:25;:31;41354:4;41328:31;;;;;;;;;;;;;;;;;;;;;;;;;41327:32;41249:110;:153;;;;;41377:19;:25;41397:4;41377:25;;;;;;;;;;;;;;;;;;;;;;;;;41376:26;41249:153;:194;;;;;41420:19;:23;41440:2;41420:23;;;;;;;;;;;;;;;;;;;;;;;;;41419:24;41249:194;41231:328;;;41481:4;41470:8;;:15;;;;;;;;;;;;;;;;;;41503:10;:8;:10::i;:::-;41542:5;41531:8;;:16;;;;;;;;;;;;;;;;;;41231:328;41572:12;41588:8;;;;;;;;;;;41587:9;41572:24;;41698:19;:25;41718:4;41698:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;41727:19;:23;41747:2;41727:23;;;;;;;;;;;;;;;;;;;;;;;;;41698:52;41695:99;;;41777:5;41767:15;;41695:99;41807:12;41911:7;41908:957;;;41962:25;:29;41988:2;41962:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;42011:1;41995:13;;:17;41962:50;41958:754;;;42039:34;42069:3;42039:25;42050:13;;42039:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;42032:41;;42140:13;;42121:16;;42114:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;42092:18;;:61;;;;;;;:::i;:::-;;;;;;;;42208:13;;42195:10;;42188:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;42172:12;;:49;;;;;;;:::i;:::-;;;;;;;;42288:13;;42269:16;;42262:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;42240:18;;:61;;;;;;;:::i;:::-;;;;;;;;41958:754;;;42362:25;:31;42388:4;42362:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;42412:1;42397:12;;:16;42362:51;42359:353;;;42441:33;42470:3;42441:24;42452:12;;42441:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;42434:40;;42540:12;;42522:15;;42515:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;42493:18;;:59;;;;;;;:::i;:::-;;;;;;;;42606:12;;42594:9;;42587:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;42571:12;;:47;;;;;;;:::i;:::-;;;;;;;;42684:12;;42666:15;;42659:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;42637:18;;:59;;;;;;;:::i;:::-;;;;;;;;42359:353;41958:754;42739:1;42732:4;:8;42729:93;;;42764:42;42780:4;42794;42801;42764:15;:42::i;:::-;42729:93;42849:4;42839:14;;;;;:::i;:::-;;;41908:957;42878:33;42894:4;42900:2;42904:6;42878:15;:33::i;:::-;38887:4032;;;;38774:4145;;;;:::o;18043:193::-;18129:7;18162:1;18157;:6;;18165:12;18149:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;18189:9;18205:1;18201;:5;;;;:::i;:::-;18189:17;;18227:1;18220:8;;;18043:193;;;;;:::o;38056:189::-;38173:5;38139:25;:31;38165:4;38139:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;38231:5;38197:40;;38225:4;38197:40;;;;;;;;;;;;38056:189;;:::o;13320:575::-;13478:1;13460:20;;:6;:20;;;;13452:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13562:1;13541:23;;:9;:23;;;;13533:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13618:47;13639:6;13647:9;13658:6;13618:20;:47::i;:::-;13699:71;13721:6;13699:71;;;;;;;;;;;;;;;;;:9;:17;13709:6;13699:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;13679:9;:17;13689:6;13679:17;;;;;;;;;;;;;;;:91;;;;13804:32;13829:6;13804:9;:20;13814:9;13804:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;13781:9;:20;13791:9;13781:20;;;;;;;;;;;;;;;:55;;;;13869:9;13852:35;;13861:6;13852:35;;;13880:6;13852:35;;;;;;:::i;:::-;;;;;;;;13320:575;;;:::o;44063:1568::-;44102:23;44128:24;44146:4;44128:9;:24::i;:::-;44102:50;;44163:25;44233:12;;44212:18;;44191;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;44163:82;;44256:12;44304:1;44285:15;:20;:46;;;;44330:1;44309:17;:22;44285:46;44282:60;;;44334:7;;;;;44282:60;44397:2;44376:18;;:23;;;;:::i;:::-;44358:15;:41;44355:111;;;44452:2;44431:18;;:23;;;;:::i;:::-;44413:41;;44355:111;44528:23;44613:1;44593:17;44572:18;;44554:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;44528:86;;44625:26;44654:36;44674:15;44654;:19;;:36;;;;:::i;:::-;44625:65;;44704:25;44732:21;44704:49;;44767:36;44784:18;44767:16;:36::i;:::-;44818:18;44839:44;44865:17;44839:21;:25;;:44;;;;:::i;:::-;44818:65;;44897:23;44923:57;44962:17;44923:34;44938:18;;44923:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;44897:83;;44991:17;45011:51;45044:17;45011:28;45026:12;;45011:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;44991:71;;45073:23;45130:9;45112:15;45099:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;45073:66;;45177:1;45156:18;:22;;;;45210:1;45189:18;:22;;;;45237:1;45222:12;:16;;;;45273:9;;;;;;;;;;;45265:23;;45296:9;45265:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45252:58;;;;;45345:1;45327:15;:19;:42;;;;;45368:1;45350:15;:19;45327:42;45324:210;;;45385:46;45398:15;45415;45385:12;:46::i;:::-;45451:71;45466:18;45486:15;45503:18;;45451:71;;;;;;;;:::i;:::-;;;;;;;;45324:210;45568:15;;;;;;;;;;;45560:29;;45597:21;45560:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45547:76;;;;;44091:1540;;;;;;;;;;44063:1568;:::o;18496:473::-;18554:7;18804:1;18799;:6;18795:47;;;18829:1;18822:8;;;;18795:47;18855:9;18871:1;18867;:5;;;;:::i;:::-;18855:17;;18900:1;18895;18891;:5;;;;:::i;:::-;:10;18883:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;18960:1;18953:8;;;18496:473;;;;;:::o;19446:132::-;19504:7;19531:39;19535:1;19538;19531:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;19524:46;;19446:132;;;;:::o;16741:125::-;;;;:::o;17603:136::-;17661:7;17688:43;17692:1;17695;17688:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;17681:50;;17603:136;;;;:::o;42928:597::-;43057:21;43095:1;43081:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43057:40;;43126:4;43108;43113:1;43108:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;43152:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43142:4;43147:1;43142:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;43188:62;43205:4;43220:15;43238:11;43188:8;:62::i;:::-;43290:15;:66;;;43371:11;43397:1;43441:4;43468;43488:15;43290:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42983:542;42928:597;:::o;43534:520::-;43682:62;43699:4;43714:15;43732:11;43682:8;:62::i;:::-;43788:15;:31;;;43827:9;43860:4;43880:11;43906:1;43949;44000:4;44020:15;43788:258;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;43534:520;;:::o;20075:279::-;20161:7;20193:1;20189;:5;20196:12;20181:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;20220:9;20236:1;20232;:5;;;;:::i;:::-;20220:17;;20345:1;20338:8;;;20075:279;;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:116::-;6189:21;6204:5;6189:21;:::i;:::-;6182:5;6179:32;6169:60;;6225:1;6222;6215:12;6169:60;6119:116;:::o;6241:133::-;6284:5;6322:6;6309:20;6300:29;;6338:30;6362:5;6338:30;:::i;:::-;6241:133;;;;:::o;6380:468::-;6445:6;6453;6502:2;6490:9;6481:7;6477:23;6473:32;6470:119;;;6508:79;;:::i;:::-;6470:119;6628:1;6653:53;6698:7;6689:6;6678:9;6674:22;6653:53;:::i;:::-;6643:63;;6599:117;6755:2;6781:50;6823:7;6814:6;6803:9;6799:22;6781:50;:::i;:::-;6771:60;;6726:115;6380:468;;;;;:::o;6854:86::-;6889:7;6929:4;6922:5;6918:16;6907:27;;6854:86;;;:::o;6946:112::-;7029:22;7045:5;7029:22;:::i;:::-;7024:3;7017:35;6946:112;;:::o;7064:214::-;7153:4;7191:2;7180:9;7176:18;7168:26;;7204:67;7268:1;7257:9;7253:17;7244:6;7204:67;:::i;:::-;7064:214;;;;:::o;7284:118::-;7371:24;7389:5;7371:24;:::i;:::-;7366:3;7359:37;7284:118;;:::o;7408:222::-;7501:4;7539:2;7528:9;7524:18;7516:26;;7552:71;7620:1;7609:9;7605:17;7596:6;7552:71;:::i;:::-;7408:222;;;;:::o;7636:619::-;7713:6;7721;7729;7778:2;7766:9;7757:7;7753:23;7749:32;7746:119;;;7784:79;;:::i;:::-;7746:119;7904:1;7929:53;7974:7;7965:6;7954:9;7950:22;7929:53;:::i;:::-;7919:63;;7875:117;8031:2;8057:53;8102:7;8093:6;8082:9;8078:22;8057:53;:::i;:::-;8047:63;;8002:118;8159:2;8185:53;8230:7;8221:6;8210:9;8206:22;8185:53;:::i;:::-;8175:63;;8130:118;7636:619;;;;;:::o;8261:323::-;8317:6;8366:2;8354:9;8345:7;8341:23;8337:32;8334:119;;;8372:79;;:::i;:::-;8334:119;8492:1;8517:50;8559:7;8550:6;8539:9;8535:22;8517:50;:::i;:::-;8507:60;;8463:114;8261:323;;;;:::o;8590:474::-;8658:6;8666;8715:2;8703:9;8694:7;8690:23;8686:32;8683:119;;;8721:79;;:::i;:::-;8683:119;8841:1;8866:53;8911:7;8902:6;8891:9;8887:22;8866:53;:::i;:::-;8856:63;;8812:117;8968:2;8994:53;9039:7;9030:6;9019:9;9015:22;8994:53;:::i;:::-;8984:63;;8939:118;8590:474;;;;;:::o;9070:180::-;9118:77;9115:1;9108:88;9215:4;9212:1;9205:15;9239:4;9236:1;9229:15;9256:320;9300:6;9337:1;9331:4;9327:12;9317:22;;9384:1;9378:4;9374:12;9405:18;9395:81;;9461:4;9453:6;9449:17;9439:27;;9395:81;9523:2;9515:6;9512:14;9492:18;9489:38;9486:84;;;9542:18;;:::i;:::-;9486:84;9307:269;9256:320;;;:::o;9582:182::-;9722:34;9718:1;9710:6;9706:14;9699:58;9582:182;:::o;9770:366::-;9912:3;9933:67;9997:2;9992:3;9933:67;:::i;:::-;9926:74;;10009:93;10098:3;10009:93;:::i;:::-;10127:2;10122:3;10118:12;10111:19;;9770:366;;;:::o;10142:419::-;10308:4;10346:2;10335:9;10331:18;10323:26;;10395:9;10389:4;10385:20;10381:1;10370:9;10366:17;10359:47;10423:131;10549:4;10423:131;:::i;:::-;10415:139;;10142:419;;;:::o;10567:180::-;10615:77;10612:1;10605:88;10712:4;10709:1;10702:15;10736:4;10733:1;10726:15;10753:348;10793:7;10816:20;10834:1;10816:20;:::i;:::-;10811:25;;10850:20;10868:1;10850:20;:::i;:::-;10845:25;;11038:1;10970:66;10966:74;10963:1;10960:81;10955:1;10948:9;10941:17;10937:105;10934:131;;;11045:18;;:::i;:::-;10934:131;11093:1;11090;11086:9;11075:20;;10753:348;;;;:::o;11107:180::-;11155:77;11152:1;11145:88;11252:4;11249:1;11242:15;11276:4;11273:1;11266:15;11293:185;11333:1;11350:20;11368:1;11350:20;:::i;:::-;11345:25;;11384:20;11402:1;11384:20;:::i;:::-;11379:25;;11423:1;11413:35;;11428:18;;:::i;:::-;11413:35;11470:1;11467;11463:9;11458:14;;11293:185;;;;:::o;11484:234::-;11624:34;11620:1;11612:6;11608:14;11601:58;11693:17;11688:2;11680:6;11676:15;11669:42;11484:234;:::o;11724:366::-;11866:3;11887:67;11951:2;11946:3;11887:67;:::i;:::-;11880:74;;11963:93;12052:3;11963:93;:::i;:::-;12081:2;12076:3;12072:12;12065:19;;11724:366;;;:::o;12096:419::-;12262:4;12300:2;12289:9;12285:18;12277:26;;12349:9;12343:4;12339:20;12335:1;12324:9;12320:17;12313:47;12377:131;12503:4;12377:131;:::i;:::-;12369:139;;12096:419;;;:::o;12521:305::-;12561:3;12580:20;12598:1;12580:20;:::i;:::-;12575:25;;12614:20;12632:1;12614:20;:::i;:::-;12609:25;;12768:1;12700:66;12696:74;12693:1;12690:81;12687:107;;;12774:18;;:::i;:::-;12687:107;12818:1;12815;12811:9;12804:16;;12521:305;;;;:::o;12832:179::-;12972:31;12968:1;12960:6;12956:14;12949:55;12832:179;:::o;13017:366::-;13159:3;13180:67;13244:2;13239:3;13180:67;:::i;:::-;13173:74;;13256:93;13345:3;13256:93;:::i;:::-;13374:2;13369:3;13365:12;13358:19;;13017:366;;;:::o;13389:419::-;13555:4;13593:2;13582:9;13578:18;13570:26;;13642:9;13636:4;13632:20;13628:1;13617:9;13613:17;13606:47;13670:131;13796:4;13670:131;:::i;:::-;13662:139;;13389:419;;;:::o;13814:244::-;13954:34;13950:1;13942:6;13938:14;13931:58;14023:27;14018:2;14010:6;14006:15;13999:52;13814:244;:::o;14064:366::-;14206:3;14227:67;14291:2;14286:3;14227:67;:::i;:::-;14220:74;;14303:93;14392:3;14303:93;:::i;:::-;14421:2;14416:3;14412:12;14405:19;;14064:366;;;:::o;14436:419::-;14602:4;14640:2;14629:9;14625:18;14617:26;;14689:9;14683:4;14679:20;14675:1;14664:9;14660:17;14653:47;14717:131;14843:4;14717:131;:::i;:::-;14709:139;;14436:419;;;:::o;14861:223::-;15001:34;14997:1;14989:6;14985:14;14978:58;15070:6;15065:2;15057:6;15053:15;15046:31;14861:223;:::o;15090:366::-;15232:3;15253:67;15317:2;15312:3;15253:67;:::i;:::-;15246:74;;15329:93;15418:3;15329:93;:::i;:::-;15447:2;15442:3;15438:12;15431:19;;15090:366;;;:::o;15462:419::-;15628:4;15666:2;15655:9;15651:18;15643:26;;15715:9;15709:4;15705:20;15701:1;15690:9;15686:17;15679:47;15743:131;15869:4;15743:131;:::i;:::-;15735:139;;15462:419;;;:::o;15887:240::-;16027:34;16023:1;16015:6;16011:14;16004:58;16096:23;16091:2;16083:6;16079:15;16072:48;15887:240;:::o;16133:366::-;16275:3;16296:67;16360:2;16355:3;16296:67;:::i;:::-;16289:74;;16372:93;16461:3;16372:93;:::i;:::-;16490:2;16485:3;16481:12;16474:19;;16133:366;;;:::o;16505:419::-;16671:4;16709:2;16698:9;16694:18;16686:26;;16758:9;16752:4;16748:20;16744:1;16733:9;16729:17;16722:47;16786:131;16912:4;16786:131;:::i;:::-;16778:139;;16505:419;;;:::o;16930:239::-;17070:34;17066:1;17058:6;17054:14;17047:58;17139:22;17134:2;17126:6;17122:15;17115:47;16930:239;:::o;17175:366::-;17317:3;17338:67;17402:2;17397:3;17338:67;:::i;:::-;17331:74;;17414:93;17503:3;17414:93;:::i;:::-;17532:2;17527:3;17523:12;17516:19;;17175:366;;;:::o;17547:419::-;17713:4;17751:2;17740:9;17736:18;17728:26;;17800:9;17794:4;17790:20;17786:1;17775:9;17771:17;17764:47;17828:131;17954:4;17828:131;:::i;:::-;17820:139;;17547:419;;;:::o;17972:225::-;18112:34;18108:1;18100:6;18096:14;18089:58;18181:8;18176:2;18168:6;18164:15;18157:33;17972:225;:::o;18203:366::-;18345:3;18366:67;18430:2;18425:3;18366:67;:::i;:::-;18359:74;;18442:93;18531:3;18442:93;:::i;:::-;18560:2;18555:3;18551:12;18544:19;;18203:366;;;:::o;18575:419::-;18741:4;18779:2;18768:9;18764:18;18756:26;;18828:9;18822:4;18818:20;18814:1;18803:9;18799:17;18792:47;18856:131;18982:4;18856:131;:::i;:::-;18848:139;;18575:419;;;:::o;19000:177::-;19140:29;19136:1;19128:6;19124:14;19117:53;19000:177;:::o;19183:366::-;19325:3;19346:67;19410:2;19405:3;19346:67;:::i;:::-;19339:74;;19422:93;19511:3;19422:93;:::i;:::-;19540:2;19535:3;19531:12;19524:19;;19183:366;;;:::o;19555:419::-;19721:4;19759:2;19748:9;19744:18;19736:26;;19808:9;19802:4;19798:20;19794:1;19783:9;19779:17;19772:47;19836:131;19962:4;19836:131;:::i;:::-;19828:139;;19555:419;;;:::o;19980:223::-;20120:34;20116:1;20108:6;20104:14;20097:58;20189:6;20184:2;20176:6;20172:15;20165:31;19980:223;:::o;20209:366::-;20351:3;20372:67;20436:2;20431:3;20372:67;:::i;:::-;20365:74;;20448:93;20537:3;20448:93;:::i;:::-;20566:2;20561:3;20557:12;20550:19;;20209:366;;;:::o;20581:419::-;20747:4;20785:2;20774:9;20770:18;20762:26;;20834:9;20828:4;20824:20;20820:1;20809:9;20805:17;20798:47;20862:131;20988:4;20862:131;:::i;:::-;20854:139;;20581:419;;;:::o;21006:221::-;21146:34;21142:1;21134:6;21130:14;21123:58;21215:4;21210:2;21202:6;21198:15;21191:29;21006:221;:::o;21233:366::-;21375:3;21396:67;21460:2;21455:3;21396:67;:::i;:::-;21389:74;;21472:93;21561:3;21472:93;:::i;:::-;21590:2;21585:3;21581:12;21574:19;;21233:366;;;:::o;21605:419::-;21771:4;21809:2;21798:9;21794:18;21786:26;;21858:9;21852:4;21848:20;21844:1;21833:9;21829:17;21822:47;21886:131;22012:4;21886:131;:::i;:::-;21878:139;;21605:419;;;:::o;22030:224::-;22170:34;22166:1;22158:6;22154:14;22147:58;22239:7;22234:2;22226:6;22222:15;22215:32;22030:224;:::o;22260:366::-;22402:3;22423:67;22487:2;22482:3;22423:67;:::i;:::-;22416:74;;22499:93;22588:3;22499:93;:::i;:::-;22617:2;22612:3;22608:12;22601:19;;22260:366;;;:::o;22632:419::-;22798:4;22836:2;22825:9;22821:18;22813:26;;22885:9;22879:4;22875:20;22871:1;22860:9;22856:17;22849:47;22913:131;23039:4;22913:131;:::i;:::-;22905:139;;22632:419;;;:::o;23057:222::-;23197:34;23193:1;23185:6;23181:14;23174:58;23266:5;23261:2;23253:6;23249:15;23242:30;23057:222;:::o;23285:366::-;23427:3;23448:67;23512:2;23507:3;23448:67;:::i;:::-;23441:74;;23524:93;23613:3;23524:93;:::i;:::-;23642:2;23637:3;23633:12;23626:19;;23285:366;;;:::o;23657:419::-;23823:4;23861:2;23850:9;23846:18;23838:26;;23910:9;23904:4;23900:20;23896:1;23885:9;23881:17;23874:47;23938:131;24064:4;23938:131;:::i;:::-;23930:139;;23657:419;;;:::o;24082:236::-;24222:34;24218:1;24210:6;24206:14;24199:58;24291:19;24286:2;24278:6;24274:15;24267:44;24082:236;:::o;24324:366::-;24466:3;24487:67;24551:2;24546:3;24487:67;:::i;:::-;24480:74;;24563:93;24652:3;24563:93;:::i;:::-;24681:2;24676:3;24672:12;24665:19;;24324:366;;;:::o;24696:419::-;24862:4;24900:2;24889:9;24885:18;24877:26;;24949:9;24943:4;24939:20;24935:1;24924:9;24920:17;24913:47;24977:131;25103:4;24977:131;:::i;:::-;24969:139;;24696:419;;;:::o;25121:172::-;25261:24;25257:1;25249:6;25245:14;25238:48;25121:172;:::o;25299:366::-;25441:3;25462:67;25526:2;25521:3;25462:67;:::i;:::-;25455:74;;25538:93;25627:3;25538:93;:::i;:::-;25656:2;25651:3;25647:12;25640:19;;25299:366;;;:::o;25671:419::-;25837:4;25875:2;25864:9;25860:18;25852:26;;25924:9;25918:4;25914:20;25910:1;25899:9;25895:17;25888:47;25952:131;26078:4;25952:131;:::i;:::-;25944:139;;25671:419;;;:::o;26096:297::-;26236:34;26232:1;26224:6;26220:14;26213:58;26305:34;26300:2;26292:6;26288:15;26281:59;26374:11;26369:2;26361:6;26357:15;26350:36;26096:297;:::o;26399:366::-;26541:3;26562:67;26626:2;26621:3;26562:67;:::i;:::-;26555:74;;26638:93;26727:3;26638:93;:::i;:::-;26756:2;26751:3;26747:12;26740:19;;26399:366;;;:::o;26771:419::-;26937:4;26975:2;26964:9;26960:18;26952:26;;27024:9;27018:4;27014:20;27010:1;26999:9;26995:17;26988:47;27052:131;27178:4;27052:131;:::i;:::-;27044:139;;26771:419;;;:::o;27196:240::-;27336:34;27332:1;27324:6;27320:14;27313:58;27405:23;27400:2;27392:6;27388:15;27381:48;27196:240;:::o;27442:366::-;27584:3;27605:67;27669:2;27664:3;27605:67;:::i;:::-;27598:74;;27681:93;27770:3;27681:93;:::i;:::-;27799:2;27794:3;27790:12;27783:19;;27442:366;;;:::o;27814:419::-;27980:4;28018:2;28007:9;28003:18;27995:26;;28067:9;28061:4;28057:20;28053:1;28042:9;28038:17;28031:47;28095:131;28221:4;28095:131;:::i;:::-;28087:139;;27814:419;;;:::o;28239:169::-;28379:21;28375:1;28367:6;28363:14;28356:45;28239:169;:::o;28414:366::-;28556:3;28577:67;28641:2;28636:3;28577:67;:::i;:::-;28570:74;;28653:93;28742:3;28653:93;:::i;:::-;28771:2;28766:3;28762:12;28755:19;;28414:366;;;:::o;28786:419::-;28952:4;28990:2;28979:9;28975:18;28967:26;;29039:9;29033:4;29029:20;29025:1;29014:9;29010:17;29003:47;29067:131;29193:4;29067:131;:::i;:::-;29059:139;;28786:419;;;:::o;29211:241::-;29351:34;29347:1;29339:6;29335:14;29328:58;29420:24;29415:2;29407:6;29403:15;29396:49;29211:241;:::o;29458:366::-;29600:3;29621:67;29685:2;29680:3;29621:67;:::i;:::-;29614:74;;29697:93;29786:3;29697:93;:::i;:::-;29815:2;29810:3;29806:12;29799:19;;29458:366;;;:::o;29830:419::-;29996:4;30034:2;30023:9;30019:18;30011:26;;30083:9;30077:4;30073:20;30069:1;30058:9;30054:17;30047:47;30111:131;30237:4;30111:131;:::i;:::-;30103:139;;29830:419;;;:::o;30255:191::-;30295:4;30315:20;30333:1;30315:20;:::i;:::-;30310:25;;30349:20;30367:1;30349:20;:::i;:::-;30344:25;;30388:1;30385;30382:8;30379:34;;;30393:18;;:::i;:::-;30379:34;30438:1;30435;30431:9;30423:17;;30255:191;;;;:::o;30452:147::-;30553:11;30590:3;30575:18;;30452:147;;;;:::o;30605:114::-;;:::o;30725:398::-;30884:3;30905:83;30986:1;30981:3;30905:83;:::i;:::-;30898:90;;30997:93;31086:3;30997:93;:::i;:::-;31115:1;31110:3;31106:11;31099:18;;30725:398;;;:::o;31129:379::-;31313:3;31335:147;31478:3;31335:147;:::i;:::-;31328:154;;31499:3;31492:10;;31129:379;;;:::o;31514:442::-;31663:4;31701:2;31690:9;31686:18;31678:26;;31714:71;31782:1;31771:9;31767:17;31758:6;31714:71;:::i;:::-;31795:72;31863:2;31852:9;31848:18;31839:6;31795:72;:::i;:::-;31877;31945:2;31934:9;31930:18;31921:6;31877:72;:::i;:::-;31514:442;;;;;;:::o;31962:220::-;32102:34;32098:1;32090:6;32086:14;32079:58;32171:3;32166:2;32158:6;32154:15;32147:28;31962:220;:::o;32188:366::-;32330:3;32351:67;32415:2;32410:3;32351:67;:::i;:::-;32344:74;;32427:93;32516:3;32427:93;:::i;:::-;32545:2;32540:3;32536:12;32529:19;;32188:366;;;:::o;32560:419::-;32726:4;32764:2;32753:9;32749:18;32741:26;;32813:9;32807:4;32803:20;32799:1;32788:9;32784:17;32777:47;32841:131;32967:4;32841:131;:::i;:::-;32833:139;;32560:419;;;:::o;32985:180::-;33033:77;33030:1;33023:88;33130:4;33127:1;33120:15;33154:4;33151:1;33144:15;33171:180;33219:77;33216:1;33209:88;33316:4;33313:1;33306:15;33340:4;33337:1;33330:15;33357:143;33414:5;33445:6;33439:13;33430:22;;33461:33;33488:5;33461:33;:::i;:::-;33357:143;;;;:::o;33506:351::-;33576:6;33625:2;33613:9;33604:7;33600:23;33596:32;33593:119;;;33631:79;;:::i;:::-;33593:119;33751:1;33776:64;33832:7;33823:6;33812:9;33808:22;33776:64;:::i;:::-;33766:74;;33722:128;33506:351;;;;:::o;33863:85::-;33908:7;33937:5;33926:16;;33863:85;;;:::o;33954:158::-;34012:9;34045:61;34063:42;34072:32;34098:5;34072:32;:::i;:::-;34063:42;:::i;:::-;34045:61;:::i;:::-;34032:74;;33954:158;;;:::o;34118:147::-;34213:45;34252:5;34213:45;:::i;:::-;34208:3;34201:58;34118:147;;:::o;34271:114::-;34338:6;34372:5;34366:12;34356:22;;34271:114;;;:::o;34391:184::-;34490:11;34524:6;34519:3;34512:19;34564:4;34559:3;34555:14;34540:29;;34391:184;;;;:::o;34581:132::-;34648:4;34671:3;34663:11;;34701:4;34696:3;34692:14;34684:22;;34581:132;;;:::o;34719:108::-;34796:24;34814:5;34796:24;:::i;:::-;34791:3;34784:37;34719:108;;:::o;34833:179::-;34902:10;34923:46;34965:3;34957:6;34923:46;:::i;:::-;35001:4;34996:3;34992:14;34978:28;;34833:179;;;;:::o;35018:113::-;35088:4;35120;35115:3;35111:14;35103:22;;35018:113;;;:::o;35167:732::-;35286:3;35315:54;35363:5;35315:54;:::i;:::-;35385:86;35464:6;35459:3;35385:86;:::i;:::-;35378:93;;35495:56;35545:5;35495:56;:::i;:::-;35574:7;35605:1;35590:284;35615:6;35612:1;35609:13;35590:284;;;35691:6;35685:13;35718:63;35777:3;35762:13;35718:63;:::i;:::-;35711:70;;35804:60;35857:6;35804:60;:::i;:::-;35794:70;;35650:224;35637:1;35634;35630:9;35625:14;;35590:284;;;35594:14;35890:3;35883:10;;35291:608;;;35167:732;;;;:::o;35905:831::-;36168:4;36206:3;36195:9;36191:19;36183:27;;36220:71;36288:1;36277:9;36273:17;36264:6;36220:71;:::i;:::-;36301:80;36377:2;36366:9;36362:18;36353:6;36301:80;:::i;:::-;36428:9;36422:4;36418:20;36413:2;36402:9;36398:18;36391:48;36456:108;36559:4;36550:6;36456:108;:::i;:::-;36448:116;;36574:72;36642:2;36631:9;36627:18;36618:6;36574:72;:::i;:::-;36656:73;36724:3;36713:9;36709:19;36700:6;36656:73;:::i;:::-;35905:831;;;;;;;;:::o;36742:807::-;36991:4;37029:3;37018:9;37014:19;37006:27;;37043:71;37111:1;37100:9;37096:17;37087:6;37043:71;:::i;:::-;37124:72;37192:2;37181:9;37177:18;37168:6;37124:72;:::i;:::-;37206:80;37282:2;37271:9;37267:18;37258:6;37206:80;:::i;:::-;37296;37372:2;37361:9;37357:18;37348:6;37296:80;:::i;:::-;37386:73;37454:3;37443:9;37439:19;37430:6;37386:73;:::i;:::-;37469;37537:3;37526:9;37522:19;37513:6;37469:73;:::i;:::-;36742:807;;;;;;;;;:::o;37555:143::-;37612:5;37643:6;37637:13;37628:22;;37659:33;37686:5;37659:33;:::i;:::-;37555:143;;;;:::o;37704:663::-;37792:6;37800;37808;37857:2;37845:9;37836:7;37832:23;37828:32;37825:119;;;37863:79;;:::i;:::-;37825:119;37983:1;38008:64;38064:7;38055:6;38044:9;38040:22;38008:64;:::i;:::-;37998:74;;37954:128;38121:2;38147:64;38203:7;38194:6;38183:9;38179:22;38147:64;:::i;:::-;38137:74;;38092:129;38260:2;38286:64;38342:7;38333:6;38322:9;38318:22;38286:64;:::i;:::-;38276:74;;38231:129;37704:663;;;;;:::o

Swarm Source

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