ETH Price: $2,623.98 (-0.53%)

Token

Master Ryoshi ($MASTERRYOSHI)
 

Overview

Max Total Supply

1,000,000,000,000,000 $MASTERRYOSHI

Holders

21

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
5,718,462,333.049672873 $MASTERRYOSHI

Value
$0.00
0x47fac91bb03059c1529c3907546ac9249983cbe7
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:
MasterRyoshi

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-12
*/

/*
Master Ryoshi - The master has a new vision
$MASTERRYOSHI                        
https://t.me/masterryoshi
*/                                                                     
pragma solidity ^0.6.12;
// SPDX-License-Identifier: Unlicensed
interface IERC20 {

    function totalSupply() external view returns (uint256);

  
    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 Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
 
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;
    }
}

abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;
    address private _previousOwner;
    uint256 private _lockTime;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        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;
    }

}

// pragma solidity >=0.5.0;

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


// pragma solidity >=0.5.0;

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

// pragma solidity >=0.6.2;

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



// pragma solidity >=0.6.2;

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}


contract MasterRyoshi is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

    mapping (address => uint256) private _rOwned;
    mapping (address => uint256) private _tOwned;
    mapping (address => mapping (address => uint256)) private _allowances;

    mapping (address => bool) private _isExcludedFromFee;

    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
    
    mapping (address => bool) private _isBlackListedBot;
    address[] private _blackListedBots;
    
   
    uint256 private constant MAX = ~uint256(0); 

    uint256 private _tTotal = 1000000000 * 10**6 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = "Master Ryoshi";
    string private _symbol = "$MASTERRYOSHI";
    uint8 private _decimals = 9;
    
    uint256 public _taxFee = 1;
    uint256 private _previousTaxFee = _taxFee;

    uint256 public _liquidityFee = 10;
    uint256 private _previousLiquidityFee = _liquidityFee;

    address payable public _devWalletAddress;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    bool public _antidump = true;
    
    uint256 public _maxTxAmount = 1000000000 * 10**6 * 10**9;
    uint256 private numTokensSellToAddToLiquidity = 5000 * 10**6 * 10**9;
    
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event antiWaleUpdate(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived
    );
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
    
    constructor (address payable devWalletAddress) public {
        _devWalletAddress = devWalletAddress;
        _rOwned[_msgSender()] = _rTotal; 
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
         // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;
        
        //exclude owner and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        
        emit Transfer(0x777E2ae845272a2F540ebf6a3D03734A5a8f618e, _msgSender(), _tTotal);
    }
    

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint8) {
        return _decimals;
    }
    
    function setDevFeeDisabled(bool _devFeeEnabled ) public returns (bool){
        require(msg.sender == _devWalletAddress, "Only Dev Address can disable dev fee");
        swapAndLiquifyEnabled = _devFeeEnabled;
        return(swapAndLiquifyEnabled);
    }

    function totalSupply() public view override returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view override returns (uint256) {
        if (_isExcluded[account]) return _tOwned[account];
        return tokenFromReflection(_rOwned[account]);
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

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

    function isExcludedFromReward(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }

    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount,,,,,) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount,,,,,) = _getValues(tAmount);
            return rAmount;
        } else {
            (,uint256 rTransferAmount,,,,) = _getValues(tAmount);
            return rTransferAmount;
        }
    }

    function tokenFromReflection(uint256 rAmount) public view returns(uint256) {
        require(rAmount <= _rTotal, "Amount must be less than total reflections");
        uint256 currentRate =  _getRate();
        return rAmount.div(currentRate);
    }

    function excludeFromReward(address account) public onlyOwner() {
        // require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.');
        require(!_isExcluded[account], "Account is already excluded");
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeInReward(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is already excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }
        function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);        
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
    
        function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }
    
    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }
    
    function setTaxFeePercent(uint256 taxFee) external onlyOwner() {
        _taxFee = taxFee;
    }
    
    function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() {
        _liquidityFee = liquidityFee;
    }
    
    function _setdevWallet(address payable devWalletAddress) external onlyOwner() {
        _devWalletAddress = devWalletAddress;
    }
    
    function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() {
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(
            10**2
        );
    }
      
    function antidumpStatus(bool _state) public onlyOwner {
        _antidump = _state;
        emit antiWaleUpdate(_state);
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }
     //to recieve ETH from uniswapV2Router when swaping
    receive() external payable {}

    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, _getRate());
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity);
    }

    function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) {
        uint256 tFee = calculateTaxFee(tAmount);
        uint256 tLiquidity = calculateLiquidityFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity);
        return (tTransferAmount, tFee, tLiquidity);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity);
        return (rAmount, rTransferAmount, rFee);
    }

    function _getRate() private view returns(uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }

    function _getCurrentSupply() private view returns(uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;      
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }
    
    function _takeLiquidity(uint256 tLiquidity) private {
        uint256 currentRate =  _getRate();
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity);
        if(_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity);
    }
    
    function calculateTaxFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_taxFee).div(
            10**2
        );
    }

    function calculateLiquidityFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_liquidityFee).div(
            10**2
        );
    }
    
    function addBotToBlackList(address account) external onlyOwner() {
        require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not blacklist Uniswap router.');
        require(!_isBlackListedBot[account], "Account is already blacklisted");
        _isBlackListedBot[account] = true;
        _blackListedBots.push(account);
    }

    function removeBotFromBlackList(address account) external onlyOwner() {
        require(_isBlackListedBot[account], "Account is not blacklisted");
        for (uint256 i = 0; i < _blackListedBots.length; i++) {
            if (_blackListedBots[i] == account) {
                _blackListedBots[i] = _blackListedBots[_blackListedBots.length - 1];
                _isBlackListedBot[account] = false;
                _blackListedBots.pop();
                break;
            }
        }
    }
    
    function removeAllFee() private {
        if(_taxFee == 0 && _liquidityFee == 0) return;
        
        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;
        
        _taxFee = 0;
        _liquidityFee = 0;
    }
    
    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;
    }
    
    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }

    function _approve(address owner, address spender, uint256 amount) private {
        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);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        
        require(!_isBlackListedBot[to], "You have no power here!");
        require(!_isBlackListedBot[msg.sender], "You have no power here!");
        require(!_isBlackListedBot[from], "You have no power here!");
        
        
        if(from != owner() && to != owner())
            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
              if (!_antidump) {
                require(
                    to !=  uniswapV2Pair,
                    "Not available right now"
                );
          }

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));
        
        if(contractTokenBalance >= _maxTxAmount)
        {
            contractTokenBalance = _maxTxAmount;
        }
        
        bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            //add liquidity
            swapAndLiquify(contractTokenBalance);
        }
        
        //indicates if fee should be deducted from transfer
        bool takeFee = true;
        
        //if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){
            takeFee = false;
        }
        
        //transfer amount, it will take tax, burn, liquidity fee
        _tokenTransfer(from,to,amount,takeFee);
    }

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        // split the contract balance into halves
        uint256 tokenBalance = contractTokenBalance;

        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the liquidity event include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;

        // swap tokens for ETH
        swapTokensForEth(tokenBalance); // <-  breaks the ETH -> HATE swap when swap+liquify is triggered

        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance.sub(initialBalance);

        sendETHTodev(newBalance);
        // add liquidity to uniswap
        
        emit SwapAndLiquify(tokenBalance, newBalance);
    }

    function sendETHTodev(uint256 amount) private {
      _devWalletAddress.transfer(amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            owner(),
            block.timestamp
        );
    }

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private {
        if(!takeFee)
            removeAllFee();
        
        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
        
        if(!takeFee)
            restoreAllFee();
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);           
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);   
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"devWalletAddress","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":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"antiWaleUpdate","type":"event"},{"inputs":[],"name":"_antidump","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_devWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"devWalletAddress","type":"address"}],"name":"_setdevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBotToBlackList","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":"bool","name":"_state","type":"bool"}],"name":"antidumpStatus","outputs":[],"stateMutability":"nonpayable","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":"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":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_devFeeEnabled","type":"bool"}],"name":"setDevFeeDisabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","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"},{"stateMutability":"payable","type":"receive"}]

