ETH Price: $3,383.97 (-8.04%)
 

Overview

Max Total Supply

1,000,000,000 CryptoM

Holders

29

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
CryptoMaster

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-07-04
*/

/*

    Crypto Master - CryptoM
    Tax: 4/4
        
    https://t.me/CMPortal

*/

// 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 Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);
 
    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);
 
    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;
 
    function initialize(address, address) external;
}
 
interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);
 
    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);
 
    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);
 
    function createPair(address tokenA, address tokenB) external returns (address pair);
 
    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}
 
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);
 
    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);
 
    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);
 
    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);
 
    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);
 
    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);
 
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);
 
    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}
 
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);
 
    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);
 
    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}
 
 
contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;
 
    mapping(address => uint256) private _balances;
 
    mapping(address => mapping(address => uint256)) private _allowances;
 
    uint256 private _totalSupply;
 
    string private _name;
    string private _symbol;
 
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }
 
    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }
 
    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
 
    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }
 
    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }
 
    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }
 
    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }
 
    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }
 
    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }
 
    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }
 
    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }
 
    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }
 
    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
 
        _beforeTokenTransfer(sender, recipient, amount);
 
        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }
 
    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _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 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 CryptoMaster is ERC20, Ownable {
    using SafeMath for uint256;
 
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
 
    bool private swapping;
 
    address public marketingWallet;
     
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
 
    bool public tradingActive = false;
    bool public swapEnabled = false;
 
    uint256 public BuyInitialFees;
    uint256 public BuyTotalFees;
    uint256 public BuyLiquidityFee;
    uint256 public BuyTaxFee;
 
    uint256 public SellInitialFees;
    uint256 public SellTotalFees;
    uint256 public SellLiquidityFee;
    uint256 public SellTaxFee;
  
    uint256 public tokensForLiquidity;
    uint256 public tokensForTax;
     
    // block number of opened trading
    uint256 launchedAt;
 
    /******************/
 
    // exclude from fees and max transaction amount
    mapping (address => bool) public _isExcludedFromFees;
    mapping (address => bool) public _isExcludedMaxBuyTransactionAmount;
    mapping (address => bool) public _isExcludedMaxSellTransactionAmount;
 
    // 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 SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );
 
    constructor() ERC20("Crypto Master", "CryptoM") {
 
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _isExcludedMaxBuyTransactionAmount[address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D)] = true;
        _isExcludedMaxSellTransactionAmount[address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D)] = true;

        uniswapV2Router = _uniswapV2Router;
 
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        _isExcludedMaxBuyTransactionAmount[uniswapV2Pair] = true;
        _isExcludedMaxSellTransactionAmount[uniswapV2Pair] = true;
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
		
		// fees	4/4
        uint256 _BuyLiquidityFee = 0;
        uint256 _BuyTaxFee = 4;

        uint256 _SellLiquidityFee = 0;
        uint256 _SellTaxFee = 4;
 
        uint256 totalSupply = 1 * 1e9 * 1e18;
 
        maxWallet = 2 * 1e7 * 1e18; // Max Wallet 2%
        swapTokensAtAmount = 1 * 1e6 * 1e18; // 0.1% swap threshold for the CA

        BuyLiquidityFee = _BuyLiquidityFee;
        BuyTaxFee = _BuyTaxFee;
        BuyTotalFees = BuyLiquidityFee + BuyTaxFee;
        BuyInitialFees = BuyTotalFees;

        SellLiquidityFee = _SellLiquidityFee;
        SellTaxFee = _SellTaxFee;
        SellTotalFees = SellLiquidityFee + SellTaxFee;
        SellInitialFees = SellTotalFees;
 
		marketingWallet = address(0xC7ACa9AA741535D6a269fBDe99A4245E60e20E23); // set as marketing wallet
         
        // exclude from paying fees or having max transaction amount
        _isExcludedFromFees[address(0xC7ACa9AA741535D6a269fBDe99A4245E60e20E23)] = true;
        _isExcludedFromFees[address(this)] = true;
        _isExcludedFromFees[address(0xdead)] = true;
      
        _isExcludedMaxBuyTransactionAmount[address(0xC7ACa9AA741535D6a269fBDe99A4245E60e20E23)] = true;
        _isExcludedMaxBuyTransactionAmount[address(this)] = true;
        _isExcludedMaxBuyTransactionAmount[address(0xdead)] = true;
   
        _isExcludedMaxSellTransactionAmount[address(0xC7ACa9AA741535D6a269fBDe99A4245E60e20E23)] = true;
        _isExcludedMaxSellTransactionAmount[address(this)] = true;
        _isExcludedMaxSellTransactionAmount[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;
    }
 
    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;
 
        emit SetAutomatedMarketMakerPair(pair, value);
    }
 
    event BoughtEarly(address indexed sniper);
 
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
 
        if (
            from != owner() &&
            to != owner() &&
            to != address(0) &&
            to != address(0xdead) &&
            !swapping
        ){
            if(!tradingActive){
                require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
            }
 
            //when buy
            if (automatedMarketMakerPairs[from] && !_isExcludedMaxBuyTransactionAmount[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;

        bool walletToWallet = !automatedMarketMakerPairs[to] && !automatedMarketMakerPairs[from];
        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFees[from] || _isExcludedFromFees[to] || walletToWallet) {
            takeFee = false;
        }
 
        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if(takeFee){
			// buy
			if (automatedMarketMakerPairs[from] && BuyTotalFees > 0){
			    fees = amount.mul(BuyTotalFees).div(100);
				tokensForLiquidity += fees * BuyLiquidityFee / BuyTotalFees;
				tokensForTax += fees * BuyTaxFee / BuyTotalFees;
			}
			// sell
			else if(automatedMarketMakerPairs[to] && SellTotalFees > 0) {
 			    fees = amount.mul(SellTotalFees).div(100);
				tokensForLiquidity += fees * SellLiquidityFee / SellTotalFees;
				tokensForTax += fees * SellTaxFee / SellTotalFees;
 			}
			
            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(marketingWallet),
            block.timestamp
        );
    }
 
    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForTax;
        bool success;
 
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}
 
        if(contractBalance > swapTokensAtAmount * 20){
          contractBalance = swapTokensAtAmount * 20;
        }
 
        // Half the amount of liquidity tokens
        uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
 
        uint256 initialETHBalance = address(this).balance;
 
        swapTokensForEth(amountToSwapForETH); 
 
        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
 
        uint256 ethForTax = ethBalance.mul(tokensForTax).div(totalTokensToSwap-liquidityTokens);
        uint256 ethForLiquidity = ethBalance - ethForTax;
		 
        tokensForLiquidity = 0;
        tokensForTax = 0;
 		
        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":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":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"},{"inputs":[],"name":"BuyInitialFees","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":"BuyTaxFee","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":"SellInitialFees","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":"SellTaxFee","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":"","type":"address"}],"name":"_isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxBuyTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxSellTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","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":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"renounceOwnership","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":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"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"},{"stateMutability":"payable","type":"receive"}]

