ETH Price: $3,060.18 (+2.31%)
Gas: 5 Gwei

Token

Daruma Inu (DarumaInu)
 

Overview

Max Total Supply

1,000,000,000,000 DarumaInu

Holders

52

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,231,330,358.226583441733000227 DarumaInu

Value
$0.00
0x4fd570403485164a98225bd3798b4c4dfd53aaef
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:
DarumaInu

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/**

// Telegram: https://t.me/DarumaInuERC

//If you use your mind to study reality, you won’t understand either your mind or reality.
If you study reality without using your mind, you’ll understand both.

// Ownership Renounced. 
// Initial Liquidity Lock 30 days!

// Buy/Sell 5/5 tax
// 2% max transaction

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

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

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

Contract Security Audit

Contract ABI

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

60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506001600f60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600a81526020017f446172756d6120496e75000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f446172756d61496e75000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000bb9565b5080600490805190602001906200011b92919062000bb9565b5050506000620001306200068560201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001fb8160016200068d60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200027657600080fd5b505afa1580156200028b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b1919062000cd3565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200031457600080fd5b505afa15801562000329573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034f919062000cd3565b6040518363ffffffff1660e01b81526004016200036e92919062000d16565b602060405180830381600087803b1580156200038957600080fd5b505af11580156200039e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003c4919062000cd3565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200040c60a05160016200068d60201b60201c565b6200042160a05160016200078a60201b60201c565b600060039050600080600290506000600390506000806002905060006c0c9f2c9cd04674edea4000000090506103e86014826200045f919062000d7c565b6200046b919062000e0c565b6008819055506103e860148262000483919062000d7c565b6200048f919062000e0c565b600a81905550612710600582620004a7919062000d7c565b620004b3919062000e0c565b600981905550866011819055508560128190555084601381905550601354601254601154620004e3919062000e44565b620004ef919062000e44565b6010819055508360158190555082601681905550816017819055506017546016546015546200051f919062000e44565b6200052b919062000e44565b601481905550620005416200082b60201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005916200082b60201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005f3620005e56200082b60201b60201c565b60016200085560201b60201c565b620006063060016200085560201b60201c565b6200061b61dead60016200085560201b60201c565b6200063d6200062f6200082b60201b60201c565b60016200068d60201b60201c565b620006503060016200068d60201b60201c565b6200066561dead60016200068d60201b60201c565b620006773382620009a260201b60201c565b5050505050505050620010d5565b600033905090565b6200069d6200068560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146200072f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007269062000f02565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008656200068560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620008f7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008ee9062000f02565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000996919062000f41565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a15576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a0c9062000fae565b60405180910390fd5b62000a296000838362000b5160201b60201c565b62000a458160025462000b5660201b620025b11790919060201c565b60028190555062000aa3816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000b5660201b620025b11790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b45919062000fe1565b60405180910390a35050565b505050565b600080828462000b67919062000e44565b90508381101562000baf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ba6906200104e565b60405180910390fd5b8091505092915050565b82805462000bc7906200109f565b90600052602060002090601f01602090048101928262000beb576000855562000c37565b82601f1062000c0657805160ff191683800117855562000c37565b8280016001018555821562000c37579182015b8281111562000c3657825182559160200191906001019062000c19565b5b50905062000c46919062000c4a565b5090565b5b8082111562000c6557600081600090555060010162000c4b565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c9b8262000c6e565b9050919050565b62000cad8162000c8e565b811462000cb957600080fd5b50565b60008151905062000ccd8162000ca2565b92915050565b60006020828403121562000cec5762000ceb62000c69565b5b600062000cfc8482850162000cbc565b91505092915050565b62000d108162000c8e565b82525050565b600060408201905062000d2d600083018562000d05565b62000d3c602083018462000d05565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d898262000d43565b915062000d968362000d43565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000dd25762000dd162000d4d565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000e198262000d43565b915062000e268362000d43565b92508262000e395762000e3862000ddd565b5b828204905092915050565b600062000e518262000d43565b915062000e5e8362000d43565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e965762000e9562000d4d565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000eea60208362000ea1565b915062000ef78262000eb2565b602082019050919050565b6000602082019050818103600083015262000f1d8162000edb565b9050919050565b60008115159050919050565b62000f3b8162000f24565b82525050565b600060208201905062000f58600083018462000f30565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f96601f8362000ea1565b915062000fa38262000f5e565b602082019050919050565b6000602082019050818103600083015262000fc98162000f87565b9050919050565b62000fdb8162000d43565b82525050565b600060208201905062000ff8600083018462000fd0565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062001036601b8362000ea1565b9150620010438262000ffe565b602082019050919050565b60006020820190508181036000830152620010698162001027565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620010b857607f821691505b60208210811415620010cf57620010ce62001070565b5b50919050565b60805160a051615626620011336000396000818161126501528181611a5b0152612c7d015260008181610d2301528181612c2501528181613d9301528181613e8301528181613eaa01528181613f460152613f6d01526156266000f3fe6080604052600436106103035760003560e01c80639213691311610190578063c17b5b8c116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610ba7578063f2fde38b14610bd2578063f637434214610bfb578063f8b45b0514610c265761030a565b8063dd62ed3e14610b14578063e2f4560514610b51578063e884f26014610b7c5761030a565b8063c17b5b8c14610a04578063c18bc19514610a2d578063c876d0b914610a56578063c8c8ebe414610a81578063d257b34f14610aac578063d85ba06314610ae95761030a565b8063a0d82dc511610149578063aacebbe311610123578063aacebbe31461094a578063b62496f514610973578063bbc0c742146109b0578063c0246668146109db5761030a565b8063a0d82dc5146108a5578063a457c2d7146108d0578063a9059cbb1461090d5761030a565b806392136913146107a7578063924de9b7146107d257806395d89b41146107fb5780639a7a23d6146108265780639c3b4fdc1461084f5780639fccce321461087a5761030a565b806349bd5a5e1161024f578063715018a6116102085780637bce5a04116101e25780637bce5a04146107115780638095d5641461073c5780638a8c523c146107655780638da5cb5b1461077c5761030a565b8063715018a6146106a6578063751039fc146106bd5780637571336a146106e85761030a565b806349bd5a5e146105805780634a62bb65146105ab5780634fbee193146105d65780636a486a8e146106135780636ddd17131461063e57806370a08231146106695761030a565b80631a8145bb116102bc57806323b872dd1161029657806323b872dd146104b25780632d5a5d34146104ef578063313ce5671461051857806339509351146105435761030a565b80631a8145bb146104335780631f3fed8f1461045e578063203e727e146104895761030a565b806306fdde031461030f578063095ea7b31461033a57806310d5de53146103775780631694505e146103b457806318160ddd146103df5780631816467f1461040a5761030a565b3661030a57005b600080fd5b34801561031b57600080fd5b50610324610c51565b6040516103319190614125565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c91906141e0565b610ce3565b60405161036e919061423b565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190614256565b610d01565b6040516103ab919061423b565b60405180910390f35b3480156103c057600080fd5b506103c9610d21565b6040516103d691906142e2565b60405180910390f35b3480156103eb57600080fd5b506103f4610d45565b604051610401919061430c565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c9190614256565b610d4f565b005b34801561043f57600080fd5b50610448610ea6565b604051610455919061430c565b60405180910390f35b34801561046a57600080fd5b50610473610eac565b604051610480919061430c565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190614327565b610eb2565b005b3480156104be57600080fd5b506104d960048036038101906104d49190614354565b610fdc565b6040516104e6919061423b565b60405180910390f35b3480156104fb57600080fd5b50610516600480360381019061051191906143d3565b6110b5565b005b34801561052457600080fd5b5061052d6111a7565b60405161053a919061442f565b60405180910390f35b34801561054f57600080fd5b5061056a600480360381019061056591906141e0565b6111b0565b604051610577919061423b565b60405180910390f35b34801561058c57600080fd5b50610595611263565b6040516105a29190614459565b60405180910390f35b3480156105b757600080fd5b506105c0611287565b6040516105cd919061423b565b60405180910390f35b3480156105e257600080fd5b506105fd60048036038101906105f89190614256565b61129a565b60405161060a919061423b565b60405180910390f35b34801561061f57600080fd5b506106286112f0565b604051610635919061430c565b60405180910390f35b34801561064a57600080fd5b506106536112f6565b604051610660919061423b565b60405180910390f35b34801561067557600080fd5b50610690600480360381019061068b9190614256565b611309565b60405161069d919061430c565b60405180910390f35b3480156106b257600080fd5b506106bb611351565b005b3480156106c957600080fd5b506106d26114a9565b6040516106df919061423b565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a91906143d3565b611564565b005b34801561071d57600080fd5b50610726611656565b604051610733919061430c565b60405180910390f35b34801561074857600080fd5b50610763600480360381019061075e9190614474565b61165c565b005b34801561077157600080fd5b5061077a611776565b005b34801561078857600080fd5b5061079161184c565b60405161079e9190614459565b60405180910390f35b3480156107b357600080fd5b506107bc611876565b6040516107c9919061430c565b60405180910390f35b3480156107de57600080fd5b506107f960048036038101906107f491906144c7565b61187c565b005b34801561080757600080fd5b50610810611930565b60405161081d9190614125565b60405180910390f35b34801561083257600080fd5b5061084d600480360381019061084891906143d3565b6119c2565b005b34801561085b57600080fd5b50610864611af6565b604051610871919061430c565b60405180910390f35b34801561088657600080fd5b5061088f611afc565b60405161089c919061430c565b60405180910390f35b3480156108b157600080fd5b506108ba611b02565b6040516108c7919061430c565b60405180910390f35b3480156108dc57600080fd5b506108f760048036038101906108f291906141e0565b611b08565b604051610904919061423b565b60405180910390f35b34801561091957600080fd5b50610934600480360381019061092f91906141e0565b611bd5565b604051610941919061423b565b60405180910390f35b34801561095657600080fd5b50610971600480360381019061096c9190614256565b611bf3565b005b34801561097f57600080fd5b5061099a60048036038101906109959190614256565b611d4a565b6040516109a7919061423b565b60405180910390f35b3480156109bc57600080fd5b506109c5611d6a565b6040516109d2919061423b565b60405180910390f35b3480156109e757600080fd5b50610a0260048036038101906109fd91906143d3565b611d7d565b005b348015610a1057600080fd5b50610a2b6004803603810190610a269190614474565b611ebd565b005b348015610a3957600080fd5b50610a546004803603810190610a4f9190614327565b611fd7565b005b348015610a6257600080fd5b50610a6b612101565b604051610a78919061423b565b60405180910390f35b348015610a8d57600080fd5b50610a96612114565b604051610aa3919061430c565b60405180910390f35b348015610ab857600080fd5b50610ad36004803603810190610ace9190614327565b61211a565b604051610ae0919061423b565b60405180910390f35b348015610af557600080fd5b50610afe61228a565b604051610b0b919061430c565b60405180910390f35b348015610b2057600080fd5b50610b3b6004803603810190610b3691906144f4565b612290565b604051610b48919061430c565b60405180910390f35b348015610b5d57600080fd5b50610b66612317565b604051610b73919061430c565b60405180910390f35b348015610b8857600080fd5b50610b9161231d565b604051610b9e919061423b565b60405180910390f35b348015610bb357600080fd5b50610bbc6123d8565b604051610bc9919061430c565b60405180910390f35b348015610bde57600080fd5b50610bf96004803603810190610bf49190614256565b6123de565b005b348015610c0757600080fd5b50610c106125a5565b604051610c1d919061430c565b60405180910390f35b348015610c3257600080fd5b50610c3b6125ab565b604051610c48919061430c565b60405180910390f35b606060038054610c6090614563565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8c90614563565b8015610cd95780601f10610cae57610100808354040283529160200191610cd9565b820191906000526020600020905b815481529060010190602001808311610cbc57829003601f168201915b5050505050905090565b6000610cf7610cf061260f565b8484612617565b6001905092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610d5761260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd906145e1565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b610eba61260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f40906145e1565b60405180910390fd5b670de0b6b3a76400006103e86001610f5f610d45565b610f699190614630565b610f7391906146b9565b610f7d91906146b9565b811015610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb69061475c565b60405180910390fd5b670de0b6b3a764000081610fd39190614630565b60088190555050565b6000610fe98484846127e2565b6110aa84610ff561260f565b6110a5856040518060600160405280602881526020016155a460289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061105b61260f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461355f9092919063ffffffff16565b612617565b600190509392505050565b6110bd61260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461114c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611143906145e1565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006012905090565b60006112596111bd61260f565b8461125485600160006111ce61260f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125b190919063ffffffff16565b612617565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61135961260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113df906145e1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006114b361260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611542576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611539906145e1565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61156c61260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f2906145e1565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60115481565b61166461260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ea906145e1565b60405180910390fd5b82601381905550816012819055508060118190555060115460125460135461171b919061477c565b611725919061477c565b60108190555060066010541115611771576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117689061481e565b60405180910390fd5b505050565b61177e61260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461180d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611804906145e1565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601b81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60155481565b61188461260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190a906145e1565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461193f90614563565b80601f016020809104026020016040519081016040528092919081815260200182805461196b90614563565b80156119b85780601f1061198d576101008083540402835291602001916119b8565b820191906000526020600020905b81548152906001019060200180831161199b57829003601f168201915b5050505050905090565b6119ca61260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a50906145e1565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adf906148b0565b60405180910390fd5b611af282826135c3565b5050565b60135481565b601a5481565b60175481565b6000611bcb611b1561260f565b84611bc6856040518060600160405280602581526020016155cc6025913960016000611b3f61260f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461355f9092919063ffffffff16565b612617565b6001905092915050565b6000611be9611be261260f565b84846127e2565b6001905092915050565b611bfb61260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c81906145e1565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611d8561260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0b906145e1565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611eb1919061423b565b60405180910390a25050565b611ec561260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4b906145e1565b60405180910390fd5b826017819055508160168190555080601581905550601554601654601754611f7c919061477c565b611f86919061477c565b60148190555060076014541115611fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc99061491c565b60405180910390fd5b505050565b611fdf61260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461206e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612065906145e1565b60405180910390fd5b670de0b6b3a76400006103e86005612084610d45565b61208e9190614630565b61209891906146b9565b6120a291906146b9565b8110156120e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120db906149ae565b60405180910390fd5b670de0b6b3a7640000816120f89190614630565b600a8190555050565b600f60009054906101000a900460ff1681565b60085481565b600061212461260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121aa906145e1565b60405180910390fd5b620186a060016121c1610d45565b6121cb9190614630565b6121d591906146b9565b821015612217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220e90614a40565b60405180910390fd5b6103e86005612224610d45565b61222e9190614630565b61223891906146b9565b82111561227a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227190614ad2565b60405180910390fd5b8160098190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061232761260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ad906145e1565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b6123e661260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246c906145e1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124dc90614b64565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600a5481565b60008082846125c0919061477c565b905083811015612605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fc90614bd0565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267e90614c62565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ee90614cf4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516127d5919061430c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612852576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284990614d86565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b990614e18565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156129665750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6129a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299c90614eaa565b60405180910390fd5b60008114156129bf576129ba83836000613664565b61355a565b600b60009054906101000a900460ff1615613082576129dc61184c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a4a5750612a1a61184c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a835750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612abd575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ad65750600560149054906101000a900460ff16155b1561308157600b60019054906101000a900460ff16612bd057601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b905750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc690614f16565b60405180910390fd5b5b600f60009054906101000a900460ff1615612d9857612bed61184c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612c7457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ccc57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612d975743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4990614fce565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e3b5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ee257600854811115612e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7c90615060565b60405180910390fd5b600a54612e9183611309565b82612e9c919061477c565b1115612edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed4906150cc565b60405180910390fd5b613080565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f855750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612fd457600854811115612fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc69061515e565b60405180910390fd5b61307f565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661307e57600a5461303183611309565b8261303c919061477c565b111561307d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613074906150cc565b60405180910390fd5b5b5b5b5b5b600061308d30611309565b9050600060095482101590508080156130b25750600b60029054906101000a900460ff165b80156130cb5750600560149054906101000a900460ff16155b80156131215750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131775750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131cd5750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613211576001600560146101000a81548160ff0219169083151502179055506131f56138f9565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806132c75750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156132d157600090505b6000811561354a57601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561333457506000601454115b1561340157613361606461335360145488613be090919063ffffffff16565b613c5b90919063ffffffff16565b9050601454601654826133749190614630565b61337e91906146b9565b6019600082825461338f919061477c565b92505081905550601454601754826133a79190614630565b6133b191906146b9565b601a60008282546133c2919061477c565b92505081905550601454601554826133da9190614630565b6133e491906146b9565b601860008282546133f5919061477c565b92505081905550613526565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561345c57506000601054115b1561352557613489606461347b60105488613be090919063ffffffff16565b613c5b90919063ffffffff16565b90506010546012548261349c9190614630565b6134a691906146b9565b601960008282546134b7919061477c565b92505081905550601054601354826134cf9190614630565b6134d991906146b9565b601a60008282546134ea919061477c565b92505081905550601054601154826135029190614630565b61350c91906146b9565b6018600082825461351d919061477c565b925050819055505b5b600081111561353b5761353a873083613664565b5b8085613547919061517e565b94505b613555878787613664565b505050505b505050565b60008383111582906135a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161359e9190614125565b60405180910390fd5b50600083856135b6919061517e565b9050809150509392505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156136d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136cb90614d86565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161373b90614e18565b60405180910390fd5b61374f838383613ca5565b6137ba8160405180606001604052806026815260200161557e602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461355f9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061384d816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125b190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516138ec919061430c565b60405180910390a3505050565b600061390430611309565b90506000601a5460185460195461391b919061477c565b613925919061477c565b90506000808314806139375750600082145b1561394457505050613bde565b60146009546139539190614630565b83111561396c5760146009546139699190614630565b92505b60006002836019548661397f9190614630565b61398991906146b9565b61399391906146b9565b905060006139aa8286613caa90919063ffffffff16565b905060004790506139ba82613cf4565b60006139cf8247613caa90919063ffffffff16565b905060006139fa876139ec60185485613be090919063ffffffff16565b613c5b90919063ffffffff16565b90506000613a2588613a17601a5486613be090919063ffffffff16565b613c5b90919063ffffffff16565b90506000818385613a36919061517e565b613a40919061517e565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613aa0906151e3565b60006040518083038185875af1925050503d8060008114613add576040519150601f19603f3d011682016040523d82523d6000602084013e613ae2565b606091505b505080985050600087118015613af85750600081115b15613b4557613b078782613f40565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601954604051613b3c939291906151f8565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613b8b906151e3565b60006040518083038185875af1925050503d8060008114613bc8576040519150601f19603f3d011682016040523d82523d6000602084013e613bcd565b606091505b505080985050505050505050505050505b565b600080831415613bf35760009050613c55565b60008284613c019190614630565b9050828482613c1091906146b9565b14613c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c47906152a1565b60405180910390fd5b809150505b92915050565b6000613c9d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614029565b905092915050565b505050565b6000613cec83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061355f565b905092915050565b6000600267ffffffffffffffff811115613d1157613d106152c1565b5b604051908082528060200260200182016040528015613d3f5781602001602082028036833780820191505090505b5090503081600081518110613d5757613d566152f0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613df757600080fd5b505afa158015613e0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e2f9190615334565b81600181518110613e4357613e426152f0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613ea8307f000000000000000000000000000000000000000000000000000000000000000084612617565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613f0a95949392919061545a565b600060405180830381600087803b158015613f2457600080fd5b505af1158015613f38573d6000803e3d6000fd5b505050505050565b613f6b307f000000000000000000000000000000000000000000000000000000000000000084612617565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401613fd0969594939291906154b4565b6060604051808303818588803b158015613fe957600080fd5b505af1158015613ffd573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190614022919061552a565b5050505050565b60008083118290614070576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016140679190614125565b60405180910390fd5b506000838561407f91906146b9565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156140c65780820151818401526020810190506140ab565b838111156140d5576000848401525b50505050565b6000601f19601f8301169050919050565b60006140f78261408c565b6141018185614097565b93506141118185602086016140a8565b61411a816140db565b840191505092915050565b6000602082019050818103600083015261413f81846140ec565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006141778261414c565b9050919050565b6141878161416c565b811461419257600080fd5b50565b6000813590506141a48161417e565b92915050565b6000819050919050565b6141bd816141aa565b81146141c857600080fd5b50565b6000813590506141da816141b4565b92915050565b600080604083850312156141f7576141f6614147565b5b600061420585828601614195565b9250506020614216858286016141cb565b9150509250929050565b60008115159050919050565b61423581614220565b82525050565b6000602082019050614250600083018461422c565b92915050565b60006020828403121561426c5761426b614147565b5b600061427a84828501614195565b91505092915050565b6000819050919050565b60006142a86142a361429e8461414c565b614283565b61414c565b9050919050565b60006142ba8261428d565b9050919050565b60006142cc826142af565b9050919050565b6142dc816142c1565b82525050565b60006020820190506142f760008301846142d3565b92915050565b614306816141aa565b82525050565b600060208201905061432160008301846142fd565b92915050565b60006020828403121561433d5761433c614147565b5b600061434b848285016141cb565b91505092915050565b60008060006060848603121561436d5761436c614147565b5b600061437b86828701614195565b935050602061438c86828701614195565b925050604061439d868287016141cb565b9150509250925092565b6143b081614220565b81146143bb57600080fd5b50565b6000813590506143cd816143a7565b92915050565b600080604083850312156143ea576143e9614147565b5b60006143f885828601614195565b9250506020614409858286016143be565b9150509250929050565b600060ff82169050919050565b61442981614413565b82525050565b60006020820190506144446000830184614420565b92915050565b6144538161416c565b82525050565b600060208201905061446e600083018461444a565b92915050565b60008060006060848603121561448d5761448c614147565b5b600061449b868287016141cb565b93505060206144ac868287016141cb565b92505060406144bd868287016141cb565b9150509250925092565b6000602082840312156144dd576144dc614147565b5b60006144eb848285016143be565b91505092915050565b6000806040838503121561450b5761450a614147565b5b600061451985828601614195565b925050602061452a85828601614195565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061457b57607f821691505b6020821081141561458f5761458e614534565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006145cb602083614097565b91506145d682614595565b602082019050919050565b600060208201905081810360008301526145fa816145be565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061463b826141aa565b9150614646836141aa565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561467f5761467e614601565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006146c4826141aa565b91506146cf836141aa565b9250826146df576146de61468a565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614746602f83614097565b9150614751826146ea565b604082019050919050565b6000602082019050818103600083015261477581614739565b9050919050565b6000614787826141aa565b9150614792836141aa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147c7576147c6614601565b5b828201905092915050565b7f4d757374206b6565702066656573206174203625206f72206c65737300000000600082015250565b6000614808601c83614097565b9150614813826147d2565b602082019050919050565b60006020820190508181036000830152614837816147fb565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061489a603983614097565b91506148a58261483e565b604082019050919050565b600060208201905081810360008301526148c98161488d565b9050919050565b7f4d757374206b6565702066656573206174203725206f72206c65737300000000600082015250565b6000614906601c83614097565b9150614911826148d0565b602082019050919050565b60006020820190508181036000830152614935816148f9565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614998602483614097565b91506149a38261493c565b604082019050919050565b600060208201905081810360008301526149c78161498b565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614a2a603583614097565b9150614a35826149ce565b604082019050919050565b60006020820190508181036000830152614a5981614a1d565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614abc603483614097565b9150614ac782614a60565b604082019050919050565b60006020820190508181036000830152614aeb81614aaf565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614b4e602683614097565b9150614b5982614af2565b604082019050919050565b60006020820190508181036000830152614b7d81614b41565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614bba601b83614097565b9150614bc582614b84565b602082019050919050565b60006020820190508181036000830152614be981614bad565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614c4c602483614097565b9150614c5782614bf0565b604082019050919050565b60006020820190508181036000830152614c7b81614c3f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614cde602283614097565b9150614ce982614c82565b604082019050919050565b60006020820190508181036000830152614d0d81614cd1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614d70602583614097565b9150614d7b82614d14565b604082019050919050565b60006020820190508181036000830152614d9f81614d63565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614e02602383614097565b9150614e0d82614da6565b604082019050919050565b60006020820190508181036000830152614e3181614df5565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460008201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b6000614e94603183614097565b9150614e9f82614e38565b604082019050919050565b60006020820190508181036000830152614ec381614e87565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614f00601683614097565b9150614f0b82614eca565b602082019050919050565b60006020820190508181036000830152614f2f81614ef3565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614fb8604983614097565b9150614fc382614f36565b606082019050919050565b60006020820190508181036000830152614fe781614fab565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061504a603583614097565b915061505582614fee565b604082019050919050565b600060208201905081810360008301526150798161503d565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006150b6601383614097565b91506150c182615080565b602082019050919050565b600060208201905081810360008301526150e5816150a9565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615148603683614097565b9150615153826150ec565b604082019050919050565b600060208201905081810360008301526151778161513b565b9050919050565b6000615189826141aa565b9150615194836141aa565b9250828210156151a7576151a6614601565b5b828203905092915050565b600081905092915050565b50565b60006151cd6000836151b2565b91506151d8826151bd565b600082019050919050565b60006151ee826151c0565b9150819050919050565b600060608201905061520d60008301866142fd565b61521a60208301856142fd565b61522760408301846142fd565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b600061528b602183614097565b91506152968261522f565b604082019050919050565b600060208201905081810360008301526152ba8161527e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061532e8161417e565b92915050565b60006020828403121561534a57615349614147565b5b60006153588482850161531f565b91505092915050565b6000819050919050565b600061538661538161537c84615361565b614283565b6141aa565b9050919050565b6153968161536b565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6153d18161416c565b82525050565b60006153e383836153c8565b60208301905092915050565b6000602082019050919050565b60006154078261539c565b61541181856153a7565b935061541c836153b8565b8060005b8381101561544d57815161543488826153d7565b975061543f836153ef565b925050600181019050615420565b5085935050505092915050565b600060a08201905061546f60008301886142fd565b61547c602083018761538d565b818103604083015261548e81866153fc565b905061549d606083018561444a565b6154aa60808301846142fd565b9695505050505050565b600060c0820190506154c9600083018961444a565b6154d660208301886142fd565b6154e3604083018761538d565b6154f0606083018661538d565b6154fd608083018561444a565b61550a60a08301846142fd565b979650505050505050565b600081519050615524816141b4565b92915050565b60008060006060848603121561554357615542614147565b5b600061555186828701615515565b935050602061556286828701615515565b925050604061557386828701615515565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212203802568f6eac2e46f3c1c6344b7ca4016af008ed90a447ff454f48abb428dbbe64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106103035760003560e01c80639213691311610190578063c17b5b8c116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610ba7578063f2fde38b14610bd2578063f637434214610bfb578063f8b45b0514610c265761030a565b8063dd62ed3e14610b14578063e2f4560514610b51578063e884f26014610b7c5761030a565b8063c17b5b8c14610a04578063c18bc19514610a2d578063c876d0b914610a56578063c8c8ebe414610a81578063d257b34f14610aac578063d85ba06314610ae95761030a565b8063a0d82dc511610149578063aacebbe311610123578063aacebbe31461094a578063b62496f514610973578063bbc0c742146109b0578063c0246668146109db5761030a565b8063a0d82dc5146108a5578063a457c2d7146108d0578063a9059cbb1461090d5761030a565b806392136913146107a7578063924de9b7146107d257806395d89b41146107fb5780639a7a23d6146108265780639c3b4fdc1461084f5780639fccce321461087a5761030a565b806349bd5a5e1161024f578063715018a6116102085780637bce5a04116101e25780637bce5a04146107115780638095d5641461073c5780638a8c523c146107655780638da5cb5b1461077c5761030a565b8063715018a6146106a6578063751039fc146106bd5780637571336a146106e85761030a565b806349bd5a5e146105805780634a62bb65146105ab5780634fbee193146105d65780636a486a8e146106135780636ddd17131461063e57806370a08231146106695761030a565b80631a8145bb116102bc57806323b872dd1161029657806323b872dd146104b25780632d5a5d34146104ef578063313ce5671461051857806339509351146105435761030a565b80631a8145bb146104335780631f3fed8f1461045e578063203e727e146104895761030a565b806306fdde031461030f578063095ea7b31461033a57806310d5de53146103775780631694505e146103b457806318160ddd146103df5780631816467f1461040a5761030a565b3661030a57005b600080fd5b34801561031b57600080fd5b50610324610c51565b6040516103319190614125565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c91906141e0565b610ce3565b60405161036e919061423b565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190614256565b610d01565b6040516103ab919061423b565b60405180910390f35b3480156103c057600080fd5b506103c9610d21565b6040516103d691906142e2565b60405180910390f35b3480156103eb57600080fd5b506103f4610d45565b604051610401919061430c565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c9190614256565b610d4f565b005b34801561043f57600080fd5b50610448610ea6565b604051610455919061430c565b60405180910390f35b34801561046a57600080fd5b50610473610eac565b604051610480919061430c565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190614327565b610eb2565b005b3480156104be57600080fd5b506104d960048036038101906104d49190614354565b610fdc565b6040516104e6919061423b565b60405180910390f35b3480156104fb57600080fd5b50610516600480360381019061051191906143d3565b6110b5565b005b34801561052457600080fd5b5061052d6111a7565b60405161053a919061442f565b60405180910390f35b34801561054f57600080fd5b5061056a600480360381019061056591906141e0565b6111b0565b604051610577919061423b565b60405180910390f35b34801561058c57600080fd5b50610595611263565b6040516105a29190614459565b60405180910390f35b3480156105b757600080fd5b506105c0611287565b6040516105cd919061423b565b60405180910390f35b3480156105e257600080fd5b506105fd60048036038101906105f89190614256565b61129a565b60405161060a919061423b565b60405180910390f35b34801561061f57600080fd5b506106286112f0565b604051610635919061430c565b60405180910390f35b34801561064a57600080fd5b506106536112f6565b604051610660919061423b565b60405180910390f35b34801561067557600080fd5b50610690600480360381019061068b9190614256565b611309565b60405161069d919061430c565b60405180910390f35b3480156106b257600080fd5b506106bb611351565b005b3480156106c957600080fd5b506106d26114a9565b6040516106df919061423b565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a91906143d3565b611564565b005b34801561071d57600080fd5b50610726611656565b604051610733919061430c565b60405180910390f35b34801561074857600080fd5b50610763600480360381019061075e9190614474565b61165c565b005b34801561077157600080fd5b5061077a611776565b005b34801561078857600080fd5b5061079161184c565b60405161079e9190614459565b60405180910390f35b3480156107b357600080fd5b506107bc611876565b6040516107c9919061430c565b60405180910390f35b3480156107de57600080fd5b506107f960048036038101906107f491906144c7565b61187c565b005b34801561080757600080fd5b50610810611930565b60405161081d9190614125565b60405180910390f35b34801561083257600080fd5b5061084d600480360381019061084891906143d3565b6119c2565b005b34801561085b57600080fd5b50610864611af6565b604051610871919061430c565b60405180910390f35b34801561088657600080fd5b5061088f611afc565b60405161089c919061430c565b60405180910390f35b3480156108b157600080fd5b506108ba611b02565b6040516108c7919061430c565b60405180910390f35b3480156108dc57600080fd5b506108f760048036038101906108f291906141e0565b611b08565b604051610904919061423b565b60405180910390f35b34801561091957600080fd5b50610934600480360381019061092f91906141e0565b611bd5565b604051610941919061423b565b60405180910390f35b34801561095657600080fd5b50610971600480360381019061096c9190614256565b611bf3565b005b34801561097f57600080fd5b5061099a60048036038101906109959190614256565b611d4a565b6040516109a7919061423b565b60405180910390f35b3480156109bc57600080fd5b506109c5611d6a565b6040516109d2919061423b565b60405180910390f35b3480156109e757600080fd5b50610a0260048036038101906109fd91906143d3565b611d7d565b005b348015610a1057600080fd5b50610a2b6004803603810190610a269190614474565b611ebd565b005b348015610a3957600080fd5b50610a546004803603810190610a4f9190614327565b611fd7565b005b348015610a6257600080fd5b50610a6b612101565b604051610a78919061423b565b60405180910390f35b348015610a8d57600080fd5b50610a96612114565b604051610aa3919061430c565b60405180910390f35b348015610ab857600080fd5b50610ad36004803603810190610ace9190614327565b61211a565b604051610ae0919061423b565b60405180910390f35b348015610af557600080fd5b50610afe61228a565b604051610b0b919061430c565b60405180910390f35b348015610b2057600080fd5b50610b3b6004803603810190610b3691906144f4565b612290565b604051610b48919061430c565b60405180910390f35b348015610b5d57600080fd5b50610b66612317565b604051610b73919061430c565b60405180910390f35b348015610b8857600080fd5b50610b9161231d565b604051610b9e919061423b565b60405180910390f35b348015610bb357600080fd5b50610bbc6123d8565b604051610bc9919061430c565b60405180910390f35b348015610bde57600080fd5b50610bf96004803603810190610bf49190614256565b6123de565b005b348015610c0757600080fd5b50610c106125a5565b604051610c1d919061430c565b60405180910390f35b348015610c3257600080fd5b50610c3b6125ab565b604051610c48919061430c565b60405180910390f35b606060038054610c6090614563565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8c90614563565b8015610cd95780601f10610cae57610100808354040283529160200191610cd9565b820191906000526020600020905b815481529060010190602001808311610cbc57829003601f168201915b5050505050905090565b6000610cf7610cf061260f565b8484612617565b6001905092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610d5761260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd906145e1565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b610eba61260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f40906145e1565b60405180910390fd5b670de0b6b3a76400006103e86001610f5f610d45565b610f699190614630565b610f7391906146b9565b610f7d91906146b9565b811015610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb69061475c565b60405180910390fd5b670de0b6b3a764000081610fd39190614630565b60088190555050565b6000610fe98484846127e2565b6110aa84610ff561260f565b6110a5856040518060600160405280602881526020016155a460289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061105b61260f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461355f9092919063ffffffff16565b612617565b600190509392505050565b6110bd61260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461114c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611143906145e1565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006012905090565b60006112596111bd61260f565b8461125485600160006111ce61260f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125b190919063ffffffff16565b612617565b6001905092915050565b7f0000000000000000000000001818ab8bb409c4a6e68d9bede6f4e04cbac4cf8981565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61135961260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113df906145e1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006114b361260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611542576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611539906145e1565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61156c61260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f2906145e1565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60115481565b61166461260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ea906145e1565b60405180910390fd5b82601381905550816012819055508060118190555060115460125460135461171b919061477c565b611725919061477c565b60108190555060066010541115611771576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117689061481e565b60405180910390fd5b505050565b61177e61260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461180d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611804906145e1565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601b81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60155481565b61188461260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190a906145e1565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461193f90614563565b80601f016020809104026020016040519081016040528092919081815260200182805461196b90614563565b80156119b85780601f1061198d576101008083540402835291602001916119b8565b820191906000526020600020905b81548152906001019060200180831161199b57829003601f168201915b5050505050905090565b6119ca61260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a50906145e1565b60405180910390fd5b7f0000000000000000000000001818ab8bb409c4a6e68d9bede6f4e04cbac4cf8973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adf906148b0565b60405180910390fd5b611af282826135c3565b5050565b60135481565b601a5481565b60175481565b6000611bcb611b1561260f565b84611bc6856040518060600160405280602581526020016155cc6025913960016000611b3f61260f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461355f9092919063ffffffff16565b612617565b6001905092915050565b6000611be9611be261260f565b84846127e2565b6001905092915050565b611bfb61260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c81906145e1565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611d8561260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0b906145e1565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611eb1919061423b565b60405180910390a25050565b611ec561260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4b906145e1565b60405180910390fd5b826017819055508160168190555080601581905550601554601654601754611f7c919061477c565b611f86919061477c565b60148190555060076014541115611fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc99061491c565b60405180910390fd5b505050565b611fdf61260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461206e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612065906145e1565b60405180910390fd5b670de0b6b3a76400006103e86005612084610d45565b61208e9190614630565b61209891906146b9565b6120a291906146b9565b8110156120e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120db906149ae565b60405180910390fd5b670de0b6b3a7640000816120f89190614630565b600a8190555050565b600f60009054906101000a900460ff1681565b60085481565b600061212461260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121aa906145e1565b60405180910390fd5b620186a060016121c1610d45565b6121cb9190614630565b6121d591906146b9565b821015612217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220e90614a40565b60405180910390fd5b6103e86005612224610d45565b61222e9190614630565b61223891906146b9565b82111561227a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227190614ad2565b60405180910390fd5b8160098190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061232761260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ad906145e1565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b6123e661260f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246c906145e1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124dc90614b64565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600a5481565b60008082846125c0919061477c565b905083811015612605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fc90614bd0565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267e90614c62565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ee90614cf4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516127d5919061430c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612852576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284990614d86565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b990614e18565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156129665750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6129a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299c90614eaa565b60405180910390fd5b60008114156129bf576129ba83836000613664565b61355a565b600b60009054906101000a900460ff1615613082576129dc61184c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a4a5750612a1a61184c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a835750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612abd575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ad65750600560149054906101000a900460ff16155b1561308157600b60019054906101000a900460ff16612bd057601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b905750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc690614f16565b60405180910390fd5b5b600f60009054906101000a900460ff1615612d9857612bed61184c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612c7457507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ccc57507f0000000000000000000000001818ab8bb409c4a6e68d9bede6f4e04cbac4cf8973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612d975743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4990614fce565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e3b5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ee257600854811115612e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7c90615060565b60405180910390fd5b600a54612e9183611309565b82612e9c919061477c565b1115612edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed4906150cc565b60405180910390fd5b613080565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f855750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612fd457600854811115612fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc69061515e565b60405180910390fd5b61307f565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661307e57600a5461303183611309565b8261303c919061477c565b111561307d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613074906150cc565b60405180910390fd5b5b5b5b5b5b600061308d30611309565b9050600060095482101590508080156130b25750600b60029054906101000a900460ff165b80156130cb5750600560149054906101000a900460ff16155b80156131215750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131775750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131cd5750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613211576001600560146101000a81548160ff0219169083151502179055506131f56138f9565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806132c75750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156132d157600090505b6000811561354a57601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561333457506000601454115b1561340157613361606461335360145488613be090919063ffffffff16565b613c5b90919063ffffffff16565b9050601454601654826133749190614630565b61337e91906146b9565b6019600082825461338f919061477c565b92505081905550601454601754826133a79190614630565b6133b191906146b9565b601a60008282546133c2919061477c565b92505081905550601454601554826133da9190614630565b6133e491906146b9565b601860008282546133f5919061477c565b92505081905550613526565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561345c57506000601054115b1561352557613489606461347b60105488613be090919063ffffffff16565b613c5b90919063ffffffff16565b90506010546012548261349c9190614630565b6134a691906146b9565b601960008282546134b7919061477c565b92505081905550601054601354826134cf9190614630565b6134d991906146b9565b601a60008282546134ea919061477c565b92505081905550601054601154826135029190614630565b61350c91906146b9565b6018600082825461351d919061477c565b925050819055505b5b600081111561353b5761353a873083613664565b5b8085613547919061517e565b94505b613555878787613664565b505050505b505050565b60008383111582906135a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161359e9190614125565b60405180910390fd5b50600083856135b6919061517e565b9050809150509392505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156136d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136cb90614d86565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161373b90614e18565b60405180910390fd5b61374f838383613ca5565b6137ba8160405180606001604052806026815260200161557e602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461355f9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061384d816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125b190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516138ec919061430c565b60405180910390a3505050565b600061390430611309565b90506000601a5460185460195461391b919061477c565b613925919061477c565b90506000808314806139375750600082145b1561394457505050613bde565b60146009546139539190614630565b83111561396c5760146009546139699190614630565b92505b60006002836019548661397f9190614630565b61398991906146b9565b61399391906146b9565b905060006139aa8286613caa90919063ffffffff16565b905060004790506139ba82613cf4565b60006139cf8247613caa90919063ffffffff16565b905060006139fa876139ec60185485613be090919063ffffffff16565b613c5b90919063ffffffff16565b90506000613a2588613a17601a5486613be090919063ffffffff16565b613c5b90919063ffffffff16565b90506000818385613a36919061517e565b613a40919061517e565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613aa0906151e3565b60006040518083038185875af1925050503d8060008114613add576040519150601f19603f3d011682016040523d82523d6000602084013e613ae2565b606091505b505080985050600087118015613af85750600081115b15613b4557613b078782613f40565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601954604051613b3c939291906151f8565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613b8b906151e3565b60006040518083038185875af1925050503d8060008114613bc8576040519150601f19603f3d011682016040523d82523d6000602084013e613bcd565b606091505b505080985050505050505050505050505b565b600080831415613bf35760009050613c55565b60008284613c019190614630565b9050828482613c1091906146b9565b14613c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c47906152a1565b60405180910390fd5b809150505b92915050565b6000613c9d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614029565b905092915050565b505050565b6000613cec83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061355f565b905092915050565b6000600267ffffffffffffffff811115613d1157613d106152c1565b5b604051908082528060200260200182016040528015613d3f5781602001602082028036833780820191505090505b5090503081600081518110613d5757613d566152f0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613df757600080fd5b505afa158015613e0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e2f9190615334565b81600181518110613e4357613e426152f0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613ea8307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612617565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613f0a95949392919061545a565b600060405180830381600087803b158015613f2457600080fd5b505af1158015613f38573d6000803e3d6000fd5b505050505050565b613f6b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612617565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401613fd0969594939291906154b4565b6060604051808303818588803b158015613fe957600080fd5b505af1158015613ffd573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190614022919061552a565b5050505050565b60008083118290614070576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016140679190614125565b60405180910390fd5b506000838561407f91906146b9565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156140c65780820151818401526020810190506140ab565b838111156140d5576000848401525b50505050565b6000601f19601f8301169050919050565b60006140f78261408c565b6141018185614097565b93506141118185602086016140a8565b61411a816140db565b840191505092915050565b6000602082019050818103600083015261413f81846140ec565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006141778261414c565b9050919050565b6141878161416c565b811461419257600080fd5b50565b6000813590506141a48161417e565b92915050565b6000819050919050565b6141bd816141aa565b81146141c857600080fd5b50565b6000813590506141da816141b4565b92915050565b600080604083850312156141f7576141f6614147565b5b600061420585828601614195565b9250506020614216858286016141cb565b9150509250929050565b60008115159050919050565b61423581614220565b82525050565b6000602082019050614250600083018461422c565b92915050565b60006020828403121561426c5761426b614147565b5b600061427a84828501614195565b91505092915050565b6000819050919050565b60006142a86142a361429e8461414c565b614283565b61414c565b9050919050565b60006142ba8261428d565b9050919050565b60006142cc826142af565b9050919050565b6142dc816142c1565b82525050565b60006020820190506142f760008301846142d3565b92915050565b614306816141aa565b82525050565b600060208201905061432160008301846142fd565b92915050565b60006020828403121561433d5761433c614147565b5b600061434b848285016141cb565b91505092915050565b60008060006060848603121561436d5761436c614147565b5b600061437b86828701614195565b935050602061438c86828701614195565b925050604061439d868287016141cb565b9150509250925092565b6143b081614220565b81146143bb57600080fd5b50565b6000813590506143cd816143a7565b92915050565b600080604083850312156143ea576143e9614147565b5b60006143f885828601614195565b9250506020614409858286016143be565b9150509250929050565b600060ff82169050919050565b61442981614413565b82525050565b60006020820190506144446000830184614420565b92915050565b6144538161416c565b82525050565b600060208201905061446e600083018461444a565b92915050565b60008060006060848603121561448d5761448c614147565b5b600061449b868287016141cb565b93505060206144ac868287016141cb565b92505060406144bd868287016141cb565b9150509250925092565b6000602082840312156144dd576144dc614147565b5b60006144eb848285016143be565b91505092915050565b6000806040838503121561450b5761450a614147565b5b600061451985828601614195565b925050602061452a85828601614195565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061457b57607f821691505b6020821081141561458f5761458e614534565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006145cb602083614097565b91506145d682614595565b602082019050919050565b600060208201905081810360008301526145fa816145be565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061463b826141aa565b9150614646836141aa565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561467f5761467e614601565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006146c4826141aa565b91506146cf836141aa565b9250826146df576146de61468a565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614746602f83614097565b9150614751826146ea565b604082019050919050565b6000602082019050818103600083015261477581614739565b9050919050565b6000614787826141aa565b9150614792836141aa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147c7576147c6614601565b5b828201905092915050565b7f4d757374206b6565702066656573206174203625206f72206c65737300000000600082015250565b6000614808601c83614097565b9150614813826147d2565b602082019050919050565b60006020820190508181036000830152614837816147fb565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061489a603983614097565b91506148a58261483e565b604082019050919050565b600060208201905081810360008301526148c98161488d565b9050919050565b7f4d757374206b6565702066656573206174203725206f72206c65737300000000600082015250565b6000614906601c83614097565b9150614911826148d0565b602082019050919050565b60006020820190508181036000830152614935816148f9565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614998602483614097565b91506149a38261493c565b604082019050919050565b600060208201905081810360008301526149c78161498b565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614a2a603583614097565b9150614a35826149ce565b604082019050919050565b60006020820190508181036000830152614a5981614a1d565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614abc603483614097565b9150614ac782614a60565b604082019050919050565b60006020820190508181036000830152614aeb81614aaf565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614b4e602683614097565b9150614b5982614af2565b604082019050919050565b60006020820190508181036000830152614b7d81614b41565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614bba601b83614097565b9150614bc582614b84565b602082019050919050565b60006020820190508181036000830152614be981614bad565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614c4c602483614097565b9150614c5782614bf0565b604082019050919050565b60006020820190508181036000830152614c7b81614c3f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614cde602283614097565b9150614ce982614c82565b604082019050919050565b60006020820190508181036000830152614d0d81614cd1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614d70602583614097565b9150614d7b82614d14565b604082019050919050565b60006020820190508181036000830152614d9f81614d63565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614e02602383614097565b9150614e0d82614da6565b604082019050919050565b60006020820190508181036000830152614e3181614df5565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460008201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b6000614e94603183614097565b9150614e9f82614e38565b604082019050919050565b60006020820190508181036000830152614ec381614e87565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614f00601683614097565b9150614f0b82614eca565b602082019050919050565b60006020820190508181036000830152614f2f81614ef3565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614fb8604983614097565b9150614fc382614f36565b606082019050919050565b60006020820190508181036000830152614fe781614fab565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061504a603583614097565b915061505582614fee565b604082019050919050565b600060208201905081810360008301526150798161503d565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006150b6601383614097565b91506150c182615080565b602082019050919050565b600060208201905081810360008301526150e5816150a9565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615148603683614097565b9150615153826150ec565b604082019050919050565b600060208201905081810360008301526151778161513b565b9050919050565b6000615189826141aa565b9150615194836141aa565b9250828210156151a7576151a6614601565b5b828203905092915050565b600081905092915050565b50565b60006151cd6000836151b2565b91506151d8826151bd565b600082019050919050565b60006151ee826151c0565b9150819050919050565b600060608201905061520d60008301866142fd565b61521a60208301856142fd565b61522760408301846142fd565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b600061528b602183614097565b91506152968261522f565b604082019050919050565b600060208201905081810360008301526152ba8161527e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061532e8161417e565b92915050565b60006020828403121561534a57615349614147565b5b60006153588482850161531f565b91505092915050565b6000819050919050565b600061538661538161537c84615361565b614283565b6141aa565b9050919050565b6153968161536b565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6153d18161416c565b82525050565b60006153e383836153c8565b60208301905092915050565b6000602082019050919050565b60006154078261539c565b61541181856153a7565b935061541c836153b8565b8060005b8381101561544d57815161543488826153d7565b975061543f836153ef565b925050600181019050615420565b5085935050505092915050565b600060a08201905061546f60008301886142fd565b61547c602083018761538d565b818103604083015261548e81866153fc565b905061549d606083018561444a565b6154aa60808301846142fd565b9695505050505050565b600060c0820190506154c9600083018961444a565b6154d660208301886142fd565b6154e3604083018761538d565b6154f0606083018661538d565b6154fd608083018561444a565b61550a60a08301846142fd565b979650505050505050565b600081519050615524816141b4565b92915050565b60008060006060848603121561554357615542614147565b5b600061555186828701615515565b935050602061556286828701615515565b925050604061557386828701615515565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212203802568f6eac2e46f3c1c6344b7ca4016af008ed90a447ff454f48abb428dbbe64736f6c63430008090033

Deployed Bytecode Sourcemap

29643:15473:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7741:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9915:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31178:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29723:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8864:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37953:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30892:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30852;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35304:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10567:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37140:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8705:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11332:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29781:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30049:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38122:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30706:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30129:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9036:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22243:148;;;;;;;;;;;;;:::i;:::-;;34521:120;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35771:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30598:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35923:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34320:148;;;;;;;;;;;;;:::i;:::-;;21599:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30741:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36839:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7961:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37284:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30672:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30932:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30817:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12054:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9377:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37736:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31401:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30089:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36949:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36332:410;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35547:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30515:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29933:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34909:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30564:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9616:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29975:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34703:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30635:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22547:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30779:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30015:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7741:100;7795:13;7828:5;7821:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7741:100;:::o;9915:169::-;9998:4;10015:39;10024:12;:10;:12::i;:::-;10038:7;10047:6;10015:8;:39::i;:::-;10072:4;10065:11;;9915:169;;;;:::o;31178:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;29723:51::-;;;:::o;8864:108::-;8925:7;8952:12;;8945:19;;8864:108;:::o;37953:157::-;21822:12;:10;:12::i;:::-;21812:22;;:6;;;;;;;;;;;:22;;;21804:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38060:9:::1;;;;;;;;;;;38032:38;;38049:9;38032:38;;;;;;;;;;;;38093:9;38081;;:21;;;;;;;;;;;;;;;;;;37953:157:::0;:::o;30892:33::-;;;;:::o;30852:::-;;;;:::o;35304:234::-;21822:12;:10;:12::i;:::-;21812:22;;:6;;;;;;;;;;;:22;;;21804:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35423:4:::1;35417;35413:1;35397:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35396:31;;;;:::i;:::-;35386:6;:41;;35378:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;35523:6;35513;:17;;;;:::i;:::-;35490:20;:40;;;;35304:234:::0;:::o;10567:355::-;10707:4;10724:36;10734:6;10742:9;10753:6;10724:9;:36::i;:::-;10771:121;10780:6;10788:12;:10;:12::i;:::-;10802:89;10840:6;10802:89;;;;;;;;;;;;;;;;;:11;:19;10814:6;10802:19;;;;;;;;;;;;;;;:33;10822:12;:10;:12::i;:::-;10802:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;10771:8;:121::i;:::-;10910:4;10903:11;;10567:355;;;;;:::o;37140:135::-;21822:12;:10;:12::i;:::-;21812:22;;:6;;;;;;;;;;;:22;;;21804:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37254:13:::1;37232:10;:19;37243:7;37232:19;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;37140:135:::0;;:::o;8705:93::-;8763:5;8788:2;8781:9;;8705:93;:::o;11332:218::-;11420:4;11437:83;11446:12;:10;:12::i;:::-;11460:7;11469:50;11508:10;11469:11;:25;11481:12;:10;:12::i;:::-;11469:25;;;;;;;;;;;;;;;:34;11495:7;11469:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11437:8;:83::i;:::-;11538:4;11531:11;;11332:218;;;;:::o;29781:38::-;;;:::o;30049:33::-;;;;;;;;;;;;;:::o;38122:125::-;38187:4;38211:19;:28;38231:7;38211:28;;;;;;;;;;;;;;;;;;;;;;;;;38204:35;;38122:125;;;:::o;30706:28::-;;;;:::o;30129:31::-;;;;;;;;;;;;;:::o;9036:127::-;9110:7;9137:9;:18;9147:7;9137:18;;;;;;;;;;;;;;;;9130:25;;9036:127;;;:::o;22243:148::-;21822:12;:10;:12::i;:::-;21812:22;;:6;;;;;;;;;;;:22;;;21804:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22350:1:::1;22313:40;;22334:6;;;;;;;;;;;22313:40;;;;;;;;;;;;22381:1;22364:6;;:19;;;;;;;;;;;;;;;;;;22243:148::o:0;34521:120::-;34573:4;21822:12;:10;:12::i;:::-;21812:22;;:6;;;;;;;;;;;:22;;;21804:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34606:5:::1;34589:14;;:22;;;;;;;;;;;;;;;;;;34629:4;34622:11;;34521:120:::0;:::o;35771:144::-;21822:12;:10;:12::i;:::-;21812:22;;:6;;;;;;;;;;;:22;;;21804:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35903:4:::1;35861:31;:39;35893:6;35861:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35771:144:::0;;:::o;30598:30::-;;;;:::o;35923:401::-;21822:12;:10;:12::i;:::-;21812:22;;:6;;;;;;;;;;;:22;;;21804:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36085:7:::1;36073:9;:19;;;;36121:13;36103:15;:31;;;;36163:13;36145:15;:31;;;;36232:15;;36214;;36202:9;;:27;;;;:::i;:::-;:45;;;;:::i;:::-;36187:12;:60;;;;36282:1;36266:12;;:17;;36258:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;35923:401:::0;;;:::o;34320:148::-;21822:12;:10;:12::i;:::-;21812:22;;:6;;;;;;;;;;;:22;;;21804:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34391:4:::1;34375:13;;:20;;;;;;;;;;;;;;;;;;34420:4;34406:11;;:18;;;;;;;;;;;;;;;;;;34448:12;34435:10;:25;;;;34320:148::o:0;21599:79::-;21637:7;21664:6;;;;;;;;;;;21657:13;;21599:79;:::o;30741:31::-;;;;:::o;36839:101::-;21822:12;:10;:12::i;:::-;21812:22;;:6;;;;;;;;;;;:22;;;21804:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36925:7:::1;36911:11;;:21;;;;;;;;;;;;;;;;;;36839:101:::0;:::o;7961:104::-;8017:13;8050:7;8043:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7961:104;:::o;37284:245::-;21822:12;:10;:12::i;:::-;21812:22;;:6;;;;;;;;;;;:22;;;21804:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37391:13:::1;37383:21;;:4;:21;;;;37375:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;37480:41;37509:4;37515:5;37480:28;:41::i;:::-;37284:245:::0;;:::o;30672:24::-;;;;:::o;30932:27::-;;;;:::o;30817:25::-;;;;:::o;12054:269::-;12147:4;12164:129;12173:12;:10;:12::i;:::-;12187:7;12196:96;12235:15;12196:96;;;;;;;;;;;;;;;;;:11;:25;12208:12;:10;:12::i;:::-;12196:25;;;;;;;;;;;;;;;:34;12222:7;12196:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;12164:8;:129::i;:::-;12311:4;12304:11;;12054:269;;;;:::o;9377:175::-;9463:4;9480:42;9490:12;:10;:12::i;:::-;9504:9;9515:6;9480:9;:42::i;:::-;9540:4;9533:11;;9377:175;;;;:::o;37736:208::-;21822:12;:10;:12::i;:::-;21812:22;;:6;;;;;;;;;;;:22;;;21804:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37873:15:::1;;;;;;;;;;;37830:59;;37853:18;37830:59;;;;;;;;;;;;37918:18;37900:15;;:36;;;;;;;;;;;;;;;;;;37736:208:::0;:::o;31401:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;30089:33::-;;;;;;;;;;;;;:::o;36949:182::-;21822:12;:10;:12::i;:::-;21812:22;;:6;;;;;;;;;;;:22;;;21804:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37065:8:::1;37034:19;:28;37054:7;37034:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37105:7;37089:34;;;37114:8;37089:34;;;;;;:::i;:::-;;;;;;;;36949:182:::0;;:::o;36332:410::-;21822:12;:10;:12::i;:::-;21812:22;;:6;;;;;;;;;;;:22;;;21804:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36496:7:::1;36483:10;:20;;;;36533:13;36514:16;:32;;;;36576:13;36557:16;:32;;;;36648:16;;36629;;36616:10;;:29;;;;:::i;:::-;:48;;;;:::i;:::-;36600:13;:64;;;;36700:1;36683:13;;:18;;36675:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;36332:410:::0;;;:::o;35547:215::-;21822:12;:10;:12::i;:::-;21812:22;;:6;;;;;;;;;;;:22;;;21804:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35669:4:::1;35663;35659:1;35643:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35642:31;;;;:::i;:::-;35632:6;:41;;35624:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;35747:6;35737;:17;;;;:::i;:::-;35725:9;:29;;;;35547:215:::0;:::o;30515:39::-;;;;;;;;;;;;;:::o;29933:35::-;;;;:::o;34909:386::-;34990:4;21822:12;:10;:12::i;:::-;21812:22;;:6;;;;;;;;;;;:22;;;21804:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35047:6:::1;35043:1;35027:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:26;;;;:::i;:::-;35014:9;:39;;35006:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;35163:4;35159:1;35143:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35130:9;:37;;35122:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;35256:9;35235:18;:30;;;;35283:4;35276:11;;34909:386:::0;;;:::o;30564:27::-;;;;:::o;9616:151::-;9705:7;9732:11;:18;9744:5;9732:18;;;;;;;;;;;;;;;:27;9751:7;9732:27;;;;;;;;;;;;;;;;9725:34;;9616:151;;;;:::o;29975:33::-;;;;:::o;34703:134::-;34763:4;21822:12;:10;:12::i;:::-;21812:22;;:6;;;;;;;;;;;:22;;;21804:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34802:5:::1;34779:20;;:28;;;;;;;;;;;;;;;;;;34825:4;34818:11;;34703:134:::0;:::o;30635:30::-;;;;:::o;22547:244::-;21822:12;:10;:12::i;:::-;21812:22;;:6;;;;;;;;;;;:22;;;21804:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22656:1:::1;22636:22;;:8;:22;;;;22628:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22746:8;22717:38;;22738:6;;;;;;;;;;;22717:38;;;;;;;;;;;;22775:8;22766:6;;:17;;;;;;;;;;;;;;;;;;22547:244:::0;:::o;30779:31::-;;;;:::o;30015:24::-;;;;:::o;16631:182::-;16689:7;16709:9;16725:1;16721;:5;;;;:::i;:::-;16709:17;;16750:1;16745;:6;;16737:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;16804:1;16797:8;;;16631:182;;;;:::o;432:98::-;485:7;512:10;505:17;;432:98;:::o;15250:381::-;15403:1;15386:19;;:5;:19;;;;15378:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15484:1;15465:21;;:7;:21;;;;15457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15569:6;15539:11;:18;15551:5;15539:18;;;;;;;;;;;;;;;:27;15558:7;15539:27;;;;;;;;;;;;;;;:36;;;;15607:7;15591:32;;15600:5;15591:32;;;15616:6;15591:32;;;;;;:::i;:::-;;;;;;;;15250:381;;;:::o;38256:4145::-;38404:1;38388:18;;:4;:18;;;;38380:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38481:1;38467:16;;:2;:16;;;;38459:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;38543:10;:14;38554:2;38543:14;;;;;;;;;;;;;;;;;;;;;;;;;38542:15;:36;;;;;38562:10;:16;38573:4;38562:16;;;;;;;;;;;;;;;;;;;;;;;;;38561:17;38542:36;38534:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;38657:1;38647:6;:11;38644:92;;;38675:28;38691:4;38697:2;38701:1;38675:15;:28::i;:::-;38718:7;;38644:92;38752:14;;;;;;;;;;;38749:1811;;;38812:7;:5;:7::i;:::-;38804:15;;:4;:15;;;;:49;;;;;38846:7;:5;:7::i;:::-;38840:13;;:2;:13;;;;38804:49;:86;;;;;38888:1;38874:16;;:2;:16;;;;38804:86;:128;;;;;38925:6;38911:21;;:2;:21;;;;38804:128;:158;;;;;38954:8;;;;;;;;;;;38953:9;38804:158;38782:1767;;;39000:13;;;;;;;;;;;38996:148;;39045:19;:25;39065:4;39045:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;39074:19;:23;39094:2;39074:23;;;;;;;;;;;;;;;;;;;;;;;;;39045:52;39037:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;38996:148;39303:20;;;;;;;;;;;39299:423;;;39357:7;:5;:7::i;:::-;39351:13;;:2;:13;;;;:47;;;;;39382:15;39368:30;;:2;:30;;;;39351:47;:79;;;;;39416:13;39402:28;;:2;:28;;;;39351:79;39347:356;;;39508:12;39466:28;:39;39495:9;39466:39;;;;;;;;;;;;;;;;:54;39458:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;39667:12;39625:28;:39;39654:9;39625:39;;;;;;;;;;;;;;;:54;;;;39347:356;39299:423;39775:25;:31;39801:4;39775:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;39811:31;:35;39843:2;39811:35;;;;;;;;;;;;;;;;;;;;;;;;;39810:36;39775:71;39771:763;;;39893:20;;39883:6;:30;;39875:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;40032:9;;40015:13;40025:2;40015:9;:13::i;:::-;40006:6;:22;;;;:::i;:::-;:35;;39998:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;39771:763;;;40144:25;:29;40170:2;40144:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;40178:31;:37;40210:4;40178:37;;;;;;;;;;;;;;;;;;;;;;;;;40177:38;40144:71;40140:394;;;40262:20;;40252:6;:30;;40244:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;40140:394;;;40388:31;:35;40420:2;40388:35;;;;;;;;;;;;;;;;;;;;;;;;;40384:150;;40481:9;;40464:13;40474:2;40464:9;:13::i;:::-;40455:6;:22;;;;:::i;:::-;:35;;40447:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;40384:150;40140:394;39771:763;38782:1767;38749:1811;40573:28;40604:24;40622:4;40604:9;:24::i;:::-;40573:55;;40642:12;40681:18;;40657:20;:42;;40642:57;;40731:7;:35;;;;;40755:11;;;;;;;;;;;40731:35;:61;;;;;40784:8;;;;;;;;;;;40783:9;40731:61;:110;;;;;40810:25;:31;40836:4;40810:31;;;;;;;;;;;;;;;;;;;;;;;;;40809:32;40731:110;:153;;;;;40859:19;:25;40879:4;40859:25;;;;;;;;;;;;;;;;;;;;;;;;;40858:26;40731:153;:194;;;;;40902:19;:23;40922:2;40902:23;;;;;;;;;;;;;;;;;;;;;;;;;40901:24;40731:194;40713:328;;;40963:4;40952:8;;:15;;;;;;;;;;;;;;;;;;40985:10;:8;:10::i;:::-;41024:5;41013:8;;:16;;;;;;;;;;;;;;;;;;40713:328;41054:12;41070:8;;;;;;;;;;;41069:9;41054:24;;41180:19;:25;41200:4;41180:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;41209:19;:23;41229:2;41209:23;;;;;;;;;;;;;;;;;;;;;;;;;41180:52;41177:99;;;41259:5;41249:15;;41177:99;41289:12;41393:7;41390:957;;;41444:25;:29;41470:2;41444:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;41493:1;41477:13;;:17;41444:50;41440:754;;;41521:34;41551:3;41521:25;41532:13;;41521:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;41514:41;;41622:13;;41603:16;;41596:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;41574:18;;:61;;;;;;;:::i;:::-;;;;;;;;41690:13;;41677:10;;41670:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;41654:12;;:49;;;;;;;:::i;:::-;;;;;;;;41770:13;;41751:16;;41744:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;41722:18;;:61;;;;;;;:::i;:::-;;;;;;;;41440:754;;;41844:25;:31;41870:4;41844:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;41894:1;41879:12;;:16;41844:51;41841:353;;;41923:33;41952:3;41923:24;41934:12;;41923:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;41916:40;;42022:12;;42004:15;;41997:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;41975:18;;:59;;;;;;;:::i;:::-;;;;;;;;42088:12;;42076:9;;42069:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;42053:12;;:47;;;;;;;:::i;:::-;;;;;;;;42166:12;;42148:15;;42141:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;42119:18;;:59;;;;;;;:::i;:::-;;;;;;;;41841:353;41440:754;42221:1;42214:4;:8;42211:93;;;42246:42;42262:4;42276;42283;42246:15;:42::i;:::-;42211:93;42331:4;42321:14;;;;;:::i;:::-;;;41390:957;42360:33;42376:4;42382:2;42386:6;42360:15;:33::i;:::-;38369:4032;;;;38256:4145;;;;:::o;17537:193::-;17623:7;17656:1;17651;:6;;17659:12;17643:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17683:9;17699:1;17695;:5;;;;:::i;:::-;17683:17;;17721:1;17714:8;;;17537:193;;;;;:::o;37538:189::-;37655:5;37621:25;:31;37647:4;37621:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37713:5;37679:40;;37707:4;37679:40;;;;;;;;;;;;37538:189;;:::o;12814:575::-;12972:1;12954:20;;:6;:20;;;;12946:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13056:1;13035:23;;:9;:23;;;;13027:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13112:47;13133:6;13141:9;13152:6;13112:20;:47::i;:::-;13193:71;13215:6;13193:71;;;;;;;;;;;;;;;;;:9;:17;13203:6;13193:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;13173:9;:17;13183:6;13173:17;;;;;;;;;;;;;;;:91;;;;13298:32;13323:6;13298:9;:20;13308:9;13298:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;13275:9;:20;13285:9;13275:20;;;;;;;;;;;;;;;:55;;;;13363:9;13346:35;;13355:6;13346:35;;;13374:6;13346:35;;;;;;:::i;:::-;;;;;;;;12814:575;;;:::o;43545:1568::-;43584:23;43610:24;43628:4;43610:9;:24::i;:::-;43584:50;;43645:25;43715:12;;43694:18;;43673;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;43645:82;;43738:12;43786:1;43767:15;:20;:46;;;;43812:1;43791:17;:22;43767:46;43764:60;;;43816:7;;;;;43764:60;43879:2;43858:18;;:23;;;;:::i;:::-;43840:15;:41;43837:111;;;43934:2;43913:18;;:23;;;;:::i;:::-;43895:41;;43837:111;44010:23;44095:1;44075:17;44054:18;;44036:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;44010:86;;44107:26;44136:36;44156:15;44136;:19;;:36;;;;:::i;:::-;44107:65;;44186:25;44214:21;44186:49;;44249:36;44266:18;44249:16;:36::i;:::-;44300:18;44321:44;44347:17;44321:21;:25;;:44;;;;:::i;:::-;44300:65;;44379:23;44405:57;44444:17;44405:34;44420:18;;44405:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;44379:83;;44473:17;44493:51;44526:17;44493:28;44508:12;;44493:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;44473:71;;44555:23;44612:9;44594:15;44581:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;44555:66;;44659:1;44638:18;:22;;;;44692:1;44671:18;:22;;;;44719:1;44704:12;:16;;;;44755:9;;;;;;;;;;;44747:23;;44778:9;44747:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44734:58;;;;;44827:1;44809:15;:19;:42;;;;;44850:1;44832:15;:19;44809:42;44806:210;;;44867:46;44880:15;44897;44867:12;:46::i;:::-;44933:71;44948:18;44968:15;44985:18;;44933:71;;;;;;;;:::i;:::-;;;;;;;;44806:210;45050:15;;;;;;;;;;;45042:29;;45079:21;45042:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45029:76;;;;;43573:1540;;;;;;;;;;43545:1568;:::o;17990:473::-;18048:7;18298:1;18293;:6;18289:47;;;18323:1;18316:8;;;;18289:47;18349:9;18365:1;18361;:5;;;;:::i;:::-;18349:17;;18394:1;18389;18385;:5;;;;:::i;:::-;:10;18377:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;18454:1;18447:8;;;17990:473;;;;;:::o;18940:132::-;18998:7;19025:39;19029:1;19032;19025:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;19018:46;;18940:132;;;;:::o;16235:125::-;;;;:::o;17097:136::-;17155:7;17182:43;17186:1;17189;17182:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;17175:50;;17097:136;;;;:::o;42410:597::-;42539:21;42577:1;42563:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42539:40;;42608:4;42590;42595:1;42590:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;42634:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42624:4;42629:1;42624:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;42670:62;42687:4;42702:15;42720:11;42670:8;:62::i;:::-;42772:15;:66;;;42853:11;42879:1;42923:4;42950;42970:15;42772:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42465:542;42410:597;:::o;43016:520::-;43164:62;43181:4;43196:15;43214:11;43164:8;:62::i;:::-;43270:15;:31;;;43309:9;43342:4;43362:11;43388:1;43431;43482:4;43502:15;43270:258;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;43016:520;;:::o;19569:279::-;19655:7;19687:1;19683;:5;19690:12;19675:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;19714:9;19730:1;19726;:5;;;;:::i;:::-;19714:17;;19839:1;19832:8;;;19569:279;;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:116::-;6189:21;6204:5;6189:21;:::i;:::-;6182:5;6179:32;6169:60;;6225:1;6222;6215:12;6169:60;6119:116;:::o;6241:133::-;6284:5;6322:6;6309:20;6300:29;;6338:30;6362:5;6338:30;:::i;:::-;6241:133;;;;:::o;6380:468::-;6445:6;6453;6502:2;6490:9;6481:7;6477:23;6473:32;6470:119;;;6508:79;;:::i;:::-;6470:119;6628:1;6653:53;6698:7;6689:6;6678:9;6674:22;6653:53;:::i;:::-;6643:63;;6599:117;6755:2;6781:50;6823:7;6814:6;6803:9;6799:22;6781:50;:::i;:::-;6771:60;;6726:115;6380:468;;;;;:::o;6854:86::-;6889:7;6929:4;6922:5;6918:16;6907:27;;6854:86;;;:::o;6946:112::-;7029:22;7045:5;7029:22;:::i;:::-;7024:3;7017:35;6946:112;;:::o;7064:214::-;7153:4;7191:2;7180:9;7176:18;7168:26;;7204:67;7268:1;7257:9;7253:17;7244:6;7204:67;:::i;:::-;7064:214;;;;:::o;7284:118::-;7371:24;7389:5;7371:24;:::i;:::-;7366:3;7359:37;7284:118;;:::o;7408:222::-;7501:4;7539:2;7528:9;7524:18;7516:26;;7552:71;7620:1;7609:9;7605:17;7596:6;7552:71;:::i;:::-;7408:222;;;;:::o;7636:619::-;7713:6;7721;7729;7778:2;7766:9;7757:7;7753:23;7749:32;7746:119;;;7784:79;;:::i;:::-;7746:119;7904:1;7929:53;7974:7;7965:6;7954:9;7950:22;7929:53;:::i;:::-;7919:63;;7875:117;8031:2;8057:53;8102:7;8093:6;8082:9;8078:22;8057:53;:::i;:::-;8047:63;;8002:118;8159:2;8185:53;8230:7;8221:6;8210:9;8206:22;8185:53;:::i;:::-;8175:63;;8130:118;7636:619;;;;;:::o;8261:323::-;8317:6;8366:2;8354:9;8345:7;8341:23;8337:32;8334:119;;;8372:79;;:::i;:::-;8334:119;8492:1;8517:50;8559:7;8550:6;8539:9;8535:22;8517:50;:::i;:::-;8507:60;;8463:114;8261:323;;;;:::o;8590:474::-;8658:6;8666;8715:2;8703:9;8694:7;8690:23;8686:32;8683:119;;;8721:79;;:::i;:::-;8683:119;8841:1;8866:53;8911:7;8902:6;8891:9;8887:22;8866:53;:::i;:::-;8856:63;;8812:117;8968:2;8994:53;9039:7;9030:6;9019:9;9015:22;8994:53;:::i;:::-;8984:63;;8939:118;8590:474;;;;;:::o;9070:180::-;9118:77;9115:1;9108:88;9215:4;9212:1;9205:15;9239:4;9236:1;9229:15;9256:320;9300:6;9337:1;9331:4;9327:12;9317:22;;9384:1;9378:4;9374:12;9405:18;9395:81;;9461:4;9453:6;9449:17;9439:27;;9395:81;9523:2;9515:6;9512:14;9492:18;9489:38;9486:84;;;9542:18;;:::i;:::-;9486:84;9307:269;9256:320;;;:::o;9582:182::-;9722:34;9718:1;9710:6;9706:14;9699:58;9582:182;:::o;9770:366::-;9912:3;9933:67;9997:2;9992:3;9933:67;:::i;:::-;9926:74;;10009:93;10098:3;10009:93;:::i;:::-;10127:2;10122:3;10118:12;10111:19;;9770:366;;;:::o;10142:419::-;10308:4;10346:2;10335:9;10331:18;10323:26;;10395:9;10389:4;10385:20;10381:1;10370:9;10366:17;10359:47;10423:131;10549:4;10423:131;:::i;:::-;10415:139;;10142:419;;;:::o;10567:180::-;10615:77;10612:1;10605:88;10712:4;10709:1;10702:15;10736:4;10733:1;10726:15;10753:348;10793:7;10816:20;10834:1;10816:20;:::i;:::-;10811:25;;10850:20;10868:1;10850:20;:::i;:::-;10845:25;;11038:1;10970:66;10966:74;10963:1;10960:81;10955:1;10948:9;10941:17;10937:105;10934:131;;;11045:18;;:::i;:::-;10934:131;11093:1;11090;11086:9;11075:20;;10753:348;;;;:::o;11107:180::-;11155:77;11152:1;11145:88;11252:4;11249:1;11242:15;11276:4;11273:1;11266:15;11293:185;11333:1;11350:20;11368:1;11350:20;:::i;:::-;11345:25;;11384:20;11402:1;11384:20;:::i;:::-;11379:25;;11423:1;11413:35;;11428:18;;:::i;:::-;11413:35;11470:1;11467;11463:9;11458:14;;11293:185;;;;:::o;11484:234::-;11624:34;11620:1;11612:6;11608:14;11601:58;11693:17;11688:2;11680:6;11676:15;11669:42;11484:234;:::o;11724:366::-;11866:3;11887:67;11951:2;11946:3;11887:67;:::i;:::-;11880:74;;11963:93;12052:3;11963:93;:::i;:::-;12081:2;12076:3;12072:12;12065:19;;11724:366;;;:::o;12096:419::-;12262:4;12300:2;12289:9;12285:18;12277:26;;12349:9;12343:4;12339:20;12335:1;12324:9;12320:17;12313:47;12377:131;12503:4;12377:131;:::i;:::-;12369:139;;12096:419;;;:::o;12521:305::-;12561:3;12580:20;12598:1;12580:20;:::i;:::-;12575:25;;12614:20;12632:1;12614:20;:::i;:::-;12609:25;;12768:1;12700:66;12696:74;12693:1;12690:81;12687:107;;;12774:18;;:::i;:::-;12687:107;12818:1;12815;12811:9;12804:16;;12521:305;;;;:::o;12832:178::-;12972:30;12968:1;12960:6;12956:14;12949:54;12832:178;:::o;13016:366::-;13158:3;13179:67;13243:2;13238:3;13179:67;:::i;:::-;13172:74;;13255:93;13344:3;13255:93;:::i;:::-;13373:2;13368:3;13364:12;13357:19;;13016:366;;;:::o;13388:419::-;13554:4;13592:2;13581:9;13577:18;13569:26;;13641:9;13635:4;13631:20;13627:1;13616:9;13612:17;13605:47;13669:131;13795:4;13669:131;:::i;:::-;13661:139;;13388:419;;;:::o;13813:244::-;13953:34;13949:1;13941:6;13937:14;13930:58;14022:27;14017:2;14009:6;14005:15;13998:52;13813:244;:::o;14063:366::-;14205:3;14226:67;14290:2;14285:3;14226:67;:::i;:::-;14219:74;;14302:93;14391:3;14302:93;:::i;:::-;14420:2;14415:3;14411:12;14404:19;;14063:366;;;:::o;14435:419::-;14601:4;14639:2;14628:9;14624:18;14616:26;;14688:9;14682:4;14678:20;14674:1;14663:9;14659:17;14652:47;14716:131;14842:4;14716:131;:::i;:::-;14708:139;;14435:419;;;:::o;14860:178::-;15000:30;14996:1;14988:6;14984:14;14977:54;14860:178;:::o;15044:366::-;15186:3;15207:67;15271:2;15266:3;15207:67;:::i;:::-;15200:74;;15283:93;15372:3;15283:93;:::i;:::-;15401:2;15396:3;15392:12;15385:19;;15044:366;;;:::o;15416:419::-;15582:4;15620:2;15609:9;15605:18;15597:26;;15669:9;15663:4;15659:20;15655:1;15644:9;15640:17;15633:47;15697:131;15823:4;15697:131;:::i;:::-;15689:139;;15416:419;;;:::o;15841:223::-;15981:34;15977:1;15969:6;15965:14;15958:58;16050:6;16045:2;16037:6;16033:15;16026:31;15841:223;:::o;16070:366::-;16212:3;16233:67;16297:2;16292:3;16233:67;:::i;:::-;16226:74;;16309:93;16398:3;16309:93;:::i;:::-;16427:2;16422:3;16418:12;16411:19;;16070:366;;;:::o;16442:419::-;16608:4;16646:2;16635:9;16631:18;16623:26;;16695:9;16689:4;16685:20;16681:1;16670:9;16666:17;16659:47;16723:131;16849:4;16723:131;:::i;:::-;16715:139;;16442:419;;;:::o;16867:240::-;17007:34;17003:1;16995:6;16991:14;16984:58;17076:23;17071:2;17063:6;17059:15;17052:48;16867:240;:::o;17113:366::-;17255:3;17276:67;17340:2;17335:3;17276:67;:::i;:::-;17269:74;;17352:93;17441:3;17352:93;:::i;:::-;17470:2;17465:3;17461:12;17454:19;;17113:366;;;:::o;17485:419::-;17651:4;17689:2;17678:9;17674:18;17666:26;;17738:9;17732:4;17728:20;17724:1;17713:9;17709:17;17702:47;17766:131;17892:4;17766:131;:::i;:::-;17758:139;;17485:419;;;:::o;17910:239::-;18050:34;18046:1;18038:6;18034:14;18027:58;18119:22;18114:2;18106:6;18102:15;18095:47;17910:239;:::o;18155:366::-;18297:3;18318:67;18382:2;18377:3;18318:67;:::i;:::-;18311:74;;18394:93;18483:3;18394:93;:::i;:::-;18512:2;18507:3;18503:12;18496:19;;18155:366;;;:::o;18527:419::-;18693:4;18731:2;18720:9;18716:18;18708:26;;18780:9;18774:4;18770:20;18766:1;18755:9;18751:17;18744:47;18808:131;18934:4;18808:131;:::i;:::-;18800:139;;18527:419;;;:::o;18952:225::-;19092:34;19088:1;19080:6;19076:14;19069:58;19161:8;19156:2;19148:6;19144:15;19137:33;18952:225;:::o;19183:366::-;19325:3;19346:67;19410:2;19405:3;19346:67;:::i;:::-;19339:74;;19422:93;19511:3;19422:93;:::i;:::-;19540:2;19535:3;19531:12;19524:19;;19183:366;;;:::o;19555:419::-;19721:4;19759:2;19748:9;19744:18;19736:26;;19808:9;19802:4;19798:20;19794:1;19783:9;19779:17;19772:47;19836:131;19962:4;19836:131;:::i;:::-;19828:139;;19555:419;;;:::o;19980:177::-;20120:29;20116:1;20108:6;20104:14;20097:53;19980:177;:::o;20163:366::-;20305:3;20326:67;20390:2;20385:3;20326:67;:::i;:::-;20319:74;;20402:93;20491:3;20402:93;:::i;:::-;20520:2;20515:3;20511:12;20504:19;;20163:366;;;:::o;20535:419::-;20701:4;20739:2;20728:9;20724:18;20716:26;;20788:9;20782:4;20778:20;20774:1;20763:9;20759:17;20752:47;20816:131;20942:4;20816:131;:::i;:::-;20808:139;;20535:419;;;:::o;20960:223::-;21100:34;21096:1;21088:6;21084:14;21077:58;21169:6;21164:2;21156:6;21152:15;21145:31;20960:223;:::o;21189:366::-;21331:3;21352:67;21416:2;21411:3;21352:67;:::i;:::-;21345:74;;21428:93;21517:3;21428:93;:::i;:::-;21546:2;21541:3;21537:12;21530:19;;21189:366;;;:::o;21561:419::-;21727:4;21765:2;21754:9;21750:18;21742:26;;21814:9;21808:4;21804:20;21800:1;21789:9;21785:17;21778:47;21842:131;21968:4;21842:131;:::i;:::-;21834:139;;21561:419;;;:::o;21986:221::-;22126:34;22122:1;22114:6;22110:14;22103:58;22195:4;22190:2;22182:6;22178:15;22171:29;21986:221;:::o;22213:366::-;22355:3;22376:67;22440:2;22435:3;22376:67;:::i;:::-;22369:74;;22452:93;22541:3;22452:93;:::i;:::-;22570:2;22565:3;22561:12;22554:19;;22213:366;;;:::o;22585:419::-;22751:4;22789:2;22778:9;22774:18;22766:26;;22838:9;22832:4;22828:20;22824:1;22813:9;22809:17;22802:47;22866:131;22992:4;22866:131;:::i;:::-;22858:139;;22585:419;;;:::o;23010:224::-;23150:34;23146:1;23138:6;23134:14;23127:58;23219:7;23214:2;23206:6;23202:15;23195:32;23010:224;:::o;23240:366::-;23382:3;23403:67;23467:2;23462:3;23403:67;:::i;:::-;23396:74;;23479:93;23568:3;23479:93;:::i;:::-;23597:2;23592:3;23588:12;23581:19;;23240:366;;;:::o;23612:419::-;23778:4;23816:2;23805:9;23801:18;23793:26;;23865:9;23859:4;23855:20;23851:1;23840:9;23836:17;23829:47;23893:131;24019:4;23893:131;:::i;:::-;23885:139;;23612:419;;;:::o;24037:222::-;24177:34;24173:1;24165:6;24161:14;24154:58;24246:5;24241:2;24233:6;24229:15;24222:30;24037:222;:::o;24265:366::-;24407:3;24428:67;24492:2;24487:3;24428:67;:::i;:::-;24421:74;;24504:93;24593:3;24504:93;:::i;:::-;24622:2;24617:3;24613:12;24606:19;;24265:366;;;:::o;24637:419::-;24803:4;24841:2;24830:9;24826:18;24818:26;;24890:9;24884:4;24880:20;24876:1;24865:9;24861:17;24854:47;24918:131;25044:4;24918:131;:::i;:::-;24910:139;;24637:419;;;:::o;25062:236::-;25202:34;25198:1;25190:6;25186:14;25179:58;25271:19;25266:2;25258:6;25254:15;25247:44;25062:236;:::o;25304:366::-;25446:3;25467:67;25531:2;25526:3;25467:67;:::i;:::-;25460:74;;25543:93;25632:3;25543:93;:::i;:::-;25661:2;25656:3;25652:12;25645:19;;25304:366;;;:::o;25676:419::-;25842:4;25880:2;25869:9;25865:18;25857:26;;25929:9;25923:4;25919:20;25915:1;25904:9;25900:17;25893:47;25957:131;26083:4;25957:131;:::i;:::-;25949:139;;25676:419;;;:::o;26101:172::-;26241:24;26237:1;26229:6;26225:14;26218:48;26101:172;:::o;26279:366::-;26421:3;26442:67;26506:2;26501:3;26442:67;:::i;:::-;26435:74;;26518:93;26607:3;26518:93;:::i;:::-;26636:2;26631:3;26627:12;26620:19;;26279:366;;;:::o;26651:419::-;26817:4;26855:2;26844:9;26840:18;26832:26;;26904:9;26898:4;26894:20;26890:1;26879:9;26875:17;26868:47;26932:131;27058:4;26932:131;:::i;:::-;26924:139;;26651:419;;;:::o;27076:297::-;27216:34;27212:1;27204:6;27200:14;27193:58;27285:34;27280:2;27272:6;27268:15;27261:59;27354:11;27349:2;27341:6;27337:15;27330:36;27076:297;:::o;27379:366::-;27521:3;27542:67;27606:2;27601:3;27542:67;:::i;:::-;27535:74;;27618:93;27707:3;27618:93;:::i;:::-;27736:2;27731:3;27727:12;27720:19;;27379:366;;;:::o;27751:419::-;27917:4;27955:2;27944:9;27940:18;27932:26;;28004:9;27998:4;27994:20;27990:1;27979:9;27975:17;27968:47;28032:131;28158:4;28032:131;:::i;:::-;28024:139;;27751:419;;;:::o;28176:240::-;28316:34;28312:1;28304:6;28300:14;28293:58;28385:23;28380:2;28372:6;28368:15;28361:48;28176:240;:::o;28422:366::-;28564:3;28585:67;28649:2;28644:3;28585:67;:::i;:::-;28578:74;;28661:93;28750:3;28661:93;:::i;:::-;28779:2;28774:3;28770:12;28763:19;;28422:366;;;:::o;28794:419::-;28960:4;28998:2;28987:9;28983:18;28975:26;;29047:9;29041:4;29037:20;29033:1;29022:9;29018:17;29011:47;29075:131;29201:4;29075:131;:::i;:::-;29067:139;;28794:419;;;:::o;29219:169::-;29359:21;29355:1;29347:6;29343:14;29336:45;29219:169;:::o;29394:366::-;29536:3;29557:67;29621:2;29616:3;29557:67;:::i;:::-;29550:74;;29633:93;29722:3;29633:93;:::i;:::-;29751:2;29746:3;29742:12;29735:19;;29394:366;;;:::o;29766:419::-;29932:4;29970:2;29959:9;29955:18;29947:26;;30019:9;30013:4;30009:20;30005:1;29994:9;29990:17;29983:47;30047:131;30173:4;30047:131;:::i;:::-;30039:139;;29766:419;;;:::o;30191:241::-;30331:34;30327:1;30319:6;30315:14;30308:58;30400:24;30395:2;30387:6;30383:15;30376:49;30191:241;:::o;30438:366::-;30580:3;30601:67;30665:2;30660:3;30601:67;:::i;:::-;30594:74;;30677:93;30766:3;30677:93;:::i;:::-;30795:2;30790:3;30786:12;30779:19;;30438:366;;;:::o;30810:419::-;30976:4;31014:2;31003:9;30999:18;30991:26;;31063:9;31057:4;31053:20;31049:1;31038:9;31034:17;31027:47;31091:131;31217:4;31091:131;:::i;:::-;31083:139;;30810:419;;;:::o;31235:191::-;31275:4;31295:20;31313:1;31295:20;:::i;:::-;31290:25;;31329:20;31347:1;31329:20;:::i;:::-;31324:25;;31368:1;31365;31362:8;31359:34;;;31373:18;;:::i;:::-;31359:34;31418:1;31415;31411:9;31403:17;;31235:191;;;;:::o;31432:147::-;31533:11;31570:3;31555:18;;31432:147;;;;:::o;31585:114::-;;:::o;31705:398::-;31864:3;31885:83;31966:1;31961:3;31885:83;:::i;:::-;31878:90;;31977:93;32066:3;31977:93;:::i;:::-;32095:1;32090:3;32086:11;32079:18;;31705:398;;;:::o;32109:379::-;32293:3;32315:147;32458:3;32315:147;:::i;:::-;32308:154;;32479:3;32472:10;;32109:379;;;:::o;32494:442::-;32643:4;32681:2;32670:9;32666:18;32658:26;;32694:71;32762:1;32751:9;32747:17;32738:6;32694:71;:::i;:::-;32775:72;32843:2;32832:9;32828:18;32819:6;32775:72;:::i;:::-;32857;32925:2;32914:9;32910:18;32901:6;32857:72;:::i;:::-;32494:442;;;;;;:::o;32942:220::-;33082:34;33078:1;33070:6;33066:14;33059:58;33151:3;33146:2;33138:6;33134:15;33127:28;32942:220;:::o;33168:366::-;33310:3;33331:67;33395:2;33390:3;33331:67;:::i;:::-;33324:74;;33407:93;33496:3;33407:93;:::i;:::-;33525:2;33520:3;33516:12;33509:19;;33168:366;;;:::o;33540:419::-;33706:4;33744:2;33733:9;33729:18;33721:26;;33793:9;33787:4;33783:20;33779:1;33768:9;33764:17;33757:47;33821:131;33947:4;33821:131;:::i;:::-;33813:139;;33540:419;;;:::o;33965:180::-;34013:77;34010:1;34003:88;34110:4;34107:1;34100:15;34134:4;34131:1;34124:15;34151:180;34199:77;34196:1;34189:88;34296:4;34293:1;34286:15;34320:4;34317:1;34310:15;34337:143;34394:5;34425:6;34419:13;34410:22;;34441:33;34468:5;34441:33;:::i;:::-;34337:143;;;;:::o;34486:351::-;34556:6;34605:2;34593:9;34584:7;34580:23;34576:32;34573:119;;;34611:79;;:::i;:::-;34573:119;34731:1;34756:64;34812:7;34803:6;34792:9;34788:22;34756:64;:::i;:::-;34746:74;;34702:128;34486:351;;;;:::o;34843:85::-;34888:7;34917:5;34906:16;;34843:85;;;:::o;34934:158::-;34992:9;35025:61;35043:42;35052:32;35078:5;35052:32;:::i;:::-;35043:42;:::i;:::-;35025:61;:::i;:::-;35012:74;;34934:158;;;:::o;35098:147::-;35193:45;35232:5;35193:45;:::i;:::-;35188:3;35181:58;35098:147;;:::o;35251:114::-;35318:6;35352:5;35346:12;35336:22;;35251:114;;;:::o;35371:184::-;35470:11;35504:6;35499:3;35492:19;35544:4;35539:3;35535:14;35520:29;;35371:184;;;;:::o;35561:132::-;35628:4;35651:3;35643:11;;35681:4;35676:3;35672:14;35664:22;;35561:132;;;:::o;35699:108::-;35776:24;35794:5;35776:24;:::i;:::-;35771:3;35764:37;35699:108;;:::o;35813:179::-;35882:10;35903:46;35945:3;35937:6;35903:46;:::i;:::-;35981:4;35976:3;35972:14;35958:28;;35813:179;;;;:::o;35998:113::-;36068:4;36100;36095:3;36091:14;36083:22;;35998:113;;;:::o;36147:732::-;36266:3;36295:54;36343:5;36295:54;:::i;:::-;36365:86;36444:6;36439:3;36365:86;:::i;:::-;36358:93;;36475:56;36525:5;36475:56;:::i;:::-;36554:7;36585:1;36570:284;36595:6;36592:1;36589:13;36570:284;;;36671:6;36665:13;36698:63;36757:3;36742:13;36698:63;:::i;:::-;36691:70;;36784:60;36837:6;36784:60;:::i;:::-;36774:70;;36630:224;36617:1;36614;36610:9;36605:14;;36570:284;;;36574:14;36870:3;36863:10;;36271:608;;;36147:732;;;;:::o;36885:831::-;37148:4;37186:3;37175:9;37171:19;37163:27;;37200:71;37268:1;37257:9;37253:17;37244:6;37200:71;:::i;:::-;37281:80;37357:2;37346:9;37342:18;37333:6;37281:80;:::i;:::-;37408:9;37402:4;37398:20;37393:2;37382:9;37378:18;37371:48;37436:108;37539:4;37530:6;37436:108;:::i;:::-;37428:116;;37554:72;37622:2;37611:9;37607:18;37598:6;37554:72;:::i;:::-;37636:73;37704:3;37693:9;37689:19;37680:6;37636:73;:::i;:::-;36885:831;;;;;;;;:::o;37722:807::-;37971:4;38009:3;37998:9;37994:19;37986:27;;38023:71;38091:1;38080:9;38076:17;38067:6;38023:71;:::i;:::-;38104:72;38172:2;38161:9;38157:18;38148:6;38104:72;:::i;:::-;38186:80;38262:2;38251:9;38247:18;38238:6;38186:80;:::i;:::-;38276;38352:2;38341:9;38337:18;38328:6;38276:80;:::i;:::-;38366:73;38434:3;38423:9;38419:19;38410:6;38366:73;:::i;:::-;38449;38517:3;38506:9;38502:19;38493:6;38449:73;:::i;:::-;37722:807;;;;;;;;;:::o;38535:143::-;38592:5;38623:6;38617:13;38608:22;;38639:33;38666:5;38639:33;:::i;:::-;38535:143;;;;:::o;38684:663::-;38772:6;38780;38788;38837:2;38825:9;38816:7;38812:23;38808:32;38805:119;;;38843:79;;:::i;:::-;38805:119;38963:1;38988:64;39044:7;39035:6;39024:9;39020:22;38988:64;:::i;:::-;38978:74;;38934:128;39101:2;39127:64;39183:7;39174:6;39163:9;39159:22;39127:64;:::i;:::-;39117:74;;39072:129;39240:2;39266:64;39322:7;39313:6;39302:9;39298:22;39266:64;:::i;:::-;39256:74;;39211:129;38684:663;;;;;:::o

Swarm Source

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