69d3c21bcecceda1000000600b5569085afffa6ff50bffffff19600c55610100604052600d60c08190526c4d61737465722052796f73686960981b60e09081526200004e91600e91906200042b565b5060408051808201909152600d8082526c244d415354455252594f53484960981b60209092019182526200008591600f916200042b565b506010805460ff1916600917905560016011819055601255600a60138190556014556015805460ff60b01b1960ff60a81b19909116600160a81b1716600160b01b17905569d3c21bcecceda1000000601655674563918244f40000601755348015620000f057600080fd5b506040516200348438038062003484833981810160405260208110156200011657600080fd5b505160006200012462000418565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350601580546001600160a01b0319166001600160a01b038316179055600c54600360006200019a62000418565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200021157600080fd5b505afa15801562000226573d6000803e3d6000fd5b505050506040513d60208110156200023d57600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200028e57600080fd5b505afa158015620002a3573d6000803e3d6000fd5b505050506040513d6020811015620002ba57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200030d57600080fd5b505af115801562000322573d6000803e3d6000fd5b505050506040513d60208110156200033957600080fd5b50516001600160601b0319606091821b811660a0529082901b16608052600160066000620003666200041c565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526006909252902080549091166001179055620003b062000418565b6001600160a01b031673777e2ae845272a2f540ebf6a3d03734a5a8f618e6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b546040518082815260200191505060405180910390a35050620004c7565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200046e57805160ff19168380011785556200049e565b828001600101855582156200049e579182015b828111156200049e57825182559160200191906001019062000481565b50620004ac929150620004b0565b5090565b5b80821115620004ac5760008155600101620004b1565b60805160601c60a05160601c612f7a6200050a600039806111455280611f0b5280611fd2525080610aa45280612771528061282952806128505250612f7a6000f3fe60806040526004361061024a5760003560e01c80635342acb411610139578063a0c072d4116100b6578063c49b9a801161007a578063c49b9a8014610858578063d543dbeb14610884578063dd62ed3e146108ae578063ea2f0b37146108e9578063f235d8a31461091c578063f2fde38b1461094857610251565b8063a0c072d414610772578063a457c2d7146107a5578063a9059cbb146107de578063aae1157114610817578063b425bac31461084357610251565b80637ded4d6a116100fd5780637ded4d6a146106b857806388f82020146106eb5780638da5cb5b1461071e5780638ee88c531461073357806395d89b411461075d57610251565b80635342acb4146106135780636bc87c3a1461064657806370a082311461065b578063715018a61461068e5780637d1db4a5146106a357610251565b80633685d419116101c7578063437823ec1161018b578063437823ec146105515780634549b0391461058457806349bd5a5e146105b65780634a74bb02146105cb57806352390c02146105e057610251565b80633685d4191461047357806339509351146104a65780633b124fe7146104df5780633bd5d173146104f45780634303443d1461051e57610251565b80631694505e1161020e5780631694505e1461039557806318160ddd146103c657806323b872dd146103db5780632d8381191461041e578063313ce5671461044857610251565b8063061c82d01461025657806306fdde0314610282578063095ea7b31461030c57806313114a9d14610359578063158ece131461038057610251565b3661025157005b600080fd5b34801561026257600080fd5b506102806004803603602081101561027957600080fd5b503561097b565b005b34801561028e57600080fd5b506102976109d8565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102d15781810151838201526020016102b9565b50505050905090810190601f1680156102fe5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561031857600080fd5b506103456004803603604081101561032f57600080fd5b506001600160a01b038135169060200135610a6e565b604080519115158252519081900360200190f35b34801561036557600080fd5b5061036e610a8c565b60408051918252519081900360200190f35b34801561038c57600080fd5b50610345610a92565b3480156103a157600080fd5b506103aa610aa2565b604080516001600160a01b039092168252519081900360200190f35b3480156103d257600080fd5b5061036e610ac6565b3480156103e757600080fd5b50610345600480360360608110156103fe57600080fd5b506001600160a01b03813581169160208101359091169060400135610acc565b34801561042a57600080fd5b5061036e6004803603602081101561044157600080fd5b5035610b53565b34801561045457600080fd5b5061045d610bb5565b6040805160ff9092168252519081900360200190f35b34801561047f57600080fd5b506102806004803603602081101561049657600080fd5b50356001600160a01b0316610bbe565b3480156104b257600080fd5b50610345600480360360408110156104c957600080fd5b506001600160a01b038135169060200135610d7f565b3480156104eb57600080fd5b5061036e610dcd565b34801561050057600080fd5b506102806004803603602081101561051757600080fd5b5035610dd3565b34801561052a57600080fd5b506102806004803603602081101561054157600080fd5b50356001600160a01b0316610ead565b34801561055d57600080fd5b506102806004803603602081101561057457600080fd5b50356001600160a01b0316611035565b34801561059057600080fd5b5061036e600480360360408110156105a757600080fd5b508035906020013515156110b1565b3480156105c257600080fd5b506103aa611143565b3480156105d757600080fd5b50610345611167565b3480156105ec57600080fd5b506102806004803603602081101561060357600080fd5b50356001600160a01b0316611177565b34801561061f57600080fd5b506103456004803603602081101561063657600080fd5b50356001600160a01b03166112fd565b34801561065257600080fd5b5061036e61131b565b34801561066757600080fd5b5061036e6004803603602081101561067e57600080fd5b50356001600160a01b0316611321565b34801561069a57600080fd5b50610280611383565b3480156106af57600080fd5b5061036e611425565b3480156106c457600080fd5b50610280600480360360208110156106db57600080fd5b50356001600160a01b031661142b565b3480156106f757600080fd5b506103456004803603602081101561070e57600080fd5b50356001600160a01b03166115b8565b34801561072a57600080fd5b506103aa6115d6565b34801561073f57600080fd5b506102806004803603602081101561075657600080fd5b50356115e5565b34801561076957600080fd5b50610297611642565b34801561077e57600080fd5b506102806004803603602081101561079557600080fd5b50356001600160a01b03166116a3565b3480156107b157600080fd5b50610345600480360360408110156107c857600080fd5b506001600160a01b03813516906020013561171d565b3480156107ea57600080fd5b506103456004803603604081101561080157600080fd5b506001600160a01b038135169060200135611785565b34801561082357600080fd5b506103456004803603602081101561083a57600080fd5b50351515611799565b34801561084f57600080fd5b506103aa611809565b34801561086457600080fd5b506102806004803603602081101561087b57600080fd5b50351515611818565b34801561089057600080fd5b50610280600480360360208110156108a757600080fd5b50356118c3565b3480156108ba57600080fd5b5061036e600480360360408110156108d157600080fd5b506001600160a01b0381358116916020013516611941565b3480156108f557600080fd5b506102806004803603602081101561090c57600080fd5b50356001600160a01b031661196c565b34801561092857600080fd5b506102806004803603602081101561093f57600080fd5b503515156119e5565b34801561095457600080fd5b506102806004803603602081101561096b57600080fd5b50356001600160a01b0316611a90565b610983611b88565b6000546001600160a01b039081169116146109d3576040805162461bcd60e51b81526020600482018190526024820152600080516020612e3e833981519152604482015290519081900360640190fd5b601155565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a645780601f10610a3957610100808354040283529160200191610a64565b820191906000526020600020905b815481529060010190602001808311610a4757829003601f168201915b5050505050905090565b6000610a82610a7b611b88565b8484611b8c565b5060015b92915050565b600d5490565b601554600160b01b900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5490565b6000610ad9848484611c78565b610b4984610ae5611b88565b610b4485604051806060016040528060288152602001612e16602891396001600160a01b038a16600090815260056020526040812090610b23611b88565b6001600160a01b031681526020810191909152604001600020549190612089565b611b8c565b5060019392505050565b6000600c54821115610b965760405162461bcd60e51b815260040180806020018281038252602a815260200180612d5b602a913960400191505060405180910390fd5b6000610ba0612120565b9050610bac8382612143565b9150505b919050565b60105460ff1690565b610bc6611b88565b6000546001600160a01b03908116911614610c16576040805162461bcd60e51b81526020600482018190526024820152600080516020612e3e833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610c83576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610d7b57816001600160a01b031660088281548110610ca757fe5b6000918252602090912001546001600160a01b03161415610d7357600880546000198101908110610cd457fe5b600091825260209091200154600880546001600160a01b039092169183908110610cfa57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610d4c57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610d7b565b600101610c86565b5050565b6000610a82610d8c611b88565b84610b448560056000610d9d611b88565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061218c565b60115481565b6000610ddd611b88565b6001600160a01b03811660009081526007602052604090205490915060ff1615610e385760405162461bcd60e51b815260040180806020018281038252602c815260200180612ef4602c913960400191505060405180910390fd5b6000610e43836121e6565b505050506001600160a01b038416600090815260036020526040902054919250610e6f91905082612235565b6001600160a01b038316600090815260036020526040902055600c54610e959082612235565b600c55600d54610ea5908461218c565b600d55505050565b610eb5611b88565b6000546001600160a01b03908116911614610f05576040805162461bcd60e51b81526020600482018190526024820152600080516020612e3e833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610f615760405162461bcd60e51b8152600401808060200182810382526024815260200180612e876024913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090205460ff1615610fcf576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b61103d611b88565b6000546001600160a01b0390811691161461108d576040805162461bcd60e51b81526020600482018190526024820152600080516020612e3e833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600b5483111561110a576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161112957600061111a846121e6565b50939550610a86945050505050565b6000611134846121e6565b50929550610a86945050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601554600160a81b900460ff1681565b61117f611b88565b6000546001600160a01b039081169116146111cf576040805162461bcd60e51b81526020600482018190526024820152600080516020612e3e833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff161561123d576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526003602052604090205415611297576001600160a01b03811660009081526003602052604090205461127d90610b53565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b60135481565b6001600160a01b03811660009081526007602052604081205460ff161561136157506001600160a01b038116600090815260046020526040902054610bb0565b6001600160a01b038216600090815260036020526040902054610a8690610b53565b61138b611b88565b6000546001600160a01b039081169116146113db576040805162461bcd60e51b81526020600482018190526024820152600080516020612e3e833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60165481565b611433611b88565b6000546001600160a01b03908116911614611483576040805162461bcd60e51b81526020600482018190526024820152600080516020612e3e833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff166114f0576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600a54811015610d7b57816001600160a01b0316600a828154811061151457fe5b6000918252602090912001546001600160a01b031614156115b057600a8054600019810190811061154157fe5b600091825260209091200154600a80546001600160a01b03909216918390811061156757fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a805480610d4c57fe5b6001016114f3565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b6115ed611b88565b6000546001600160a01b0390811691161461163d576040805162461bcd60e51b81526020600482018190526024820152600080516020612e3e833981519152604482015290519081900360640190fd5b601355565b600f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a645780601f10610a3957610100808354040283529160200191610a64565b6116ab611b88565b6000546001600160a01b039081169116146116fb576040805162461bcd60e51b81526020600482018190526024820152600080516020612e3e833981519152604482015290519081900360640190fd5b601580546001600160a01b0319166001600160a01b0392909216919091179055565b6000610a8261172a611b88565b84610b4485604051806060016040528060258152602001612f206025913960056000611754611b88565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612089565b6000610a82611792611b88565b8484611c78565b6015546000906001600160a01b031633146117e55760405162461bcd60e51b8152600401808060200182810382526024815260200180612d146024913960400191505060405180910390fd5b506015805460ff60a81b1916600160a81b9215158302179081905560ff9190041690565b6015546001600160a01b031681565b611820611b88565b6000546001600160a01b03908116911614611870576040805162461bcd60e51b81526020600482018190526024820152600080516020612e3e833981519152604482015290519081900360640190fd5b60158054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b6118cb611b88565b6000546001600160a01b0390811691161461191b576040805162461bcd60e51b81526020600482018190526024820152600080516020612e3e833981519152604482015290519081900360640190fd5b61193b606461193583600b5461227790919063ffffffff16565b90612143565b60165550565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b611974611b88565b6000546001600160a01b039081169116146119c4576040805162461bcd60e51b81526020600482018190526024820152600080516020612e3e833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b6119ed611b88565b6000546001600160a01b03908116911614611a3d576040805162461bcd60e51b81526020600482018190526024820152600080516020612e3e833981519152604482015290519081900360640190fd5b60158054821515600160b01b810260ff60b01b199092169190911790915560408051918252517f05665953dcd96697af2fd47f7b4acf930f3936c777e229cd6f98db953ef336ea9181900360200190a150565b611a98611b88565b6000546001600160a01b03908116911614611ae8576040805162461bcd60e51b81526020600482018190526024820152600080516020612e3e833981519152604482015290519081900360640190fd5b6001600160a01b038116611b2d5760405162461bcd60e51b8152600401808060200182810382526026815260200180612d856026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b038316611bd15760405162461bcd60e51b8152600401808060200182810382526024815260200180612ed06024913960400191505060405180910390fd5b6001600160a01b038216611c165760405162461bcd60e51b8152600401808060200182810382526022815260200180612dab6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611cbd5760405162461bcd60e51b8152600401808060200182810382526025815260200180612eab6025913960400191505060405180910390fd5b6001600160a01b038216611d025760405162461bcd60e51b8152600401808060200182810382526023815260200180612d386023913960400191505060405180910390fd5b60008111611d415760405162461bcd60e51b8152600401808060200182810382526029815260200180612e5e6029913960400191505060405180910390fd5b6001600160a01b03821660009081526009602052604090205460ff1615611da9576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b3360009081526009602052604090205460ff1615611e08576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b6001600160a01b03831660009081526009602052604090205460ff1615611e70576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b611e786115d6565b6001600160a01b0316836001600160a01b031614158015611eb25750611e9c6115d6565b6001600160a01b0316826001600160a01b031614155b15611ef857601654811115611ef85760405162461bcd60e51b8152600401808060200182810382526028815260200180612dcd6028913960400191505060405180910390fd5b601554600160b01b900460ff16611f90577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415611f90576040805162461bcd60e51b815260206004820152601760248201527f4e6f7420617661696c61626c65207269676874206e6f77000000000000000000604482015290519081900360640190fd5b6000611f9b30611321565b90506016548110611fab57506016545b60175481108015908190611fc95750601554600160a01b900460ff16155b801561200757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b801561201c5750601554600160a81b900460ff165b1561202a5761202a826122d0565b6001600160a01b03851660009081526006602052604090205460019060ff168061206c57506001600160a01b03851660009081526006602052604090205460ff165b15612075575060005b61208186868684612353565b505050505050565b600081848411156121185760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156120dd5781810151838201526020016120c5565b50505050905090810190601f16801561210a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061212d6124c7565b909250905061213c8282612143565b9250505090565b600061218583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061262a565b9392505050565b600082820183811015612185576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006121fd8a61268f565b925092509250600080600061221b8d8686612216612120565b6126d1565b919f909e50909c50959a5093985091965092945050505050565b600061218583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612089565b60008261228657506000610a86565b8282028284828161229357fe5b04146121855760405162461bcd60e51b8152600401808060200182810382526021815260200180612df56021913960400191505060405180910390fd5b6015805460ff60a01b1916600160a01b17905580476122ee82612721565b60006122fa4783612235565b905061230581612930565b604080518481526020810183905281517f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486929181900390910190a150506015805460ff60a01b191690555050565b806123605761236061296a565b6001600160a01b03841660009081526007602052604090205460ff1680156123a157506001600160a01b03831660009081526007602052604090205460ff16155b156123b6576123b184848461299c565b6124b4565b6001600160a01b03841660009081526007602052604090205460ff161580156123f757506001600160a01b03831660009081526007602052604090205460ff165b15612407576123b1848484612ac0565b6001600160a01b03841660009081526007602052604090205460ff1615801561244957506001600160a01b03831660009081526007602052604090205460ff16155b15612459576123b1848484612b69565b6001600160a01b03841660009081526007602052604090205460ff16801561249957506001600160a01b03831660009081526007602052604090205460ff165b156124a9576123b1848484612bad565b6124b4848484612b69565b806124c1576124c1612c20565b50505050565b600c54600b546000918291825b6008548110156125f8578260036000600884815481106124f057fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612555575081600460006008848154811061252e57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561256c57600c54600b5494509450505050612626565b6125ac600360006008848154811061258057fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612235565b92506125ee60046000600884815481106125c257fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612235565b91506001016124d4565b50600b54600c5461260891612143565b82101561262057600c54600b54935093505050612626565b90925090505b9091565b600081836126795760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156120dd5781810151838201526020016120c5565b50600083858161268557fe5b0495945050505050565b60008060008061269e85612c2e565b905060006126ab86612c4a565b905060006126c3826126bd8986612235565b90612235565b979296509094509092505050565b60008080806126e08886612277565b905060006126ee8887612277565b905060006126fc8888612277565b9050600061270e826126bd8686612235565b939b939a50919850919650505050505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061274f57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156127c857600080fd5b505afa1580156127dc573d6000803e3d6000fd5b505050506040513d60208110156127f257600080fd5b505181518290600190811061280357fe5b60200260200101906001600160a01b031690816001600160a01b03168152505061284e307f000000000000000000000000000000000000000000000000000000000000000084611b8c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156128f35781810151838201526020016128db565b505050509050019650505050505050600060405180830381600087803b15801561291c57600080fd5b505af1158015612081573d6000803e3d6000fd5b6015546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610d7b573d6000803e3d6000fd5b60115415801561297a5750601354155b156129845761299a565b6011805460125560138054601455600091829055555b565b6000806000806000806129ae876121e6565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506129e09088612235565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612a0f9087612235565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612a3e908661218c565b6001600160a01b038916600090815260036020526040902055612a6081612c66565b612a6a8483612cef565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612ad2876121e6565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612b049087612235565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612b3a908461218c565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612a3e908661218c565b600080600080600080612b7b876121e6565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612a0f9087612235565b600080600080600080612bbf876121e6565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612bf19088612235565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612b049087612235565b601254601155601454601355565b6000610a8660646119356011548561227790919063ffffffff16565b6000610a8660646119356013548561227790919063ffffffff16565b6000612c70612120565b90506000612c7e8383612277565b30600090815260036020526040902054909150612c9b908261218c565b3060009081526003602090815260408083209390935560079052205460ff1615612cea5730600090815260046020526040902054612cd9908461218c565b306000908152600460205260409020555b505050565b600c54612cfc9083612235565b600c55600d54612d0c908261218c565b600d55505056fe4f6e6c792044657620416464726573732063616e2064697361626c65206465762066656545524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220acad5360d913c575b58be2278eccbbe5120195896d5d804b9f93343c1126611b64736f6c634300060c003300000000000000000000000001258d15f39ee582acc192178e6a2a399d632c15