60c06040526000600960006101000a81548160ff0219169083151502179055506000600960016101000a81548160ff0219169083151502179055503480156200004757600080fd5b506040518060400160405280600d81526020017f43727970746f204d6173746572000000000000000000000000000000000000008152506040518060400160405280600781526020017f43727970746f4d000000000000000000000000000000000000000000000000008152508160039080519060200190620000cc92919062000c7c565b508060049080519060200190620000e592919062000c7c565b5050506000620000fa620009bc60201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050600160166000737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160176000737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200030557600080fd5b505afa1580156200031a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000340919062000d96565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620003a357600080fd5b505afa158015620003b8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003de919062000d96565b6040518363ffffffff1660e01b8152600401620003fd92919062000dd9565b602060405180830381600087803b1580156200041857600080fd5b505af11580156200042d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000453919062000d96565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff168152505060016016600060a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016017600060a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200054f60a0516001620009c460201b60201c565b600080600490506000806004905060006b033b2e3c9fd0803ce800000090506a108b2a2c2802909400000060088190555069d3c21bcecceda100000060078190555084600c8190555083600d81905550600d54600c54620005b1919062000e3f565b600b81905550600b54600a819055508260108190555081601181905550601154601054620005e0919062000e3f565b600f81905550600f54600e8190555073c7aca9aa741535d6a269fbde99a4245e60e20e23600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016015600073c7aca9aa741535d6a269fbde99a4245e60e20e2373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016015600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016016600073c7aca9aa741535d6a269fbde99a4245e60e20e2373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016016600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016017600073c7aca9aa741535d6a269fbde99a4245e60e20e2373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016017600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620009b0338262000a6560201b60201c565b50505050505062001024565b600033905090565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000ad8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000acf9062000efd565b60405180910390fd5b62000aec6000838362000c1460201b60201c565b62000b088160025462000c1960201b620012dd1790919060201c565b60028190555062000b66816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000c1960201b620012dd1790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000c08919062000f30565b60405180910390a35050565b505050565b600080828462000c2a919062000e3f565b90508381101562000c72576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c699062000f9d565b60405180910390fd5b8091505092915050565b82805462000c8a9062000fee565b90600052602060002090601f01602090048101928262000cae576000855562000cfa565b82601f1062000cc957805160ff191683800117855562000cfa565b8280016001018555821562000cfa579182015b8281111562000cf957825182559160200191906001019062000cdc565b5b50905062000d09919062000d0d565b5090565b5b8082111562000d2857600081600090555060010162000d0e565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d5e8262000d31565b9050919050565b62000d708162000d51565b811462000d7c57600080fd5b50565b60008151905062000d908162000d65565b92915050565b60006020828403121562000daf5762000dae62000d2c565b5b600062000dbf8482850162000d7f565b91505092915050565b62000dd38162000d51565b82525050565b600060408201905062000df0600083018562000dc8565b62000dff602083018462000dc8565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e4c8262000e06565b915062000e598362000e06565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e915762000e9062000e10565b5b828201905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ee5601f8362000e9c565b915062000ef28262000ead565b602082019050919050565b6000602082019050818103600083015262000f188162000ed6565b9050919050565b62000f2a8162000e06565b82525050565b600060208201905062000f47600083018462000f1f565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062000f85601b8362000e9c565b915062000f928262000f4d565b602082019050919050565b6000602082019050818103600083015262000fb88162000f76565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200100757607f821691505b602082108114156200101e576200101d62000fbf565b5b50919050565b60805160a05161366e6200106d6000396000610b6e01526000818161099f015281816124f2015281816125e201528181612609015281816126a501526126cc015261366e6000f3fe6080604052600436106102135760003560e01c806382f87d2211610118578063d2943933116100a0578063e194c2b21161006f578063e194c2b2146107e0578063e2f456051461080b578063f2fde38b14610836578063f398d3041461085f578063f8b45b051461089c5761021a565b8063d294393314610710578063d64dc9bd1461073b578063dd62ed3e14610766578063e0bf7fd1146107a35761021a565b8063a457c2d7116100e7578063a457c2d714610603578063a9059cbb14610640578063b62496f51461067d578063bbc0c742146106ba578063cdbf7455146106e55761021a565b806382f87d221461056b5780638a8c523c146105965780638da5cb5b146105ad57806395d89b41146105d85761021a565b8063395093511161019b5780636ddd17131161016a5780636ddd1713146104965780636fc61774146104c157806370a08231146104ec578063715018a61461052957806375f0a874146105405761021a565b806339509351146103d857806340f979131461041557806349bd5a5e146104405780636d7adcad1461046b5761021a565b80631694505e116101e25780631694505e146102ef57806318160ddd1461031a5780631a8145bb1461034557806323b872dd14610370578063313ce567146103ad5761021a565b806303c525731461021f57806306fdde031461024a5780630855f25d14610275578063095ea7b3146102b25761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b506102346108c7565b6040516102419190612826565b60405180910390f35b34801561025657600080fd5b5061025f6108cd565b60405161026c91906128da565b60405180910390f35b34801561028157600080fd5b5061029c6004803603810190610297919061295f565b61095f565b6040516102a991906129a7565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d491906129ee565b61097f565b6040516102e691906129a7565b60405180910390f35b3480156102fb57600080fd5b5061030461099d565b6040516103119190612a8d565b60405180910390f35b34801561032657600080fd5b5061032f6109c1565b60405161033c9190612826565b60405180910390f35b34801561035157600080fd5b5061035a6109cb565b6040516103679190612826565b60405180910390f35b34801561037c57600080fd5b5061039760048036038101906103929190612aa8565b6109d1565b6040516103a491906129a7565b60405180910390f35b3480156103b957600080fd5b506103c2610aaa565b6040516103cf9190612b17565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa91906129ee565b610ab3565b60405161040c91906129a7565b60405180910390f35b34801561042157600080fd5b5061042a610b66565b6040516104379190612826565b60405180910390f35b34801561044c57600080fd5b50610455610b6c565b6040516104629190612b41565b60405180910390f35b34801561047757600080fd5b50610480610b90565b60405161048d9190612826565b60405180910390f35b3480156104a257600080fd5b506104ab610b96565b6040516104b891906129a7565b60405180910390f35b3480156104cd57600080fd5b506104d6610ba9565b6040516104e39190612826565b60405180910390f35b3480156104f857600080fd5b50610513600480360381019061050e919061295f565b610baf565b6040516105209190612826565b60405180910390f35b34801561053557600080fd5b5061053e610bf7565b005b34801561054c57600080fd5b50610555610d4f565b6040516105629190612b41565b60405180910390f35b34801561057757600080fd5b50610580610d75565b60405161058d9190612826565b60405180910390f35b3480156105a257600080fd5b506105ab610d7b565b005b3480156105b957600080fd5b506105c2610e51565b6040516105cf9190612b41565b60405180910390f35b3480156105e457600080fd5b506105ed610e7b565b6040516105fa91906128da565b60405180910390f35b34801561060f57600080fd5b5061062a600480360381019061062591906129ee565b610f0d565b60405161063791906129a7565b60405180910390f35b34801561064c57600080fd5b50610667600480360381019061066291906129ee565b610fda565b60405161067491906129a7565b60405180910390f35b34801561068957600080fd5b506106a4600480360381019061069f919061295f565b610ff8565b6040516106b191906129a7565b60405180910390f35b3480156106c657600080fd5b506106cf611018565b6040516106dc91906129a7565b60405180910390f35b3480156106f157600080fd5b506106fa61102b565b6040516107079190612826565b60405180910390f35b34801561071c57600080fd5b50610725611031565b6040516107329190612826565b60405180910390f35b34801561074757600080fd5b50610750611037565b60405161075d9190612826565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190612b5c565b61103d565b60405161079a9190612826565b60405180910390f35b3480156107af57600080fd5b506107ca60048036038101906107c5919061295f565b6110c4565b6040516107d791906129a7565b60405180910390f35b3480156107ec57600080fd5b506107f56110e4565b6040516108029190612826565b60405180910390f35b34801561081757600080fd5b506108206110ea565b60405161082d9190612826565b60405180910390f35b34801561084257600080fd5b5061085d6004803603810190610858919061295f565b6110f0565b005b34801561086b57600080fd5b506108866004803603810190610881919061295f565b6112b7565b60405161089391906129a7565b60405180910390f35b3480156108a857600080fd5b506108b16112d7565b6040516108be9190612826565b60405180910390f35b600d5481565b6060600380546108dc90612bcb565b80601f016020809104026020016040519081016040528092919081815260200182805461090890612bcb565b80156109555780601f1061092a57610100808354040283529160200191610955565b820191906000526020600020905b81548152906001019060200180831161093857829003601f168201915b5050505050905090565b60176020528060005260406000206000915054906101000a900460ff1681565b600061099361098c61133b565b8484611343565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60125481565b60006109de84848461150e565b610a9f846109ea61133b565b610a9a856040518060600160405280602881526020016135ec60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a5061133b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e2e9092919063ffffffff16565b611343565b600190509392505050565b60006012905090565b6000610b5c610ac061133b565b84610b578560016000610ad161133b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112dd90919063ffffffff16565b611343565b6001905092915050565b600f5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b60135481565b600960019054906101000a900460ff1681565b600c5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bff61133b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8590612c49565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b610d8361133b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0990612c49565b60405180910390fd5b6001600960006101000a81548160ff0219169083151502179055506001600960016101000a81548160ff02191690831515021790555043601481905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610e8a90612bcb565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb690612bcb565b8015610f035780601f10610ed857610100808354040283529160200191610f03565b820191906000526020600020905b815481529060010190602001808311610ee657829003601f168201915b5050505050905090565b6000610fd0610f1a61133b565b84610fcb856040518060600160405280602581526020016136146025913960016000610f4461133b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e2e9092919063ffffffff16565b611343565b6001905092915050565b6000610fee610fe761133b565b848461150e565b6001905092915050565b60186020528060005260406000206000915054906101000a900460ff1681565b600960009054906101000a900460ff1681565b600e5481565b60105481565b600a5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60156020528060005260406000206000915054906101000a900460ff1681565b60115481565b60075481565b6110f861133b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117e90612c49565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee90612cdb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60166020528060005260406000206000915054906101000a900460ff1681565b60085481565b60008082846112ec9190612d2a565b905083811015611331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132890612dcc565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113aa90612e5e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141a90612ef0565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115019190612826565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561157e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157590612f82565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e590613014565b60405180910390fd5b60008114156116085761160383836000611e92565b611e29565b611610610e51565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561167e575061164e610e51565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156116b75750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156116f1575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561170a5750600560149054906101000a900460ff16155b1561190657600960009054906101000a900460ff1661180457601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806117c45750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fa90613080565b60405180910390fd5b5b601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156118a75750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611905576008546118b883610baf565b826118c39190612d2a565b1115611904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fb906130ec565b60405180910390fd5b5b5b600061191130610baf565b9050600060075482101590508080156119365750600960019054906101000a900460ff165b801561194f5750600560149054906101000a900460ff16155b80156119a55750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156119fb5750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611a515750601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611a95576001600560146101000a81548160ff021916908315150217905550611a79612127565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff161590506000601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611b505750601860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b9050601560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611bf35750601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80611bfb5750805b15611c0557600091505b60008215611e1857601860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611c6857506000600b54115b15611d0257611c956064611c87600b548961233f90919063ffffffff16565b6123ba90919063ffffffff16565b9050600b54600c5482611ca8919061310c565b611cb29190613195565b60126000828254611cc39190612d2a565b92505081905550600b54600d5482611cdb919061310c565b611ce59190613195565b60136000828254611cf69190612d2a565b92505081905550611df4565b601860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611d5d57506000600f54115b15611df357611d8a6064611d7c600f548961233f90919063ffffffff16565b6123ba90919063ffffffff16565b9050600f5460105482611d9d919061310c565b611da79190613195565b60126000828254611db89190612d2a565b92505081905550600f5460115482611dd0919061310c565b611dda9190613195565b60136000828254611deb9190612d2a565b925050819055505b5b6000811115611e0957611e08883083611e92565b5b8086611e1591906131c6565b95505b611e23888888611e92565b50505050505b505050565b6000838311158290611e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6d91906128da565b60405180910390fd5b5060008385611e8591906131c6565b9050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef990612f82565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6990613014565b60405180910390fd5b611f7d838383612404565b611fe8816040518060600160405280602681526020016135c6602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e2e9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061207b816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112dd90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161211a9190612826565b60405180910390a3505050565b600061213230610baf565b905060006013546012546121469190612d2a565b90506000808314806121585750600082145b156121655750505061233d565b6014600754612174919061310c565b83111561218d57601460075461218a919061310c565b92505b6000600283601254866121a0919061310c565b6121aa9190613195565b6121b49190613195565b905060006121cb828661240990919063ffffffff16565b905060004790506121db82612453565b60006121f0824761240990919063ffffffff16565b90506000612226858861220391906131c6565b6122186013548561233f90919063ffffffff16565b6123ba90919063ffffffff16565b90506000818361223691906131c6565b9050600060128190555060006013819055506000861180156122585750600081115b156122a557612267868261269f565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561858260125460405161229c939291906131fa565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516122eb90613262565b60006040518083038185875af1925050503d8060008114612328576040519150601f19603f3d011682016040523d82523d6000602084013e61232d565b606091505b5050809750505050505050505050505b565b60008083141561235257600090506123b4565b60008284612360919061310c565b905082848261236f9190613195565b146123af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a6906132e9565b60405180910390fd5b809150505b92915050565b60006123fc83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506127aa565b905092915050565b505050565b600061244b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611e2e565b905092915050565b6000600267ffffffffffffffff8111156124705761246f613309565b5b60405190808252806020026020018201604052801561249e5781602001602082028036833780820191505090505b50905030816000815181106124b6576124b5613338565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561255657600080fd5b505afa15801561256a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061258e919061337c565b816001815181106125a2576125a1613338565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612607307f000000000000000000000000000000000000000000000000000000000000000084611343565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016126699594939291906134a2565b600060405180830381600087803b15801561268357600080fd5b505af1158015612697573d6000803e3d6000fd5b505050505050565b6126ca307f000000000000000000000000000000000000000000000000000000000000000084611343565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401612751969594939291906134fc565b6060604051808303818588803b15801561276a57600080fd5b505af115801561277e573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906127a39190613572565b5050505050565b600080831182906127f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e891906128da565b60405180910390fd5b50600083856128009190613195565b9050809150509392505050565b6000819050919050565b6128208161280d565b82525050565b600060208201905061283b6000830184612817565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561287b578082015181840152602081019050612860565b8381111561288a576000848401525b50505050565b6000601f19601f8301169050919050565b60006128ac82612841565b6128b6818561284c565b93506128c681856020860161285d565b6128cf81612890565b840191505092915050565b600060208201905081810360008301526128f481846128a1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061292c82612901565b9050919050565b61293c81612921565b811461294757600080fd5b50565b60008135905061295981612933565b92915050565b600060208284031215612975576129746128fc565b5b60006129838482850161294a565b91505092915050565b60008115159050919050565b6129a18161298c565b82525050565b60006020820190506129bc6000830184612998565b92915050565b6129cb8161280d565b81146129d657600080fd5b50565b6000813590506129e8816129c2565b92915050565b60008060408385031215612a0557612a046128fc565b5b6000612a138582860161294a565b9250506020612a24858286016129d9565b9150509250929050565b6000819050919050565b6000612a53612a4e612a4984612901565b612a2e565b612901565b9050919050565b6000612a6582612a38565b9050919050565b6000612a7782612a5a565b9050919050565b612a8781612a6c565b82525050565b6000602082019050612aa26000830184612a7e565b92915050565b600080600060608486031215612ac157612ac06128fc565b5b6000612acf8682870161294a565b9350506020612ae08682870161294a565b9250506040612af1868287016129d9565b9150509250925092565b600060ff82169050919050565b612b1181612afb565b82525050565b6000602082019050612b2c6000830184612b08565b92915050565b612b3b81612921565b82525050565b6000602082019050612b566000830184612b32565b92915050565b60008060408385031215612b7357612b726128fc565b5b6000612b818582860161294a565b9250506020612b928582860161294a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612be357607f821691505b60208210811415612bf757612bf6612b9c565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c3360208361284c565b9150612c3e82612bfd565b602082019050919050565b60006020820190508181036000830152612c6281612c26565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612cc560268361284c565b9150612cd082612c69565b604082019050919050565b60006020820190508181036000830152612cf481612cb8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d358261280d565b9150612d408361280d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d7557612d74612cfb565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000612db6601b8361284c565b9150612dc182612d80565b602082019050919050565b60006020820190508181036000830152612de581612da9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612e4860248361284c565b9150612e5382612dec565b604082019050919050565b60006020820190508181036000830152612e7781612e3b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612eda60228361284c565b9150612ee582612e7e565b604082019050919050565b60006020820190508181036000830152612f0981612ecd565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612f6c60258361284c565b9150612f7782612f10565b604082019050919050565b60006020820190508181036000830152612f9b81612f5f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612ffe60238361284c565b915061300982612fa2565b604082019050919050565b6000602082019050818103600083015261302d81612ff1565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061306a60168361284c565b915061307582613034565b602082019050919050565b600060208201905081810360008301526130998161305d565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006130d660138361284c565b91506130e1826130a0565b602082019050919050565b60006020820190508181036000830152613105816130c9565b9050919050565b60006131178261280d565b91506131228361280d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561315b5761315a612cfb565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006131a08261280d565b91506131ab8361280d565b9250826131bb576131ba613166565b5b828204905092915050565b60006131d18261280d565b91506131dc8361280d565b9250828210156131ef576131ee612cfb565b5b828203905092915050565b600060608201905061320f6000830186612817565b61321c6020830185612817565b6132296040830184612817565b949350505050565b600081905092915050565b50565b600061324c600083613231565b91506132578261323c565b600082019050919050565b600061326d8261323f565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006132d360218361284c565b91506132de82613277565b604082019050919050565b60006020820190508181036000830152613302816132c6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061337681612933565b92915050565b600060208284031215613392576133916128fc565b5b60006133a084828501613367565b91505092915050565b6000819050919050565b60006133ce6133c96133c4846133a9565b612a2e565b61280d565b9050919050565b6133de816133b3565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61341981612921565b82525050565b600061342b8383613410565b60208301905092915050565b6000602082019050919050565b600061344f826133e4565b61345981856133ef565b935061346483613400565b8060005b8381101561349557815161347c888261341f565b975061348783613437565b925050600181019050613468565b5085935050505092915050565b600060a0820190506134b76000830188612817565b6134c460208301876133d5565b81810360408301526134d68186613444565b90506134e56060830185612b32565b6134f26080830184612817565b9695505050505050565b600060c0820190506135116000830189612b32565b61351e6020830188612817565b61352b60408301876133d5565b61353860608301866133d5565b6135456080830185612b32565b61355260a0830184612817565b979650505050505050565b60008151905061356c816129c2565b92915050565b60008060006060848603121561358b5761358a6128fc565b5b60006135998682870161355d565b93505060206135aa8682870161355d565b92505060406135bb8682870161355d565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200d4a7dee7b64877a29fee5f8e5b3f8ffaf2c785bcdc4ed49d2063ce53d49578a64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102135760003560e01c806382f87d2211610118578063d2943933116100a0578063e194c2b21161006f578063e194c2b2146107e0578063e2f456051461080b578063f2fde38b14610836578063f398d3041461085f578063f8b45b051461089c5761021a565b8063d294393314610710578063d64dc9bd1461073b578063dd62ed3e14610766578063e0bf7fd1146107a35761021a565b8063a457c2d7116100e7578063a457c2d714610603578063a9059cbb14610640578063b62496f51461067d578063bbc0c742146106ba578063cdbf7455146106e55761021a565b806382f87d221461056b5780638a8c523c146105965780638da5cb5b146105ad57806395d89b41146105d85761021a565b8063395093511161019b5780636ddd17131161016a5780636ddd1713146104965780636fc61774146104c157806370a08231146104ec578063715018a61461052957806375f0a874146105405761021a565b806339509351146103d857806340f979131461041557806349bd5a5e146104405780636d7adcad1461046b5761021a565b80631694505e116101e25780631694505e146102ef57806318160ddd1461031a5780631a8145bb1461034557806323b872dd14610370578063313ce567146103ad5761021a565b806303c525731461021f57806306fdde031461024a5780630855f25d14610275578063095ea7b3146102b25761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b506102346108c7565b6040516102419190612826565b60405180910390f35b34801561025657600080fd5b5061025f6108cd565b60405161026c91906128da565b60405180910390f35b34801561028157600080fd5b5061029c6004803603810190610297919061295f565b61095f565b6040516102a991906129a7565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d491906129ee565b61097f565b6040516102e691906129a7565b60405180910390f35b3480156102fb57600080fd5b5061030461099d565b6040516103119190612a8d565b60405180910390f35b34801561032657600080fd5b5061032f6109c1565b60405161033c9190612826565b60405180910390f35b34801561035157600080fd5b5061035a6109cb565b6040516103679190612826565b60405180910390f35b34801561037c57600080fd5b5061039760048036038101906103929190612aa8565b6109d1565b6040516103a491906129a7565b60405180910390f35b3480156103b957600080fd5b506103c2610aaa565b6040516103cf9190612b17565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa91906129ee565b610ab3565b60405161040c91906129a7565b60405180910390f35b34801561042157600080fd5b5061042a610b66565b6040516104379190612826565b60405180910390f35b34801561044c57600080fd5b50610455610b6c565b6040516104629190612b41565b60405180910390f35b34801561047757600080fd5b50610480610b90565b60405161048d9190612826565b60405180910390f35b3480156104a257600080fd5b506104ab610b96565b6040516104b891906129a7565b60405180910390f35b3480156104cd57600080fd5b506104d6610ba9565b6040516104e39190612826565b60405180910390f35b3480156104f857600080fd5b50610513600480360381019061050e919061295f565b610baf565b6040516105209190612826565b60405180910390f35b34801561053557600080fd5b5061053e610bf7565b005b34801561054c57600080fd5b50610555610d4f565b6040516105629190612b41565b60405180910390f35b34801561057757600080fd5b50610580610d75565b60405161058d9190612826565b60405180910390f35b3480156105a257600080fd5b506105ab610d7b565b005b3480156105b957600080fd5b506105c2610e51565b6040516105cf9190612b41565b60405180910390f35b3480156105e457600080fd5b506105ed610e7b565b6040516105fa91906128da565b60405180910390f35b34801561060f57600080fd5b5061062a600480360381019061062591906129ee565b610f0d565b60405161063791906129a7565b60405180910390f35b34801561064c57600080fd5b50610667600480360381019061066291906129ee565b610fda565b60405161067491906129a7565b60405180910390f35b34801561068957600080fd5b506106a4600480360381019061069f919061295f565b610ff8565b6040516106b191906129a7565b60405180910390f35b3480156106c657600080fd5b506106cf611018565b6040516106dc91906129a7565b60405180910390f35b3480156106f157600080fd5b506106fa61102b565b6040516107079190612826565b60405180910390f35b34801561071c57600080fd5b50610725611031565b6040516107329190612826565b60405180910390f35b34801561074757600080fd5b50610750611037565b60405161075d9190612826565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190612b5c565b61103d565b60405161079a9190612826565b60405180910390f35b3480156107af57600080fd5b506107ca60048036038101906107c5919061295f565b6110c4565b6040516107d791906129a7565b60405180910390f35b3480156107ec57600080fd5b506107f56110e4565b6040516108029190612826565b60405180910390f35b34801561081757600080fd5b506108206110ea565b60405161082d9190612826565b60405180910390f35b34801561084257600080fd5b5061085d6004803603810190610858919061295f565b6110f0565b005b34801561086b57600080fd5b506108866004803603810190610881919061295f565b6112b7565b60405161089391906129a7565b60405180910390f35b3480156108a857600080fd5b506108b16112d7565b6040516108be9190612826565b60405180910390f35b600d5481565b6060600380546108dc90612bcb565b80601f016020809104026020016040519081016040528092919081815260200182805461090890612bcb565b80156109555780601f1061092a57610100808354040283529160200191610955565b820191906000526020600020905b81548152906001019060200180831161093857829003601f168201915b5050505050905090565b60176020528060005260406000206000915054906101000a900460ff1681565b600061099361098c61133b565b8484611343565b6001905092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60125481565b60006109de84848461150e565b610a9f846109ea61133b565b610a9a856040518060600160405280602881526020016135ec60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a5061133b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e2e9092919063ffffffff16565b611343565b600190509392505050565b60006012905090565b6000610b5c610ac061133b565b84610b578560016000610ad161133b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112dd90919063ffffffff16565b611343565b6001905092915050565b600f5481565b7f0000000000000000000000009c0b8c9e5c2c3146eacc8c007c601c0d9f46717481565b60135481565b600960019054906101000a900460ff1681565b600c5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bff61133b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8590612c49565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b610d8361133b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0990612c49565b60405180910390fd5b6001600960006101000a81548160ff0219169083151502179055506001600960016101000a81548160ff02191690831515021790555043601481905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610e8a90612bcb565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb690612bcb565b8015610f035780601f10610ed857610100808354040283529160200191610f03565b820191906000526020600020905b815481529060010190602001808311610ee657829003601f168201915b5050505050905090565b6000610fd0610f1a61133b565b84610fcb856040518060600160405280602581526020016136146025913960016000610f4461133b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e2e9092919063ffffffff16565b611343565b6001905092915050565b6000610fee610fe761133b565b848461150e565b6001905092915050565b60186020528060005260406000206000915054906101000a900460ff1681565b600960009054906101000a900460ff1681565b600e5481565b60105481565b600a5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60156020528060005260406000206000915054906101000a900460ff1681565b60115481565b60075481565b6110f861133b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117e90612c49565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee90612cdb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60166020528060005260406000206000915054906101000a900460ff1681565b60085481565b60008082846112ec9190612d2a565b905083811015611331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132890612dcc565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113aa90612e5e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141a90612ef0565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115019190612826565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561157e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157590612f82565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e590613014565b60405180910390fd5b60008114156116085761160383836000611e92565b611e29565b611610610e51565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561167e575061164e610e51565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156116b75750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156116f1575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561170a5750600560149054906101000a900460ff16155b1561190657600960009054906101000a900460ff1661180457601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806117c45750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fa90613080565b60405180910390fd5b5b601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156118a75750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611905576008546118b883610baf565b826118c39190612d2a565b1115611904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fb906130ec565b60405180910390fd5b5b5b600061191130610baf565b9050600060075482101590508080156119365750600960019054906101000a900460ff165b801561194f5750600560149054906101000a900460ff16155b80156119a55750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156119fb5750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611a515750601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611a95576001600560146101000a81548160ff021916908315150217905550611a79612127565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff161590506000601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611b505750601860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b9050601560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611bf35750601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80611bfb5750805b15611c0557600091505b60008215611e1857601860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611c6857506000600b54115b15611d0257611c956064611c87600b548961233f90919063ffffffff16565b6123ba90919063ffffffff16565b9050600b54600c5482611ca8919061310c565b611cb29190613195565b60126000828254611cc39190612d2a565b92505081905550600b54600d5482611cdb919061310c565b611ce59190613195565b60136000828254611cf69190612d2a565b92505081905550611df4565b601860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611d5d57506000600f54115b15611df357611d8a6064611d7c600f548961233f90919063ffffffff16565b6123ba90919063ffffffff16565b9050600f5460105482611d9d919061310c565b611da79190613195565b60126000828254611db89190612d2a565b92505081905550600f5460115482611dd0919061310c565b611dda9190613195565b60136000828254611deb9190612d2a565b925050819055505b5b6000811115611e0957611e08883083611e92565b5b8086611e1591906131c6565b95505b611e23888888611e92565b50505050505b505050565b6000838311158290611e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6d91906128da565b60405180910390fd5b5060008385611e8591906131c6565b9050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef990612f82565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6990613014565b60405180910390fd5b611f7d838383612404565b611fe8816040518060600160405280602681526020016135c6602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e2e9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061207b816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112dd90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161211a9190612826565b60405180910390a3505050565b600061213230610baf565b905060006013546012546121469190612d2a565b90506000808314806121585750600082145b156121655750505061233d565b6014600754612174919061310c565b83111561218d57601460075461218a919061310c565b92505b6000600283601254866121a0919061310c565b6121aa9190613195565b6121b49190613195565b905060006121cb828661240990919063ffffffff16565b905060004790506121db82612453565b60006121f0824761240990919063ffffffff16565b90506000612226858861220391906131c6565b6122186013548561233f90919063ffffffff16565b6123ba90919063ffffffff16565b90506000818361223691906131c6565b9050600060128190555060006013819055506000861180156122585750600081115b156122a557612267868261269f565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561858260125460405161229c939291906131fa565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516122eb90613262565b60006040518083038185875af1925050503d8060008114612328576040519150601f19603f3d011682016040523d82523d6000602084013e61232d565b606091505b5050809750505050505050505050505b565b60008083141561235257600090506123b4565b60008284612360919061310c565b905082848261236f9190613195565b146123af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a6906132e9565b60405180910390fd5b809150505b92915050565b60006123fc83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506127aa565b905092915050565b505050565b600061244b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611e2e565b905092915050565b6000600267ffffffffffffffff8111156124705761246f613309565b5b60405190808252806020026020018201604052801561249e5781602001602082028036833780820191505090505b50905030816000815181106124b6576124b5613338565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561255657600080fd5b505afa15801561256a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061258e919061337c565b816001815181106125a2576125a1613338565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612607307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611343565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016126699594939291906134a2565b600060405180830381600087803b15801561268357600080fd5b505af1158015612697573d6000803e3d6000fd5b505050505050565b6126ca307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611343565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401612751969594939291906134fc565b6060604051808303818588803b15801561276a57600080fd5b505af115801561277e573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906127a39190613572565b5050505050565b600080831182906127f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e891906128da565b60405180910390fd5b50600083856128009190613195565b9050809150509392505050565b6000819050919050565b6128208161280d565b82525050565b600060208201905061283b6000830184612817565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561287b578082015181840152602081019050612860565b8381111561288a576000848401525b50505050565b6000601f19601f8301169050919050565b60006128ac82612841565b6128b6818561284c565b93506128c681856020860161285d565b6128cf81612890565b840191505092915050565b600060208201905081810360008301526128f481846128a1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061292c82612901565b9050919050565b61293c81612921565b811461294757600080fd5b50565b60008135905061295981612933565b92915050565b600060208284031215612975576129746128fc565b5b60006129838482850161294a565b91505092915050565b60008115159050919050565b6129a18161298c565b82525050565b60006020820190506129bc6000830184612998565b92915050565b6129cb8161280d565b81146129d657600080fd5b50565b6000813590506129e8816129c2565b92915050565b60008060408385031215612a0557612a046128fc565b5b6000612a138582860161294a565b9250506020612a24858286016129d9565b9150509250929050565b6000819050919050565b6000612a53612a4e612a4984612901565b612a2e565b612901565b9050919050565b6000612a6582612a38565b9050919050565b6000612a7782612a5a565b9050919050565b612a8781612a6c565b82525050565b6000602082019050612aa26000830184612a7e565b92915050565b600080600060608486031215612ac157612ac06128fc565b5b6000612acf8682870161294a565b9350506020612ae08682870161294a565b9250506040612af1868287016129d9565b9150509250925092565b600060ff82169050919050565b612b1181612afb565b82525050565b6000602082019050612b2c6000830184612b08565b92915050565b612b3b81612921565b82525050565b6000602082019050612b566000830184612b32565b92915050565b60008060408385031215612b7357612b726128fc565b5b6000612b818582860161294a565b9250506020612b928582860161294a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612be357607f821691505b60208210811415612bf757612bf6612b9c565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c3360208361284c565b9150612c3e82612bfd565b602082019050919050565b60006020820190508181036000830152612c6281612c26565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612cc560268361284c565b9150612cd082612c69565b604082019050919050565b60006020820190508181036000830152612cf481612cb8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d358261280d565b9150612d408361280d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d7557612d74612cfb565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000612db6601b8361284c565b9150612dc182612d80565b602082019050919050565b60006020820190508181036000830152612de581612da9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612e4860248361284c565b9150612e5382612dec565b604082019050919050565b60006020820190508181036000830152612e7781612e3b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612eda60228361284c565b9150612ee582612e7e565b604082019050919050565b60006020820190508181036000830152612f0981612ecd565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612f6c60258361284c565b9150612f7782612f10565b604082019050919050565b60006020820190508181036000830152612f9b81612f5f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612ffe60238361284c565b915061300982612fa2565b604082019050919050565b6000602082019050818103600083015261302d81612ff1565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061306a60168361284c565b915061307582613034565b602082019050919050565b600060208201905081810360008301526130998161305d565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006130d660138361284c565b91506130e1826130a0565b602082019050919050565b60006020820190508181036000830152613105816130c9565b9050919050565b60006131178261280d565b91506131228361280d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561315b5761315a612cfb565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006131a08261280d565b91506131ab8361280d565b9250826131bb576131ba613166565b5b828204905092915050565b60006131d18261280d565b91506131dc8361280d565b9250828210156131ef576131ee612cfb565b5b828203905092915050565b600060608201905061320f6000830186612817565b61321c6020830185612817565b6132296040830184612817565b949350505050565b600081905092915050565b50565b600061324c600083613231565b91506132578261323c565b600082019050919050565b600061326d8261323f565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006132d360218361284c565b91506132de82613277565b604082019050919050565b60006020820190508181036000830152613302816132c6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061337681612933565b92915050565b600060208284031215613392576133916128fc565b5b60006133a084828501613367565b91505092915050565b6000819050919050565b60006133ce6133c96133c4846133a9565b612a2e565b61280d565b9050919050565b6133de816133b3565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61341981612921565b82525050565b600061342b8383613410565b60208301905092915050565b6000602082019050919050565b600061344f826133e4565b61345981856133ef565b935061346483613400565b8060005b8381101561349557815161347c888261341f565b975061348783613437565b925050600181019050613468565b5085935050505092915050565b600060a0820190506134b76000830188612817565b6134c460208301876133d5565b81810360408301526134d68186613444565b90506134e56060830185612b32565b6134f26080830184612817565b9695505050505050565b600060c0820190506135116000830189612b32565b61351e6020830188612817565b61352b60408301876133d5565b61353860608301866133d5565b6135456080830185612b32565b61355260a0830184612817565b979650505050505050565b60008151905061356c816129c2565b92915050565b60008060006060848603121561358b5761358a6128fc565b5b60006135998682870161355d565b93505060206135aa8682870161355d565b92505060406135bb8682870161355d565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200d4a7dee7b64877a29fee5f8e5b3f8ffaf2c785bcdc4ed49d2063ce53d49578a64736f6c63430008090033

