ETH Price: $2,694.29 (-1.62%)

Token

ShiBEAR Inu (SHIBEAR)
 

Overview

Max Total Supply

1,000,000,000 SHIBEAR

Holders

40

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
2,852,067.14042567 SHIBEAR

Value
$0.00
0x40de378824cb099691e8463edd58538e8f3b6849
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:
ShiBEAR

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/**
/*



TG:https://t.me/ShiBEARinu

                                                            
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.12;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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);
}

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
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);
}

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
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;
    }
}

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 () public {
        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 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;
    }
}

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 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;
}

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
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_) public {
        _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 9;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

contract ShiBEAR is ERC20, Ownable {
    using SafeMath for uint256;

    address public constant DEAD_ADDRESS = address(0xdead);
    IUniswapV2Router02 public constant uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    uint256 public buyLiquidityFee = 3;
    uint256 public sellLiquidityFee = 3;
    uint256 public buyTxFee = 9;
    uint256 public sellTxFee = 9;
    uint256 public tokensForLiquidity;
    uint256 public tokensForTax;

    uint256 public _tTotal = 10**9 * 10**9;                         // 1 billion
    uint256 public swapAtAmount = _tTotal.mul(10).div(10000);       // 0.10% of total supply
    uint256 public maxTxLimit = _tTotal.mul(75).div(10000);         // 0.75% of total supply
    uint256 public maxWalletLimit = _tTotal.mul(150).div(10000);    // 1.50% of total supply

    address public dev;
    address public immutable deployer;
    address public uniswapV2Pair;

    uint256 private launchBlock;
    bool private swapping;
    bool public isLaunched;

    // exclude from fees
    mapping (address => bool) public isExcludedFromFees;

    // exclude from max transaction amount
    mapping (address => bool) public isExcludedFromTxLimit;

    // exclude from max wallet limit
    mapping (address => bool) public isExcludedFromWalletLimit;

    // if the account is blacklisted from transacting
    mapping (address => bool) public isBlacklisted;


    constructor(address _dev) public ERC20("ShiBEAR Inu", "SHIBEAR") {

        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        _approve(address(this), address(uniswapV2Router), type(uint256).max);


        // exclude from fees, wallet limit and transaction limit
        excludeFromAllLimits(owner(), true);
        excludeFromAllLimits(address(this), true);
        excludeFromWalletLimit(uniswapV2Pair, true);

        dev = _dev;
        deployer = _msgSender();

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(owner(), _tTotal);
    }

    function excludeFromFees(address account, bool value) public onlyOwner() {
        require(isExcludedFromFees[account] != value, "Fees: Already set to this value");
        isExcludedFromFees[account] = value;
    }

    function excludeFromTxLimit(address account, bool value) public onlyOwner() {
        require(isExcludedFromTxLimit[account] != value, "TxLimit: Already set to this value");
        isExcludedFromTxLimit[account] = value;
    }

    function excludeFromWalletLimit(address account, bool value) public onlyOwner() {
        require(isExcludedFromWalletLimit[account] != value, "WalletLimit: Already set to this value");
        isExcludedFromWalletLimit[account] = value;
    }

    function excludeFromAllLimits(address account, bool value) public onlyOwner() {
        excludeFromFees(account, value);
        excludeFromTxLimit(account, value);
        excludeFromWalletLimit(account, value);
    }

    function setBuyFee(uint256 liquidityFee, uint256 txFee) external onlyOwner() {
        buyLiquidityFee = liquidityFee;
        buyTxFee = txFee;
    }

    function setSellFee(uint256 liquidityFee, uint256 txFee) external onlyOwner() {
        sellLiquidityFee = liquidityFee;
        sellTxFee = txFee;
    }

    function setMaxTxLimit(uint256 newLimit) external onlyOwner() {
        maxTxLimit = newLimit * (10**9);
    }

    function setMaxWalletLimit(uint256 newLimit) external onlyOwner() {
        maxWalletLimit = newLimit * (10**9);
    }

    function setSwapAtAmount(uint256 amountToSwap) external onlyOwner() {
        swapAtAmount = amountToSwap * (10**9);
    }

    function updateDevWallet(address newWallet) external onlyOwner() {
        dev = newWallet;
    }

    function addBlacklist(address account) external onlyOwner() {
        require(!isBlacklisted[account], "Blacklist: Already blacklisted");
        require(account != uniswapV2Pair, "Cannot blacklist pair");
        _setBlacklist(account, true);
    }

    function removeBlacklist(address account) external onlyOwner() {
        require(isBlacklisted[account], "Blacklist: Not blacklisted");
        _setBlacklist(account, false);
    }

    function launchNow() external onlyOwner() {
        require(!isLaunched, "Contract is already launched");
        isLaunched = true;
        launchBlock = block.number;
    }

    function _transfer(address from, address to, uint256 amount) internal override {
        require(from != address(0), "transfer from the zero address");
        require(to != address(0), "transfer to the zero address");
        require(amount <= maxTxLimit || isExcludedFromTxLimit[from] || isExcludedFromTxLimit[to], "Tx Amount too large");
        require(balanceOf(to).add(amount) <= maxWalletLimit || isExcludedFromWalletLimit[to], "Transfer will exceed wallet limit");
        require(isLaunched || isExcludedFromFees[from] || isExcludedFromFees[to], "Waiting to go live");
        require(!isBlacklisted[from], "Sender is blacklisted");

        if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        uint256 totalTokensForFee = tokensForLiquidity + tokensForTax;
        bool canSwap = totalTokensForFee >= swapAtAmount;

        if(
            from != uniswapV2Pair &&
            canSwap &&
            !swapping
        ) {
            swapping = true;
            swapBack(totalTokensForFee);
            swapping = false;
        } else if(
            from == uniswapV2Pair &&
            to != uniswapV2Pair &&
            block.number < launchBlock + 2 &&
            !isExcludedFromFees[to]
        ) {
            _setBlacklist(to, true);
        }

        bool takeFee = !swapping;

        if(isExcludedFromFees[from] || isExcludedFromFees[to]) {
            takeFee = false;
        }

        if(takeFee) {
            uint256 fees;
            // on sell
            if (to == uniswapV2Pair) {
                uint256 sellTotalFees = sellLiquidityFee.add(sellTxFee);
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity = tokensForLiquidity.add(fees.mul(sellLiquidityFee).div(sellTotalFees));
                tokensForTax = tokensForTax.add(fees.mul(sellTxFee).div(sellTotalFees));
            }
            // on buy & wallet transfers
            else {
                uint256 buyTotalFees = buyLiquidityFee.add(buyTxFee);
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity = tokensForLiquidity.add(fees.mul(buyLiquidityFee).div(buyTotalFees));
                tokensForTax = tokensForTax.add(fees.mul(buyTxFee).div(buyTotalFees));
            }

            if(fees > 0){
                super._transfer(from, address(this), fees);
                amount = amount.sub(fees);
            }
        }

        super._transfer(from, to, amount);
    }

    function swapBack(uint256 totalTokensForFee) private {
        uint256 toSwap = swapAtAmount;

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = toSwap.mul(tokensForLiquidity).div(totalTokensForFee).div(2);
        uint256 taxTokens = toSwap.sub(liquidityTokens).sub(liquidityTokens);
        uint256 amountToSwapForETH = toSwap.sub(liquidityTokens);

        _swapTokensForETH(amountToSwapForETH);

        uint256 ethBalance = address(this).balance;
        uint256 ethForTax = ethBalance.mul(taxTokens).div(amountToSwapForETH);
        uint256 ethForLiquidity = ethBalance.sub(ethForTax);

        tokensForLiquidity = tokensForLiquidity.sub(liquidityTokens.mul(2));
        tokensForTax = tokensForTax.sub(toSwap.sub(liquidityTokens.mul(2)));

        payable(address(dev)).transfer(ethForTax);
        _addLiquidity(liquidityTokens, ethForLiquidity);
    }

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            deployer,
            block.timestamp
        );
    }

    function _swapTokensForETH(uint256 tokenAmount) private {

        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function _setBlacklist(address account, bool value) internal {
        isBlacklisted[account] = value;
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_dev","type":"address"}],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"inputs":[],"name":"DEAD_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBlacklist","outputs":[],"stateMutability":"nonpayable","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":"account","type":"address"}],"name":"balanceOf","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":"buyTxFee","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":"deployer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dev","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromAllLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"isExcludedFromTxLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromWalletLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLaunched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchNow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTxLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletLimit","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":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"txFee","type":"uint256"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setMaxTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setMaxWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"txFee","type":"uint256"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountToSwap","type":"uint256"}],"name":"setSwapAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAtAmount","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":[{"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"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a060405260036006556003600755600960085560098055670de0b6b3a7640000600c556200005b61271062000047600a600c54620005fe60201b62002b761790919060201c565b6200068960201b62002bfc1790919060201c565b600d556200009661271062000082604b600c54620005fe60201b62002b761790919060201c565b6200068960201b62002bfc1790919060201c565b600e55620000d1612710620000bd6096600c54620005fe60201b62002b761790919060201c565b6200068960201b62002bfc1790919060201c565b600f55348015620000e157600080fd5b506040516200598438038062005984833981810160405260208110156200010757600080fd5b81019080805190602001909291905050506040518060400160405280600b81526020017f5368694245415220496e750000000000000000000000000000000000000000008152506040518060400160405280600781526020017f534849424541520000000000000000000000000000000000000000000000000081525081600390805190602001906200019c929190620012f3565b508060049080519060200190620001b5929190620012f3565b5050506000620001ca620006db60201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620002c457600080fd5b505afa158015620002d9573d6000803e3d6000fd5b505050506040513d6020811015620002f057600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200037857600080fd5b505afa1580156200038d573d6000803e3d6000fd5b505050506040513d6020811015620003a457600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b1580156200041f57600080fd5b505af115801562000434573d6000803e3d6000fd5b505050506040513d60208110156200044b57600080fd5b8101908080519060200190929190505050601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004e330737a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620006e360201b60201c565b62000505620004f7620008de60201b60201c565b60016200090860201b60201c565b620005183060016200090860201b60201c565b6200054d601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600162000a1560201b60201c565b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200059e620006db60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b81525050620005f7620005e8620008de60201b60201c565b600c5462000bee60201b60201c565b5062001399565b60008083141562000613576000905062000683565b60008284029050828482816200062557fe5b04146200067e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180620059196021913960400191505060405180910390fd5b809150505b92915050565b6000620006d383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525062000dcc60201b60201c565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156200076b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806200593a6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620007f3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180620058d56022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000918620006db60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620009db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b620009ed828262000e9760201b60201c565b620009ff82826200108c60201b60201c565b62000a11828262000a1560201b60201c565b5050565b62000a25620006db60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000ae8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b801515601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515141562000b93576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806200595e6026913960400191505060405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000c92576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b62000ca6600083836200126560201b60201c565b62000cc2816002546200126a60201b62002c461790919060201c565b60028190555062000d20816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200126a60201b62002c461790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000808311829062000e7c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101562000e4057808201518184015260208101905062000e23565b50505050905090810190601f16801562000e6e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858162000e8957fe5b049050809150509392505050565b62000ea7620006db60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000f6a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b801515601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515141562001031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f466565733a20416c72656164792073657420746f20746869732076616c75650081525060200191505060405180910390fd5b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6200109c620006db60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146200115f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b801515601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514156200120a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180620058f76022913960400191505060405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b505050565b600080828401905083811015620012e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200133657805160ff191683800117855562001367565b8280016001018555821562001367579182015b828111156200136657825182559160200191906001019062001349565b5b5090506200137691906200137a565b5090565b5b80821115620013955760008160009055506001016200137b565b5090565b60805160601c614519620013bc6000398061244a528061423752506145196000f3fe60806040526004361061028c5760003560e01c80638036d5901161015a578063c0246668116100c1578063eb91e6511161007a578063eb91e65114610eca578063f11a24d314610f1b578063f2fde38b14610f46578063f637434214610f97578063fb0ecfa414610fc2578063fe575a871461100757610293565b8063c024666814610cc2578063cd49513f14610d1f578063d5f3948814610d7c578063dd62ed3e14610dbd578063e16830a814610e42578063e9b786cb14610e9f57610293565b80639cfe42da116101135780639cfe42da14610a96578063a457c2d714610ae7578063a9059cbb14610b58578063af465a2714610bc9578063b40f946914610bf4578063bf95793d14610c5b57610293565b80638036d59014610903578063869175241461092e5780638da5cb5b14610959578063904236d11461099a57806391cca3db146109c557806395d89b4114610a0657610293565b806349bd5a5e116101fe5780636ac9a870116101b75780636ac9a870146107c55780636d7adcad1461080a57806370a0823114610835578063715018a61461089a578063715492aa146108b1578063728d41c9146108c857610293565b806349bd5a5e1461063b5780634e6fd6c41461067c5780634fbee193146106bd5780636402511e1461072457806364f5a5bb1461075f57806366a88d961461079a57610293565b80631a8145bb116102505780631a8145bb1461045657806323b872dd1461048157806330280a7114610512578063307aebc91461056f578063313ce5671461059c57806339509351146105ca57610293565b806306fdde0314610298578063095ea7b3146103285780631694505e1461039957806318160ddd146103da5780631816467f1461040557610293565b3661029357005b600080fd5b3480156102a457600080fd5b506102ad61106e565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102ed5780820151818401526020810190506102d2565b50505050905090810190601f16801561031a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561033457600080fd5b506103816004803603604081101561034b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611110565b60405180821515815260200191505060405180910390f35b3480156103a557600080fd5b506103ae61112e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103e657600080fd5b506103ef611146565b6040518082815260200191505060405180910390f35b34801561041157600080fd5b506104546004803603602081101561042857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611150565b005b34801561046257600080fd5b5061046b61125e565b6040518082815260200191505060405180910390f35b34801561048d57600080fd5b506104fa600480360360608110156104a457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611264565b60405180821515815260200191505060405180910390f35b34801561051e57600080fd5b5061056d6004803603604081101561053557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919050505061133d565b005b34801561057b57600080fd5b5061058461150b565b60405180821515815260200191505060405180910390f35b3480156105a857600080fd5b506105b161151e565b604051808260ff16815260200191505060405180910390f35b3480156105d657600080fd5b50610623600480360360408110156105ed57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611527565b60405180821515815260200191505060405180910390f35b34801561064757600080fd5b506106506115da565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561068857600080fd5b50610691611600565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156106c957600080fd5b5061070c600480360360208110156106e057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611606565b60405180821515815260200191505060405180910390f35b34801561073057600080fd5b5061075d6004803603602081101561074757600080fd5b8101908080359060200190929190505050611626565b005b34801561076b57600080fd5b506107986004803603602081101561078257600080fd5b8101908080359060200190929190505050611700565b005b3480156107a657600080fd5b506107af6117da565b6040518082815260200191505060405180910390f35b3480156107d157600080fd5b50610808600480360360408110156107e857600080fd5b8101908080359060200190929190803590602001909291905050506117e0565b005b34801561081657600080fd5b5061081f6118bc565b6040518082815260200191505060405180910390f35b34801561084157600080fd5b506108846004803603602081101561085857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118c2565b6040518082815260200191505060405180910390f35b3480156108a657600080fd5b506108af61190a565b005b3480156108bd57600080fd5b506108c6611a95565b005b3480156108d457600080fd5b50610901600480360360208110156108eb57600080fd5b8101908080359060200190929190505050611c06565b005b34801561090f57600080fd5b50610918611ce0565b6040518082815260200191505060405180910390f35b34801561093a57600080fd5b50610943611ce6565b6040518082815260200191505060405180910390f35b34801561096557600080fd5b5061096e611cec565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109a657600080fd5b506109af611d16565b6040518082815260200191505060405180910390f35b3480156109d157600080fd5b506109da611d1c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a1257600080fd5b50610a1b611d42565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a5b578082015181840152602081019050610a40565b50505050905090810190601f168015610a885780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610aa257600080fd5b50610ae560048036036020811015610ab957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611de4565b005b348015610af357600080fd5b50610b4060048036036040811015610b0a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612040565b60405180821515815260200191505060405180910390f35b348015610b6457600080fd5b50610bb160048036036040811015610b7b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061210d565b60405180821515815260200191505060405180910390f35b348015610bd557600080fd5b50610bde61212b565b6040518082815260200191505060405180910390f35b348015610c0057600080fd5b50610c4360048036036020811015610c1757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612131565b60405180821515815260200191505060405180910390f35b348015610c6757600080fd5b50610caa60048036036020811015610c7e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612151565b60405180821515815260200191505060405180910390f35b348015610cce57600080fd5b50610d1d60048036036040811015610ce557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612171565b005b348015610d2b57600080fd5b50610d7a60048036036040811015610d4257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919050505061235c565b005b348015610d8857600080fd5b50610d91612448565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610dc957600080fd5b50610e2c60048036036040811015610de057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061246c565b6040518082815260200191505060405180910390f35b348015610e4e57600080fd5b50610e9d60048036036040811015610e6557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506124f3565b005b348015610eab57600080fd5b50610eb46126c1565b6040518082815260200191505060405180910390f35b348015610ed657600080fd5b50610f1960048036036020811015610eed57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506126c7565b005b348015610f2757600080fd5b50610f3061285e565b6040518082815260200191505060405180910390f35b348015610f5257600080fd5b50610f9560048036036020811015610f6957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612864565b005b348015610fa357600080fd5b50610fac612a74565b6040518082815260200191505060405180910390f35b348015610fce57600080fd5b5061100560048036036040811015610fe557600080fd5b810190808035906020019092919080359060200190929190505050612a7a565b005b34801561101357600080fd5b506110566004803603602081101561102a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612b56565b60405180821515815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111065780601f106110db57610100808354040283529160200191611106565b820191906000526020600020905b8154815290600101906020018083116110e957829003601f168201915b5050505050905090565b600061112461111d612cce565b8484612cd6565b6001905092915050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b611158612cce565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461121a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a5481565b6000611271848484612ecd565b6113328461127d612cce565b61132d8560405180606001604052806028815260200161440760289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112e3612cce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546138e59092919063ffffffff16565b612cd6565b600190509392505050565b611345612cce565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b801515601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514156114b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806143c46022913960400191505060405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b601360019054906101000a900460ff1681565b60006009905090565b60006115d0611534612cce565b846115cb8560016000611545612cce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c4690919063ffffffff16565b612cd6565b6001905092915050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61dead81565b60146020528060005260406000206000915054906101000a900460ff1681565b61162e612cce565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b633b9aca008102600d8190555050565b611708612cce565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b633b9aca008102600e8190555050565b600f5481565b6117e8612cce565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81600781905550806009819055505050565b600b5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611912612cce565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611a9d612cce565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b5f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601360019054906101000a900460ff1615611be2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f436f6e747261637420697320616c7265616479206c61756e636865640000000081525060200191505060405180910390fd5b6001601360016101000a81548160ff02191690831515021790555043601281905550565b611c0e612cce565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cd0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b633b9aca008102600f8190555050565b600e5481565b600d5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60095481565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611dda5780601f10611daf57610100808354040283529160200191611dda565b820191906000526020600020905b815481529060010190602001808311611dbd57829003601f168201915b5050505050905090565b611dec612cce565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611eae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f426c61636b6c6973743a20416c726561647920626c61636b6c6973746564000081525060200191505060405180910390fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612032576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f43616e6e6f7420626c61636b6c6973742070616972000000000000000000000081525060200191505060405180910390fd5b61203d8160016139a5565b50565b600061210361204d612cce565b846120fe856040518060600160405280602581526020016144bf6025913960016000612077612cce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546138e59092919063ffffffff16565b612cd6565b6001905092915050565b600061212161211a612cce565b8484612ecd565b6001905092915050565b600c5481565b60166020528060005260406000206000915054906101000a900460ff1681565b60156020528060005260406000206000915054906101000a900460ff1681565b612179612cce565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461223b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b801515601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415612301576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f466565733a20416c72656164792073657420746f20746869732076616c75650081525060200191505060405180910390fd5b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b612364612cce565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612426576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6124308282612171565b61243a828261133d565b61244482826124f3565b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6124fb612cce565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b801515601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415612666576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806144996026913960400191505060405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60085481565b6126cf612cce565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612791576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612850576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f426c61636b6c6973743a204e6f7420626c61636b6c697374656400000000000081525060200191505060405180910390fd5b61285b8160006139a5565b50565b60065481565b61286c612cce565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461292e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156129b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806143566026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60075481565b612a82612cce565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b44576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81600681905550806008819055505050565b60176020528060005260406000206000915054906101000a900460ff1681565b600080831415612b895760009050612bf6565b6000828402905082848281612b9a57fe5b0414612bf1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806143e66021913960400191505060405180910390fd5b809150505b92915050565b6000612c3e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613a00565b905092915050565b600080828401905083811015612cc4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d5c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806144756024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612de2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061437c6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f70576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f7472616e736665722066726f6d20746865207a65726f2061646472657373000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f7472616e7366657220746f20746865207a65726f20616464726573730000000081525060200191505060405180910390fd5b600e548111158061306d5750601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806130c15750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b613133576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f547820416d6f756e7420746f6f206c617267650000000000000000000000000081525060200191505060405180910390fd5b600f5461315182613143856118c2565b612c4690919063ffffffff16565b1115806131a75750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6131fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061442f6021913960400191505060405180910390fd5b601360019054906101000a900460ff16806132605750601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806132b45750601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b613326576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f57616974696e6720746f20676f206c697665000000000000000000000000000081525060200191505060405180910390fd5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156133e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f53656e64657220697320626c61636b6c6973746564000000000000000000000081525060200191505060405180910390fd5b6000811415613400576133fb83836000613ac6565b6138e0565b6000600b54600a540190506000600d548210159050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141580156134705750805b80156134895750601360009054906101000a900460ff16155b156134d2576001601360006101000a81548160ff0219169083151502179055506134b282613d87565b6000601360006101000a81548160ff0219169083151502179055506135f5565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614801561357d5750601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561358d575060026012540143105b80156135e35750601460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156135f4576135f38460016139a5565b5b5b6000601360009054906101000a900460ff16159050601460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806136ab5750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156136b557600090505b80156138d1576000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614156137de57600061372c600954600754612c4690919063ffffffff16565b905061375460646137468389612b7690919063ffffffff16565b612bfc90919063ffffffff16565b91506137916137808261377260075486612b7690919063ffffffff16565b612bfc90919063ffffffff16565b600a54612c4690919063ffffffff16565b600a819055506137d26137c1826137b360095486612b7690919063ffffffff16565b612bfc90919063ffffffff16565b600b54612c4690919063ffffffff16565b600b81905550506138a5565b60006137f7600854600654612c4690919063ffffffff16565b905061381f60646138118389612b7690919063ffffffff16565b612bfc90919063ffffffff16565b915061385c61384b8261383d60065486612b7690919063ffffffff16565b612bfc90919063ffffffff16565b600a54612c4690919063ffffffff16565b600a8190555061389d61388c8261387e60085486612b7690919063ffffffff16565b612bfc90919063ffffffff16565b600b54612c4690919063ffffffff16565b600b81905550505b60008111156138cf576138b9873083613ac6565b6138cc8186613f4590919063ffffffff16565b94505b505b6138dc868686613ac6565b5050505b505050565b6000838311158290613992576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561395757808201518184015260208101905061393c565b50505050905090810190601f1680156139845780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008083118290613aac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613a71578082015181840152602081019050613a56565b50505050905090810190601f168015613a9e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581613ab857fe5b049050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613b4c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806144506025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613bd2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806143336023913960400191505060405180910390fd5b613bdd838383613f8f565b613c488160405180606001604052806026815260200161439e602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546138e59092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613cdb816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c4690919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000600d5490506000613dca6002613dbc85613dae600a5487612b7690919063ffffffff16565b612bfc90919063ffffffff16565b612bfc90919063ffffffff16565b90506000613df382613de58486613f4590919063ffffffff16565b613f4590919063ffffffff16565b90506000613e0a8385613f4590919063ffffffff16565b9050613e1581613f94565b60004790506000613e4183613e338685612b7690919063ffffffff16565b612bfc90919063ffffffff16565b90506000613e588284613f4590919063ffffffff16565b9050613e82613e71600288612b7690919063ffffffff16565b600a54613f4590919063ffffffff16565b600a81905550613ec2613eb1613ea2600289612b7690919063ffffffff16565b89613f4590919063ffffffff16565b600b54613f4590919063ffffffff16565b600b81905550601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015613f30573d6000803e3d6000fd5b50613f3b86826141ff565b5050505050505050565b6000613f8783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506138e5565b905092915050565b505050565b6060600267ffffffffffffffff81118015613fae57600080fd5b50604051908082528060200260200182016040528015613fdd5781602001602082028036833780820191505090505b5090503081600081518110613fee57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561408257600080fd5b505afa158015614096573d6000803e3d6000fd5b505050506040513d60208110156140ac57600080fd5b8101908080519060200190929190505050816001815181106140ca57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156141ba57808201518184015260208101905061419f565b505050509050019650505050505050600060405180830381600087803b1580156141e357600080fd5b505af11580156141f7573d6000803e3d6000fd5b505050505050565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000807f0000000000000000000000000000000000000000000000000000000000000000426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b1580156142db57600080fd5b505af11580156142ef573d6000803e3d6000fd5b50505050506040513d606081101561430657600080fd5b81019080805190602001909291908051906020019092919080519060200190929190505050505050505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636554784c696d69743a20416c72656164792073657420746f20746869732076616c7565536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e736665722077696c6c206578636565642077616c6c6574206c696d697445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357616c6c65744c696d69743a20416c72656164792073657420746f20746869732076616c756545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c71aa76ba3c38aba3a57dec650c8b8b9fc6e92da1a61a756b1f399c353db300364736f6c634300060c003345524332303a20617070726f766520746f20746865207a65726f206164647265737354784c696d69743a20416c72656164792073657420746f20746869732076616c7565536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357616c6c65744c696d69743a20416c72656164792073657420746f20746869732076616c7565000000000000000000000000a4c307b0f0e1b74855dc743e2874e257cb9e8cd2

Deployed Bytecode

0x60806040526004361061028c5760003560e01c80638036d5901161015a578063c0246668116100c1578063eb91e6511161007a578063eb91e65114610eca578063f11a24d314610f1b578063f2fde38b14610f46578063f637434214610f97578063fb0ecfa414610fc2578063fe575a871461100757610293565b8063c024666814610cc2578063cd49513f14610d1f578063d5f3948814610d7c578063dd62ed3e14610dbd578063e16830a814610e42578063e9b786cb14610e9f57610293565b80639cfe42da116101135780639cfe42da14610a96578063a457c2d714610ae7578063a9059cbb14610b58578063af465a2714610bc9578063b40f946914610bf4578063bf95793d14610c5b57610293565b80638036d59014610903578063869175241461092e5780638da5cb5b14610959578063904236d11461099a57806391cca3db146109c557806395d89b4114610a0657610293565b806349bd5a5e116101fe5780636ac9a870116101b75780636ac9a870146107c55780636d7adcad1461080a57806370a0823114610835578063715018a61461089a578063715492aa146108b1578063728d41c9146108c857610293565b806349bd5a5e1461063b5780634e6fd6c41461067c5780634fbee193146106bd5780636402511e1461072457806364f5a5bb1461075f57806366a88d961461079a57610293565b80631a8145bb116102505780631a8145bb1461045657806323b872dd1461048157806330280a7114610512578063307aebc91461056f578063313ce5671461059c57806339509351146105ca57610293565b806306fdde0314610298578063095ea7b3146103285780631694505e1461039957806318160ddd146103da5780631816467f1461040557610293565b3661029357005b600080fd5b3480156102a457600080fd5b506102ad61106e565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102ed5780820151818401526020810190506102d2565b50505050905090810190601f16801561031a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561033457600080fd5b506103816004803603604081101561034b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611110565b60405180821515815260200191505060405180910390f35b3480156103a557600080fd5b506103ae61112e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103e657600080fd5b506103ef611146565b6040518082815260200191505060405180910390f35b34801561041157600080fd5b506104546004803603602081101561042857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611150565b005b34801561046257600080fd5b5061046b61125e565b6040518082815260200191505060405180910390f35b34801561048d57600080fd5b506104fa600480360360608110156104a457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611264565b60405180821515815260200191505060405180910390f35b34801561051e57600080fd5b5061056d6004803603604081101561053557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919050505061133d565b005b34801561057b57600080fd5b5061058461150b565b60405180821515815260200191505060405180910390f35b3480156105a857600080fd5b506105b161151e565b604051808260ff16815260200191505060405180910390f35b3480156105d657600080fd5b50610623600480360360408110156105ed57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611527565b60405180821515815260200191505060405180910390f35b34801561064757600080fd5b506106506115da565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561068857600080fd5b50610691611600565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156106c957600080fd5b5061070c600480360360208110156106e057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611606565b60405180821515815260200191505060405180910390f35b34801561073057600080fd5b5061075d6004803603602081101561074757600080fd5b8101908080359060200190929190505050611626565b005b34801561076b57600080fd5b506107986004803603602081101561078257600080fd5b8101908080359060200190929190505050611700565b005b3480156107a657600080fd5b506107af6117da565b6040518082815260200191505060405180910390f35b3480156107d157600080fd5b50610808600480360360408110156107e857600080fd5b8101908080359060200190929190803590602001909291905050506117e0565b005b34801561081657600080fd5b5061081f6118bc565b6040518082815260200191505060405180910390f35b34801561084157600080fd5b506108846004803603602081101561085857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118c2565b6040518082815260200191505060405180910390f35b3480156108a657600080fd5b506108af61190a565b005b3480156108bd57600080fd5b506108c6611a95565b005b3480156108d457600080fd5b50610901600480360360208110156108eb57600080fd5b8101908080359060200190929190505050611c06565b005b34801561090f57600080fd5b50610918611ce0565b6040518082815260200191505060405180910390f35b34801561093a57600080fd5b50610943611ce6565b6040518082815260200191505060405180910390f35b34801561096557600080fd5b5061096e611cec565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109a657600080fd5b506109af611d16565b6040518082815260200191505060405180910390f35b3480156109d157600080fd5b506109da611d1c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a1257600080fd5b50610a1b611d42565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a5b578082015181840152602081019050610a40565b50505050905090810190601f168015610a885780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610aa257600080fd5b50610ae560048036036020811015610ab957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611de4565b005b348015610af357600080fd5b50610b4060048036036040811015610b0a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612040565b60405180821515815260200191505060405180910390f35b348015610b6457600080fd5b50610bb160048036036040811015610b7b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061210d565b60405180821515815260200191505060405180910390f35b348015610bd557600080fd5b50610bde61212b565b6040518082815260200191505060405180910390f35b348015610c0057600080fd5b50610c4360048036036020811015610c1757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612131565b60405180821515815260200191505060405180910390f35b348015610c6757600080fd5b50610caa60048036036020811015610c7e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612151565b60405180821515815260200191505060405180910390f35b348015610cce57600080fd5b50610d1d60048036036040811015610ce557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612171565b005b348015610d2b57600080fd5b50610d7a60048036036040811015610d4257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919050505061235c565b005b348015610d8857600080fd5b50610d91612448565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610dc957600080fd5b50610e2c60048036036040811015610de057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061246c565b6040518082815260200191505060405180910390f35b348015610e4e57600080fd5b50610e9d60048036036040811015610e6557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506124f3565b005b348015610eab57600080fd5b50610eb46126c1565b6040518082815260200191505060405180910390f35b348015610ed657600080fd5b50610f1960048036036020811015610eed57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506126c7565b005b348015610f2757600080fd5b50610f3061285e565b6040518082815260200191505060405180910390f35b348015610f5257600080fd5b50610f9560048036036020811015610f6957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612864565b005b348015610fa357600080fd5b50610fac612a74565b6040518082815260200191505060405180910390f35b348015610fce57600080fd5b5061100560048036036040811015610fe557600080fd5b810190808035906020019092919080359060200190929190505050612a7a565b005b34801561101357600080fd5b506110566004803603602081101561102a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612b56565b60405180821515815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111065780601f106110db57610100808354040283529160200191611106565b820191906000526020600020905b8154815290600101906020018083116110e957829003601f168201915b5050505050905090565b600061112461111d612cce565b8484612cd6565b6001905092915050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b611158612cce565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461121a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a5481565b6000611271848484612ecd565b6113328461127d612cce565b61132d8560405180606001604052806028815260200161440760289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112e3612cce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546138e59092919063ffffffff16565b612cd6565b600190509392505050565b611345612cce565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b801515601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514156114b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806143c46022913960400191505060405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b601360019054906101000a900460ff1681565b60006009905090565b60006115d0611534612cce565b846115cb8560016000611545612cce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c4690919063ffffffff16565b612cd6565b6001905092915050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61dead81565b60146020528060005260406000206000915054906101000a900460ff1681565b61162e612cce565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b633b9aca008102600d8190555050565b611708612cce565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b633b9aca008102600e8190555050565b600f5481565b6117e8612cce565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81600781905550806009819055505050565b600b5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611912612cce565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611a9d612cce565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b5f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601360019054906101000a900460ff1615611be2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f436f6e747261637420697320616c7265616479206c61756e636865640000000081525060200191505060405180910390fd5b6001601360016101000a81548160ff02191690831515021790555043601281905550565b611c0e612cce565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cd0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b633b9aca008102600f8190555050565b600e5481565b600d5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60095481565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611dda5780601f10611daf57610100808354040283529160200191611dda565b820191906000526020600020905b815481529060010190602001808311611dbd57829003601f168201915b5050505050905090565b611dec612cce565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611eae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f426c61636b6c6973743a20416c726561647920626c61636b6c6973746564000081525060200191505060405180910390fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612032576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f43616e6e6f7420626c61636b6c6973742070616972000000000000000000000081525060200191505060405180910390fd5b61203d8160016139a5565b50565b600061210361204d612cce565b846120fe856040518060600160405280602581526020016144bf6025913960016000612077612cce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546138e59092919063ffffffff16565b612cd6565b6001905092915050565b600061212161211a612cce565b8484612ecd565b6001905092915050565b600c5481565b60166020528060005260406000206000915054906101000a900460ff1681565b60156020528060005260406000206000915054906101000a900460ff1681565b612179612cce565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461223b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b801515601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415612301576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f466565733a20416c72656164792073657420746f20746869732076616c75650081525060200191505060405180910390fd5b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b612364612cce565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612426576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6124308282612171565b61243a828261133d565b61244482826124f3565b5050565b7f000000000000000000000000a88123d48761e56bcaf4455bf02735e132ccfe2381565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6124fb612cce565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b801515601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415612666576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806144996026913960400191505060405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60085481565b6126cf612cce565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612791576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612850576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f426c61636b6c6973743a204e6f7420626c61636b6c697374656400000000000081525060200191505060405180910390fd5b61285b8160006139a5565b50565b60065481565b61286c612cce565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461292e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156129b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806143566026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60075481565b612a82612cce565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b44576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81600681905550806008819055505050565b60176020528060005260406000206000915054906101000a900460ff1681565b600080831415612b895760009050612bf6565b6000828402905082848281612b9a57fe5b0414612bf1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806143e66021913960400191505060405180910390fd5b809150505b92915050565b6000612c3e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613a00565b905092915050565b600080828401905083811015612cc4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d5c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806144756024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612de2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061437c6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f70576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f7472616e736665722066726f6d20746865207a65726f2061646472657373000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f7472616e7366657220746f20746865207a65726f20616464726573730000000081525060200191505060405180910390fd5b600e548111158061306d5750601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806130c15750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b613133576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f547820416d6f756e7420746f6f206c617267650000000000000000000000000081525060200191505060405180910390fd5b600f5461315182613143856118c2565b612c4690919063ffffffff16565b1115806131a75750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6131fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061442f6021913960400191505060405180910390fd5b601360019054906101000a900460ff16806132605750601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806132b45750601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b613326576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f57616974696e6720746f20676f206c697665000000000000000000000000000081525060200191505060405180910390fd5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156133e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f53656e64657220697320626c61636b6c6973746564000000000000000000000081525060200191505060405180910390fd5b6000811415613400576133fb83836000613ac6565b6138e0565b6000600b54600a540190506000600d548210159050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141580156134705750805b80156134895750601360009054906101000a900460ff16155b156134d2576001601360006101000a81548160ff0219169083151502179055506134b282613d87565b6000601360006101000a81548160ff0219169083151502179055506135f5565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614801561357d5750601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561358d575060026012540143105b80156135e35750601460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156135f4576135f38460016139a5565b5b5b6000601360009054906101000a900460ff16159050601460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806136ab5750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156136b557600090505b80156138d1576000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614156137de57600061372c600954600754612c4690919063ffffffff16565b905061375460646137468389612b7690919063ffffffff16565b612bfc90919063ffffffff16565b91506137916137808261377260075486612b7690919063ffffffff16565b612bfc90919063ffffffff16565b600a54612c4690919063ffffffff16565b600a819055506137d26137c1826137b360095486612b7690919063ffffffff16565b612bfc90919063ffffffff16565b600b54612c4690919063ffffffff16565b600b81905550506138a5565b60006137f7600854600654612c4690919063ffffffff16565b905061381f60646138118389612b7690919063ffffffff16565b612bfc90919063ffffffff16565b915061385c61384b8261383d60065486612b7690919063ffffffff16565b612bfc90919063ffffffff16565b600a54612c4690919063ffffffff16565b600a8190555061389d61388c8261387e60085486612b7690919063ffffffff16565b612bfc90919063ffffffff16565b600b54612c4690919063ffffffff16565b600b81905550505b60008111156138cf576138b9873083613ac6565b6138cc8186613f4590919063ffffffff16565b94505b505b6138dc868686613ac6565b5050505b505050565b6000838311158290613992576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561395757808201518184015260208101905061393c565b50505050905090810190601f1680156139845780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008083118290613aac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613a71578082015181840152602081019050613a56565b50505050905090810190601f168015613a9e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581613ab857fe5b049050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613b4c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806144506025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613bd2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806143336023913960400191505060405180910390fd5b613bdd838383613f8f565b613c488160405180606001604052806026815260200161439e602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546138e59092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613cdb816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c4690919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000600d5490506000613dca6002613dbc85613dae600a5487612b7690919063ffffffff16565b612bfc90919063ffffffff16565b612bfc90919063ffffffff16565b90506000613df382613de58486613f4590919063ffffffff16565b613f4590919063ffffffff16565b90506000613e0a8385613f4590919063ffffffff16565b9050613e1581613f94565b60004790506000613e4183613e338685612b7690919063ffffffff16565b612bfc90919063ffffffff16565b90506000613e588284613f4590919063ffffffff16565b9050613e82613e71600288612b7690919063ffffffff16565b600a54613f4590919063ffffffff16565b600a81905550613ec2613eb1613ea2600289612b7690919063ffffffff16565b89613f4590919063ffffffff16565b600b54613f4590919063ffffffff16565b600b81905550601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015613f30573d6000803e3d6000fd5b50613f3b86826141ff565b5050505050505050565b6000613f8783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506138e5565b905092915050565b505050565b6060600267ffffffffffffffff81118015613fae57600080fd5b50604051908082528060200260200182016040528015613fdd5781602001602082028036833780820191505090505b5090503081600081518110613fee57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561408257600080fd5b505afa158015614096573d6000803e3d6000fd5b505050506040513d60208110156140ac57600080fd5b8101908080519060200190929190505050816001815181106140ca57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156141ba57808201518184015260208101905061419f565b505050509050019650505050505050600060405180830381600087803b1580156141e357600080fd5b505af11580156141f7573d6000803e3d6000fd5b505050505050565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000807f000000000000000000000000a88123d48761e56bcaf4455bf02735e132ccfe23426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b1580156142db57600080fd5b505af11580156142ef573d6000803e3d6000fd5b50505050506040513d606081101561430657600080fd5b81019080805190602001909291908051906020019092919080519060200190929190505050505050505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636554784c696d69743a20416c72656164792073657420746f20746869732076616c7565536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e736665722077696c6c206578636565642077616c6c6574206c696d697445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357616c6c65744c696d69743a20416c72656164792073657420746f20746869732076616c756545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c71aa76ba3c38aba3a57dec650c8b8b9fc6e92da1a61a756b1f399c353db300364736f6c634300060c0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000a4c307b0f0e1b74855dc743e2874e257cb9e8cd2

-----Decoded View---------------
Arg [0] : _dev (address): 0xA4c307b0f0E1B74855DC743e2874e257Cb9e8cD2

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a4c307b0f0e1b74855dc743e2874e257cb9e8cd2


Deployed Bytecode Sourcemap

29349:8961:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20746:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22912:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29487:115;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;21865:108;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33212:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29763:33;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23563:355;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31785:230;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30369:22;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;21708:92;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;24327:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30270:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29426:54;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30426:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33080:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32832:112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30109:59;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32668:156;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29803:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22036:127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5497:148;;;;;;;;;;;;;:::i;:::-;;33771:178;;;;;;;;;;;;;:::i;:::-;;32952:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30015:54;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29921:56;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4855:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29728:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30205:18;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;20965:104;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33319:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25048:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;22376:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29839:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30631:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30530:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31559:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32277:222;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30230:33;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;22614:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32023:246;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29694:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33580:183;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29611:34;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5800:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29652:35;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32507:153;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30753:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;20746:100;20800:13;20833:5;20826:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20746:100;:::o;22912:169::-;22995:4;23012:39;23021:12;:10;:12::i;:::-;23035:7;23044:6;23012:8;:39::i;:::-;23069:4;23062:11;;22912:169;;;;:::o;29487:115::-;29559:42;29487:115;:::o;21865:108::-;21926:7;21953:12;;21946:19;;21865:108;:::o;33212:99::-;5077:12;:10;:12::i;:::-;5067:22;;:6;;;;;;;;;;;:22;;;5059:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33294:9:::1;33288:3;;:15;;;;;;;;;;;;;;;;;;33212:99:::0;:::o;29763:33::-;;;;:::o;23563:355::-;23703:4;23720:36;23730:6;23738:9;23749:6;23720:9;:36::i;:::-;23767:121;23776:6;23784:12;:10;:12::i;:::-;23798:89;23836:6;23798:89;;;;;;;;;;;;;;;;;:11;:19;23810:6;23798:19;;;;;;;;;;;;;;;:33;23818:12;:10;:12::i;:::-;23798:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;23767:8;:121::i;:::-;23906:4;23899:11;;23563:355;;;;;:::o;31785:230::-;5077:12;:10;:12::i;:::-;5067:22;;:6;;;;;;;;;;;:22;;;5059:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31914:5:::1;31880:39;;:21;:30;31902:7;31880:30;;;;;;;;;;;;;;;;;;;;;;;;;:39;;;;31872:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32002:5;31969:21;:30;31991:7;31969:30;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;31785:230:::0;;:::o;30369:22::-;;;;;;;;;;;;;:::o;21708:92::-;21766:5;21791:1;21784:8;;21708:92;:::o;24327:218::-;24415:4;24432:83;24441:12;:10;:12::i;:::-;24455:7;24464:50;24503:10;24464:11;:25;24476:12;:10;:12::i;:::-;24464:25;;;;;;;;;;;;;;;:34;24490:7;24464:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;24432:8;:83::i;:::-;24533:4;24526:11;;24327:218;;;;:::o;30270:28::-;;;;;;;;;;;;;:::o;29426:54::-;29473:6;29426:54;:::o;30426:51::-;;;;;;;;;;;;;;;;;;;;;;:::o;33080:124::-;5077:12;:10;:12::i;:::-;5067:22;;:6;;;;;;;;;;;:22;;;5059:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33190:5:::1;33174:12;:22;33159:12;:37;;;;33080:124:::0;:::o;32832:112::-;5077:12;:10;:12::i;:::-;5067:22;;:6;;;;;;;;;;;:22;;;5059:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32930:5:::1;32918:8;:18;32905:10;:31;;;;32832:112:::0;:::o;30109:59::-;;;;:::o;32668:156::-;5077:12;:10;:12::i;:::-;5067:22;;:6;;;;;;;;;;;:22;;;5059:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32776:12:::1;32757:16;:31;;;;32811:5;32799:9;:17;;;;32668:156:::0;;:::o;29803:27::-;;;;:::o;22036:127::-;22110:7;22137:9;:18;22147:7;22137:18;;;;;;;;;;;;;;;;22130:25;;22036:127;;;:::o;5497:148::-;5077:12;:10;:12::i;:::-;5067:22;;:6;;;;;;;;;;;:22;;;5059:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5604:1:::1;5567:40;;5588:6;;;;;;;;;;;5567:40;;;;;;;;;;;;5635:1;5618:6;;:19;;;;;;;;;;;;;;;;;;5497:148::o:0;33771:178::-;5077:12;:10;:12::i;:::-;5067:22;;:6;;;;;;;;;;;:22;;;5059:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33833:10:::1;;;;;;;;;;;33832:11;33824:52;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33900:4;33887:10;;:17;;;;;;;;;;;;;;;;;;33929:12;33915:11;:26;;;;33771:178::o:0;32952:120::-;5077:12;:10;:12::i;:::-;5067:22;;:6;;;;;;;;;;;:22;;;5059:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33058:5:::1;33046:8;:18;33029:14;:35;;;;32952:120:::0;:::o;30015:54::-;;;;:::o;29921:56::-;;;;:::o;4855:79::-;4893:7;4920:6;;;;;;;;;;;4913:13;;4855:79;:::o;29728:28::-;;;;:::o;30205:18::-;;;;;;;;;;;;;:::o;20965:104::-;21021:13;21054:7;21047:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20965:104;:::o;33319:253::-;5077:12;:10;:12::i;:::-;5067:22;;:6;;;;;;;;;;;:22;;;5059:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33399:13:::1;:22;33413:7;33399:22;;;;;;;;;;;;;;;;;;;;;;;;;33398:23;33390:66;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33486:13;;;;;;;;;;;33475:24;;:7;:24;;;;33467:58;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33536:28;33550:7;33559:4;33536:13;:28::i;:::-;33319:253:::0;:::o;25048:269::-;25141:4;25158:129;25167:12;:10;:12::i;:::-;25181:7;25190:96;25229:15;25190:96;;;;;;;;;;;;;;;;;:11;:25;25202:12;:10;:12::i;:::-;25190:25;;;;;;;;;;;;;;;:34;25216:7;25190:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;25158:8;:129::i;:::-;25305:4;25298:11;;25048:269;;;;:::o;22376:175::-;22462:4;22479:42;22489:12;:10;:12::i;:::-;22503:9;22514:6;22479:9;:42::i;:::-;22539:4;22532:11;;22376:175;;;;:::o;29839:38::-;;;;:::o;30631:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;30530:54::-;;;;;;;;;;;;;;;;;;;;;;:::o;31559:218::-;5077:12;:10;:12::i;:::-;5067:22;;:6;;;;;;;;;;;:22;;;5059:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31682:5:::1;31651:36;;:18;:27;31670:7;31651:27;;;;;;;;;;;;;;;;;;;;;;;;;:36;;;;31643:80;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;31764:5;31734:18;:27;31753:7;31734:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;31559:218:::0;;:::o;32277:222::-;5077:12;:10;:12::i;:::-;5067:22;;:6;;;;;;;;;;;:22;;;5059:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32366:31:::1;32382:7;32391:5;32366:15;:31::i;:::-;32408:34;32427:7;32436:5;32408:18;:34::i;:::-;32453:38;32476:7;32485:5;32453:22;:38::i;:::-;32277:222:::0;;:::o;30230:33::-;;;:::o;22614:151::-;22703:7;22730:11;:18;22742:5;22730:18;;;;;;;;;;;;;;;:27;22749:7;22730:27;;;;;;;;;;;;;;;;22723:34;;22614:151;;;;:::o;32023:246::-;5077:12;:10;:12::i;:::-;5067:22;;:6;;;;;;;;;;;:22;;;5059:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32160:5:::1;32122:43;;:25;:34;32148:7;32122:34;;;;;;;;;;;;;;;;;;;;;;;;;:43;;;;32114:94;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32256:5;32219:25;:34;32245:7;32219:34;;;;;;;;;;;;;;;;:42;;;;;;;;;;;;;;;;;;32023:246:::0;;:::o;29694:27::-;;;;:::o;33580:183::-;5077:12;:10;:12::i;:::-;5067:22;;:6;;;;;;;;;;;:22;;;5059:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33662:13:::1;:22;33676:7;33662:22;;;;;;;;;;;;;;;;;;;;;;;;;33654:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33726:29;33740:7;33749:5;33726:13;:29::i;:::-;33580:183:::0;:::o;29611:34::-;;;;:::o;5800:244::-;5077:12;:10;:12::i;:::-;5067:22;;:6;;;;;;;;;;;:22;;;5059:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5909:1:::1;5889:22;;:8;:22;;;;5881:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5999:8;5970:38;;5991:6;;;;;;;;;;;5970:38;;;;;;;;;;;;6028:8;6019:6;;:17;;;;;;;;;;;;;;;;;;5800:244:::0;:::o;29652:35::-;;;;:::o;32507:153::-;5077:12;:10;:12::i;:::-;5067:22;;:6;;;;;;;;;;;:22;;;5059:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32613:12:::1;32595:15;:30;;;;32647:5;32636:8;:16;;;;32507:153:::0;;:::o;30753:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;7668:471::-;7726:7;7976:1;7971;:6;7967:47;;;8001:1;7994:8;;;;7967:47;8026:9;8042:1;8038;:5;8026:17;;8071:1;8066;8062;:5;;;;;;:10;8054:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8130:1;8123:8;;;7668:471;;;;;:::o;8615:132::-;8673:7;8700:39;8704:1;8707;8700:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;8693:46;;8615:132;;;;:::o;6314:181::-;6372:7;6392:9;6408:1;6404;:5;6392:17;;6433:1;6428;:6;;6420:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6486:1;6479:8;;;6314:181;;;;:::o;4008:98::-;4061:7;4088:10;4081:17;;4008:98;:::o;28234:380::-;28387:1;28370:19;;:5;:19;;;;28362:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28468:1;28449:21;;:7;:21;;;;28441:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28552:6;28522:11;:18;28534:5;28522:18;;;;;;;;;;;;;;;:27;28541:7;28522:27;;;;;;;;;;;;;;;:36;;;;28590:7;28574:32;;28583:5;28574:32;;;28599:6;28574:32;;;;;;;;;;;;;;;;;;28234:380;;;:::o;33957:2565::-;34071:1;34055:18;;:4;:18;;;;34047:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34141:1;34127:16;;:2;:16;;;;34119:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34205:10;;34195:6;:20;;:51;;;;34219:21;:27;34241:4;34219:27;;;;;;;;;;;;;;;;;;;;;;;;;34195:51;:80;;;;34250:21;:25;34272:2;34250:25;;;;;;;;;;;;;;;;;;;;;;;;;34195:80;34187:112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34347:14;;34318:25;34336:6;34318:13;34328:2;34318:9;:13::i;:::-;:17;;:25;;;;:::i;:::-;:43;;:76;;;;34365:25;:29;34391:2;34365:29;;;;;;;;;;;;;;;;;;;;;;;;;34318:76;34310:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34451:10;;;;;;;;;;;:38;;;;34465:18;:24;34484:4;34465:24;;;;;;;;;;;;;;;;;;;;;;;;;34451:38;:64;;;;34493:18;:22;34512:2;34493:22;;;;;;;;;;;;;;;;;;;;;;;;;34451:64;34443:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34558:13;:19;34572:4;34558:19;;;;;;;;;;;;;;;;;;;;;;;;;34557:20;34549:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34629:1;34619:6;:11;34616:92;;;34647:28;34663:4;34669:2;34673:1;34647:15;:28::i;:::-;34690:7;;34616:92;34720:25;34769:12;;34748:18;;:33;34720:61;;34792:12;34828;;34807:17;:33;;34792:48;;34878:13;;;;;;;;;;;34870:21;;:4;:21;;;;:45;;;;;34908:7;34870:45;:71;;;;;34933:8;;;;;;;;;;;34932:9;34870:71;34853:444;;;34979:4;34968:8;;:15;;;;;;;;;;;;;;;;;;34998:27;35007:17;34998:8;:27::i;:::-;35051:5;35040:8;;:16;;;;;;;;;;;;;;;;;;34853:444;;;35099:13;;;;;;;;;;;35091:21;;:4;:21;;;:57;;;;;35135:13;;;;;;;;;;;35129:19;;:2;:19;;;;35091:57;:104;;;;;35194:1;35180:11;;:15;35165:12;:30;35091:104;:144;;;;;35213:18;:22;35232:2;35213:22;;;;;;;;;;;;;;;;;;;;;;;;;35212:23;35091:144;35074:223;;;35262:23;35276:2;35280:4;35262:13;:23::i;:::-;35074:223;34853:444;35309:12;35325:8;;;;;;;;;;;35324:9;35309:24;;35349:18;:24;35368:4;35349:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;35377:18;:22;35396:2;35377:22;;;;;;;;;;;;;;;;;;;;;;;;;35349:50;35346:97;;;35426:5;35416:15;;35346:97;35458:7;35455:1014;;;35482:12;35543:13;;;;;;;;;;;35537:19;;:2;:19;;;35533:776;;;35577:21;35601:31;35622:9;;35601:16;;:20;;:31;;;;:::i;:::-;35577:55;;35658:34;35688:3;35658:25;35669:13;35658:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;35651:41;;35732:69;35755:45;35786:13;35755:26;35764:16;;35755:4;:8;;:26;;;;:::i;:::-;:30;;:45;;;;:::i;:::-;35732:18;;:22;;:69;;;;:::i;:::-;35711:18;:90;;;;35835:56;35852:38;35876:13;35852:19;35861:9;;35852:4;:8;;:19;;;;:::i;:::-;:23;;:38;;;;:::i;:::-;35835:12;;:16;;:56;;;;:::i;:::-;35820:12;:71;;;;35533:776;;;;35987:20;36010:29;36030:8;;36010:15;;:19;;:29;;;;:::i;:::-;35987:52;;36065:33;36094:3;36065:24;36076:12;36065:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;36058:40;;36138:67;36161:43;36191:12;36161:25;36170:15;;36161:4;:8;;:25;;;;:::i;:::-;:29;;:43;;;;:::i;:::-;36138:18;;:22;;:67;;;;:::i;:::-;36117:18;:88;;;;36239:54;36256:36;36279:12;36256:18;36265:8;;36256:4;:8;;:18;;;;:::i;:::-;:22;;:36;;;;:::i;:::-;36239:12;;:16;;:54;;;;:::i;:::-;36224:12;:69;;;;35533:776;;36335:1;36328:4;:8;36325:133;;;36356:42;36372:4;36386;36393;36356:15;:42::i;:::-;36426:16;36437:4;36426:6;:10;;:16;;;;:::i;:::-;36417:25;;36325:133;35455:1014;;36481:33;36497:4;36503:2;36507:6;36481:15;:33::i;:::-;33957:2565;;;;;;;:::o;7217:192::-;7303:7;7336:1;7331;:6;;7339:12;7323:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7363:9;7379:1;7375;:5;7363:17;;7400:1;7393:8;;;7217:192;;;;;:::o;38160:110::-;38257:5;38232:13;:22;38246:7;38232:22;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;38160:110;;:::o;9243:278::-;9329:7;9361:1;9357;:5;9364:12;9349:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9388:9;9404:1;9400;:5;;;;;;9388:17;;9512:1;9505:8;;;9243:278;;;;;:::o;25807:573::-;25965:1;25947:20;;:6;:20;;;;25939:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26049:1;26028:23;;:9;:23;;;;26020:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26104:47;26125:6;26133:9;26144:6;26104:20;:47::i;:::-;26184:71;26206:6;26184:71;;;;;;;;;;;;;;;;;:9;:17;26194:6;26184:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;26164:9;:17;26174:6;26164:17;;;;;;;;;;;;;;;:91;;;;26289:32;26314:6;26289:9;:20;26299:9;26289:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;26266:9;:20;26276:9;26266:20;;;;;;;;;;;;;;;:55;;;;26354:9;26337:35;;26346:6;26337:35;;;26365:6;26337:35;;;;;;;;;;;;;;;;;;25807:573;;;:::o;36530:912::-;36594:14;36611:12;;36594:29;;36685:23;36711:60;36769:1;36711:53;36746:17;36711:30;36722:18;;36711:6;:10;;:30;;;;:::i;:::-;:34;;:53;;;;:::i;:::-;:57;;:60;;;;:::i;:::-;36685:86;;36782:17;36802:48;36834:15;36802:27;36813:15;36802:6;:10;;:27;;;;:::i;:::-;:31;;:48;;;;:::i;:::-;36782:68;;36861:26;36890:27;36901:15;36890:6;:10;;:27;;;;:::i;:::-;36861:56;;36930:37;36948:18;36930:17;:37::i;:::-;36980:18;37001:21;36980:42;;37033:17;37053:49;37083:18;37053:25;37068:9;37053:10;:14;;:25;;;;:::i;:::-;:29;;:49;;;;:::i;:::-;37033:69;;37113:23;37139:25;37154:9;37139:10;:14;;:25;;;;:::i;:::-;37113:51;;37198:46;37221:22;37241:1;37221:15;:19;;:22;;;;:::i;:::-;37198:18;;:22;;:46;;;;:::i;:::-;37177:18;:67;;;;37270:52;37287:34;37298:22;37318:1;37298:15;:19;;:22;;;;:::i;:::-;37287:6;:10;;:34;;;;:::i;:::-;37270:12;;:16;;:52;;;;:::i;:::-;37255:12;:67;;;;37351:3;;;;;;;;;;;37335:30;;:41;37366:9;37335:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37387:47;37401:15;37418;37387:13;:47::i;:::-;36530:912;;;;;;;;:::o;6778:136::-;6836:7;6863:43;6867:1;6870;6863:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;6856:50;;6778:136;;;;:::o;29217:125::-;;;;:::o;37749:403::-;37818:21;37856:1;37842:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37818:40;;37887:4;37869;37874:1;37869:7;;;;;;;;;;;;;:23;;;;;;;;;;;29559:42;37913:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37903:4;37908:1;37903:7;;;;;;;;;;;;;:32;;;;;;;;;;;29559:42;37948:66;;;38029:11;38055:1;38071:4;38098;38118:15;37948:196;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37749:403;;:::o;37450:291::-;29559:42;37534:31;;;37573:9;37606:4;37626:11;37652:1;37668;37684:8;37707:15;37534:199;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37450:291;;:::o

Swarm Source

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