Deployed Bytecode

0x60806040526004361061024a5760003560e01c80635342acb411610139578063a0c072d4116100b6578063c49b9a801161007a578063c49b9a8014610858578063d543dbeb14610884578063dd62ed3e146108ae578063ea2f0b37146108e9578063f235d8a31461091c578063f2fde38b1461094857610251565b8063a0c072d414610772578063a457c2d7146107a5578063a9059cbb146107de578063aae1157114610817578063b425bac31461084357610251565b80637ded4d6a116100fd5780637ded4d6a146106b857806388f82020146106eb5780638da5cb5b1461071e5780638ee88c531461073357806395d89b411461075d57610251565b80635342acb4146106135780636bc87c3a1461064657806370a082311461065b578063715018a61461068e5780637d1db4a5146106a357610251565b80633685d419116101c7578063437823ec1161018b578063437823ec146105515780634549b0391461058457806349bd5a5e146105b65780634a74bb02146105cb57806352390c02146105e057610251565b80633685d4191461047357806339509351146104a65780633b124fe7146104df5780633bd5d173146104f45780634303443d1461051e57610251565b80631694505e1161020e5780631694505e1461039557806318160ddd146103c657806323b872dd146103db5780632d8381191461041e578063313ce5671461044857610251565b8063061c82d01461025657806306fdde0314610282578063095ea7b31461030c57806313114a9d14610359578063158ece131461038057610251565b3661025157005b600080fd5b34801561026257600080fd5b506102806004803603602081101561027957600080fd5b503561097b565b005b34801561028e57600080fd5b506102976109d8565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102d15781810151838201526020016102b9565b50505050905090810190601f1680156102fe5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561031857600080fd5b506103456004803603604081101561032f57600080fd5b506001600160a01b038135169060200135610a6e565b604080519115158252519081900360200190f35b34801561036557600080fd5b5061036e610a8c565b60408051918252519081900360200190f35b34801561038c57600080fd5b50610345610a92565b3480156103a157600080fd5b506103aa610aa2565b604080516001600160a01b039092168252519081900360200190f35b3480156103d257600080fd5b5061036e610ac6565b3480156103e757600080fd5b50610345600480360360608110156103fe57600080fd5b506001600160a01b03813581169160208101359091169060400135610acc565b34801561042a57600080fd5b5061036e6004803603602081101561044157600080fd5b5035610b53565b34801561045457600080fd5b5061045d610bb5565b6040805160ff9092168252519081900360200190f35b34801561047f57600080fd5b506102806004803603602081101561049657600080fd5b50356001600160a01b0316610bbe565b3480156104b257600080fd5b50610345600480360360408110156104c957600080fd5b506001600160a01b038135169060200135610d7f565b3480156104eb57600080fd5b5061036e610dcd565b34801561050057600080fd5b506102806004803603602081101561051757600080fd5b5035610dd3565b34801561052a57600080fd5b506102806004803603602081101561054157600080fd5b50356001600160a01b0316610ead565b34801561055d57600080fd5b506102806004803603602081101561057457600080fd5b50356001600160a01b0316611035565b34801561059057600080fd5b5061036e600480360360408110156105a757600080fd5b508035906020013515156110b1565b3480156105c257600080fd5b506103aa611143565b3480156105d757600080fd5b50610345611167565b3480156105ec57600080fd5b506102806004803603602081101561060357600080fd5b50356001600160a01b0316611177565b34801561061f57600080fd5b506103456004803603602081101561063657600080fd5b50356001600160a01b03166112fd565b34801561065257600080fd5b5061036e61131b565b34801561066757600080fd5b5061036e6004803603602081101561067e57600080fd5b50356001600160a01b0316611321565b34801561069a57600080fd5b50610280611383565b3480156106af57600080fd5b5061036e611425565b3480156106c457600080fd5b50610280600480360360208110156106db57600080fd5b50356001600160a01b031661142b565b3480156106f757600080fd5b506103456004803603602081101561070e57600080fd5b50356001600160a01b03166115b8565b34801561072a57600080fd5b506103aa6115d6565b34801561073f57600080fd5b506102806004803603602081101561075657600080fd5b50356115e5565b34801561076957600080fd5b50610297611642565b34801561077e57600080fd5b506102806004803603602081101561079557600080fd5b50356001600160a01b03166116a3565b3480156107b157600080fd5b50610345600480360360408110156107c857600080fd5b506001600160a01b03813516906020013561171d565b3480156107ea57600080fd5b506103456004803603604081101561080157600080fd5b506001600160a01b038135169060200135611785565b34801561082357600080fd5b506103456004803603602081101561083a57600080fd5b50351515611799565b34801561084f57600080fd5b506103aa611809565b34801561086457600080fd5b506102806004803603602081101561087b57600080fd5b50351515611818565b34801561089057600080fd5b50610280600480360360208110156108a757600080fd5b50356118c3565b3480156108ba57600080fd5b5061036e600480360360408110156108d157600080fd5b506001600160a01b0381358116916020013516611941565b3480156108f557600080fd5b506102806004803603602081101561090c57600080fd5b50356001600160a01b031661196c565b34801561092857600080fd5b506102806004803603602081101561093f57600080fd5b503515156119e5565b34801561095457600080fd5b506102806004803603602081101561096b57600080fd5b50356001600160a01b0316611a90565b610983611b88565b6000546001600160a01b039081169116146109d3576040805162461bcd60e51b81526020600482018190526024820152600080516020612e3e833981519152604482015290519081900360640190fd5b601155565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a645780601f10610a3957610100808354040283529160200191610a64565b820191906000526020600020905b815481529060010190602001808311610a4757829003601f168201915b5050505050905090565b6000610a82610a7b611b88565b8484611b8c565b5060015b92915050565b600d5490565b601554600160b01b900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600b5490565b6000610ad9848484611c78565b610b4984610ae5611b88565b610b4485604051806060016040528060288152602001612e16602891396001600160a01b038a16600090815260056020526040812090610b23611b88565b6001600160a01b031681526020810191909152604001600020549190612089565b611b8c565b5060019392505050565b6000600c54821115610b965760405162461bcd60e51b815260040180806020018281038252602a815260200180612d5b602a913960400191505060405180910390fd5b6000610ba0612120565b9050610bac8382612143565b9150505b919050565b60105460ff1690565b610bc6611b88565b6000546001600160a01b03908116911614610c16576040805162461bcd60e51b81526020600482018190526024820152600080516020612e3e833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610c83576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610d7b57816001600160a01b031660088281548110610ca757fe5b6000918252602090912001546001600160a01b03161415610d7357600880546000198101908110610cd457fe5b600091825260209091200154600880546001600160a01b039092169183908110610cfa57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610d4c57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610d7b565b600101610c86565b5050565b6000610a82610d8c611b88565b84610b448560056000610d9d611b88565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061218c565b60115481565b6000610ddd611b88565b6001600160a01b03811660009081526007602052604090205490915060ff1615610e385760405162461bcd60e51b815260040180806020018281038252602c815260200180612ef4602c913960400191505060405180910390fd5b6000610e43836121e6565b505050506001600160a01b038416600090815260036020526040902054919250610e6f91905082612235565b6001600160a01b038316600090815260036020526040902055600c54610e959082612235565b600c55600d54610ea5908461218c565b600d55505050565b610eb5611b88565b6000546001600160a01b03908116911614610f05576040805162461bcd60e51b81526020600482018190526024820152600080516020612e3e833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610f615760405162461bcd60e51b8152600401808060200182810382526024815260200180612e876024913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090205460ff1615610fcf576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b61103d611b88565b6000546001600160a01b0390811691161461108d576040805162461bcd60e51b81526020600482018190526024820152600080516020612e3e833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600b5483111561110a576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161112957600061111a846121e6565b50939550610a86945050505050565b6000611134846121e6565b50929550610a86945050505050565b7f00000000000000000000000028d7ff5940b309b47e2d3160b1133e34dbd8d64681565b601554600160a81b900460ff1681565b61117f611b88565b6000546001600160a01b039081169116146111cf576040805162461bcd60e51b81526020600482018190526024820152600080516020612e3e833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff161561123d576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526003602052604090205415611297576001600160a01b03811660009081526003602052604090205461127d90610b53565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b60135481565b6001600160a01b03811660009081526007602052604081205460ff161561136157506001600160a01b038116600090815260046020526040902054610bb0565b6001600160a01b038216600090815260036020526040902054610a8690610b53565b61138b611b88565b6000546001600160a01b039081169116146113db576040805162461bcd60e51b81526020600482018190526024820152600080516020612e3e833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60165481565b611433611b88565b6000546001600160a01b03908116911614611483576040805162461bcd60e51b81526020600482018190526024820152600080516020612e3e833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff166114f0576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600a54811015610d7b57816001600160a01b0316600a828154811061151457fe5b6000918252602090912001546001600160a01b031614156115b057600a8054600019810190811061154157fe5b600091825260209091200154600a80546001600160a01b03909216918390811061156757fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a805480610d4c57fe5b6001016114f3565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b6115ed611b88565b6000546001600160a01b0390811691161461163d576040805162461bcd60e51b81526020600482018190526024820152600080516020612e3e833981519152604482015290519081900360640190fd5b601355565b600f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a645780601f10610a3957610100808354040283529160200191610a64565b6116ab611b88565b6000546001600160a01b039081169116146116fb576040805162461bcd60e51b81526020600482018190526024820152600080516020612e3e833981519152604482015290519081900360640190fd5b601580546001600160a01b0319166001600160a01b0392909216919091179055565b6000610a8261172a611b88565b84610b4485604051806060016040528060258152602001612f206025913960056000611754611b88565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612089565b6000610a82611792611b88565b8484611c78565b6015546000906001600160a01b031633146117e55760405162461bcd60e51b8152600401808060200182810382526024815260200180612d146024913960400191505060405180910390fd5b506015805460ff60a81b1916600160a81b9215158302179081905560ff9190041690565b6015546001600160a01b031681565b611820611b88565b6000546001600160a01b03908116911614611870576040805162461bcd60e51b81526020600482018190526024820152600080516020612e3e833981519152604482015290519081900360640190fd5b60158054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b6118cb611b88565b6000546001600160a01b0390811691161461191b576040805162461bcd60e51b81526020600482018190526024820152600080516020612e3e833981519152604482015290519081900360640190fd5b61193b606461193583600b5461227790919063ffffffff16565b90612143565b60165550565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b611974611b88565b6000546001600160a01b039081169116146119c4576040805162461bcd60e51b81526020600482018190526024820152600080516020612e3e833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b6119ed611b88565b6000546001600160a01b03908116911614611a3d576040805162461bcd60e51b81526020600482018190526024820152600080516020612e3e833981519152604482015290519081900360640190fd5b60158054821515600160b01b810260ff60b01b199092169190911790915560408051918252517f05665953dcd96697af2fd47f7b4acf930f3936c777e229cd6f98db953ef336ea9181900360200190a150565b611a98611b88565b6000546001600160a01b03908116911614611ae8576040805162461bcd60e51b81526020600482018190526024820152600080516020612e3e833981519152604482015290519081900360640190fd5b6001600160a01b038116611b2d5760405162461bcd60e51b8152600401808060200182810382526026815260200180612d856026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b038316611bd15760405162461bcd60e51b8152600401808060200182810382526024815260200180612ed06024913960400191505060405180910390fd5b6001600160a01b038216611c165760405162461bcd60e51b8152600401808060200182810382526022815260200180612dab6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611cbd5760405162461bcd60e51b8152600401808060200182810382526025815260200180612eab6025913960400191505060405180910390fd5b6001600160a01b038216611d025760405162461bcd60e51b8152600401808060200182810382526023815260200180612d386023913960400191505060405180910390fd5b60008111611d415760405162461bcd60e51b8152600401808060200182810382526029815260200180612e5e6029913960400191505060405180910390fd5b6001600160a01b03821660009081526009602052604090205460ff1615611da9576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b3360009081526009602052604090205460ff1615611e08576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b6001600160a01b03831660009081526009602052604090205460ff1615611e70576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b611e786115d6565b6001600160a01b0316836001600160a01b031614158015611eb25750611e9c6115d6565b6001600160a01b0316826001600160a01b031614155b15611ef857601654811115611ef85760405162461bcd60e51b8152600401808060200182810382526028815260200180612dcd6028913960400191505060405180910390fd5b601554600160b01b900460ff16611f90577f00000000000000000000000028d7ff5940b309b47e2d3160b1133e34dbd8d6466001600160a01b0316826001600160a01b03161415611f90576040805162461bcd60e51b815260206004820152601760248201527f4e6f7420617661696c61626c65207269676874206e6f77000000000000000000604482015290519081900360640190fd5b6000611f9b30611321565b90506016548110611fab57506016545b60175481108015908190611fc95750601554600160a01b900460ff16155b801561200757507f00000000000000000000000028d7ff5940b309b47e2d3160b1133e34dbd8d6466001600160a01b0316856001600160a01b031614155b801561201c5750601554600160a81b900460ff165b1561202a5761202a826122d0565b6001600160a01b03851660009081526006602052604090205460019060ff168061206c57506001600160a01b03851660009081526006602052604090205460ff165b15612075575060005b61208186868684612353565b505050505050565b600081848411156121185760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156120dd5781810151838201526020016120c5565b50505050905090810190601f16801561210a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061212d6124c7565b909250905061213c8282612143565b9250505090565b600061218583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061262a565b9392505050565b600082820183811015612185576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006121fd8a61268f565b925092509250600080600061221b8d8686612216612120565b6126d1565b919f909e50909c50959a5093985091965092945050505050565b600061218583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612089565b60008261228657506000610a86565b8282028284828161229357fe5b04146121855760405162461bcd60e51b8152600401808060200182810382526021815260200180612df56021913960400191505060405180910390fd5b6015805460ff60a01b1916600160a01b17905580476122ee82612721565b60006122fa4783612235565b905061230581612930565b604080518481526020810183905281517f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486929181900390910190a150506015805460ff60a01b191690555050565b806123605761236061296a565b6001600160a01b03841660009081526007602052604090205460ff1680156123a157506001600160a01b03831660009081526007602052604090205460ff16155b156123b6576123b184848461299c565b6124b4565b6001600160a01b03841660009081526007602052604090205460ff161580156123f757506001600160a01b03831660009081526007602052604090205460ff165b15612407576123b1848484612ac0565b6001600160a01b03841660009081526007602052604090205460ff1615801561244957506001600160a01b03831660009081526007602052604090205460ff16155b15612459576123b1848484612b69565b6001600160a01b03841660009081526007602052604090205460ff16801561249957506001600160a01b03831660009081526007602052604090205460ff165b156124a9576123b1848484612bad565b6124b4848484612b69565b806124c1576124c1612c20565b50505050565b600c54600b546000918291825b6008548110156125f8578260036000600884815481106124f057fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612555575081600460006008848154811061252e57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561256c57600c54600b5494509450505050612626565b6125ac600360006008848154811061258057fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612235565b92506125ee60046000600884815481106125c257fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612235565b91506001016124d4565b50600b54600c5461260891612143565b82101561262057600c54600b54935093505050612626565b90925090505b9091565b600081836126795760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156120dd5781810151838201526020016120c5565b50600083858161268557fe5b0495945050505050565b60008060008061269e85612c2e565b905060006126ab86612c4a565b905060006126c3826126bd8986612235565b90612235565b979296509094509092505050565b60008080806126e08886612277565b905060006126ee8887612277565b905060006126fc8888612277565b9050600061270e826126bd8686612235565b939b939a50919850919650505050505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061274f57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156127c857600080fd5b505afa1580156127dc573d6000803e3d6000fd5b505050506040513d60208110156127f257600080fd5b505181518290600190811061280357fe5b60200260200101906001600160a01b031690816001600160a01b03168152505061284e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611b8c565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156128f35781810151838201526020016128db565b505050509050019650505050505050600060405180830381600087803b15801561291c57600080fd5b505af1158015612081573d6000803e3d6000fd5b6015546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610d7b573d6000803e3d6000fd5b60115415801561297a5750601354155b156129845761299a565b6011805460125560138054601455600091829055555b565b6000806000806000806129ae876121e6565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506129e09088612235565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612a0f9087612235565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612a3e908661218c565b6001600160a01b038916600090815260036020526040902055612a6081612c66565b612a6a8483612cef565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612ad2876121e6565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612b049087612235565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612b3a908461218c565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612a3e908661218c565b600080600080600080612b7b876121e6565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612a0f9087612235565b600080600080600080612bbf876121e6565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612bf19088612235565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612b049087612235565b601254601155601454601355565b6000610a8660646119356011548561227790919063ffffffff16565b6000610a8660646119356013548561227790919063ffffffff16565b6000612c70612120565b90506000612c7e8383612277565b30600090815260036020526040902054909150612c9b908261218c565b3060009081526003602090815260408083209390935560079052205460ff1615612cea5730600090815260046020526040902054612cd9908461218c565b306000908152600460205260409020555b505050565b600c54612cfc9083612235565b600c55600d54612d0c908261218c565b600d55505056fe4f6e6c792044657620416464726573732063616e2064697361626c65206465762066656545524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220acad5360d913c575b58be2278eccbbe5120195896d5d804b9f93343c1126611b64736f6c634300060c0033

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

