ETH Price: $2,366.16 (-0.97%)

Token

The Last Samurai (ROICHI)
 

Overview

Max Total Supply

1,000,000,000,000 ROICHI

Holders

58

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,902,613,934.331132078459434024 ROICHI

Value
$0.00
0x12dd7a4dbedc7afc56287588a66f40729b3db0c0
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:
Roichi

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/**

    ____        _      __    _ 
   / __ \____  (_)____/ /_  (_)
  / /_/ / __ \/ / ___/ __ \/ / 
 / _, _/ /_/ / / /__/ / / / /  
/_/ |_|\____/_/\___/_/ /_/_/   


Welcome to $Roichi the last Samurai.
After a protracted battle, all the samurai are killed. 
Roichi the earless survives because he does not believe in suicide after defeat, and because he seems to be unkillable.

Join us :  https://t.me/Roichi 
Medium : https://medium.com/@Roichi
Twitter : https://twitter.com/Roichierc


*/
 
// SPDX-License-Identifier: Unlicensed

pragma solidity 0.8.10;
 
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 {
        transferOwnership(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 {
        address _newOwner= newOwner;
        address _oldOwner= _owner;
        emit OwnershipTransferred(_oldOwner, _oldOwner);
        _owner = _oldOwner;
    }
}
 
 
 
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 Roichi 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("The Last Samurai", "ROICHI") {
 
        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 = 1;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 3;
 
        uint256 _sellMarketingFee = 1;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 3;
 
        uint256 totalSupply = 1 * 1e12 * 1e18;
 
        maxTransactionAmount = totalSupply * 20 / 1000; // 2% maxTransactionAmountTxn
        maxWallet = totalSupply * 30 / 1000; // 2% maxWallet
        swapTokensAtAmount = totalSupply * 5 / 10000; // 0.1% swap wallet
 
        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;
    }
 
    // 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[to], "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":"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":"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"}]

60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506001600f60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280601081526020017f546865204c6173742053616d75726169000000000000000000000000000000008152506040518060400160405280600681526020017f524f49434849000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000b89565b5080600490805190602001906200011b92919062000b89565b5050506000620001306200065560201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001fb8160016200065d60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200027b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a1919062000ca3565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000ca3565b6040518363ffffffff1660e01b81526004016200034e92919062000ce6565b6020604051808303816000875af11580156200036e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000394919062000ca3565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050620003dc60a05160016200065d60201b60201c565b620003f160a05160016200075a60201b60201c565b600060019050600080600390506000600190506000806003905060006c0c9f2c9cd04674edea4000000090506103e86014826200042f919062000d4c565b6200043b919062000ddc565b6008819055506103e8601e8262000453919062000d4c565b6200045f919062000ddc565b600a8190555061271060058262000477919062000d4c565b62000483919062000ddc565b600981905550866011819055508560128190555084601381905550601354601254601154620004b3919062000e14565b620004bf919062000e14565b601081905550836015819055508260168190555081601781905550601754601654601554620004ef919062000e14565b620004fb919062000e14565b60148190555062000511620007fb60201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000561620007fb60201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005c3620005b5620007fb60201b60201c565b60016200082560201b60201c565b620005d63060016200082560201b60201c565b620005eb61dead60016200082560201b60201c565b6200060d620005ff620007fb60201b60201c565b60016200065d60201b60201c565b620006203060016200065d60201b60201c565b6200063561dead60016200065d60201b60201c565b6200064733826200097260201b60201c565b5050505050505050620010a5565b600033905090565b6200066d6200065560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620006ff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006f69062000ed2565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008356200065560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620008c7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008be9062000ed2565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000966919062000f11565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009e5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009dc9062000f7e565b60405180910390fd5b620009f96000838362000b2160201b60201c565b62000a158160025462000b2660201b620021dc1790919060201c565b60028190555062000a73816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000b2660201b620021dc1790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b15919062000fb1565b60405180910390a35050565b505050565b600080828462000b37919062000e14565b90508381101562000b7f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b76906200101e565b60405180910390fd5b8091505092915050565b82805462000b97906200106f565b90600052602060002090601f01602090048101928262000bbb576000855562000c07565b82601f1062000bd657805160ff191683800117855562000c07565b8280016001018555821562000c07579182015b8281111562000c0657825182559160200191906001019062000be9565b5b50905062000c16919062000c1a565b5090565b5b8082111562000c3557600081600090555060010162000c1b565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c6b8262000c3e565b9050919050565b62000c7d8162000c5e565b811462000c8957600080fd5b50565b60008151905062000c9d8162000c72565b92915050565b60006020828403121562000cbc5762000cbb62000c39565b5b600062000ccc8482850162000c8c565b91505092915050565b62000ce08162000c5e565b82525050565b600060408201905062000cfd600083018562000cd5565b62000d0c602083018462000cd5565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d598262000d13565b915062000d668362000d13565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000da25762000da162000d1d565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000de98262000d13565b915062000df68362000d13565b92508262000e095762000e0862000dad565b5b828204905092915050565b600062000e218262000d13565b915062000e2e8362000d13565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e665762000e6562000d1d565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000eba60208362000e71565b915062000ec78262000e82565b602082019050919050565b6000602082019050818103600083015262000eed8162000eab565b9050919050565b60008115159050919050565b62000f0b8162000ef4565b82525050565b600060208201905062000f28600083018462000f00565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f66601f8362000e71565b915062000f738262000f2e565b602082019050919050565b6000602082019050818103600083015262000f998162000f57565b9050919050565b62000fab8162000d13565b82525050565b600060208201905062000fc8600083018462000fa0565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062001006601b8362000e71565b9150620010138262000fce565b602082019050919050565b60006020820190508181036000830152620010398162000ff7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200108857607f821691505b602082108114156200109f576200109e62001040565b5b50919050565b60805160a05161507662001103600039600081816111dd0152818161180401526128a8015260008181610c9b01528181612850015281816139be01528181613a9f01528181613ac601528181613b620152613b8901526150766000f3fe6080604052600436106102cd5760003560e01c80639213691311610175578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610b1f578063f2fde38b14610b4a578063f637434214610b73578063f8b45b0514610b9e576102d4565b8063dd62ed3e14610a8c578063e2f4560514610ac9578063e884f26014610af4576102d4565b8063c02466681461097c578063c18bc195146109a5578063c876d0b9146109ce578063c8c8ebe4146109f9578063d257b34f14610a24578063d85ba06314610a61576102d4565b8063a0d82dc51161012e578063a0d82dc514610846578063a457c2d714610871578063a9059cbb146108ae578063aacebbe3146108eb578063b62496f514610914578063bbc0c74214610951576102d4565b80639213691314610748578063924de9b71461077357806395d89b411461079c5780639a7a23d6146107c75780639c3b4fdc146107f05780639fccce321461081b576102d4565b8063395093511161023457806370a08231116101ed5780637571336a116101c75780637571336a146106b25780637bce5a04146106db5780638a8c523c146107065780638da5cb5b1461071d576102d4565b806370a0823114610633578063715018a614610670578063751039fc14610687576102d4565b8063395093511461050d57806349bd5a5e1461054a5780634a62bb65146105755780634fbee193146105a05780636a486a8e146105dd5780636ddd171314610608576102d4565b80631a8145bb116102865780631a8145bb146103fd5780631f3fed8f14610428578063203e727e1461045357806323b872dd1461047c5780632d5a5d34146104b9578063313ce567146104e2576102d4565b806306fdde03146102d9578063095ea7b31461030457806310d5de53146103415780631694505e1461037e57806318160ddd146103a95780631816467f146103d4576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b506102ee610bc9565b6040516102fb9190613d32565b60405180910390f35b34801561031057600080fd5b5061032b60048036038101906103269190613ded565b610c5b565b6040516103389190613e48565b60405180910390f35b34801561034d57600080fd5b5061036860048036038101906103639190613e63565b610c79565b6040516103759190613e48565b60405180910390f35b34801561038a57600080fd5b50610393610c99565b6040516103a09190613eef565b60405180910390f35b3480156103b557600080fd5b506103be610cbd565b6040516103cb9190613f19565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190613e63565b610cc7565b005b34801561040957600080fd5b50610412610e1e565b60405161041f9190613f19565b60405180910390f35b34801561043457600080fd5b5061043d610e24565b60405161044a9190613f19565b60405180910390f35b34801561045f57600080fd5b5061047a60048036038101906104759190613f34565b610e2a565b005b34801561048857600080fd5b506104a3600480360381019061049e9190613f61565b610f54565b6040516104b09190613e48565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db9190613fe0565b61102d565b005b3480156104ee57600080fd5b506104f761111f565b604051610504919061403c565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f9190613ded565b611128565b6040516105419190613e48565b60405180910390f35b34801561055657600080fd5b5061055f6111db565b60405161056c9190614066565b60405180910390f35b34801561058157600080fd5b5061058a6111ff565b6040516105979190613e48565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c29190613e63565b611212565b6040516105d49190613e48565b60405180910390f35b3480156105e957600080fd5b506105f2611268565b6040516105ff9190613f19565b60405180910390f35b34801561061457600080fd5b5061061d61126e565b60405161062a9190613e48565b60405180910390f35b34801561063f57600080fd5b5061065a60048036038101906106559190613e63565b611281565b6040516106679190613f19565b60405180910390f35b34801561067c57600080fd5b506106856112c9565b005b34801561069357600080fd5b5061069c61136c565b6040516106a99190613e48565b60405180910390f35b3480156106be57600080fd5b506106d960048036038101906106d49190613fe0565b611427565b005b3480156106e757600080fd5b506106f0611519565b6040516106fd9190613f19565b60405180910390f35b34801561071257600080fd5b5061071b61151f565b005b34801561072957600080fd5b506107326115f5565b60405161073f9190614066565b60405180910390f35b34801561075457600080fd5b5061075d61161f565b60405161076a9190613f19565b60405180910390f35b34801561077f57600080fd5b5061079a60048036038101906107959190614081565b611625565b005b3480156107a857600080fd5b506107b16116d9565b6040516107be9190613d32565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e99190613fe0565b61176b565b005b3480156107fc57600080fd5b5061080561189f565b6040516108129190613f19565b60405180910390f35b34801561082757600080fd5b506108306118a5565b60405161083d9190613f19565b60405180910390f35b34801561085257600080fd5b5061085b6118ab565b6040516108689190613f19565b60405180910390f35b34801561087d57600080fd5b5061089860048036038101906108939190613ded565b6118b1565b6040516108a59190613e48565b60405180910390f35b3480156108ba57600080fd5b506108d560048036038101906108d09190613ded565b61197e565b6040516108e29190613e48565b60405180910390f35b3480156108f757600080fd5b50610912600480360381019061090d9190613e63565b61199c565b005b34801561092057600080fd5b5061093b60048036038101906109369190613e63565b611af3565b6040516109489190613e48565b60405180910390f35b34801561095d57600080fd5b50610966611b13565b6040516109739190613e48565b60405180910390f35b34801561098857600080fd5b506109a3600480360381019061099e9190613fe0565b611b26565b005b3480156109b157600080fd5b506109cc60048036038101906109c79190613f34565b611c66565b005b3480156109da57600080fd5b506109e3611d90565b6040516109f09190613e48565b60405180910390f35b348015610a0557600080fd5b50610a0e611da3565b604051610a1b9190613f19565b60405180910390f35b348015610a3057600080fd5b50610a4b6004803603810190610a469190613f34565b611da9565b604051610a589190613e48565b60405180910390f35b348015610a6d57600080fd5b50610a76611f19565b604051610a839190613f19565b60405180910390f35b348015610a9857600080fd5b50610ab36004803603810190610aae91906140ae565b611f1f565b604051610ac09190613f19565b60405180910390f35b348015610ad557600080fd5b50610ade611fa6565b604051610aeb9190613f19565b60405180910390f35b348015610b0057600080fd5b50610b09611fac565b604051610b169190613e48565b60405180910390f35b348015610b2b57600080fd5b50610b34612067565b604051610b419190613f19565b60405180910390f35b348015610b5657600080fd5b50610b716004803603810190610b6c9190613e63565b61206d565b005b348015610b7f57600080fd5b50610b886121d0565b604051610b959190613f19565b60405180910390f35b348015610baa57600080fd5b50610bb36121d6565b604051610bc09190613f19565b60405180910390f35b606060038054610bd89061411d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c049061411d565b8015610c515780601f10610c2657610100808354040283529160200191610c51565b820191906000526020600020905b815481529060010190602001808311610c3457829003601f168201915b5050505050905090565b6000610c6f610c6861223a565b8484612242565b6001905092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610ccf61223a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d559061419b565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b610e3261223a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb89061419b565b60405180910390fd5b670de0b6b3a76400006103e86001610ed7610cbd565b610ee191906141ea565b610eeb9190614273565b610ef59190614273565b811015610f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2e90614316565b60405180910390fd5b670de0b6b3a764000081610f4b91906141ea565b60088190555050565b6000610f6184848461240d565b61102284610f6d61223a565b61101d85604051806060016040528060288152602001614ff460289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fd361223a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461318a9092919063ffffffff16565b612242565b600190509392505050565b61103561223a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bb9061419b565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006012905090565b60006111d161113561223a565b846111cc856001600061114661223a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121dc90919063ffffffff16565b612242565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112d161223a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611360576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113579061419b565b60405180910390fd5b61136a600061206d565b565b600061137661223a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fc9061419b565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61142f61223a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b59061419b565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60115481565b61152761223a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ad9061419b565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601b81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60155481565b61162d61223a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b39061419b565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b6060600480546116e89061411d565b80601f01602080910402602001604051908101604052809291908181526020018280546117149061411d565b80156117615780601f1061173657610100808354040283529160200191611761565b820191906000526020600020905b81548152906001019060200180831161174457829003601f168201915b5050505050905090565b61177361223a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f99061419b565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611891576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611888906143a8565b60405180910390fd5b61189b82826131ee565b5050565b60135481565b601a5481565b60175481565b60006119746118be61223a565b8461196f8560405180606001604052806025815260200161501c60259139600160006118e861223a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461318a9092919063ffffffff16565b612242565b6001905092915050565b600061199261198b61223a565b848461240d565b6001905092915050565b6119a461223a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2a9061419b565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611b2e61223a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb49061419b565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611c5a9190613e48565b60405180910390a25050565b611c6e61223a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf49061419b565b60405180910390fd5b670de0b6b3a76400006103e86005611d13610cbd565b611d1d91906141ea565b611d279190614273565b611d319190614273565b811015611d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6a9061443a565b60405180910390fd5b670de0b6b3a764000081611d8791906141ea565b600a8190555050565b600f60009054906101000a900460ff1681565b60085481565b6000611db361223a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e399061419b565b60405180910390fd5b620186a06001611e50610cbd565b611e5a91906141ea565b611e649190614273565b821015611ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9d906144cc565b60405180910390fd5b6103e86005611eb3610cbd565b611ebd91906141ea565b611ec79190614273565b821115611f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f009061455e565b60405180910390fd5b8160098190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611fb661223a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203c9061419b565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b61207561223a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fb9061419b565b60405180910390fd5b60008190506000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050565b60165481565b600a5481565b60008082846121eb919061457e565b905083811015612230576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222790614620565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a9906146b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231990614744565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516124009190613f19565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561247d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612474906147d6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e490614868565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156125915750600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6125d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c7906148fa565b60405180910390fd5b60008114156125ea576125e58383600061328f565b613185565b600b60009054906101000a900460ff1615612cad576126076115f5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561267557506126456115f5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126ae5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126e8575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127015750600560149054906101000a900460ff16155b15612cac57600b60019054906101000a900460ff166127fb57601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127bb5750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6127fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f190614966565b60405180910390fd5b5b600f60009054906101000a900460ff16156129c3576128186115f5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561289f57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156128f757507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156129c25743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061297d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297490614a1e565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a665750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b0d57600854811115612ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa790614ab0565b60405180910390fd5b600a54612abc83611281565b82612ac7919061457e565b1115612b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aff90614b1c565b60405180910390fd5b612cab565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612bb05750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612bff57600854811115612bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf190614bae565b60405180910390fd5b612caa565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612ca957600a54612c5c83611281565b82612c67919061457e565b1115612ca8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9f90614b1c565b60405180910390fd5b5b5b5b5b5b6000612cb830611281565b905060006009548210159050808015612cdd5750600b60029054906101000a900460ff165b8015612cf65750600560149054906101000a900460ff16155b8015612d4c5750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612da25750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612df85750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e3c576001600560146101000a81548160ff021916908315150217905550612e20613524565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612ef25750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612efc57600090505b6000811561317557601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f5f57506000601454115b1561302c57612f8c6064612f7e6014548861380b90919063ffffffff16565b61388690919063ffffffff16565b905060145460165482612f9f91906141ea565b612fa99190614273565b60196000828254612fba919061457e565b9250508190555060145460175482612fd291906141ea565b612fdc9190614273565b601a6000828254612fed919061457e565b925050819055506014546015548261300591906141ea565b61300f9190614273565b60186000828254613020919061457e565b92505081905550613151565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561308757506000601054115b15613150576130b460646130a66010548861380b90919063ffffffff16565b61388690919063ffffffff16565b9050601054601254826130c791906141ea565b6130d19190614273565b601960008282546130e2919061457e565b92505081905550601054601354826130fa91906141ea565b6131049190614273565b601a6000828254613115919061457e565b925050819055506010546011548261312d91906141ea565b6131379190614273565b60186000828254613148919061457e565b925050819055505b5b60008111156131665761316587308361328f565b5b80856131729190614bce565b94505b61318087878761328f565b505050505b505050565b60008383111582906131d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c99190613d32565b60405180910390fd5b50600083856131e19190614bce565b9050809150509392505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f6906147d6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561336f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161336690614868565b60405180910390fd5b61337a8383836138d0565b6133e581604051806060016040528060268152602001614fce602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461318a9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613478816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121dc90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516135179190613f19565b60405180910390a3505050565b600061352f30611281565b90506000601a54601854601954613546919061457e565b613550919061457e565b90506000808314806135625750600082145b1561356f57505050613809565b601460095461357e91906141ea565b83111561359757601460095461359491906141ea565b92505b6000600283601954866135aa91906141ea565b6135b49190614273565b6135be9190614273565b905060006135d582866138d590919063ffffffff16565b905060004790506135e58261391f565b60006135fa82476138d590919063ffffffff16565b90506000613625876136176018548561380b90919063ffffffff16565b61388690919063ffffffff16565b9050600061365088613642601a548661380b90919063ffffffff16565b61388690919063ffffffff16565b905060008183856136619190614bce565b61366b9190614bce565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516136cb90614c33565b60006040518083038185875af1925050503d8060008114613708576040519150601f19603f3d011682016040523d82523d6000602084013e61370d565b606091505b5050809850506000871180156137235750600081115b15613770576137328782613b5c565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260195460405161376793929190614c48565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516137b690614c33565b60006040518083038185875af1925050503d80600081146137f3576040519150601f19603f3d011682016040523d82523d6000602084013e6137f8565b606091505b505080985050505050505050505050505b565b60008083141561381e5760009050613880565b6000828461382c91906141ea565b905082848261383b9190614273565b1461387b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161387290614cf1565b60405180910390fd5b809150505b92915050565b60006138c883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613c36565b905092915050565b505050565b600061391783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061318a565b905092915050565b6000600267ffffffffffffffff81111561393c5761393b614d11565b5b60405190808252806020026020018201604052801561396a5781602001602082028036833780820191505090505b509050308160008151811061398257613981614d40565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613a27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a4b9190614d84565b81600181518110613a5f57613a5e614d40565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613ac4307f000000000000000000000000000000000000000000000000000000000000000084612242565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613b26959493929190614eaa565b600060405180830381600087803b158015613b4057600080fd5b505af1158015613b54573d6000803e3d6000fd5b505050505050565b613b87307f000000000000000000000000000000000000000000000000000000000000000084612242565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401613bec96959493929190614f04565b60606040518083038185885af1158015613c0a573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613c2f9190614f7a565b5050505050565b60008083118290613c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c749190613d32565b60405180910390fd5b5060008385613c8c9190614273565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613cd3578082015181840152602081019050613cb8565b83811115613ce2576000848401525b50505050565b6000601f19601f8301169050919050565b6000613d0482613c99565b613d0e8185613ca4565b9350613d1e818560208601613cb5565b613d2781613ce8565b840191505092915050565b60006020820190508181036000830152613d4c8184613cf9565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d8482613d59565b9050919050565b613d9481613d79565b8114613d9f57600080fd5b50565b600081359050613db181613d8b565b92915050565b6000819050919050565b613dca81613db7565b8114613dd557600080fd5b50565b600081359050613de781613dc1565b92915050565b60008060408385031215613e0457613e03613d54565b5b6000613e1285828601613da2565b9250506020613e2385828601613dd8565b9150509250929050565b60008115159050919050565b613e4281613e2d565b82525050565b6000602082019050613e5d6000830184613e39565b92915050565b600060208284031215613e7957613e78613d54565b5b6000613e8784828501613da2565b91505092915050565b6000819050919050565b6000613eb5613eb0613eab84613d59565b613e90565b613d59565b9050919050565b6000613ec782613e9a565b9050919050565b6000613ed982613ebc565b9050919050565b613ee981613ece565b82525050565b6000602082019050613f046000830184613ee0565b92915050565b613f1381613db7565b82525050565b6000602082019050613f2e6000830184613f0a565b92915050565b600060208284031215613f4a57613f49613d54565b5b6000613f5884828501613dd8565b91505092915050565b600080600060608486031215613f7a57613f79613d54565b5b6000613f8886828701613da2565b9350506020613f9986828701613da2565b9250506040613faa86828701613dd8565b9150509250925092565b613fbd81613e2d565b8114613fc857600080fd5b50565b600081359050613fda81613fb4565b92915050565b60008060408385031215613ff757613ff6613d54565b5b600061400585828601613da2565b925050602061401685828601613fcb565b9150509250929050565b600060ff82169050919050565b61403681614020565b82525050565b6000602082019050614051600083018461402d565b92915050565b61406081613d79565b82525050565b600060208201905061407b6000830184614057565b92915050565b60006020828403121561409757614096613d54565b5b60006140a584828501613fcb565b91505092915050565b600080604083850312156140c5576140c4613d54565b5b60006140d385828601613da2565b92505060206140e485828601613da2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061413557607f821691505b60208210811415614149576141486140ee565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614185602083613ca4565b91506141908261414f565b602082019050919050565b600060208201905081810360008301526141b481614178565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006141f582613db7565b915061420083613db7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614239576142386141bb565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061427e82613db7565b915061428983613db7565b92508261429957614298614244565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614300602f83613ca4565b915061430b826142a4565b604082019050919050565b6000602082019050818103600083015261432f816142f3565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614392603983613ca4565b915061439d82614336565b604082019050919050565b600060208201905081810360008301526143c181614385565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614424602483613ca4565b915061442f826143c8565b604082019050919050565b6000602082019050818103600083015261445381614417565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006144b6603583613ca4565b91506144c18261445a565b604082019050919050565b600060208201905081810360008301526144e5816144a9565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614548603483613ca4565b9150614553826144ec565b604082019050919050565b600060208201905081810360008301526145778161453b565b9050919050565b600061458982613db7565b915061459483613db7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145c9576145c86141bb565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061460a601b83613ca4565b9150614615826145d4565b602082019050919050565b60006020820190508181036000830152614639816145fd565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061469c602483613ca4565b91506146a782614640565b604082019050919050565b600060208201905081810360008301526146cb8161468f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061472e602283613ca4565b9150614739826146d2565b604082019050919050565b6000602082019050818103600083015261475d81614721565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006147c0602583613ca4565b91506147cb82614764565b604082019050919050565b600060208201905081810360008301526147ef816147b3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614852602383613ca4565b915061485d826147f6565b604082019050919050565b6000602082019050818103600083015261488181614845565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460008201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b60006148e4603183613ca4565b91506148ef82614888565b604082019050919050565b60006020820190508181036000830152614913816148d7565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614950601683613ca4565b915061495b8261491a565b602082019050919050565b6000602082019050818103600083015261497f81614943565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614a08604983613ca4565b9150614a1382614986565b606082019050919050565b60006020820190508181036000830152614a37816149fb565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614a9a603583613ca4565b9150614aa582614a3e565b604082019050919050565b60006020820190508181036000830152614ac981614a8d565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614b06601383613ca4565b9150614b1182614ad0565b602082019050919050565b60006020820190508181036000830152614b3581614af9565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614b98603683613ca4565b9150614ba382614b3c565b604082019050919050565b60006020820190508181036000830152614bc781614b8b565b9050919050565b6000614bd982613db7565b9150614be483613db7565b925082821015614bf757614bf66141bb565b5b828203905092915050565b600081905092915050565b50565b6000614c1d600083614c02565b9150614c2882614c0d565b600082019050919050565b6000614c3e82614c10565b9150819050919050565b6000606082019050614c5d6000830186613f0a565b614c6a6020830185613f0a565b614c776040830184613f0a565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000614cdb602183613ca4565b9150614ce682614c7f565b604082019050919050565b60006020820190508181036000830152614d0a81614cce565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614d7e81613d8b565b92915050565b600060208284031215614d9a57614d99613d54565b5b6000614da884828501614d6f565b91505092915050565b6000819050919050565b6000614dd6614dd1614dcc84614db1565b613e90565b613db7565b9050919050565b614de681614dbb565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614e2181613d79565b82525050565b6000614e338383614e18565b60208301905092915050565b6000602082019050919050565b6000614e5782614dec565b614e618185614df7565b9350614e6c83614e08565b8060005b83811015614e9d578151614e848882614e27565b9750614e8f83614e3f565b925050600181019050614e70565b5085935050505092915050565b600060a082019050614ebf6000830188613f0a565b614ecc6020830187614ddd565b8181036040830152614ede8186614e4c565b9050614eed6060830185614057565b614efa6080830184613f0a565b9695505050505050565b600060c082019050614f196000830189614057565b614f266020830188613f0a565b614f336040830187614ddd565b614f406060830186614ddd565b614f4d6080830185614057565b614f5a60a0830184613f0a565b979650505050505050565b600081519050614f7481613dc1565b92915050565b600080600060608486031215614f9357614f92613d54565b5b6000614fa186828701614f65565b9350506020614fb286828701614f65565b9250506040614fc386828701614f65565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208473f0c2049725c246348ca82d2647744116f8845fac317875306b4eec39416664736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106102cd5760003560e01c80639213691311610175578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610b1f578063f2fde38b14610b4a578063f637434214610b73578063f8b45b0514610b9e576102d4565b8063dd62ed3e14610a8c578063e2f4560514610ac9578063e884f26014610af4576102d4565b8063c02466681461097c578063c18bc195146109a5578063c876d0b9146109ce578063c8c8ebe4146109f9578063d257b34f14610a24578063d85ba06314610a61576102d4565b8063a0d82dc51161012e578063a0d82dc514610846578063a457c2d714610871578063a9059cbb146108ae578063aacebbe3146108eb578063b62496f514610914578063bbc0c74214610951576102d4565b80639213691314610748578063924de9b71461077357806395d89b411461079c5780639a7a23d6146107c75780639c3b4fdc146107f05780639fccce321461081b576102d4565b8063395093511161023457806370a08231116101ed5780637571336a116101c75780637571336a146106b25780637bce5a04146106db5780638a8c523c146107065780638da5cb5b1461071d576102d4565b806370a0823114610633578063715018a614610670578063751039fc14610687576102d4565b8063395093511461050d57806349bd5a5e1461054a5780634a62bb65146105755780634fbee193146105a05780636a486a8e146105dd5780636ddd171314610608576102d4565b80631a8145bb116102865780631a8145bb146103fd5780631f3fed8f14610428578063203e727e1461045357806323b872dd1461047c5780632d5a5d34146104b9578063313ce567146104e2576102d4565b806306fdde03146102d9578063095ea7b31461030457806310d5de53146103415780631694505e1461037e57806318160ddd146103a95780631816467f146103d4576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b506102ee610bc9565b6040516102fb9190613d32565b60405180910390f35b34801561031057600080fd5b5061032b60048036038101906103269190613ded565b610c5b565b6040516103389190613e48565b60405180910390f35b34801561034d57600080fd5b5061036860048036038101906103639190613e63565b610c79565b6040516103759190613e48565b60405180910390f35b34801561038a57600080fd5b50610393610c99565b6040516103a09190613eef565b60405180910390f35b3480156103b557600080fd5b506103be610cbd565b6040516103cb9190613f19565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190613e63565b610cc7565b005b34801561040957600080fd5b50610412610e1e565b60405161041f9190613f19565b60405180910390f35b34801561043457600080fd5b5061043d610e24565b60405161044a9190613f19565b60405180910390f35b34801561045f57600080fd5b5061047a60048036038101906104759190613f34565b610e2a565b005b34801561048857600080fd5b506104a3600480360381019061049e9190613f61565b610f54565b6040516104b09190613e48565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db9190613fe0565b61102d565b005b3480156104ee57600080fd5b506104f761111f565b604051610504919061403c565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f9190613ded565b611128565b6040516105419190613e48565b60405180910390f35b34801561055657600080fd5b5061055f6111db565b60405161056c9190614066565b60405180910390f35b34801561058157600080fd5b5061058a6111ff565b6040516105979190613e48565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c29190613e63565b611212565b6040516105d49190613e48565b60405180910390f35b3480156105e957600080fd5b506105f2611268565b6040516105ff9190613f19565b60405180910390f35b34801561061457600080fd5b5061061d61126e565b60405161062a9190613e48565b60405180910390f35b34801561063f57600080fd5b5061065a60048036038101906106559190613e63565b611281565b6040516106679190613f19565b60405180910390f35b34801561067c57600080fd5b506106856112c9565b005b34801561069357600080fd5b5061069c61136c565b6040516106a99190613e48565b60405180910390f35b3480156106be57600080fd5b506106d960048036038101906106d49190613fe0565b611427565b005b3480156106e757600080fd5b506106f0611519565b6040516106fd9190613f19565b60405180910390f35b34801561071257600080fd5b5061071b61151f565b005b34801561072957600080fd5b506107326115f5565b60405161073f9190614066565b60405180910390f35b34801561075457600080fd5b5061075d61161f565b60405161076a9190613f19565b60405180910390f35b34801561077f57600080fd5b5061079a60048036038101906107959190614081565b611625565b005b3480156107a857600080fd5b506107b16116d9565b6040516107be9190613d32565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e99190613fe0565b61176b565b005b3480156107fc57600080fd5b5061080561189f565b6040516108129190613f19565b60405180910390f35b34801561082757600080fd5b506108306118a5565b60405161083d9190613f19565b60405180910390f35b34801561085257600080fd5b5061085b6118ab565b6040516108689190613f19565b60405180910390f35b34801561087d57600080fd5b5061089860048036038101906108939190613ded565b6118b1565b6040516108a59190613e48565b60405180910390f35b3480156108ba57600080fd5b506108d560048036038101906108d09190613ded565b61197e565b6040516108e29190613e48565b60405180910390f35b3480156108f757600080fd5b50610912600480360381019061090d9190613e63565b61199c565b005b34801561092057600080fd5b5061093b60048036038101906109369190613e63565b611af3565b6040516109489190613e48565b60405180910390f35b34801561095d57600080fd5b50610966611b13565b6040516109739190613e48565b60405180910390f35b34801561098857600080fd5b506109a3600480360381019061099e9190613fe0565b611b26565b005b3480156109b157600080fd5b506109cc60048036038101906109c79190613f34565b611c66565b005b3480156109da57600080fd5b506109e3611d90565b6040516109f09190613e48565b60405180910390f35b348015610a0557600080fd5b50610a0e611da3565b604051610a1b9190613f19565b60405180910390f35b348015610a3057600080fd5b50610a4b6004803603810190610a469190613f34565b611da9565b604051610a589190613e48565b60405180910390f35b348015610a6d57600080fd5b50610a76611f19565b604051610a839190613f19565b60405180910390f35b348015610a9857600080fd5b50610ab36004803603810190610aae91906140ae565b611f1f565b604051610ac09190613f19565b60405180910390f35b348015610ad557600080fd5b50610ade611fa6565b604051610aeb9190613f19565b60405180910390f35b348015610b0057600080fd5b50610b09611fac565b604051610b169190613e48565b60405180910390f35b348015610b2b57600080fd5b50610b34612067565b604051610b419190613f19565b60405180910390f35b348015610b5657600080fd5b50610b716004803603810190610b6c9190613e63565b61206d565b005b348015610b7f57600080fd5b50610b886121d0565b604051610b959190613f19565b60405180910390f35b348015610baa57600080fd5b50610bb36121d6565b604051610bc09190613f19565b60405180910390f35b606060038054610bd89061411d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c049061411d565b8015610c515780601f10610c2657610100808354040283529160200191610c51565b820191906000526020600020905b815481529060010190602001808311610c3457829003601f168201915b5050505050905090565b6000610c6f610c6861223a565b8484612242565b6001905092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610ccf61223a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d559061419b565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b610e3261223a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb89061419b565b60405180910390fd5b670de0b6b3a76400006103e86001610ed7610cbd565b610ee191906141ea565b610eeb9190614273565b610ef59190614273565b811015610f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2e90614316565b60405180910390fd5b670de0b6b3a764000081610f4b91906141ea565b60088190555050565b6000610f6184848461240d565b61102284610f6d61223a565b61101d85604051806060016040528060288152602001614ff460289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fd361223a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461318a9092919063ffffffff16565b612242565b600190509392505050565b61103561223a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bb9061419b565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006012905090565b60006111d161113561223a565b846111cc856001600061114661223a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121dc90919063ffffffff16565b612242565b6001905092915050565b7f00000000000000000000000095c5d578cf5cdb22aeedbf602602b6fa658483e381565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112d161223a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611360576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113579061419b565b60405180910390fd5b61136a600061206d565b565b600061137661223a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fc9061419b565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61142f61223a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b59061419b565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60115481565b61152761223a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ad9061419b565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601b81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60155481565b61162d61223a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b39061419b565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b6060600480546116e89061411d565b80601f01602080910402602001604051908101604052809291908181526020018280546117149061411d565b80156117615780601f1061173657610100808354040283529160200191611761565b820191906000526020600020905b81548152906001019060200180831161174457829003601f168201915b5050505050905090565b61177361223a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f99061419b565b60405180910390fd5b7f00000000000000000000000095c5d578cf5cdb22aeedbf602602b6fa658483e373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611891576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611888906143a8565b60405180910390fd5b61189b82826131ee565b5050565b60135481565b601a5481565b60175481565b60006119746118be61223a565b8461196f8560405180606001604052806025815260200161501c60259139600160006118e861223a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461318a9092919063ffffffff16565b612242565b6001905092915050565b600061199261198b61223a565b848461240d565b6001905092915050565b6119a461223a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2a9061419b565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611b2e61223a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb49061419b565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611c5a9190613e48565b60405180910390a25050565b611c6e61223a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf49061419b565b60405180910390fd5b670de0b6b3a76400006103e86005611d13610cbd565b611d1d91906141ea565b611d279190614273565b611d319190614273565b811015611d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6a9061443a565b60405180910390fd5b670de0b6b3a764000081611d8791906141ea565b600a8190555050565b600f60009054906101000a900460ff1681565b60085481565b6000611db361223a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e399061419b565b60405180910390fd5b620186a06001611e50610cbd565b611e5a91906141ea565b611e649190614273565b821015611ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9d906144cc565b60405180910390fd5b6103e86005611eb3610cbd565b611ebd91906141ea565b611ec79190614273565b821115611f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f009061455e565b60405180910390fd5b8160098190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611fb661223a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203c9061419b565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b61207561223a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fb9061419b565b60405180910390fd5b60008190506000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050565b60165481565b600a5481565b60008082846121eb919061457e565b905083811015612230576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222790614620565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a9906146b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231990614744565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516124009190613f19565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561247d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612474906147d6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e490614868565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156125915750600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6125d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c7906148fa565b60405180910390fd5b60008114156125ea576125e58383600061328f565b613185565b600b60009054906101000a900460ff1615612cad576126076115f5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561267557506126456115f5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126ae5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126e8575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127015750600560149054906101000a900460ff16155b15612cac57600b60019054906101000a900460ff166127fb57601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127bb5750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6127fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f190614966565b60405180910390fd5b5b600f60009054906101000a900460ff16156129c3576128186115f5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561289f57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156128f757507f00000000000000000000000095c5d578cf5cdb22aeedbf602602b6fa658483e373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156129c25743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061297d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297490614a1e565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a665750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b0d57600854811115612ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa790614ab0565b60405180910390fd5b600a54612abc83611281565b82612ac7919061457e565b1115612b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aff90614b1c565b60405180910390fd5b612cab565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612bb05750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612bff57600854811115612bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf190614bae565b60405180910390fd5b612caa565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612ca957600a54612c5c83611281565b82612c67919061457e565b1115612ca8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9f90614b1c565b60405180910390fd5b5b5b5b5b5b6000612cb830611281565b905060006009548210159050808015612cdd5750600b60029054906101000a900460ff165b8015612cf65750600560149054906101000a900460ff16155b8015612d4c5750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612da25750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612df85750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e3c576001600560146101000a81548160ff021916908315150217905550612e20613524565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612ef25750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612efc57600090505b6000811561317557601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f5f57506000601454115b1561302c57612f8c6064612f7e6014548861380b90919063ffffffff16565b61388690919063ffffffff16565b905060145460165482612f9f91906141ea565b612fa99190614273565b60196000828254612fba919061457e565b9250508190555060145460175482612fd291906141ea565b612fdc9190614273565b601a6000828254612fed919061457e565b925050819055506014546015548261300591906141ea565b61300f9190614273565b60186000828254613020919061457e565b92505081905550613151565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561308757506000601054115b15613150576130b460646130a66010548861380b90919063ffffffff16565b61388690919063ffffffff16565b9050601054601254826130c791906141ea565b6130d19190614273565b601960008282546130e2919061457e565b92505081905550601054601354826130fa91906141ea565b6131049190614273565b601a6000828254613115919061457e565b925050819055506010546011548261312d91906141ea565b6131379190614273565b60186000828254613148919061457e565b925050819055505b5b60008111156131665761316587308361328f565b5b80856131729190614bce565b94505b61318087878761328f565b505050505b505050565b60008383111582906131d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c99190613d32565b60405180910390fd5b50600083856131e19190614bce565b9050809150509392505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f6906147d6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561336f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161336690614868565b60405180910390fd5b61337a8383836138d0565b6133e581604051806060016040528060268152602001614fce602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461318a9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613478816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121dc90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516135179190613f19565b60405180910390a3505050565b600061352f30611281565b90506000601a54601854601954613546919061457e565b613550919061457e565b90506000808314806135625750600082145b1561356f57505050613809565b601460095461357e91906141ea565b83111561359757601460095461359491906141ea565b92505b6000600283601954866135aa91906141ea565b6135b49190614273565b6135be9190614273565b905060006135d582866138d590919063ffffffff16565b905060004790506135e58261391f565b60006135fa82476138d590919063ffffffff16565b90506000613625876136176018548561380b90919063ffffffff16565b61388690919063ffffffff16565b9050600061365088613642601a548661380b90919063ffffffff16565b61388690919063ffffffff16565b905060008183856136619190614bce565b61366b9190614bce565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516136cb90614c33565b60006040518083038185875af1925050503d8060008114613708576040519150601f19603f3d011682016040523d82523d6000602084013e61370d565b606091505b5050809850506000871180156137235750600081115b15613770576137328782613b5c565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260195460405161376793929190614c48565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516137b690614c33565b60006040518083038185875af1925050503d80600081146137f3576040519150601f19603f3d011682016040523d82523d6000602084013e6137f8565b606091505b505080985050505050505050505050505b565b60008083141561381e5760009050613880565b6000828461382c91906141ea565b905082848261383b9190614273565b1461387b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161387290614cf1565b60405180910390fd5b809150505b92915050565b60006138c883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613c36565b905092915050565b505050565b600061391783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061318a565b905092915050565b6000600267ffffffffffffffff81111561393c5761393b614d11565b5b60405190808252806020026020018201604052801561396a5781602001602082028036833780820191505090505b509050308160008151811061398257613981614d40565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613a27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a4b9190614d84565b81600181518110613a5f57613a5e614d40565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613ac4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612242565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613b26959493929190614eaa565b600060405180830381600087803b158015613b4057600080fd5b505af1158015613b54573d6000803e3d6000fd5b505050505050565b613b87307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612242565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401613bec96959493929190614f04565b60606040518083038185885af1158015613c0a573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613c2f9190614f7a565b5050505050565b60008083118290613c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c749190613d32565b60405180910390fd5b5060008385613c8c9190614273565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613cd3578082015181840152602081019050613cb8565b83811115613ce2576000848401525b50505050565b6000601f19601f8301169050919050565b6000613d0482613c99565b613d0e8185613ca4565b9350613d1e818560208601613cb5565b613d2781613ce8565b840191505092915050565b60006020820190508181036000830152613d4c8184613cf9565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d8482613d59565b9050919050565b613d9481613d79565b8114613d9f57600080fd5b50565b600081359050613db181613d8b565b92915050565b6000819050919050565b613dca81613db7565b8114613dd557600080fd5b50565b600081359050613de781613dc1565b92915050565b60008060408385031215613e0457613e03613d54565b5b6000613e1285828601613da2565b9250506020613e2385828601613dd8565b9150509250929050565b60008115159050919050565b613e4281613e2d565b82525050565b6000602082019050613e5d6000830184613e39565b92915050565b600060208284031215613e7957613e78613d54565b5b6000613e8784828501613da2565b91505092915050565b6000819050919050565b6000613eb5613eb0613eab84613d59565b613e90565b613d59565b9050919050565b6000613ec782613e9a565b9050919050565b6000613ed982613ebc565b9050919050565b613ee981613ece565b82525050565b6000602082019050613f046000830184613ee0565b92915050565b613f1381613db7565b82525050565b6000602082019050613f2e6000830184613f0a565b92915050565b600060208284031215613f4a57613f49613d54565b5b6000613f5884828501613dd8565b91505092915050565b600080600060608486031215613f7a57613f79613d54565b5b6000613f8886828701613da2565b9350506020613f9986828701613da2565b9250506040613faa86828701613dd8565b9150509250925092565b613fbd81613e2d565b8114613fc857600080fd5b50565b600081359050613fda81613fb4565b92915050565b60008060408385031215613ff757613ff6613d54565b5b600061400585828601613da2565b925050602061401685828601613fcb565b9150509250929050565b600060ff82169050919050565b61403681614020565b82525050565b6000602082019050614051600083018461402d565b92915050565b61406081613d79565b82525050565b600060208201905061407b6000830184614057565b92915050565b60006020828403121561409757614096613d54565b5b60006140a584828501613fcb565b91505092915050565b600080604083850312156140c5576140c4613d54565b5b60006140d385828601613da2565b92505060206140e485828601613da2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061413557607f821691505b60208210811415614149576141486140ee565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614185602083613ca4565b91506141908261414f565b602082019050919050565b600060208201905081810360008301526141b481614178565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006141f582613db7565b915061420083613db7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614239576142386141bb565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061427e82613db7565b915061428983613db7565b92508261429957614298614244565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614300602f83613ca4565b915061430b826142a4565b604082019050919050565b6000602082019050818103600083015261432f816142f3565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614392603983613ca4565b915061439d82614336565b604082019050919050565b600060208201905081810360008301526143c181614385565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614424602483613ca4565b915061442f826143c8565b604082019050919050565b6000602082019050818103600083015261445381614417565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006144b6603583613ca4565b91506144c18261445a565b604082019050919050565b600060208201905081810360008301526144e5816144a9565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614548603483613ca4565b9150614553826144ec565b604082019050919050565b600060208201905081810360008301526145778161453b565b9050919050565b600061458982613db7565b915061459483613db7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145c9576145c86141bb565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061460a601b83613ca4565b9150614615826145d4565b602082019050919050565b60006020820190508181036000830152614639816145fd565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061469c602483613ca4565b91506146a782614640565b604082019050919050565b600060208201905081810360008301526146cb8161468f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061472e602283613ca4565b9150614739826146d2565b604082019050919050565b6000602082019050818103600083015261475d81614721565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006147c0602583613ca4565b91506147cb82614764565b604082019050919050565b600060208201905081810360008301526147ef816147b3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614852602383613ca4565b915061485d826147f6565b604082019050919050565b6000602082019050818103600083015261488181614845565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460008201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b60006148e4603183613ca4565b91506148ef82614888565b604082019050919050565b60006020820190508181036000830152614913816148d7565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614950601683613ca4565b915061495b8261491a565b602082019050919050565b6000602082019050818103600083015261497f81614943565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614a08604983613ca4565b9150614a1382614986565b606082019050919050565b60006020820190508181036000830152614a37816149fb565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614a9a603583613ca4565b9150614aa582614a3e565b604082019050919050565b60006020820190508181036000830152614ac981614a8d565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614b06601383613ca4565b9150614b1182614ad0565b602082019050919050565b60006020820190508181036000830152614b3581614af9565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614b98603683613ca4565b9150614ba382614b3c565b604082019050919050565b60006020820190508181036000830152614bc781614b8b565b9050919050565b6000614bd982613db7565b9150614be483613db7565b925082821015614bf757614bf66141bb565b5b828203905092915050565b600081905092915050565b50565b6000614c1d600083614c02565b9150614c2882614c0d565b600082019050919050565b6000614c3e82614c10565b9150819050919050565b6000606082019050614c5d6000830186613f0a565b614c6a6020830185613f0a565b614c776040830184613f0a565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000614cdb602183613ca4565b9150614ce682614c7f565b604082019050919050565b60006020820190508181036000830152614d0a81614cce565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614d7e81613d8b565b92915050565b600060208284031215614d9a57614d99613d54565b5b6000614da884828501614d6f565b91505092915050565b6000819050919050565b6000614dd6614dd1614dcc84614db1565b613e90565b613db7565b9050919050565b614de681614dbb565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614e2181613d79565b82525050565b6000614e338383614e18565b60208301905092915050565b6000602082019050919050565b6000614e5782614dec565b614e618185614df7565b9350614e6c83614e08565b8060005b83811015614e9d578151614e848882614e27565b9750614e8f83614e3f565b925050600181019050614e70565b5085935050505092915050565b600060a082019050614ebf6000830188613f0a565b614ecc6020830187614ddd565b8181036040830152614ede8186614e4c565b9050614eed6060830185614057565b614efa6080830184613f0a565b9695505050505050565b600060c082019050614f196000830189614057565b614f266020830188613f0a565b614f336040830187614ddd565b614f406060830186614ddd565b614f4d6080830185614057565b614f5a60a0830184613f0a565b979650505050505050565b600081519050614f7481613dc1565b92915050565b600080600060608486031215614f9357614f92613d54565b5b6000614fa186828701614f65565b9350506020614fb286828701614f65565b9250506040614fc386828701614f65565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208473f0c2049725c246348ca82d2647744116f8845fac317875306b4eec39416664736f6c634300080a0033

Deployed Bytecode Sourcemap

29779:14689:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7928:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10102:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31311:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29856:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9051:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37307:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31025:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30985;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35485:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10754:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36494:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8892:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11519:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29914:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30182:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37476:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30839:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30262:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9223:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22430:102;;;;;;;;;;;;;:::i;:::-;;34702:120;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35952:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30731:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34501:148;;;;;;;;;;;;;:::i;:::-;;21786:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30874:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36193:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8148:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36638:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30805:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31065:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30950:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12241:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9564:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37090:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31534:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30222:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36303:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35728:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30648:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30066:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35090:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30697:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9803:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30108:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34884:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30768:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22688:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30912:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30148:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7928:100;7982:13;8015:5;8008:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7928:100;:::o;10102:169::-;10185:4;10202:39;10211:12;:10;:12::i;:::-;10225:7;10234:6;10202:8;:39::i;:::-;10259:4;10252:11;;10102:169;;;;:::o;31311:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;29856:51::-;;;:::o;9051:108::-;9112:7;9139:12;;9132:19;;9051:108;:::o;37307:157::-;22009:12;:10;:12::i;:::-;21999:22;;:6;;;;;;;;;;;:22;;;21991:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37414:9:::1;;;;;;;;;;;37386:38;;37403:9;37386:38;;;;;;;;;;;;37447:9;37435;;:21;;;;;;;;;;;;;;;;;;37307:157:::0;:::o;31025:33::-;;;;:::o;30985:::-;;;;:::o;35485:234::-;22009:12;:10;:12::i;:::-;21999:22;;:6;;;;;;;;;;;:22;;;21991:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35604:4:::1;35598;35594:1;35578:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35577:31;;;;:::i;:::-;35567:6;:41;;35559:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;35704:6;35694;:17;;;;:::i;:::-;35671:20;:40;;;;35485:234:::0;:::o;10754:355::-;10894:4;10911:36;10921:6;10929:9;10940:6;10911:9;:36::i;:::-;10958:121;10967:6;10975:12;:10;:12::i;:::-;10989:89;11027:6;10989:89;;;;;;;;;;;;;;;;;:11;:19;11001:6;10989:19;;;;;;;;;;;;;;;:33;11009:12;:10;:12::i;:::-;10989:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;10958:8;:121::i;:::-;11097:4;11090:11;;10754:355;;;;;:::o;36494:135::-;22009:12;:10;:12::i;:::-;21999:22;;:6;;;;;;;;;;;:22;;;21991:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36608:13:::1;36586:10;:19;36597:7;36586:19;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;36494:135:::0;;:::o;8892:93::-;8950:5;8975:2;8968:9;;8892:93;:::o;11519:218::-;11607:4;11624:83;11633:12;:10;:12::i;:::-;11647:7;11656:50;11695:10;11656:11;:25;11668:12;:10;:12::i;:::-;11656:25;;;;;;;;;;;;;;;:34;11682:7;11656:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11624:8;:83::i;:::-;11725:4;11718:11;;11519:218;;;;:::o;29914:38::-;;;:::o;30182:33::-;;;;;;;;;;;;;:::o;37476:125::-;37541:4;37565:19;:28;37585:7;37565:28;;;;;;;;;;;;;;;;;;;;;;;;;37558:35;;37476:125;;;:::o;30839:28::-;;;;:::o;30262:31::-;;;;;;;;;;;;;:::o;9223:127::-;9297:7;9324:9;:18;9334:7;9324:18;;;;;;;;;;;;;;;;9317:25;;9223:127;;;:::o;22430:102::-;22009:12;:10;:12::i;:::-;21999:22;;:6;;;;;;;;;;;:22;;;21991:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22495:29:::1;22521:1;22495:17;:29::i;:::-;22430:102::o:0;34702:120::-;34754:4;22009:12;:10;:12::i;:::-;21999:22;;:6;;;;;;;;;;;:22;;;21991:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34787:5:::1;34770:14;;:22;;;;;;;;;;;;;;;;;;34810:4;34803:11;;34702:120:::0;:::o;35952:144::-;22009:12;:10;:12::i;:::-;21999:22;;:6;;;;;;;;;;;:22;;;21991:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36084:4:::1;36042:31;:39;36074:6;36042:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35952:144:::0;;:::o;30731:30::-;;;;:::o;34501:148::-;22009:12;:10;:12::i;:::-;21999:22;;:6;;;;;;;;;;;:22;;;21991:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34572:4:::1;34556:13;;:20;;;;;;;;;;;;;;;;;;34601:4;34587:11;;:18;;;;;;;;;;;;;;;;;;34629:12;34616:10;:25;;;;34501:148::o:0;21786:79::-;21824:7;21851:6;;;;;;;;;;;21844:13;;21786:79;:::o;30874:31::-;;;;:::o;36193:101::-;22009:12;:10;:12::i;:::-;21999:22;;:6;;;;;;;;;;;:22;;;21991:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36279:7:::1;36265:11;;:21;;;;;;;;;;;;;;;;;;36193:101:::0;:::o;8148:104::-;8204:13;8237:7;8230:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8148:104;:::o;36638:245::-;22009:12;:10;:12::i;:::-;21999:22;;:6;;;;;;;;;;;:22;;;21991:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36745:13:::1;36737:21;;:4;:21;;;;36729:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;36834:41;36863:4;36869:5;36834:28;:41::i;:::-;36638:245:::0;;:::o;30805:24::-;;;;:::o;31065:27::-;;;;:::o;30950:25::-;;;;:::o;12241:269::-;12334:4;12351:129;12360:12;:10;:12::i;:::-;12374:7;12383:96;12422:15;12383:96;;;;;;;;;;;;;;;;;:11;:25;12395:12;:10;:12::i;:::-;12383:25;;;;;;;;;;;;;;;:34;12409:7;12383:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;12351:8;:129::i;:::-;12498:4;12491:11;;12241:269;;;;:::o;9564:175::-;9650:4;9667:42;9677:12;:10;:12::i;:::-;9691:9;9702:6;9667:9;:42::i;:::-;9727:4;9720:11;;9564:175;;;;:::o;37090:208::-;22009:12;:10;:12::i;:::-;21999:22;;:6;;;;;;;;;;;:22;;;21991:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37227:15:::1;;;;;;;;;;;37184:59;;37207:18;37184:59;;;;;;;;;;;;37272:18;37254:15;;:36;;;;;;;;;;;;;;;;;;37090:208:::0;:::o;31534:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;30222:33::-;;;;;;;;;;;;;:::o;36303:182::-;22009:12;:10;:12::i;:::-;21999:22;;:6;;;;;;;;;;;:22;;;21991:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36419:8:::1;36388:19;:28;36408:7;36388:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36459:7;36443:34;;;36468:8;36443:34;;;;;;:::i;:::-;;;;;;;;36303:182:::0;;:::o;35728:215::-;22009:12;:10;:12::i;:::-;21999:22;;:6;;;;;;;;;;;:22;;;21991:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35850:4:::1;35844;35840:1;35824:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35823:31;;;;:::i;:::-;35813:6;:41;;35805:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;35928:6;35918;:17;;;;:::i;:::-;35906:9;:29;;;;35728:215:::0;:::o;30648:39::-;;;;;;;;;;;;;:::o;30066:35::-;;;;:::o;35090:386::-;35171:4;22009:12;:10;:12::i;:::-;21999:22;;:6;;;;;;;;;;;:22;;;21991:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35228:6:::1;35224:1;35208:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:26;;;;:::i;:::-;35195:9;:39;;35187:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;35344:4;35340:1;35324:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35311:9;:37;;35303:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;35437:9;35416:18;:30;;;;35464:4;35457:11;;35090:386:::0;;;:::o;30697:27::-;;;;:::o;9803:151::-;9892:7;9919:11;:18;9931:5;9919:18;;;;;;;;;;;;;;;:27;9938:7;9919:27;;;;;;;;;;;;;;;;9912:34;;9803:151;;;;:::o;30108:33::-;;;;:::o;34884:134::-;34944:4;22009:12;:10;:12::i;:::-;21999:22;;:6;;;;;;;;;;;:22;;;21991:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34983:5:::1;34960:20;;:28;;;;;;;;;;;;;;;;;;35006:4;34999:11;;34884:134:::0;:::o;30768:30::-;;;;:::o;22688:239::-;22009:12;:10;:12::i;:::-;21999:22;;:6;;;;;;;;;;;:22;;;21991:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22769:17:::1;22788:8;22769:27;;22807:17;22826:6;;;;;;;;;;;22807:25;;22880:9;22848:42;;22869:9;22848:42;;;;;;;;;;;;22910:9;22901:6;;:18;;;;;;;;;;;;;;;;;;22758:169;;22688:239:::0;:::o;30912:31::-;;;;:::o;30148:24::-;;;;:::o;16818:182::-;16876:7;16896:9;16912:1;16908;:5;;;;:::i;:::-;16896:17;;16937:1;16932;:6;;16924:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;16991:1;16984:8;;;16818:182;;;;:::o;619:98::-;672:7;699:10;692:17;;619:98;:::o;15437:381::-;15590:1;15573:19;;:5;:19;;;;15565:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15671:1;15652:21;;:7;:21;;;;15644:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15756:6;15726:11;:18;15738:5;15726:18;;;;;;;;;;;;;;;:27;15745:7;15726:27;;;;;;;;;;;;;;;:36;;;;15794:7;15778:32;;15787:5;15778:32;;;15803:6;15778:32;;;;;;:::i;:::-;;;;;;;;15437:381;;;:::o;37610:4143::-;37758:1;37742:18;;:4;:18;;;;37734:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37835:1;37821:16;;:2;:16;;;;37813:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;37897:10;:14;37908:2;37897:14;;;;;;;;;;;;;;;;;;;;;;;;;37896:15;:34;;;;;37916:10;:14;37927:2;37916:14;;;;;;;;;;;;;;;;;;;;;;;;;37915:15;37896:34;37888:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;38009:1;37999:6;:11;37996:92;;;38027:28;38043:4;38049:2;38053:1;38027:15;:28::i;:::-;38070:7;;37996:92;38104:14;;;;;;;;;;;38101:1811;;;38164:7;:5;:7::i;:::-;38156:15;;:4;:15;;;;:49;;;;;38198:7;:5;:7::i;:::-;38192:13;;:2;:13;;;;38156:49;:86;;;;;38240:1;38226:16;;:2;:16;;;;38156:86;:128;;;;;38277:6;38263:21;;:2;:21;;;;38156:128;:158;;;;;38306:8;;;;;;;;;;;38305:9;38156:158;38134:1767;;;38352:13;;;;;;;;;;;38348:148;;38397:19;:25;38417:4;38397:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;38426:19;:23;38446:2;38426:23;;;;;;;;;;;;;;;;;;;;;;;;;38397:52;38389:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;38348:148;38655:20;;;;;;;;;;;38651:423;;;38709:7;:5;:7::i;:::-;38703:13;;:2;:13;;;;:47;;;;;38734:15;38720:30;;:2;:30;;;;38703:47;:79;;;;;38768:13;38754:28;;:2;:28;;;;38703:79;38699:356;;;38860:12;38818:28;:39;38847:9;38818:39;;;;;;;;;;;;;;;;:54;38810:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;39019:12;38977:28;:39;39006:9;38977:39;;;;;;;;;;;;;;;:54;;;;38699:356;38651:423;39127:25;:31;39153:4;39127:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;39163:31;:35;39195:2;39163:35;;;;;;;;;;;;;;;;;;;;;;;;;39162:36;39127:71;39123:763;;;39245:20;;39235:6;:30;;39227:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;39384:9;;39367:13;39377:2;39367:9;:13::i;:::-;39358:6;:22;;;;:::i;:::-;:35;;39350:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;39123:763;;;39496:25;:29;39522:2;39496:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;39530:31;:37;39562:4;39530:37;;;;;;;;;;;;;;;;;;;;;;;;;39529:38;39496:71;39492:394;;;39614:20;;39604:6;:30;;39596:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;39492:394;;;39740:31;:35;39772:2;39740:35;;;;;;;;;;;;;;;;;;;;;;;;;39736:150;;39833:9;;39816:13;39826:2;39816:9;:13::i;:::-;39807:6;:22;;;;:::i;:::-;:35;;39799:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;39736:150;39492:394;39123:763;38134:1767;38101:1811;39925:28;39956:24;39974:4;39956:9;:24::i;:::-;39925:55;;39994:12;40033:18;;40009:20;:42;;39994:57;;40083:7;:35;;;;;40107:11;;;;;;;;;;;40083:35;:61;;;;;40136:8;;;;;;;;;;;40135:9;40083:61;:110;;;;;40162:25;:31;40188:4;40162:31;;;;;;;;;;;;;;;;;;;;;;;;;40161:32;40083:110;:153;;;;;40211:19;:25;40231:4;40211:25;;;;;;;;;;;;;;;;;;;;;;;;;40210:26;40083:153;:194;;;;;40254:19;:23;40274:2;40254:23;;;;;;;;;;;;;;;;;;;;;;;;;40253:24;40083:194;40065:328;;;40315:4;40304:8;;:15;;;;;;;;;;;;;;;;;;40337:10;:8;:10::i;:::-;40376:5;40365:8;;:16;;;;;;;;;;;;;;;;;;40065:328;40406:12;40422:8;;;;;;;;;;;40421:9;40406:24;;40532:19;:25;40552:4;40532:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;40561:19;:23;40581:2;40561:23;;;;;;;;;;;;;;;;;;;;;;;;;40532:52;40529:99;;;40611:5;40601:15;;40529:99;40641:12;40745:7;40742:957;;;40796:25;:29;40822:2;40796:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;40845:1;40829:13;;:17;40796:50;40792:754;;;40873:34;40903:3;40873:25;40884:13;;40873:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;40866:41;;40974:13;;40955:16;;40948:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;40926:18;;:61;;;;;;;:::i;:::-;;;;;;;;41042:13;;41029:10;;41022:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;41006:12;;:49;;;;;;;:::i;:::-;;;;;;;;41122:13;;41103:16;;41096:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;41074:18;;:61;;;;;;;:::i;:::-;;;;;;;;40792:754;;;41196:25;:31;41222:4;41196:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;41246:1;41231:12;;:16;41196:51;41193:353;;;41275:33;41304:3;41275:24;41286:12;;41275:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;41268:40;;41374:12;;41356:15;;41349:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;41327:18;;:59;;;;;;;:::i;:::-;;;;;;;;41440:12;;41428:9;;41421:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;41405:12;;:47;;;;;;;:::i;:::-;;;;;;;;41518:12;;41500:15;;41493:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;41471:18;;:59;;;;;;;:::i;:::-;;;;;;;;41193:353;40792:754;41573:1;41566:4;:8;41563:93;;;41598:42;41614:4;41628;41635;41598:15;:42::i;:::-;41563:93;41683:4;41673:14;;;;;:::i;:::-;;;40742:957;41712:33;41728:4;41734:2;41738:6;41712:15;:33::i;:::-;37723:4030;;;;37610:4143;;;;:::o;17724:193::-;17810:7;17843:1;17838;:6;;17846:12;17830:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17870:9;17886:1;17882;:5;;;;:::i;:::-;17870:17;;17908:1;17901:8;;;17724:193;;;;;:::o;36892:189::-;37009:5;36975:25;:31;37001:4;36975:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37067:5;37033:40;;37061:4;37033:40;;;;;;;;;;;;36892:189;;:::o;13001:575::-;13159:1;13141:20;;:6;:20;;;;13133:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13243:1;13222:23;;:9;:23;;;;13214:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13299:47;13320:6;13328:9;13339:6;13299:20;:47::i;:::-;13380:71;13402:6;13380:71;;;;;;;;;;;;;;;;;:9;:17;13390:6;13380:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;13360:9;:17;13370:6;13360:17;;;;;;;;;;;;;;;:91;;;;13485:32;13510:6;13485:9;:20;13495:9;13485:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;13462:9;:20;13472:9;13462:20;;;;;;;;;;;;;;;:55;;;;13550:9;13533:35;;13542:6;13533:35;;;13561:6;13533:35;;;;;;:::i;:::-;;;;;;;;13001:575;;;:::o;42897:1568::-;42936:23;42962:24;42980:4;42962:9;:24::i;:::-;42936:50;;42997:25;43067:12;;43046:18;;43025;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;42997:82;;43090:12;43138:1;43119:15;:20;:46;;;;43164:1;43143:17;:22;43119:46;43116:60;;;43168:7;;;;;43116:60;43231:2;43210:18;;:23;;;;:::i;:::-;43192:15;:41;43189:111;;;43286:2;43265:18;;:23;;;;:::i;:::-;43247:41;;43189:111;43362:23;43447:1;43427:17;43406:18;;43388:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;43362:86;;43459:26;43488:36;43508:15;43488;:19;;:36;;;;:::i;:::-;43459:65;;43538:25;43566:21;43538:49;;43601:36;43618:18;43601:16;:36::i;:::-;43652:18;43673:44;43699:17;43673:21;:25;;:44;;;;:::i;:::-;43652:65;;43731:23;43757:57;43796:17;43757:34;43772:18;;43757:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;43731:83;;43825:17;43845:51;43878:17;43845:28;43860:12;;43845:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;43825:71;;43907:23;43964:9;43946:15;43933:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;43907:66;;44011:1;43990:18;:22;;;;44044:1;44023:18;:22;;;;44071:1;44056:12;:16;;;;44107:9;;;;;;;;;;;44099:23;;44130:9;44099:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44086:58;;;;;44179:1;44161:15;:19;:42;;;;;44202:1;44184:15;:19;44161:42;44158:210;;;44219:46;44232:15;44249;44219:12;:46::i;:::-;44285:71;44300:18;44320:15;44337:18;;44285:71;;;;;;;;:::i;:::-;;;;;;;;44158:210;44402:15;;;;;;;;;;;44394:29;;44431:21;44394:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44381:76;;;;;42925:1540;;;;;;;;;;42897:1568;:::o;18177:473::-;18235:7;18485:1;18480;:6;18476:47;;;18510:1;18503:8;;;;18476:47;18536:9;18552:1;18548;:5;;;;:::i;:::-;18536:17;;18581:1;18576;18572;:5;;;;:::i;:::-;:10;18564:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;18641:1;18634:8;;;18177:473;;;;;:::o;19127:132::-;19185:7;19212:39;19216:1;19219;19212:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;19205:46;;19127:132;;;;:::o;16422:125::-;;;;:::o;17284:136::-;17342:7;17369:43;17373:1;17376;17369:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;17362:50;;17284:136;;;;:::o;41762:597::-;41891:21;41929:1;41915:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41891:40;;41960:4;41942;41947:1;41942:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;41986:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41976:4;41981:1;41976:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;42022:62;42039:4;42054:15;42072:11;42022:8;:62::i;:::-;42124:15;:66;;;42205:11;42231:1;42275:4;42302;42322:15;42124:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41817:542;41762:597;:::o;42368:520::-;42516:62;42533:4;42548:15;42566:11;42516:8;:62::i;:::-;42622:15;:31;;;42661:9;42694:4;42714:11;42740:1;42783;42834:4;42854:15;42622:258;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;42368:520;;:::o;19756:279::-;19842:7;19874:1;19870;:5;19877:12;19862:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;19901:9;19917:1;19913;:5;;;;:::i;:::-;19901:17;;20026:1;20019:8;;;19756: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:323::-;7692:6;7741:2;7729:9;7720:7;7716:23;7712:32;7709:119;;;7747:79;;:::i;:::-;7709:119;7867:1;7892:50;7934:7;7925:6;7914:9;7910:22;7892:50;:::i;:::-;7882:60;;7838:114;7636:323;;;;:::o;7965:474::-;8033:6;8041;8090:2;8078:9;8069:7;8065:23;8061:32;8058:119;;;8096:79;;:::i;:::-;8058:119;8216:1;8241:53;8286:7;8277:6;8266:9;8262:22;8241:53;:::i;:::-;8231:63;;8187:117;8343:2;8369:53;8414:7;8405:6;8394:9;8390:22;8369:53;:::i;:::-;8359:63;;8314:118;7965:474;;;;;:::o;8445:180::-;8493:77;8490:1;8483:88;8590:4;8587:1;8580:15;8614:4;8611:1;8604:15;8631:320;8675:6;8712:1;8706:4;8702:12;8692:22;;8759:1;8753:4;8749:12;8780:18;8770:81;;8836:4;8828:6;8824:17;8814:27;;8770:81;8898:2;8890:6;8887:14;8867:18;8864:38;8861:84;;;8917:18;;:::i;:::-;8861:84;8682:269;8631:320;;;:::o;8957:182::-;9097:34;9093:1;9085:6;9081:14;9074:58;8957:182;:::o;9145:366::-;9287:3;9308:67;9372:2;9367:3;9308:67;:::i;:::-;9301:74;;9384:93;9473:3;9384:93;:::i;:::-;9502:2;9497:3;9493:12;9486:19;;9145:366;;;:::o;9517:419::-;9683:4;9721:2;9710:9;9706:18;9698:26;;9770:9;9764:4;9760:20;9756:1;9745:9;9741:17;9734:47;9798:131;9924:4;9798:131;:::i;:::-;9790:139;;9517:419;;;:::o;9942:180::-;9990:77;9987:1;9980:88;10087:4;10084:1;10077:15;10111:4;10108:1;10101:15;10128:348;10168:7;10191:20;10209:1;10191:20;:::i;:::-;10186:25;;10225:20;10243:1;10225:20;:::i;:::-;10220:25;;10413:1;10345:66;10341:74;10338:1;10335:81;10330:1;10323:9;10316:17;10312:105;10309:131;;;10420:18;;:::i;:::-;10309:131;10468:1;10465;10461:9;10450:20;;10128:348;;;;:::o;10482:180::-;10530:77;10527:1;10520:88;10627:4;10624:1;10617:15;10651:4;10648:1;10641:15;10668:185;10708:1;10725:20;10743:1;10725:20;:::i;:::-;10720:25;;10759:20;10777:1;10759:20;:::i;:::-;10754:25;;10798:1;10788:35;;10803:18;;:::i;:::-;10788:35;10845:1;10842;10838:9;10833:14;;10668:185;;;;:::o;10859:234::-;10999:34;10995:1;10987:6;10983:14;10976:58;11068:17;11063:2;11055:6;11051:15;11044:42;10859:234;:::o;11099:366::-;11241:3;11262:67;11326:2;11321:3;11262:67;:::i;:::-;11255:74;;11338:93;11427:3;11338:93;:::i;:::-;11456:2;11451:3;11447:12;11440:19;;11099:366;;;:::o;11471:419::-;11637:4;11675:2;11664:9;11660:18;11652:26;;11724:9;11718:4;11714:20;11710:1;11699:9;11695:17;11688:47;11752:131;11878:4;11752:131;:::i;:::-;11744:139;;11471:419;;;:::o;11896:244::-;12036:34;12032:1;12024:6;12020:14;12013:58;12105:27;12100:2;12092:6;12088:15;12081:52;11896:244;:::o;12146:366::-;12288:3;12309:67;12373:2;12368:3;12309:67;:::i;:::-;12302:74;;12385:93;12474:3;12385:93;:::i;:::-;12503:2;12498:3;12494:12;12487:19;;12146:366;;;:::o;12518:419::-;12684:4;12722:2;12711:9;12707:18;12699:26;;12771:9;12765:4;12761:20;12757:1;12746:9;12742:17;12735:47;12799:131;12925:4;12799:131;:::i;:::-;12791:139;;12518:419;;;:::o;12943:223::-;13083:34;13079:1;13071:6;13067:14;13060:58;13152:6;13147:2;13139:6;13135:15;13128:31;12943:223;:::o;13172:366::-;13314:3;13335:67;13399:2;13394:3;13335:67;:::i;:::-;13328:74;;13411:93;13500:3;13411:93;:::i;:::-;13529:2;13524:3;13520:12;13513:19;;13172:366;;;:::o;13544:419::-;13710:4;13748:2;13737:9;13733:18;13725:26;;13797:9;13791:4;13787:20;13783:1;13772:9;13768:17;13761:47;13825:131;13951:4;13825:131;:::i;:::-;13817:139;;13544:419;;;:::o;13969:240::-;14109:34;14105:1;14097:6;14093:14;14086:58;14178:23;14173:2;14165:6;14161:15;14154:48;13969:240;:::o;14215:366::-;14357:3;14378:67;14442:2;14437:3;14378:67;:::i;:::-;14371:74;;14454:93;14543:3;14454:93;:::i;:::-;14572:2;14567:3;14563:12;14556:19;;14215:366;;;:::o;14587:419::-;14753:4;14791:2;14780:9;14776:18;14768:26;;14840:9;14834:4;14830:20;14826:1;14815:9;14811:17;14804:47;14868:131;14994:4;14868:131;:::i;:::-;14860:139;;14587:419;;;:::o;15012:239::-;15152:34;15148:1;15140:6;15136:14;15129:58;15221:22;15216:2;15208:6;15204:15;15197:47;15012:239;:::o;15257:366::-;15399:3;15420:67;15484:2;15479:3;15420:67;:::i;:::-;15413:74;;15496:93;15585:3;15496:93;:::i;:::-;15614:2;15609:3;15605:12;15598:19;;15257:366;;;:::o;15629:419::-;15795:4;15833:2;15822:9;15818:18;15810:26;;15882:9;15876:4;15872:20;15868:1;15857:9;15853:17;15846:47;15910:131;16036:4;15910:131;:::i;:::-;15902:139;;15629:419;;;:::o;16054:305::-;16094:3;16113:20;16131:1;16113:20;:::i;:::-;16108:25;;16147:20;16165:1;16147:20;:::i;:::-;16142:25;;16301:1;16233:66;16229:74;16226:1;16223:81;16220:107;;;16307:18;;:::i;:::-;16220:107;16351:1;16348;16344:9;16337:16;;16054:305;;;;:::o;16365:177::-;16505:29;16501:1;16493:6;16489:14;16482:53;16365:177;:::o;16548:366::-;16690:3;16711:67;16775:2;16770:3;16711:67;:::i;:::-;16704:74;;16787:93;16876:3;16787:93;:::i;:::-;16905:2;16900:3;16896:12;16889:19;;16548:366;;;:::o;16920:419::-;17086:4;17124:2;17113:9;17109:18;17101:26;;17173:9;17167:4;17163:20;17159:1;17148:9;17144:17;17137:47;17201:131;17327:4;17201:131;:::i;:::-;17193:139;;16920:419;;;:::o;17345:223::-;17485:34;17481:1;17473:6;17469:14;17462:58;17554:6;17549:2;17541:6;17537:15;17530:31;17345:223;:::o;17574:366::-;17716:3;17737:67;17801:2;17796:3;17737:67;:::i;:::-;17730:74;;17813:93;17902:3;17813:93;:::i;:::-;17931:2;17926:3;17922:12;17915:19;;17574:366;;;:::o;17946:419::-;18112:4;18150:2;18139:9;18135:18;18127:26;;18199:9;18193:4;18189:20;18185:1;18174:9;18170:17;18163:47;18227:131;18353:4;18227:131;:::i;:::-;18219:139;;17946:419;;;:::o;18371:221::-;18511:34;18507:1;18499:6;18495:14;18488:58;18580:4;18575:2;18567:6;18563:15;18556:29;18371:221;:::o;18598:366::-;18740:3;18761:67;18825:2;18820:3;18761:67;:::i;:::-;18754:74;;18837:93;18926:3;18837:93;:::i;:::-;18955:2;18950:3;18946:12;18939:19;;18598:366;;;:::o;18970:419::-;19136:4;19174:2;19163:9;19159:18;19151:26;;19223:9;19217:4;19213:20;19209:1;19198:9;19194:17;19187:47;19251:131;19377:4;19251:131;:::i;:::-;19243:139;;18970:419;;;:::o;19395:224::-;19535:34;19531:1;19523:6;19519:14;19512:58;19604:7;19599:2;19591:6;19587:15;19580:32;19395:224;:::o;19625:366::-;19767:3;19788:67;19852:2;19847:3;19788:67;:::i;:::-;19781:74;;19864:93;19953:3;19864:93;:::i;:::-;19982:2;19977:3;19973:12;19966:19;;19625:366;;;:::o;19997:419::-;20163:4;20201:2;20190:9;20186:18;20178:26;;20250:9;20244:4;20240:20;20236:1;20225:9;20221:17;20214:47;20278:131;20404:4;20278:131;:::i;:::-;20270:139;;19997:419;;;:::o;20422:222::-;20562:34;20558:1;20550:6;20546:14;20539:58;20631:5;20626:2;20618:6;20614:15;20607:30;20422:222;:::o;20650:366::-;20792:3;20813:67;20877:2;20872:3;20813:67;:::i;:::-;20806:74;;20889:93;20978:3;20889:93;:::i;:::-;21007:2;21002:3;20998:12;20991:19;;20650:366;;;:::o;21022:419::-;21188:4;21226:2;21215:9;21211:18;21203:26;;21275:9;21269:4;21265:20;21261:1;21250:9;21246:17;21239:47;21303:131;21429:4;21303:131;:::i;:::-;21295:139;;21022:419;;;:::o;21447:236::-;21587:34;21583:1;21575:6;21571:14;21564:58;21656:19;21651:2;21643:6;21639:15;21632:44;21447:236;:::o;21689:366::-;21831:3;21852:67;21916:2;21911:3;21852:67;:::i;:::-;21845:74;;21928:93;22017:3;21928:93;:::i;:::-;22046:2;22041:3;22037:12;22030:19;;21689:366;;;:::o;22061:419::-;22227:4;22265:2;22254:9;22250:18;22242:26;;22314:9;22308:4;22304:20;22300:1;22289:9;22285:17;22278:47;22342:131;22468:4;22342:131;:::i;:::-;22334:139;;22061:419;;;:::o;22486:172::-;22626:24;22622:1;22614:6;22610:14;22603:48;22486:172;:::o;22664:366::-;22806:3;22827:67;22891:2;22886:3;22827:67;:::i;:::-;22820:74;;22903:93;22992:3;22903:93;:::i;:::-;23021:2;23016:3;23012:12;23005:19;;22664:366;;;:::o;23036:419::-;23202:4;23240:2;23229:9;23225:18;23217:26;;23289:9;23283:4;23279:20;23275:1;23264:9;23260:17;23253:47;23317:131;23443:4;23317:131;:::i;:::-;23309:139;;23036:419;;;:::o;23461:297::-;23601:34;23597:1;23589:6;23585:14;23578:58;23670:34;23665:2;23657:6;23653:15;23646:59;23739:11;23734:2;23726:6;23722:15;23715:36;23461:297;:::o;23764:366::-;23906:3;23927:67;23991:2;23986:3;23927:67;:::i;:::-;23920:74;;24003:93;24092:3;24003:93;:::i;:::-;24121:2;24116:3;24112:12;24105:19;;23764:366;;;:::o;24136:419::-;24302:4;24340:2;24329:9;24325:18;24317:26;;24389:9;24383:4;24379:20;24375:1;24364:9;24360:17;24353:47;24417:131;24543:4;24417:131;:::i;:::-;24409:139;;24136:419;;;:::o;24561:240::-;24701:34;24697:1;24689:6;24685:14;24678:58;24770:23;24765:2;24757:6;24753:15;24746:48;24561:240;:::o;24807:366::-;24949:3;24970:67;25034:2;25029:3;24970:67;:::i;:::-;24963:74;;25046:93;25135:3;25046:93;:::i;:::-;25164:2;25159:3;25155:12;25148:19;;24807:366;;;:::o;25179:419::-;25345:4;25383:2;25372:9;25368:18;25360:26;;25432:9;25426:4;25422:20;25418:1;25407:9;25403:17;25396:47;25460:131;25586:4;25460:131;:::i;:::-;25452:139;;25179:419;;;:::o;25604:169::-;25744:21;25740:1;25732:6;25728:14;25721:45;25604:169;:::o;25779:366::-;25921:3;25942:67;26006:2;26001:3;25942:67;:::i;:::-;25935:74;;26018:93;26107:3;26018:93;:::i;:::-;26136:2;26131:3;26127:12;26120:19;;25779:366;;;:::o;26151:419::-;26317:4;26355:2;26344:9;26340:18;26332:26;;26404:9;26398:4;26394:20;26390:1;26379:9;26375:17;26368:47;26432:131;26558:4;26432:131;:::i;:::-;26424:139;;26151:419;;;:::o;26576:241::-;26716:34;26712:1;26704:6;26700:14;26693:58;26785:24;26780:2;26772:6;26768:15;26761:49;26576:241;:::o;26823:366::-;26965:3;26986:67;27050:2;27045:3;26986:67;:::i;:::-;26979:74;;27062:93;27151:3;27062:93;:::i;:::-;27180:2;27175:3;27171:12;27164:19;;26823:366;;;:::o;27195:419::-;27361:4;27399:2;27388:9;27384:18;27376:26;;27448:9;27442:4;27438:20;27434:1;27423:9;27419:17;27412:47;27476:131;27602:4;27476:131;:::i;:::-;27468:139;;27195:419;;;:::o;27620:191::-;27660:4;27680:20;27698:1;27680:20;:::i;:::-;27675:25;;27714:20;27732:1;27714:20;:::i;:::-;27709:25;;27753:1;27750;27747:8;27744:34;;;27758:18;;:::i;:::-;27744:34;27803:1;27800;27796:9;27788:17;;27620:191;;;;:::o;27817:147::-;27918:11;27955:3;27940:18;;27817:147;;;;:::o;27970:114::-;;:::o;28090:398::-;28249:3;28270:83;28351:1;28346:3;28270:83;:::i;:::-;28263:90;;28362:93;28451:3;28362:93;:::i;:::-;28480:1;28475:3;28471:11;28464:18;;28090:398;;;:::o;28494:379::-;28678:3;28700:147;28843:3;28700:147;:::i;:::-;28693:154;;28864:3;28857:10;;28494:379;;;:::o;28879:442::-;29028:4;29066:2;29055:9;29051:18;29043:26;;29079:71;29147:1;29136:9;29132:17;29123:6;29079:71;:::i;:::-;29160:72;29228:2;29217:9;29213:18;29204:6;29160:72;:::i;:::-;29242;29310:2;29299:9;29295:18;29286:6;29242:72;:::i;:::-;28879:442;;;;;;:::o;29327:220::-;29467:34;29463:1;29455:6;29451:14;29444:58;29536:3;29531:2;29523:6;29519:15;29512:28;29327:220;:::o;29553:366::-;29695:3;29716:67;29780:2;29775:3;29716:67;:::i;:::-;29709:74;;29792:93;29881:3;29792:93;:::i;:::-;29910:2;29905:3;29901:12;29894:19;;29553:366;;;:::o;29925:419::-;30091:4;30129:2;30118:9;30114:18;30106:26;;30178:9;30172:4;30168:20;30164:1;30153:9;30149:17;30142:47;30206:131;30332:4;30206:131;:::i;:::-;30198:139;;29925:419;;;:::o;30350:180::-;30398:77;30395:1;30388:88;30495:4;30492:1;30485:15;30519:4;30516:1;30509:15;30536:180;30584:77;30581:1;30574:88;30681:4;30678:1;30671:15;30705:4;30702:1;30695:15;30722:143;30779:5;30810:6;30804:13;30795:22;;30826:33;30853:5;30826:33;:::i;:::-;30722:143;;;;:::o;30871:351::-;30941:6;30990:2;30978:9;30969:7;30965:23;30961:32;30958:119;;;30996:79;;:::i;:::-;30958:119;31116:1;31141:64;31197:7;31188:6;31177:9;31173:22;31141:64;:::i;:::-;31131:74;;31087:128;30871:351;;;;:::o;31228:85::-;31273:7;31302:5;31291:16;;31228:85;;;:::o;31319:158::-;31377:9;31410:61;31428:42;31437:32;31463:5;31437:32;:::i;:::-;31428:42;:::i;:::-;31410:61;:::i;:::-;31397:74;;31319:158;;;:::o;31483:147::-;31578:45;31617:5;31578:45;:::i;:::-;31573:3;31566:58;31483:147;;:::o;31636:114::-;31703:6;31737:5;31731:12;31721:22;;31636:114;;;:::o;31756:184::-;31855:11;31889:6;31884:3;31877:19;31929:4;31924:3;31920:14;31905:29;;31756:184;;;;:::o;31946:132::-;32013:4;32036:3;32028:11;;32066:4;32061:3;32057:14;32049:22;;31946:132;;;:::o;32084:108::-;32161:24;32179:5;32161:24;:::i;:::-;32156:3;32149:37;32084:108;;:::o;32198:179::-;32267:10;32288:46;32330:3;32322:6;32288:46;:::i;:::-;32366:4;32361:3;32357:14;32343:28;;32198:179;;;;:::o;32383:113::-;32453:4;32485;32480:3;32476:14;32468:22;;32383:113;;;:::o;32532:732::-;32651:3;32680:54;32728:5;32680:54;:::i;:::-;32750:86;32829:6;32824:3;32750:86;:::i;:::-;32743:93;;32860:56;32910:5;32860:56;:::i;:::-;32939:7;32970:1;32955:284;32980:6;32977:1;32974:13;32955:284;;;33056:6;33050:13;33083:63;33142:3;33127:13;33083:63;:::i;:::-;33076:70;;33169:60;33222:6;33169:60;:::i;:::-;33159:70;;33015:224;33002:1;32999;32995:9;32990:14;;32955:284;;;32959:14;33255:3;33248:10;;32656:608;;;32532:732;;;;:::o;33270:831::-;33533:4;33571:3;33560:9;33556:19;33548:27;;33585:71;33653:1;33642:9;33638:17;33629:6;33585:71;:::i;:::-;33666:80;33742:2;33731:9;33727:18;33718:6;33666:80;:::i;:::-;33793:9;33787:4;33783:20;33778:2;33767:9;33763:18;33756:48;33821:108;33924:4;33915:6;33821:108;:::i;:::-;33813:116;;33939:72;34007:2;33996:9;33992:18;33983:6;33939:72;:::i;:::-;34021:73;34089:3;34078:9;34074:19;34065:6;34021:73;:::i;:::-;33270:831;;;;;;;;:::o;34107:807::-;34356:4;34394:3;34383:9;34379:19;34371:27;;34408:71;34476:1;34465:9;34461:17;34452:6;34408:71;:::i;:::-;34489:72;34557:2;34546:9;34542:18;34533:6;34489:72;:::i;:::-;34571:80;34647:2;34636:9;34632:18;34623:6;34571:80;:::i;:::-;34661;34737:2;34726:9;34722:18;34713:6;34661:80;:::i;:::-;34751:73;34819:3;34808:9;34804:19;34795:6;34751:73;:::i;:::-;34834;34902:3;34891:9;34887:19;34878:6;34834:73;:::i;:::-;34107:807;;;;;;;;;:::o;34920:143::-;34977:5;35008:6;35002:13;34993:22;;35024:33;35051:5;35024:33;:::i;:::-;34920:143;;;;:::o;35069:663::-;35157:6;35165;35173;35222:2;35210:9;35201:7;35197:23;35193:32;35190:119;;;35228:79;;:::i;:::-;35190:119;35348:1;35373:64;35429:7;35420:6;35409:9;35405:22;35373:64;:::i;:::-;35363:74;;35319:128;35486:2;35512:64;35568:7;35559:6;35548:9;35544:22;35512:64;:::i;:::-;35502:74;;35457:129;35625:2;35651:64;35707:7;35698:6;35687:9;35683:22;35651:64;:::i;:::-;35641:74;;35596:129;35069:663;;;;;:::o

Swarm Source

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