Deployed Bytecode Sourcemap

28815:9922:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29341:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7667:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29884:68;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9841:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28898:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8790:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29521:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10493:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8631:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11258:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29412:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28956:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29561:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29193:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29304:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8962:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21415:148;;;;;;;;;;;;;:::i;:::-;;29035:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29270:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33208:148;;;;;;;;;;;;;:::i;:::-;;20771:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7887:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11980:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9303:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30111:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29153:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29375:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29447:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29234:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9542:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29751:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29485:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29079:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21719:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29810:67;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29119:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29341;;;;:::o;7667:100::-;7721:13;7754:5;7747:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7667:100;:::o;29884:68::-;;;;;;;;;;;;;;;;;;;;;;:::o;9841:169::-;9924:4;9941:39;9950:12;:10;:12::i;:::-;9964:7;9973:6;9941:8;:39::i;:::-;9998:4;9991:11;;9841:169;;;;:::o;28898:51::-;;;:::o;8790:108::-;8851:7;8878:12;;8871:19;;8790:108;:::o;29521:33::-;;;;:::o;10493:355::-;10633:4;10650:36;10660:6;10668:9;10679:6;10650:9;:36::i;:::-;10697:121;10706:6;10714:12;:10;:12::i;:::-;10728:89;10766:6;10728:89;;;;;;;;;;;;;;;;;:11;:19;10740:6;10728:19;;;;;;;;;;;;;;;:33;10748:12;:10;:12::i;:::-;10728:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;10697:8;:121::i;:::-;10836:4;10829:11;;10493:355;;;;;:::o;8631:93::-;8689:5;8714:2;8707:9;;8631:93;:::o;11258:218::-;11346:4;11363:83;11372:12;:10;:12::i;:::-;11386:7;11395:50;11434:10;11395:11;:25;11407:12;:10;:12::i;:::-;11395:25;;;;;;;;;;;;;;;:34;11421:7;11395:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11363:8;:83::i;:::-;11464:4;11457:11;;11258:218;;;;:::o;29412:28::-;;;;:::o;28956:38::-;;;:::o;29561:27::-;;;;:::o;29193:31::-;;;;;;;;;;;;;:::o;29304:30::-;;;;:::o;8962:127::-;9036:7;9063:9;:18;9073:7;9063:18;;;;;;;;;;;;;;;;9056:25;;8962:127;;;:::o;21415:148::-;20994:12;:10;:12::i;:::-;20984:22;;:6;;;;;;;;;;;:22;;;20976:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;21522:1:::1;21485:40;;21506:6;;;;;;;;;;;21485:40;;;;;;;;;;;;21553:1;21536:6;;:19;;;;;;;;;;;;;;;;;;21415:148::o:0;29035:30::-;;;;;;;;;;;;;:::o;29270:27::-;;;;:::o;33208:148::-;20994:12;:10;:12::i;:::-;20984:22;;:6;;;;;;;;;;;:22;;;20976:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33279:4:::1;33263:13;;:20;;;;;;;;;;;;;;;;;;33308:4;33294:11;;:18;;;;;;;;;;;;;;;;;;33336:12;33323:10;:25;;;;33208:148::o:0;20771:79::-;20809:7;20836:6;;;;;;;;;;;20829:13;;20771:79;:::o;7887:104::-;7943:13;7976:7;7969:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7887:104;:::o;11980:269::-;12073:4;12090:129;12099:12;:10;:12::i;:::-;12113:7;12122:96;12161:15;12122:96;;;;;;;;;;;;;;;;;:11;:25;12134:12;:10;:12::i;:::-;12122:25;;;;;;;;;;;;;;;:34;12148:7;12122:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;12090:8;:129::i;:::-;12237:4;12230:11;;11980:269;;;;:::o;9303:175::-;9389:4;9406:42;9416:12;:10;:12::i;:::-;9430:9;9441:6;9406:9;:42::i;:::-;9466:4;9459:11;;9303:175;;;;:::o;30111:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;29153:33::-;;;;;;;;;;;;;:::o;29375:30::-;;;;:::o;29447:31::-;;;;:::o;29234:29::-;;;;:::o;9542:151::-;9631:7;9658:11;:18;9670:5;9658:18;;;;;;;;;;;;;;;:27;9677:7;9658:27;;;;;;;;;;;;;;;;9651:34;;9542:151;;;;:::o;29751:52::-;;;;;;;;;;;;;;;;;;;;;;:::o;29485:25::-;;;;:::o;29079:33::-;;;;:::o;21719:244::-;20994:12;:10;:12::i;:::-;20984:22;;:6;;;;;;;;;;;:22;;;20976:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;21828:1:::1;21808:22;;:8;:22;;;;21800:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21918:8;21889:38;;21910:6;;;;;;;;;;;21889:38;;;;;;;;;;;;21947:8;21938:6;;:17;;;;;;;;;;;;;;;;;;21719:244:::0;:::o;29810:67::-;;;;;;;;;;;;;;;;;;;;;;:::o;29119:24::-;;;;:::o;15803:182::-;15861:7;15881:9;15897:1;15893;:5;;;;:::i;:::-;15881:17;;15922:1;15917;:6;;15909:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;15976:1;15969:8;;;15803:182;;;;:::o;269:98::-;322:7;349:10;342:17;;269:98;:::o;14422:381::-;14575:1;14558:19;;:5;:19;;;;14550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14656:1;14637:21;;:7;:21;;;;14629:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14741:6;14711:11;:18;14723:5;14711:18;;;;;;;;;;;;;;;:27;14730:7;14711:27;;;;;;;;;;;;;;;:36;;;;14779:7;14763:32;;14772:5;14763:32;;;14788:6;14763:32;;;;;;:::i;:::-;;;;;;;;14422:381;;;:::o;33614:2624::-;33762:1;33746:18;;:4;:18;;;;33738:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33839:1;33825:16;;:2;:16;;;;33817:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33905:1;33895:6;:11;33892:92;;;33923:28;33939:4;33945:2;33949:1;33923:15;:28::i;:::-;33966:7;;33892:92;34023:7;:5;:7::i;:::-;34015:15;;:4;:15;;;;:45;;;;;34053:7;:5;:7::i;:::-;34047:13;;:2;:13;;;;34015:45;:78;;;;;34091:1;34077:16;;:2;:16;;;;34015:78;:116;;;;;34124:6;34110:21;;:2;:21;;;;34015:116;:142;;;;;34149:8;;;;;;;;;;;34148:9;34015:142;33997:564;;;34187:13;;;;;;;;;;;34183:140;;34228:19;:25;34248:4;34228:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;34257:19;:23;34277:2;34257:23;;;;;;;;;;;;;;;;;;;;;;;;;34228:52;34220:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;34183:140;34368:25;:31;34394:4;34368:31;;;;;;;;;;;;;;;;;;;;;;;;;:74;;;;;34404:34;:38;34439:2;34404:38;;;;;;;;;;;;;;;;;;;;;;;;;34403:39;34368:74;34364:186;;;34501:9;;34484:13;34494:2;34484:9;:13::i;:::-;34475:6;:22;;;;:::i;:::-;:35;;34467:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34364:186;33997:564;34574:28;34605:24;34623:4;34605:9;:24::i;:::-;34574:55;;34643:12;34682:18;;34658:20;:42;;34643:57;;34732:7;:35;;;;;34756:11;;;;;;;;;;;34732:35;:61;;;;;34785:8;;;;;;;;;;;34784:9;34732:61;:110;;;;;34811:25;:31;34837:4;34811:31;;;;;;;;;;;;;;;;;;;;;;;;;34810:32;34732:110;:153;;;;;34860:19;:25;34880:4;34860:25;;;;;;;;;;;;;;;;;;;;;;;;;34859:26;34732:153;:194;;;;;34903:19;:23;34923:2;34903:23;;;;;;;;;;;;;;;;;;;;;;;;;34902:24;34732:194;34714:328;;;34964:4;34953:8;;:15;;;;;;;;;;;;;;;;;;34986:10;:8;:10::i;:::-;35025:5;35014:8;;:16;;;;;;;;;;;;;;;;;;34714:328;35055:12;35071:8;;;;;;;;;;;35070:9;35055:24;;35092:19;35115:25;:29;35141:2;35115:29;;;;;;;;;;;;;;;;;;;;;;;;;35114:30;:66;;;;;35149:25;:31;35175:4;35149:31;;;;;;;;;;;;;;;;;;;;;;;;;35148:32;35114:66;35092:88;;35279:19;:25;35299:4;35279:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;35308:19;:23;35328:2;35308:23;;;;;;;;;;;;;;;;;;;;;;;;;35279:52;:70;;;;35335:14;35279:70;35276:117;;;35376:5;35366:15;;35276:117;35406:12;35510:7;35507:677;;;35539:25;:31;35565:4;35539:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;35589:1;35574:12;;:16;35539:51;35535:494;;;35608:33;35637:3;35608:24;35619:12;;35608:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;35601:40;;35695:12;;35677:15;;35670:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;35648:18;;:59;;;;;;;:::i;:::-;;;;;;;;35749:12;;35737:9;;35730:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;35714:12;;:47;;;;;;;:::i;:::-;;;;;;;;35535:494;;;35793:25;:29;35819:2;35793:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;35842:1;35826:13;;:17;35793:50;35790:239;;;35863:34;35893:3;35863:25;35874:13;;35863:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;35856:41;;35952:13;;35933:16;;35926:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;35904:18;;:61;;;;;;;:::i;:::-;;;;;;;;36008:13;;35995:10;;35988:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;35972:12;;:49;;;;;;;:::i;:::-;;;;;;;;35790:239;35535:494;36058:1;36051:4;:8;36048:93;;;36083:42;36099:4;36113;36120;36083:15;:42::i;:::-;36048:93;36168:4;36158:14;;;;;:::i;:::-;;;35507:677;36197:33;36213:4;36219:2;36223:6;36197:15;:33::i;:::-;33727:2511;;;;;33614:2624;;;;:::o;16709:193::-;16795:7;16828:1;16823;:6;;16831:12;16815:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;16855:9;16871:1;16867;:5;;;;:::i;:::-;16855:17;;16893:1;16886:8;;;16709:193;;;;;:::o;12740:575::-;12898:1;12880:20;;:6;:20;;;;12872:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12982:1;12961:23;;:9;:23;;;;12953:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13038:47;13059:6;13067:9;13078:6;13038:20;:47::i;:::-;13119:71;13141:6;13119:71;;;;;;;;;;;;;;;;;:9;:17;13129:6;13119:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;13099:9;:17;13109:6;13099:17;;;;;;;;;;;;;;;:91;;;;13224:32;13249:6;13224:9;:20;13234:9;13224:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;13201:9;:20;13211:9;13201:20;;;;;;;;;;;;;;;:55;;;;13289:9;13272:35;;13281:6;13272:35;;;13300:6;13272:35;;;;;;:::i;:::-;;;;;;;;12740:575;;;:::o;37393:1338::-;37432:23;37458:24;37476:4;37458:9;:24::i;:::-;37432:50;;37493:25;37542:12;;37521:18;;:33;;;;:::i;:::-;37493:61;;37565:12;37613:1;37594:15;:20;:46;;;;37639:1;37618:17;:22;37594:46;37591:60;;;37643:7;;;;;37591:60;37706:2;37685:18;;:23;;;;:::i;:::-;37667:15;:41;37664:111;;;37761:2;37740:18;;:23;;;;:::i;:::-;37722:41;;37664:111;37836:23;37921:1;37901:17;37880:18;;37862:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;37836:86;;37933:26;37962:36;37982:15;37962;:19;;:36;;;;:::i;:::-;37933:65;;38012:25;38040:21;38012:49;;38075:36;38092:18;38075:16;:36::i;:::-;38126:18;38147:44;38173:17;38147:21;:25;;:44;;;;:::i;:::-;38126:65;;38205:17;38225:67;38276:15;38258:17;:33;;;;:::i;:::-;38225:28;38240:12;;38225:10;:14;;:28;;;;:::i;:::-;:32;;:67;;;;:::i;:::-;38205:87;;38303:23;38342:9;38329:10;:22;;;;:::i;:::-;38303:48;;38388:1;38367:18;:22;;;;38415:1;38400:12;:16;;;;38453:1;38435:15;:19;:42;;;;;38476:1;38458:15;:19;38435:42;38432:210;;;38493:46;38506:15;38523;38493:12;:46::i;:::-;38559:71;38574:18;38594:15;38611:18;;38559:71;;;;;;;;:::i;:::-;;;;;;;;38432:210;38671:15;;;;;;;;;;;38663:29;;38700:21;38663:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38650:76;;;;;37421:1310;;;;;;;;;37393:1338;:::o;17162:473::-;17220:7;17470:1;17465;:6;17461:47;;;17495:1;17488:8;;;;17461:47;17521:9;17537:1;17533;:5;;;;:::i;:::-;17521:17;;17566:1;17561;17557;:5;;;;:::i;:::-;:10;17549:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;17626:1;17619:8;;;17162:473;;;;;:::o;18112:132::-;18170:7;18197:39;18201:1;18204;18197:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;18190:46;;18112:132;;;;:::o;15407:125::-;;;;:::o;16269:136::-;16327:7;16354:43;16358:1;16361;16354:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;16347:50;;16269:136;;;;:::o;36247:597::-;36376:21;36414:1;36400:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36376:40;;36445:4;36427;36432:1;36427:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;36471:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36461:4;36466:1;36461:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;36507:62;36524:4;36539:15;36557:11;36507:8;:62::i;:::-;36609:15;:66;;;36690:11;36716:1;36760:4;36787;36807:15;36609:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36302:542;36247:597;:::o;36853:531::-;37001:62;37018:4;37033:15;37051:11;37001:8;:62::i;:::-;37107:15;:31;;;37146:9;37179:4;37199:11;37225:1;37268;37319:15;;;;;;;;;;;37350;37107:269;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;36853:531;;:::o;18741:279::-;18827:7;18859:1;18855;:5;18862:12;18847:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;18886:9;18902:1;18898;:5;;;;:::i;:::-;18886:17;;19011:1;19004:8;;;18741:279;;;;;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:99::-;494:6;528:5;522:12;512:22;;442:99;;;:::o;547:169::-;631:11;665:6;660:3;653:19;705:4;700:3;696:14;681:29;;547:169;;;;:::o;722:307::-;790:1;800:113;814:6;811:1;808:13;800:113;;;899:1;894:3;890:11;884:18;880:1;875:3;871:11;864:39;836:2;833:1;829:10;824:15;;800:113;;;931:6;928:1;925:13;922:101;;;1011:1;1002:6;997:3;993:16;986:27;922:101;771:258;722:307;;;:::o;1035:102::-;1076:6;1127:2;1123:7;1118:2;1111:5;1107:14;1103:28;1093:38;;1035:102;;;:::o;1143:364::-;1231:3;1259:39;1292:5;1259:39;:::i;:::-;1314:71;1378:6;1373:3;1314:71;:::i;:::-;1307:78;;1394:52;1439:6;1434:3;1427:4;1420:5;1416:16;1394:52;:::i;:::-;1471:29;1493:6;1471:29;:::i;:::-;1466:3;1462:39;1455:46;;1235:272;1143:364;;;;:::o;1513:313::-;1626:4;1664:2;1653:9;1649:18;1641:26;;1713:9;1707:4;1703:20;1699:1;1688:9;1684:17;1677:47;1741:78;1814:4;1805:6;1741:78;:::i;:::-;1733:86;;1513:313;;;;:::o;1913:117::-;2022:1;2019;2012:12;2159:126;2196:7;2236:42;2229:5;2225:54;2214:65;;2159:126;;;:::o;2291:96::-;2328:7;2357:24;2375:5;2357:24;:::i;:::-;2346:35;;2291:96;;;:::o;2393:122::-;2466:24;2484:5;2466:24;:::i;:::-;2459:5;2456:35;2446:63;;2505:1;2502;2495:12;2446:63;2393:122;:::o;2521:139::-;2567:5;2605:6;2592:20;2583:29;;2621:33;2648:5;2621:33;:::i;:::-;2521:139;;;;:::o;2666:329::-;2725:6;2774:2;2762:9;2753:7;2749:23;2745:32;2742:119;;;2780:79;;:::i;:::-;2742:119;2900:1;2925:53;2970:7;2961:6;2950:9;2946:22;2925:53;:::i;:::-;2915:63;;2871:117;2666:329;;;;:::o;3001:90::-;3035:7;3078:5;3071:13;3064:21;3053:32;;3001:90;;;:::o;3097:109::-;3178:21;3193:5;3178:21;:::i;:::-;3173:3;3166:34;3097:109;;:::o;3212:210::-;3299:4;3337:2;3326:9;3322:18;3314:26;;3350:65;3412:1;3401:9;3397:17;3388:6;3350:65;:::i;:::-;3212:210;;;;:::o;3428:122::-;3501:24;3519:5;3501:24;:::i;:::-;3494:5;3491:35;3481:63;;3540:1;3537;3530:12;3481:63;3428:122;:::o;3556:139::-;3602:5;3640:6;3627:20;3618:29;;3656:33;3683:5;3656:33;:::i;:::-;3556:139;;;;:::o;3701:474::-;3769:6;3777;3826:2;3814:9;3805:7;3801:23;3797:32;3794:119;;;3832:79;;:::i;:::-;3794:119;3952:1;3977:53;4022:7;4013:6;4002:9;3998:22;3977:53;:::i;:::-;3967:63;;3923:117;4079:2;4105:53;4150:7;4141:6;4130:9;4126:22;4105:53;:::i;:::-;4095:63;;4050:118;3701:474;;;;;:::o;4181:60::-;4209:3;4230:5;4223:12;;4181:60;;;:::o;4247:142::-;4297:9;4330:53;4348:34;4357:24;4375:5;4357:24;:::i;:::-;4348:34;:::i;:::-;4330:53;:::i;:::-;4317:66;;4247:142;;;:::o;4395:126::-;4445:9;4478:37;4509:5;4478:37;:::i;:::-;4465:50;;4395:126;;;:::o;4527:153::-;4604:9;4637:37;4668:5;4637:37;:::i;:::-;4624:50;;4527:153;;;:::o;4686:185::-;4800:64;4858:5;4800:64;:::i;:::-;4795:3;4788:77;4686:185;;:::o;4877:276::-;4997:4;5035:2;5024:9;5020:18;5012:26;;5048:98;5143:1;5132:9;5128:17;5119:6;5048:98;:::i;:::-;4877:276;;;;:::o;5159:619::-;5236:6;5244;5252;5301:2;5289:9;5280:7;5276:23;5272:32;5269:119;;;5307:79;;:::i;:::-;5269:119;5427:1;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5398:117;5554:2;5580:53;5625:7;5616:6;5605:9;5601:22;5580:53;:::i;:::-;5570:63;;5525:118;5682:2;5708:53;5753:7;5744:6;5733:9;5729:22;5708:53;:::i;:::-;5698:63;;5653:118;5159:619;;;;;:::o;5784:86::-;5819:7;5859:4;5852:5;5848:16;5837:27;;5784:86;;;:::o;5876:112::-;5959:22;5975:5;5959:22;:::i;:::-;5954:3;5947:35;5876:112;;:::o;5994:214::-;6083:4;6121:2;6110:9;6106:18;6098:26;;6134:67;6198:1;6187:9;6183:17;6174:6;6134:67;:::i;:::-;5994:214;;;;:::o;6214:118::-;6301:24;6319:5;6301:24;:::i;:::-;6296:3;6289:37;6214:118;;:::o;6338:222::-;6431:4;6469:2;6458:9;6454:18;6446:26;;6482:71;6550:1;6539:9;6535:17;6526:6;6482:71;:::i;:::-;6338:222;;;;:::o;6566:474::-;6634:6;6642;6691:2;6679:9;6670:7;6666:23;6662:32;6659:119;;;6697:79;;:::i;:::-;6659:119;6817:1;6842:53;6887:7;6878:6;6867:9;6863:22;6842:53;:::i;:::-;6832:63;;6788:117;6944:2;6970:53;7015:7;7006:6;6995:9;6991:22;6970:53;:::i;:::-;6960:63;;6915:118;6566:474;;;;;:::o;7046:180::-;7094:77;7091:1;7084:88;7191:4;7188:1;7181:15;7215:4;7212:1;7205:15;7232:320;7276:6;7313:1;7307:4;7303:12;7293:22;;7360:1;7354:4;7350:12;7381:18;7371:81;;7437:4;7429:6;7425:17;7415:27;;7371:81;7499:2;7491:6;7488:14;7468:18;7465:38;7462:84;;;7518:18;;:::i;:::-;7462:84;7283:269;7232:320;;;:::o;7558:182::-;7698:34;7694:1;7686:6;7682:14;7675:58;7558:182;:::o;7746:366::-;7888:3;7909:67;7973:2;7968:3;7909:67;:::i;:::-;7902:74;;7985:93;8074:3;7985:93;:::i;:::-;8103:2;8098:3;8094:12;8087:19;;7746:366;;;:::o;8118:419::-;8284:4;8322:2;8311:9;8307:18;8299:26;;8371:9;8365:4;8361:20;8357:1;8346:9;8342:17;8335:47;8399:131;8525:4;8399:131;:::i;:::-;8391:139;;8118:419;;;:::o;8543:225::-;8683:34;8679:1;8671:6;8667:14;8660:58;8752:8;8747:2;8739:6;8735:15;8728:33;8543:225;:::o;8774:366::-;8916:3;8937:67;9001:2;8996:3;8937:67;:::i;:::-;8930:74;;9013:93;9102:3;9013:93;:::i;:::-;9131:2;9126:3;9122:12;9115:19;;8774:366;;;:::o;9146:419::-;9312:4;9350:2;9339:9;9335:18;9327:26;;9399:9;9393:4;9389:20;9385:1;9374:9;9370:17;9363:47;9427:131;9553:4;9427:131;:::i;:::-;9419:139;;9146:419;;;:::o;9571:180::-;9619:77;9616:1;9609:88;9716:4;9713:1;9706:15;9740:4;9737:1;9730:15;9757:305;9797:3;9816:20;9834:1;9816:20;:::i;:::-;9811:25;;9850:20;9868:1;9850:20;:::i;:::-;9845:25;;10004:1;9936:66;9932:74;9929:1;9926:81;9923:107;;;10010:18;;:::i;:::-;9923:107;10054:1;10051;10047:9;10040:16;;9757:305;;;;:::o;10068:177::-;10208:29;10204:1;10196:6;10192:14;10185:53;10068:177;:::o;10251:366::-;10393:3;10414:67;10478:2;10473:3;10414:67;:::i;:::-;10407:74;;10490:93;10579:3;10490:93;:::i;:::-;10608:2;10603:3;10599:12;10592:19;;10251:366;;;:::o;10623:419::-;10789:4;10827:2;10816:9;10812:18;10804:26;;10876:9;10870:4;10866:20;10862:1;10851:9;10847:17;10840:47;10904:131;11030:4;10904:131;:::i;:::-;10896:139;;10623:419;;;:::o;11048:223::-;11188:34;11184:1;11176:6;11172:14;11165:58;11257:6;11252:2;11244:6;11240:15;11233:31;11048:223;:::o;11277:366::-;11419:3;11440:67;11504:2;11499:3;11440:67;:::i;:::-;11433:74;;11516:93;11605:3;11516:93;:::i;:::-;11634:2;11629:3;11625:12;11618:19;;11277:366;;;:::o;11649:419::-;11815:4;11853:2;11842:9;11838:18;11830:26;;11902:9;11896:4;11892:20;11888:1;11877:9;11873:17;11866:47;11930:131;12056:4;11930:131;:::i;:::-;11922:139;;11649:419;;;:::o;12074:221::-;12214:34;12210:1;12202:6;12198:14;12191:58;12283:4;12278:2;12270:6;12266:15;12259:29;12074:221;:::o;12301:366::-;12443:3;12464:67;12528:2;12523:3;12464:67;:::i;:::-;12457:74;;12540:93;12629:3;12540:93;:::i;:::-;12658:2;12653:3;12649:12;12642:19;;12301:366;;;:::o;12673:419::-;12839:4;12877:2;12866:9;12862:18;12854:26;;12926:9;12920:4;12916:20;12912:1;12901:9;12897:17;12890:47;12954:131;13080:4;12954:131;:::i;:::-;12946:139;;12673:419;;;:::o;13098:224::-;13238:34;13234:1;13226:6;13222:14;13215:58;13307:7;13302:2;13294:6;13290:15;13283:32;13098:224;:::o;13328:366::-;13470:3;13491:67;13555:2;13550:3;13491:67;:::i;:::-;13484:74;;13567:93;13656:3;13567:93;:::i;:::-;13685:2;13680:3;13676:12;13669:19;;13328:366;;;:::o;13700:419::-;13866:4;13904:2;13893:9;13889:18;13881:26;;13953:9;13947:4;13943:20;13939:1;13928:9;13924:17;13917:47;13981:131;14107:4;13981:131;:::i;:::-;13973:139;;13700:419;;;:::o;14125:222::-;14265:34;14261:1;14253:6;14249:14;14242:58;14334:5;14329:2;14321:6;14317:15;14310:30;14125:222;:::o;14353:366::-;14495:3;14516:67;14580:2;14575:3;14516:67;:::i;:::-;14509:74;;14592:93;14681:3;14592:93;:::i;:::-;14710:2;14705:3;14701:12;14694:19;;14353:366;;;:::o;14725:419::-;14891:4;14929:2;14918:9;14914:18;14906:26;;14978:9;14972:4;14968:20;14964:1;14953:9;14949:17;14942:47;15006:131;15132:4;15006:131;:::i;:::-;14998:139;;14725:419;;;:::o;15150:172::-;15290:24;15286:1;15278:6;15274:14;15267:48;15150:172;:::o;15328:366::-;15470:3;15491:67;15555:2;15550:3;15491:67;:::i;:::-;15484:74;;15567:93;15656:3;15567:93;:::i;:::-;15685:2;15680:3;15676:12;15669:19;;15328:366;;;:::o;15700:419::-;15866:4;15904:2;15893:9;15889:18;15881:26;;15953:9;15947:4;15943:20;15939:1;15928:9;15924:17;15917:47;15981:131;16107:4;15981:131;:::i;:::-;15973:139;;15700:419;;;:::o;16125:169::-;16265:21;16261:1;16253:6;16249:14;16242:45;16125:169;:::o;16300:366::-;16442:3;16463:67;16527:2;16522:3;16463:67;:::i;:::-;16456:74;;16539:93;16628:3;16539:93;:::i;:::-;16657:2;16652:3;16648:12;16641:19;;16300:366;;;:::o;16672:419::-;16838:4;16876:2;16865:9;16861:18;16853:26;;16925:9;16919:4;16915:20;16911:1;16900:9;16896:17;16889:47;16953:131;17079:4;16953:131;:::i;:::-;16945:139;;16672:419;;;:::o;17097:348::-;17137:7;17160:20;17178:1;17160:20;:::i;:::-;17155:25;;17194:20;17212:1;17194:20;:::i;:::-;17189:25;;17382:1;17314:66;17310:74;17307:1;17304:81;17299:1;17292:9;17285:17;17281:105;17278:131;;;17389:18;;:::i;:::-;17278:131;17437:1;17434;17430:9;17419:20;;17097:348;;;;:::o;17451:180::-;17499:77;17496:1;17489:88;17596:4;17593:1;17586:15;17620:4;17617:1;17610:15;17637:185;17677:1;17694:20;17712:1;17694:20;:::i;:::-;17689:25;;17728:20;17746:1;17728:20;:::i;:::-;17723:25;;17767:1;17757:35;;17772:18;;:::i;:::-;17757:35;17814:1;17811;17807:9;17802:14;;17637:185;;;;:::o;17828:191::-;17868:4;17888:20;17906:1;17888:20;:::i;:::-;17883:25;;17922:20;17940:1;17922:20;:::i;:::-;17917:25;;17961:1;17958;17955:8;17952:34;;;17966:18;;:::i;:::-;17952:34;18011:1;18008;18004:9;17996:17;;17828:191;;;;:::o;18025:442::-;18174:4;18212:2;18201:9;18197:18;18189:26;;18225:71;18293:1;18282:9;18278:17;18269:6;18225:71;:::i;:::-;18306:72;18374:2;18363:9;18359:18;18350:6;18306:72;:::i;:::-;18388;18456:2;18445:9;18441:18;18432:6;18388:72;:::i;:::-;18025:442;;;;;;:::o;18473:147::-;18574:11;18611:3;18596:18;;18473:147;;;;:::o;18626:114::-;;:::o;18746:398::-;18905:3;18926:83;19007:1;19002:3;18926:83;:::i;:::-;18919:90;;19018:93;19107:3;19018:93;:::i;:::-;19136:1;19131:3;19127:11;19120:18;;18746:398;;;:::o;19150:379::-;19334:3;19356:147;19499:3;19356:147;:::i;:::-;19349:154;;19520:3;19513:10;;19150:379;;;:::o;19535:220::-;19675:34;19671:1;19663:6;19659:14;19652:58;19744:3;19739:2;19731:6;19727:15;19720:28;19535:220;:::o;19761:366::-;19903:3;19924:67;19988:2;19983:3;19924:67;:::i;:::-;19917:74;;20000:93;20089:3;20000:93;:::i;:::-;20118:2;20113:3;20109:12;20102:19;;19761:366;;;:::o;20133:419::-;20299:4;20337:2;20326:9;20322:18;20314:26;;20386:9;20380:4;20376:20;20372:1;20361:9;20357:17;20350:47;20414:131;20540:4;20414:131;:::i;:::-;20406:139;;20133:419;;;:::o;20558:180::-;20606:77;20603:1;20596:88;20703:4;20700:1;20693:15;20727:4;20724:1;20717:15;20744:180;20792:77;20789:1;20782:88;20889:4;20886:1;20879:15;20913:4;20910:1;20903:15;20930:143;20987:5;21018:6;21012:13;21003:22;;21034:33;21061:5;21034:33;:::i;:::-;20930:143;;;;:::o;21079:351::-;21149:6;21198:2;21186:9;21177:7;21173:23;21169:32;21166:119;;;21204:79;;:::i;:::-;21166:119;21324:1;21349:64;21405:7;21396:6;21385:9;21381:22;21349:64;:::i;:::-;21339:74;;21295:128;21079:351;;;;:::o;21436:85::-;21481:7;21510:5;21499:16;;21436:85;;;:::o;21527:158::-;21585:9;21618:61;21636:42;21645:32;21671:5;21645:32;:::i;:::-;21636:42;:::i;:::-;21618:61;:::i;:::-;21605:74;;21527:158;;;:::o;21691:147::-;21786:45;21825:5;21786:45;:::i;:::-;21781:3;21774:58;21691:147;;:::o;21844:114::-;21911:6;21945:5;21939:12;21929:22;;21844:114;;;:::o;21964:184::-;22063:11;22097:6;22092:3;22085:19;22137:4;22132:3;22128:14;22113:29;;21964:184;;;;:::o;22154:132::-;22221:4;22244:3;22236:11;;22274:4;22269:3;22265:14;22257:22;;22154:132;;;:::o;22292:108::-;22369:24;22387:5;22369:24;:::i;:::-;22364:3;22357:37;22292:108;;:::o;22406:179::-;22475:10;22496:46;22538:3;22530:6;22496:46;:::i;:::-;22574:4;22569:3;22565:14;22551:28;;22406:179;;;;:::o;22591:113::-;22661:4;22693;22688:3;22684:14;22676:22;;22591:113;;;:::o;22740:732::-;22859:3;22888:54;22936:5;22888:54;:::i;:::-;22958:86;23037:6;23032:3;22958:86;:::i;:::-;22951:93;;23068:56;23118:5;23068:56;:::i;:::-;23147:7;23178:1;23163:284;23188:6;23185:1;23182:13;23163:284;;;23264:6;23258:13;23291:63;23350:3;23335:13;23291:63;:::i;:::-;23284:70;;23377:60;23430:6;23377:60;:::i;:::-;23367:70;;23223:224;23210:1;23207;23203:9;23198:14;;23163:284;;;23167:14;23463:3;23456:10;;22864:608;;;22740:732;;;;:::o;23478:831::-;23741:4;23779:3;23768:9;23764:19;23756:27;;23793:71;23861:1;23850:9;23846:17;23837:6;23793:71;:::i;:::-;23874:80;23950:2;23939:9;23935:18;23926:6;23874:80;:::i;:::-;24001:9;23995:4;23991:20;23986:2;23975:9;23971:18;23964:48;24029:108;24132:4;24123:6;24029:108;:::i;:::-;24021:116;;24147:72;24215:2;24204:9;24200:18;24191:6;24147:72;:::i;:::-;24229:73;24297:3;24286:9;24282:19;24273:6;24229:73;:::i;:::-;23478:831;;;;;;;;:::o;24315:807::-;24564:4;24602:3;24591:9;24587:19;24579:27;;24616:71;24684:1;24673:9;24669:17;24660:6;24616:71;:::i;:::-;24697:72;24765:2;24754:9;24750:18;24741:6;24697:72;:::i;:::-;24779:80;24855:2;24844:9;24840:18;24831:6;24779:80;:::i;:::-;24869;24945:2;24934:9;24930:18;24921:6;24869:80;:::i;:::-;24959:73;25027:3;25016:9;25012:19;25003:6;24959:73;:::i;:::-;25042;25110:3;25099:9;25095:19;25086:6;25042:73;:::i;:::-;24315:807;;;;;;;;;:::o;25128:143::-;25185:5;25216:6;25210:13;25201:22;;25232:33;25259:5;25232:33;:::i;:::-;25128:143;;;;:::o;25277:663::-;25365:6;25373;25381;25430:2;25418:9;25409:7;25405:23;25401:32;25398:119;;;25436:79;;:::i;:::-;25398:119;25556:1;25581:64;25637:7;25628:6;25617:9;25613:22;25581:64;:::i;:::-;25571:74;;25527:128;25694:2;25720:64;25776:7;25767:6;25756:9;25752:22;25720:64;:::i;:::-;25710:74;;25665:129;25833:2;25859:64;25915:7;25906:6;25895:9;25891:22;25859:64;:::i;:::-;25849:74;;25804:129;25277:663;;;;;:::o

Swarm Source

ipfs://0d4a7dee7b64877a29fee5f8e5b3f8ffaf2c785bcdc4ed49d2063ce53d49578a
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.