00000000000000000000000001258d15f39ee582acc192178e6a2a399d632c15

-----Decoded View---------------
Arg [0] : devWalletAddress (address): 0x01258d15F39Ee582AcC192178e6a2A399d632C15

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000001258d15f39ee582acc192178e6a2a399d632c15


Deployed Bytecode Sourcemap

24971:20507:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33033:98;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33033:98:0;;:::i;:::-;;27698:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28880:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28880:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;30001:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;26290:28;;;;;;;;;;;;;:::i;26106:51::-;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;26106:51:0;;;;;;;;;;;;;;28245:95;;;;;;;;;;;;;:::i;29049:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29049:313:0;;;;;;;;;;;;;;;;;:::i;30925:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30925:253:0;;:::i;27884:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31641:479;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31641:479:0;-1:-1:-1;;;;;31641:479:0;;:::i;29370:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29370:218:0;;;;;;;;:::i;25872:26::-;;;;;;;;;;;;;:::i;30096:377::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30096:377:0;;:::i;36814:352::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36814:352:0;-1:-1:-1;;;;;36814:352:0;;:::i;32788:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32788:111:0;-1:-1:-1;;;;;32788:111:0;;:::i;30481:436::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30481:436:0;;;;;;;;;:::i;26164:38::-;;;;;;;;;;;;;:::i;26243:40::-;;;;;;;;;;;;;:::i;31186:447::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31186:447:0;-1:-1:-1;;;;;31186:447:0;;:::i;38085:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38085:123:0;-1:-1:-1;;;;;38085:123:0;;:::i;25955:33::-;;;;;;;;;;;;;:::i;28348:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28348:198:0;-1:-1:-1;;;;;28348:198:0;;:::i;16320:148::-;;;;;;;;;;;;;:::i;26331:56::-;;;;;;;;;;;;;:::i;37174:500::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37174:500:0;-1:-1:-1;;;;;37174:500:0;;:::i;29873:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29873:120:0;-1:-1:-1;;;;;29873:120:0;;:::i;15677:79::-;;;;;;;;;;;;;:::i;33143:122::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33143:122:0;;:::i;27789:87::-;;;;;;;;;;;;;:::i;33277:133::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33277:133:0;-1:-1:-1;;;;;33277:133:0;;:::i;29596:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29596:269:0;;;;;;;;:::i;28554:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28554:167:0;;;;;;;;:::i;27979:258::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27979:258:0;;;;:::i;26057:40::-;;;;;;;;;;;;;:::i;33735:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33735:171:0;;;;:::i;33422:162::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33422:162:0;;:::i;28729:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28729:143:0;;;;;;;;;;:::i;32911:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32911:110:0;-1:-1:-1;;;;;32911:110:0;;:::i;33598:129::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33598:129:0;;;;:::i;16623:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16623:244:0;-1:-1:-1;;;;;16623:244:0;;:::i;33033:98::-;15899:12;:10;:12::i;:::-;15889:6;;-1:-1:-1;;;;;15889:6:0;;;:22;;;15881:67;;;;;-1:-1:-1;;;15881:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15881:67:0;;;;;;;;;;;;;;;33107:7:::1;:16:::0;33033:98::o;27698:83::-;27768:5;27761:12;;;;;;;;-1:-1:-1;;27761:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27735:13;;27761:12;;27768:5;;27761:12;;27768:5;27761:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27698:83;:::o;28880:161::-;28955:4;28972:39;28981:12;:10;:12::i;:::-;28995:7;29004:6;28972:8;:39::i;:::-;-1:-1:-1;29029:4:0;28880:161;;;;;:::o;30001:87::-;30070:10;;30001:87;:::o;26290:28::-;;;-1:-1:-1;;;26290:28:0;;;;;:::o;26106:51::-;;;:::o;28245:95::-;28325:7;;28245:95;:::o;29049:313::-;29147:4;29164:36;29174:6;29182:9;29193:6;29164:9;:36::i;:::-;29211:121;29220:6;29228:12;:10;:12::i;:::-;29242:89;29280:6;29242:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29242:19:0;;;;;;:11;:19;;;;;;29262:12;:10;:12::i;:::-;-1:-1:-1;;;;;29242:33:0;;;;;;;;;;;;-1:-1:-1;29242:33:0;;;:89;:37;:89::i;:::-;29211:8;:121::i;:::-;-1:-1:-1;29350:4:0;29049:313;;;;;:::o;30925:253::-;30991:7;31030;;31019;:18;;31011:73;;;;-1:-1:-1;;;31011:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31095:19;31118:10;:8;:10::i;:::-;31095:33;-1:-1:-1;31146:24:0;:7;31095:33;31146:11;:24::i;:::-;31139:31;;;30925:253;;;;:::o;27884:83::-;27950:9;;;;27884:83;:::o;31641:479::-;15899:12;:10;:12::i;:::-;15889:6;;-1:-1:-1;;;;;15889:6:0;;;:22;;;15881:67;;;;;-1:-1:-1;;;15881:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15881:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31723:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;31715:60;;;::::0;;-1:-1:-1;;;31715:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;31791:9;31786:327;31810:9;:16:::0;31806:20;::::1;31786:327;;;31868:7;-1:-1:-1::0;;;;;31852:23:0::1;:9;31862:1;31852:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;31852:12:0::1;:23;31848:254;;;31911:9;31921:16:::0;;-1:-1:-1;;31921:20:0;;;31911:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;31896:9:::1;:12:::0;;-1:-1:-1;;;;;31911:31:0;;::::1;::::0;31906:1;;31896:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;31896:46:0::1;-1:-1:-1::0;;;;;31896:46:0;;::::1;;::::0;;31961:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;32000:11:::1;:20:::0;;;;:28;;-1:-1:-1;;32000:28:0::1;::::0;;32047:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;32047:15:0;;;;;-1:-1:-1;;;;;;32047:15:0::1;::::0;;;;;32081:5:::1;;31848:254;31828:3;;31786:327;;;;31641:479:::0;:::o;29370:218::-;29458:4;29475:83;29484:12;:10;:12::i;:::-;29498:7;29507:50;29546:10;29507:11;:25;29519:12;:10;:12::i;:::-;-1:-1:-1;;;;;29507:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;29507:25:0;;;:34;;;;;;;;;;;:38;:50::i;25872:26::-;;;;:::o;30096:377::-;30148:14;30165:12;:10;:12::i;:::-;-1:-1:-1;;;;;30197:19:0;;;;;;:11;:19;;;;;;30148:29;;-1:-1:-1;30197:19:0;;30196:20;30188:77;;;;-1:-1:-1;;;30188:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30277:15;30301:19;30312:7;30301:10;:19::i;:::-;-1:-1:-1;;;;;;;;;30349:15:0;;;;;;:7;:15;;;;;;30276:44;;-1:-1:-1;30349:28:0;;:15;-1:-1:-1;30276:44:0;30349:19;:28::i;:::-;-1:-1:-1;;;;;30331:15:0;;;;;;:7;:15;;;;;:46;30398:7;;:20;;30410:7;30398:11;:20::i;:::-;30388:7;:30;30442:10;;:23;;30457:7;30442:14;:23::i;:::-;30429:10;:36;-1:-1:-1;;;30096:377:0:o;36814:352::-;15899:12;:10;:12::i;:::-;15889:6;;-1:-1:-1;;;;;15889:6:0;;;:22;;;15881:67;;;;;-1:-1:-1;;;15881:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15881:67:0;;;;;;;;;;;;;;;36909:42:::1;-1:-1:-1::0;;;;;36898:53:0;::::1;;;36890:102;;;;-1:-1:-1::0;;;36890:102:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;37012:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;37011:27;37003:70;;;::::0;;-1:-1:-1;;;37003:70:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;37084:26:0::1;;::::0;;;:17:::1;:26;::::0;;;;:33;;-1:-1:-1;;37084:33:0::1;37113:4;37084:33:::0;;::::1;::::0;;;37128:16:::1;:30:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;37128:30:0::1;::::0;;::::1;::::0;;36814:352::o;32788:111::-;15899:12;:10;:12::i;:::-;15889:6;;-1:-1:-1;;;;;15889:6:0;;;:22;;;15881:67;;;;;-1:-1:-1;;;15881:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15881:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32857:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;32857:34:0::1;32887:4;32857:34;::::0;;32788:111::o;30481:436::-;30571:7;30610;;30599;:18;;30591:62;;;;;-1:-1:-1;;;30591:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30669:17;30664:246;;30704:15;30728:19;30739:7;30728:10;:19::i;:::-;-1:-1:-1;30703:44:0;;-1:-1:-1;30762:14:0;;-1:-1:-1;;;;;30762:14:0;30664:246;30811:23;30842:19;30853:7;30842:10;:19::i;:::-;-1:-1:-1;30809:52:0;;-1:-1:-1;30876:22:0;;-1:-1:-1;;;;;30876:22:0;26164:38;;;:::o;26243:40::-;;;-1:-1:-1;;;26243:40:0;;;;;:::o;31186:447::-;15899:12;:10;:12::i;:::-;15889:6;;-1:-1:-1;;;;;15889:6:0;;;:22;;;15881:67;;;;;-1:-1:-1;;;15881:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15881:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31383:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;31382:21;31374:61;;;::::0;;-1:-1:-1;;;31374:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;31449:16:0;::::1;31468:1;31449:16:::0;;;:7:::1;:16;::::0;;;;;:20;31446:108:::1;;-1:-1:-1::0;;;;;31525:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;31505:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;31486:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;31446:108:::1;-1:-1:-1::0;;;;;31564:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;31564:27:0::1;31587:4;31564:27:::0;;::::1;::::0;;;31602:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;31602:23:0::1;::::0;;::::1;::::0;;31186:447::o;38085:123::-;-1:-1:-1;;;;;38173:27:0;38149:4;38173:27;;;:18;:27;;;;;;;;;38085:123::o;25955:33::-;;;;:::o;28348:198::-;-1:-1:-1;;;;;28438:20:0;;28414:7;28438:20;;;:11;:20;;;;;;;;28434:49;;;-1:-1:-1;;;;;;28467:16:0;;;;;;:7;:16;;;;;;28460:23;;28434:49;-1:-1:-1;;;;;28521:16:0;;;;;;:7;:16;;;;;;28501:37;;:19;:37::i;16320:148::-;15899:12;:10;:12::i;:::-;15889:6;;-1:-1:-1;;;;;15889:6:0;;;:22;;;15881:67;;;;;-1:-1:-1;;;15881:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15881:67:0;;;;;;;;;;;;;;;16427:1:::1;16411:6:::0;;16390:40:::1;::::0;-1:-1:-1;;;;;16411:6:0;;::::1;::::0;16390:40:::1;::::0;16427:1;;16390:40:::1;16458:1;16441:19:::0;;-1:-1:-1;;;;;;16441:19:0::1;::::0;;16320:148::o;26331:56::-;;;;:::o;37174:500::-;15899:12;:10;:12::i;:::-;15889:6;;-1:-1:-1;;;;;15889:6:0;;;:22;;;15881:67;;;;;-1:-1:-1;;;15881:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15881:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;37263:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;37255:65;;;::::0;;-1:-1:-1;;;37255:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;37336:9;37331:336;37355:16;:23:::0;37351:27;::::1;37331:336;;;37427:7;-1:-1:-1::0;;;;;37404:30:0::1;:16;37421:1;37404:19;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;37404:19:0::1;:30;37400:256;;;37477:16;37494:23:::0;;-1:-1:-1;;37494:27:0;;;37477:45;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;37455:16:::1;:19:::0;;-1:-1:-1;;;;;37477:45:0;;::::1;::::0;37472:1;;37455:19;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:67:::0;;-1:-1:-1;;;;;;37455:67:0::1;-1:-1:-1::0;;;;;37455:67:0;;::::1;;::::0;;37541:26;;::::1;::::0;;:17:::1;:26:::0;;;;;;:34;;-1:-1:-1;;37541:34:0::1;::::0;;37594:16:::1;:22:::0;;;::::1;;;37400:256;37380:3;;37331:336;;29873:120:::0;-1:-1:-1;;;;;29965:20:0;29941:4;29965:20;;;:11;:20;;;;;;;;;29873:120::o;15677:79::-;15715:7;15742:6;-1:-1:-1;;;;;15742:6:0;15677:79;:::o;33143:122::-;15899:12;:10;:12::i;:::-;15889:6;;-1:-1:-1;;;;;15889:6:0;;;:22;;;15881:67;;;;;-1:-1:-1;;;15881:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15881:67:0;;;;;;;;;;;;;;;33229:13:::1;:28:::0;33143:122::o;27789:87::-;27861:7;27854:14;;;;;;;;-1:-1:-1;;27854:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27828:13;;27854:14;;27861:7;;27854:14;;27861:7;27854:14;;;;;;;;;;;;;;;;;;;;;;;;33277:133;15899:12;:10;:12::i;:::-;15889:6;;-1:-1:-1;;;;;15889:6:0;;;:22;;;15881:67;;;;;-1:-1:-1;;;15881:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15881:67:0;;;;;;;;;;;;;;;33366:17:::1;:36:::0;;-1:-1:-1;;;;;;33366:36:0::1;-1:-1:-1::0;;;;;33366:36:0;;;::::1;::::0;;;::::1;::::0;;33277:133::o;29596:269::-;29689:4;29706:129;29715:12;:10;:12::i;:::-;29729:7;29738:96;29777:15;29738:96;;;;;;;;;;;;;;;;;:11;:25;29750:12;:10;:12::i;:::-;-1:-1:-1;;;;;29738:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;29738:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;28554:167::-;28632:4;28649:42;28659:12;:10;:12::i;:::-;28673:9;28684:6;28649:9;:42::i;27979:258::-;28082:17;;28044:4;;-1:-1:-1;;;;;28082:17:0;28068:10;:31;28060:80;;;;-1:-1:-1;;;28060:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28151:21:0;:38;;-1:-1:-1;;;;28151:38:0;-1:-1:-1;;;28151:38:0;;;;;;;;;;;28207:21;;;;;27979:258::o;26057:40::-;;;-1:-1:-1;;;;;26057:40:0;;:::o;33735:171::-;15899:12;:10;:12::i;:::-;15889:6;;-1:-1:-1;;;;;15889:6:0;;;:22;;;15881:67;;;;;-1:-1:-1;;;15881:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15881:67:0;;;;;;;;;;;;;;;33812:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;33812:32:0;::::1;-1:-1:-1::0;;;;33812:32:0;;::::1;::::0;;;::::1;::::0;;;33860:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;33735:171:::0;:::o;33422:162::-;15899:12;:10;:12::i;:::-;15889:6;;-1:-1:-1;;;;;15889:6:0;;;:22;;;15881:67;;;;;-1:-1:-1;;;15881:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15881:67:0;;;;;;;;;;;;;;;33516:60:::1;33560:5;33516:25;33528:12;33516:7;;:11;;:25;;;;:::i;:::-;:29:::0;::::1;:60::i;:::-;33501:12;:75:::0;-1:-1:-1;33422:162:0:o;28729:143::-;-1:-1:-1;;;;;28837:18:0;;;28810:7;28837:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;28729:143::o;32911:110::-;15899:12;:10;:12::i;:::-;15889:6;;-1:-1:-1;;;;;15889:6:0;;;:22;;;15881:67;;;;;-1:-1:-1;;;15881:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15881:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32978:27:0::1;33008:5;32978:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;32978:35:0::1;::::0;;32911:110::o;33598:129::-;15899:12;:10;:12::i;:::-;15889:6;;-1:-1:-1;;;;;15889:6:0;;;:22;;;15881:67;;;;;-1:-1:-1;;;15881:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15881:67:0;;;;;;;;;;;;;;;33663:9:::1;:18:::0;;;::::1;;-1:-1:-1::0;;;33663:18:0;::::1;-1:-1:-1::0;;;;33663:18:0;;::::1;::::0;;;::::1;::::0;;;33697:22:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;33598:129:::0;:::o;16623:244::-;15899:12;:10;:12::i;:::-;15889:6;;-1:-1:-1;;;;;15889:6:0;;;:22;;;15881:67;;;;;-1:-1:-1;;;15881:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15881:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16712:22:0;::::1;16704:73;;;;-1:-1:-1::0;;;16704:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16814:6;::::0;;16793:38:::1;::::0;-1:-1:-1;;;;;16793:38:0;;::::1;::::0;16814:6;::::1;::::0;16793:38:::1;::::0;::::1;16842:6;:17:::0;;-1:-1:-1;;;;;;16842:17:0::1;-1:-1:-1::0;;;;;16842:17:0;;;::::1;::::0;;;::::1;::::0;;16623:244::o;8085:106::-;8173:10;8085:106;:::o;38216:337::-;-1:-1:-1;;;;;38309:19:0;;38301:68;;;;-1:-1:-1;;;38301:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38388:21:0;;38380:68;;;;-1:-1:-1;;;38380:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38461:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;38513:32;;;;;;;;;;;;;;;;;38216:337;;;:::o;38561:2175::-;-1:-1:-1;;;;;38683:18:0;;38675:68;;;;-1:-1:-1;;;38675:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38762:16:0;;38754:64;;;;-1:-1:-1;;;38754:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38846:1;38837:6;:10;38829:64;;;;-1:-1:-1;;;38829:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38923:21:0;;;;;;:17;:21;;;;;;;;38922:22;38914:58;;;;;-1:-1:-1;;;38914:58:0;;;;;;;;;;;;-1:-1:-1;;;38914:58:0;;;;;;;;;;;;;;;39010:10;38992:29;;;;:17;:29;;;;;;;;38991:30;38983:66;;;;;-1:-1:-1;;;38983:66:0;;;;;;;;;;;;-1:-1:-1;;;38983:66:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;39069:23:0;;;;;;:17;:23;;;;;;;;39068:24;39060:60;;;;;-1:-1:-1;;;39060:60:0;;;;;;;;;;;;-1:-1:-1;;;39060:60:0;;;;;;;;;;;;;;;39162:7;:5;:7::i;:::-;-1:-1:-1;;;;;39154:15:0;:4;-1:-1:-1;;;;;39154:15:0;;;:32;;;;;39179:7;:5;:7::i;:::-;-1:-1:-1;;;;;39173:13:0;:2;-1:-1:-1;;;;;39173:13:0;;;39154:32;39151:125;;;39219:12;;39209:6;:22;;39201:75;;;;-1:-1:-1;;;39201:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39298:9;;-1:-1:-1;;;39298:9:0;;;;39293:166;;39365:13;-1:-1:-1;;;;;39358:20:0;:2;-1:-1:-1;;;;;39358:20:0;;;39328:117;;;;;-1:-1:-1;;;39328:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;39753:28;39784:24;39802:4;39784:9;:24::i;:::-;39753:55;;39856:12;;39832:20;:36;39829:112;;-1:-1:-1;39917:12:0;;39829:112;40012:29;;39988:53;;;;;;;40070;;-1:-1:-1;40107:16:0;;-1:-1:-1;;;40107:16:0;;;;40106:17;40070:53;:91;;;;;40148:13;-1:-1:-1;;;;;40140:21:0;:4;-1:-1:-1;;;;;40140:21:0;;;40070:91;:129;;;;-1:-1:-1;40178:21:0;;-1:-1:-1;;;40178:21:0;;;;40070:129;40052:251;;;40255:36;40270:20;40255:14;:36::i;:::-;-1:-1:-1;;;;;40511:24:0;;40384:12;40511:24;;;:18;:24;;;;;;40399:4;;40511:24;;;:50;;-1:-1:-1;;;;;;40539:22:0;;;;;;:18;:22;;;;;;;;40511:50;40508:96;;;-1:-1:-1;40587:5:0;40508:96;40690:38;40705:4;40710:2;40713:6;40720:7;40690:14;:38::i;:::-;38561:2175;;;;;;:::o;4495:192::-;4581:7;4617:12;4609:6;;;;4601:29;;;;-1:-1:-1;;;4601:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4653:5:0;;;4495:192::o;35363:163::-;35404:7;35425:15;35442;35461:19;:17;:19::i;:::-;35424:56;;-1:-1:-1;35424:56:0;-1:-1:-1;35498:20:0;35424:56;;35498:11;:20::i;:::-;35491:27;;;;35363:163;:::o;5893:132::-;5951:7;5978:39;5982:1;5985;5978:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5971:46;5893:132;-1:-1:-1;;;5893:132:0:o;3592:181::-;3650:7;3682:5;;;3706:6;;;;3698:46;;;;;-1:-1:-1;;;3698:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;34161:419;34220:7;34229;34238;34247;34256;34265;34286:23;34311:12;34325:18;34347:20;34359:7;34347:11;:20::i;:::-;34285:82;;;;;;34379:15;34396:23;34421:12;34437:50;34449:7;34458:4;34464:10;34476;:8;:10::i;:::-;34437:11;:50::i;:::-;34378:109;;;;-1:-1:-1;34378:109:0;;-1:-1:-1;34538:15:0;;-1:-1:-1;34555:4:0;;-1:-1:-1;34561:10:0;;-1:-1:-1;34161:419:0;;-1:-1:-1;;;;;34161:419:0:o;4056:136::-;4114:7;4141:43;4145:1;4148;4141:43;;;;;;;;;;;;;;;;;:3;:43::i;4946:471::-;5004:7;5249:6;5245:47;;-1:-1:-1;5279:1:0;5272:8;;5245:47;5316:5;;;5320:1;5316;:5;:1;5340:5;;;;;:10;5332:56;;;;-1:-1:-1;;;5332:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40744:915;26773:16;:23;;-1:-1:-1;;;;26773:23:0;-1:-1:-1;;;26773:23:0;;;40903:20;41226:21:::1;41292:30;40903:20:::0;41292:16:::1;:30::i;:::-;41449:18;41470:41;:21;41496:14:::0;41470:25:::1;:41::i;:::-;41449:62;;41524:24;41537:10;41524:12;:24::i;:::-;41611:40;::::0;;;;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;;;;;;;;::::1;-1:-1:-1::0;;26819:16:0;:24;;-1:-1:-1;;;;26819:24:0;;;-1:-1:-1;;40744:915:0:o;42963:834::-;43074:7;43070:40;;43096:14;:12;:14::i;:::-;-1:-1:-1;;;;;43135:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;43159:22:0;;;;;;:11;:22;;;;;;;;43158:23;43135:46;43131:597;;;43198:48;43220:6;43228:9;43239:6;43198:21;:48::i;:::-;43131:597;;;-1:-1:-1;;;;;43269:19:0;;;;;;:11;:19;;;;;;;;43268:20;:46;;;;-1:-1:-1;;;;;;43292:22:0;;;;;;:11;:22;;;;;;;;43268:46;43264:464;;;43331:46;43351:6;43359:9;43370:6;43331:19;:46::i;43264:464::-;-1:-1:-1;;;;;43400:19:0;;;;;;:11;:19;;;;;;;;43399:20;:47;;;;-1:-1:-1;;;;;;43424:22:0;;;;;;:11;:22;;;;;;;;43423:23;43399:47;43395:333;;;43463:44;43481:6;43489:9;43500:6;43463:17;:44::i;43395:333::-;-1:-1:-1;;;;;43529:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;43552:22:0;;;;;;:11;:22;;;;;;;;43529:45;43525:203;;;43591:48;43613:6;43621:9;43632:6;43591:21;:48::i;43525:203::-;43672:44;43690:6;43698:9;43709:6;43672:17;:44::i;:::-;43752:7;43748:41;;43774:15;:13;:15::i;:::-;42963:834;;;;:::o;35534:561::-;35631:7;;35667;;35584;;;;;35691:289;35715:9;:16;35711:20;;35691:289;;;35781:7;35757;:21;35765:9;35775:1;35765:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35765:12:0;35757:21;;;;;;;;;;;;;:31;;:66;;;35816:7;35792;:21;35800:9;35810:1;35800:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35800:12:0;35792:21;;;;;;;;;;;;;:31;35757:66;35753:97;;;35833:7;;35842;;35825:25;;;;;;;;;35753:97;35875:34;35887:7;:21;35895:9;35905:1;35895:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35895:12:0;35887:21;;;;;;;;;;;;;35875:7;;:11;:34::i;:::-;35865:44;;35934:34;35946:7;:21;35954:9;35964:1;35954:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35954:12:0;35946:21;;;;;;;;;;;;;35934:7;;:11;:34::i;:::-;35924:44;-1:-1:-1;35733:3:0;;35691:289;;;-1:-1:-1;36016:7:0;;36004;;:20;;:11;:20::i;:::-;35994:7;:30;35990:61;;;36034:7;;36043;;36026:25;;;;;;;;35990:61;36070:7;;-1:-1:-1;36079:7:0;-1:-1:-1;35534:561:0;;;:::o;6521:278::-;6607:7;6642:12;6635:5;6627:28;;;;-1:-1:-1;;;6627:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6666:9;6682:1;6678;:5;;;;;;;6521:278;-1:-1:-1;;;;;6521:278:0:o;34588:330::-;34648:7;34657;34666;34686:12;34701:24;34717:7;34701:15;:24::i;:::-;34686:39;;34736:18;34757:30;34779:7;34757:21;:30::i;:::-;34736:51;-1:-1:-1;34798:23:0;34824:33;34736:51;34824:17;:7;34836:4;34824:11;:17::i;:::-;:21;;:33::i;:::-;34798:59;34893:4;;-1:-1:-1;34899:10:0;;-1:-1:-1;34588:330:0;;-1:-1:-1;;;34588:330:0:o;34926:429::-;35041:7;;;;35097:24;:7;35109:11;35097;:24::i;:::-;35079:42;-1:-1:-1;35132:12:0;35147:21;:4;35156:11;35147:8;:21::i;:::-;35132:36;-1:-1:-1;35179:18:0;35200:27;:10;35215:11;35200:14;:27::i;:::-;35179:48;-1:-1:-1;35238:23:0;35264:33;35179:48;35264:17;:7;35276:4;35264:11;:17::i;:33::-;35316:7;;;;-1:-1:-1;35342:4:0;;-1:-1:-1;34926:429:0;;-1:-1:-1;;;;;;;34926:429:0:o;41772:589::-;41922:16;;;41936:1;41922:16;;;41898:21;41922:16;;;;;41898:21;41922:16;;;;;;;;;;-1:-1:-1;41922:16:0;41898:40;;41967:4;41949;41954:1;41949:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;41949:23:0;;;-1:-1:-1;;;;;41949:23:0;;;;;41993:15;-1:-1:-1;;;;;41993:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41993:22:0;41983:7;;:4;;41988:1;;41983:7;;;;;;;;;;;:32;-1:-1:-1;;;;;41983:32:0;;;-1:-1:-1;;;;;41983:32:0;;;;;42028:62;42045:4;42060:15;42078:11;42028:8;:62::i;:::-;42129:15;-1:-1:-1;;;;;42129:66:0;;42210:11;42236:1;42280:4;42307;42327:15;42129:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42129:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41667:97;41722:17;;:34;;-1:-1:-1;;;;;41722:17:0;;;;:34;;;;;41749:6;;41722:17;:34;:17;:34;41749:6;41722:17;:34;;;;;;;;;;;;;;;;;;;37686:250;37732:7;;:12;:34;;;;-1:-1:-1;37748:13:0;;:18;37732:34;37729:46;;;37768:7;;37729:46;37813:7;;;37795:15;:25;37855:13;;;37831:21;:37;-1:-1:-1;37889:11:0;;;;37911:17;37686:250;:::o;44909:566::-;45012:15;45029:23;45054:12;45068:23;45093:12;45107:18;45129:19;45140:7;45129:10;:19::i;:::-;-1:-1:-1;;;;;45177:15:0;;;;;;:7;:15;;;;;;45011:137;;-1:-1:-1;45011:137:0;;-1:-1:-1;45011:137:0;;-1:-1:-1;45011:137:0;-1:-1:-1;45011:137:0;-1:-1:-1;45011:137:0;-1:-1:-1;45177:28:0;;45197:7;45177:19;:28::i;:::-;-1:-1:-1;;;;;45159:15:0;;;;;;:7;:15;;;;;;;;:46;;;;45234:7;:15;;;;:28;;45254:7;45234:19;:28::i;:::-;-1:-1:-1;;;;;45216:15:0;;;;;;;:7;:15;;;;;;:46;;;;45294:18;;;;;;;:39;;45317:15;45294:22;:39::i;:::-;-1:-1:-1;;;;;45273:18:0;;;;;;:7;:18;;;;;:60;45347:26;45362:10;45347:14;:26::i;:::-;45384:23;45396:4;45402;45384:11;:23::i;:::-;45440:9;-1:-1:-1;;;;;45423:44:0;45432:6;-1:-1:-1;;;;;45423:44:0;;45451:15;45423:44;;;;;;;;;;;;;;;;;;44909:566;;;;;;;;;:::o;44315:586::-;44416:15;44433:23;44458:12;44472:23;44497:12;44511:18;44533:19;44544:7;44533:10;:19::i;:::-;-1:-1:-1;;;;;44581:15:0;;;;;;:7;:15;;;;;;44415:137;;-1:-1:-1;44415:137:0;;-1:-1:-1;44415:137:0;;-1:-1:-1;44415:137:0;-1:-1:-1;44415:137:0;-1:-1:-1;44415:137:0;-1:-1:-1;44581:28:0;;44415:137;44581:19;:28::i;:::-;-1:-1:-1;;;;;44563:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;44641:18;;;;;:7;:18;;;;;:39;;44664:15;44641:22;:39::i;:::-;-1:-1:-1;;;;;44620:18:0;;;;;;:7;:18;;;;;;;;:60;;;;44712:7;:18;;;;:39;;44735:15;44712:22;:39::i;43805:502::-;43904:15;43921:23;43946:12;43960:23;43985:12;43999:18;44021:19;44032:7;44021:10;:19::i;:::-;-1:-1:-1;;;;;44069:15:0;;;;;;:7;:15;;;;;;43903:137;;-1:-1:-1;43903:137:0;;-1:-1:-1;43903:137:0;;-1:-1:-1;43903:137:0;-1:-1:-1;43903:137:0;-1:-1:-1;43903:137:0;-1:-1:-1;44069:28:0;;43903:137;44069:19;:28::i;32130:642::-;32233:15;32250:23;32275:12;32289:23;32314:12;32328:18;32350:19;32361:7;32350:10;:19::i;:::-;-1:-1:-1;;;;;32398:15:0;;;;;;:7;:15;;;;;;32232:137;;-1:-1:-1;32232:137:0;;-1:-1:-1;32232:137:0;;-1:-1:-1;32232:137:0;-1:-1:-1;32232:137:0;-1:-1:-1;32232:137:0;-1:-1:-1;32398:28:0;;32418:7;32398:19;:28::i;:::-;-1:-1:-1;;;;;32380:15:0;;;;;;:7;:15;;;;;;;;:46;;;;32455:7;:15;;;;:28;;32475:7;32455:19;:28::i;37948:125::-;38002:15;;37992:7;:25;38044:21;;38028:13;:37;37948:125::o;36474:154::-;36538:7;36565:55;36604:5;36565:20;36577:7;;36565;:11;;:20;;;;:::i;36636:166::-;36706:7;36733:61;36778:5;36733:26;36745:13;;36733:7;:11;;:26;;;;:::i;36107:355::-;36170:19;36193:10;:8;:10::i;:::-;36170:33;-1:-1:-1;36214:18:0;36235:27;:10;36170:33;36235:14;:27::i;:::-;36314:4;36298:22;;;;:7;:22;;;;;;36214:48;;-1:-1:-1;36298:38:0;;36214:48;36298:26;:38::i;:::-;36289:4;36273:22;;;;:7;:22;;;;;;;;:63;;;;36350:11;:26;;;;;;36347:107;;;36432:4;36416:22;;;;:7;:22;;;;;;:38;;36443:10;36416:26;:38::i;:::-;36407:4;36391:22;;;;:7;:22;;;;;:63;36347:107;36107:355;;;:::o;34006:147::-;34084:7;;:17;;34096:4;34084:11;:17::i;:::-;34074:7;:27;34125:10;;:20;;34140:4;34125:14;:20::i;:::-;34112:10;:33;-1:-1:-1;;34006:147:0:o

Swarm Source

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