ETH Price: $3,445.00 (-2.59%)
Gas: 3 Gwei

Token

Sasuke Inu (SINU)
 

Overview

Max Total Supply

100,000,000,000 SINU

Holders

259 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
223.784415946319091973 SINU

Value
$0.00
0x06e8df56a4019777b0322efbdd4244e42bc58457
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Sasuke Inu is a decentralized financial ecosystem designed by holders for holders. It aims to build a strong community with community token that will have a buy, sell, and, trade NFT marketplace.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SasukeInu

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-10-09
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal virtual view returns (address payable) {
        return msg.sender;
    }

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

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount)
        external
        returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
}

/**
 * @dev 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;
    }
    
    function ceil(uint256 a, uint256 m) internal pure returns (uint256) {
    uint256 c = add(a,m);
    uint256 d = sub(c,1);
    return mul(div(d,m),m);
  }
}

/**
 * @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;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() internal {
        _owner = 0xc60277ee067B2dC45ad37c011bD6b7D688D7Db23;
        emit OwnershipTransferred(address(0), _owner);
    }

    /**
     * @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;
    }
}


interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IUniswapV2Pair {
    function sync() external;
}

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
      address token,
      uint liquidity,
      uint amountTokenMin,
      uint amountETHMin,
      address to,
      uint deadline
    ) external returns (uint amountETH);
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    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;
}

contract RewardWallet {
    constructor() public {
    }
}

contract Balancer {
    constructor() public {
    }
}

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

    string private _name = "Sasuke Inu";
    string private _symbol = "SINU";
    uint8 private _decimals = 18;

    mapping(address => uint256) internal _reflectionBalance;
    mapping (address => bool) public _blackList;
    mapping(address => uint256) internal _tokenBalance;
    mapping(address => mapping(address => uint256)) internal _allowances;

    uint256 private constant MAX = ~uint256(0);
    uint256 internal _tokenTotal = 100_000_000_000e18;
    uint256 internal _reflectionTotal = (MAX - (MAX % _tokenTotal));

    mapping(address => bool) isTaxless;
    mapping(address => bool) internal _isExcluded;
    address[] internal _excluded;
    
    
    uint256 private _feeDecimal = 2; // do not change this value...
    uint256 public _taxFee = 200;  // means 5% which distribute to all holders
    uint256 public _liquidityFee = 500; // means 5% add liquidity on each buy and sell
    uint256 private _burnFee = 0;  // means 0% it menas on burn 
    uint256 public _marketingFee=500; // means 2% marketing wallet
    
    address marketingWallet=0xc60277ee067B2dC45ad37c011bD6b7D688D7Db23;
    
    uint256 private _taxFeeTotal;
    uint256 private _burnFeeTotal;
    uint256 private _liquidityFeeTotal;

    bool private isFeeActive = true; // should be true
    bool private tradingEnable = true;
    bool private inSwapAndLiquify;
    bool private swapAndLiquifyEnabled = true;
    
    uint256 private maxTxAmount = _tokenTotal; // no limit
    uint256 private minTokensBeforeSwap = 1_000_000e18;
  
    IUniswapV2Router02 private  uniswapV2Router;
    address public  uniswapV2Pair;

    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(uint256 tokensSwapped,uint256 ethReceived, uint256 tokensIntoLiqudity);

    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    constructor() public {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // for  uniswap v2
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        uniswapV2Router = _uniswapV2Router;
      
        isTaxless[owner()] = true;
        isTaxless[address(this)] = true;

        // exlcude pair address from tax rewards
        _isExcluded[address(uniswapV2Pair)] = true;
        _excluded.push(address(uniswapV2Pair));

        _reflectionBalance[owner()] = _reflectionTotal;
        emit Transfer(address(0),owner(), _tokenTotal);
    }

    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 totalSupply() public override view returns (uint256) {
        return _tokenTotal;
    }
    
  
    function balanceOf(address account) public override view returns (uint256) {
        if (_isExcluded[account]) return _tokenBalance[account];
        return tokenFromReflection(_reflectionBalance[account]);
    }

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

    function allowance(address owner, address spender)
        public
        override
        view
        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 virtual 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 reflectionFromToken(uint256 tokenAmount, bool deductTransferFee)
        public
        view
        returns (uint256)
    {
        require(tokenAmount <= _tokenTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            return tokenAmount.mul(_getReflectionRate());
        } else {
            return
                tokenAmount.sub(tokenAmount.mul(_taxFee).div(10** _feeDecimal + 2)).mul(
                    _getReflectionRate()
                );
        }
    }

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

   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 sender,
        address recipient,
        uint256 amount
    ) private {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        require(amount <= maxTxAmount, "Transfer Limit Exceeds");
        require(_blackList[sender] != true,"Address is blackListed");
        require(tradingEnable == true,"trading is disable");
        
        uint256 contractTokenBalance = balanceOf(address(this));
        bool overMinTokenBalance = contractTokenBalance >= minTokensBeforeSwap;
        if (!inSwapAndLiquify && overMinTokenBalance && sender != uniswapV2Pair && swapAndLiquifyEnabled) {
            swapAndLiquify(contractTokenBalance);
        }

        uint256 transferAmount = amount;
        uint256 rate = _getReflectionRate();

        if(isFeeActive && !isTaxless[_msgSender()] && !isTaxless[recipient] && !inSwapAndLiquify){
            transferAmount = collectFee(sender,amount,rate);
        }
    
        //transfer reflection
        _reflectionBalance[sender] = _reflectionBalance[sender].sub(amount.mul(rate));
        
        _reflectionBalance[recipient] = _reflectionBalance[recipient].add(transferAmount.mul(rate));

        //if any account belongs to the excludedAccount transfer token
        if (_isExcluded[sender]) {
            _tokenBalance[sender] = _tokenBalance[sender].sub(amount);
        }
        if (_isExcluded[recipient]) {
            _tokenBalance[recipient] = _tokenBalance[recipient].add(transferAmount);
            
          emit Transfer(sender, recipient, transferAmount);
        
        return;
        }

        emit Transfer(sender, recipient, transferAmount);
        
       }
    
    function collectFee(address account, uint256 amount, uint256 rate) private returns (uint256) {
        uint256 transferAmount = amount;
        
        //@dev tax fee
        if(_taxFee != 0){
            uint256 taxFee = amount.mul(_taxFee).div(10**(_feeDecimal + 2));
            transferAmount = transferAmount.sub(taxFee);
            _reflectionTotal = _reflectionTotal.sub(taxFee.mul(rate));
            _taxFeeTotal = _taxFeeTotal.add(taxFee);
        }

        //@dev liquidity fee
        if(_liquidityFee != 0){
            uint256 liquidityFee = amount.mul(_liquidityFee).div(10**(_feeDecimal + 2));
            transferAmount = transferAmount.sub(liquidityFee);
            _reflectionBalance[address(this)] = _reflectionBalance[address(this)].add(liquidityFee.mul(rate));
            if(_isExcluded[address(this)]){
                _tokenBalance[address(this)] = _tokenBalance[address(this)].add(liquidityFee);
            }
            _liquidityFeeTotal = _liquidityFeeTotal.add(liquidityFee);
            emit Transfer(account,address(this),liquidityFee);
        }
      
        //@dev burn fee
        if(_burnFee != 0){
            uint256 burnFee = amount.mul(_burnFee).div(10**(_feeDecimal + 2));
            transferAmount = transferAmount.sub(burnFee);
            _tokenTotal = _tokenTotal.sub(burnFee);
            _reflectionTotal = _reflectionTotal.sub(burnFee.mul(rate));
            _burnFeeTotal = _burnFeeTotal.add(burnFee);
            emit Transfer(account,address(0),burnFee);
        }
        
        return transferAmount;
    }

    function _getReflectionRate() private view returns (uint256) {
        uint256 reflectionSupply = _reflectionTotal;
        uint256 tokenSupply = _tokenTotal;
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (
                _reflectionBalance[_excluded[i]] > reflectionSupply ||
                _tokenBalance[_excluded[i]] > tokenSupply
            ) return _reflectionTotal.div(_tokenTotal);
            reflectionSupply = reflectionSupply.sub(
                _reflectionBalance[_excluded[i]]
            );
            tokenSupply = tokenSupply.sub(_tokenBalance[_excluded[i]]);
        }
        if (reflectionSupply < _reflectionTotal.div(_tokenTotal))
            return _reflectionTotal.div(_tokenTotal);
        return reflectionSupply.div(tokenSupply);
    }
    
     function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
         if(contractTokenBalance > maxTxAmount){
             contractTokenBalance = maxTxAmount;
         }
        // split the contract balance into halves
        uint256 half = contractTokenBalance.div(2);
        uint256 otherHalf = contractTokenBalance.sub(half);

        // 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(half); // <- this 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);

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);
        
        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

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

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

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

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

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(this),
            block.timestamp
        );
    }
    
   
    function setTaxFee(uint256 fee) external onlyOwner {
        _taxFee = fee;
    }
    
    function setMarketingWallet(address _marketingWallet) external onlyOwner {
        marketingWallet=_marketingWallet;
    }
    
     function setFeeActive(bool value) external onlyOwner {
        isFeeActive = value;
    }
    function setBlackList (address add,bool value) external onlyOwner {
        _blackList[add]=value;
    }
    function setLiquidityFee(uint256 fee) external onlyOwner {
        _liquidityFee = fee;
    }
    
    function setTrading(bool value) external onlyOwner {
        tradingEnable= value;
    }
    
     function setMaxTxAmount(uint256 amount) external onlyOwner {
        maxTxAmount = amount;
    }
    
    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","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"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_blackList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"tokenAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"add","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setFeeActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"setLiquidityFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"reflectionAmount","type":"uint256"}],"name":"tokenFromReflection","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"},{"stateMutability":"payable","type":"receive"}]

60c0604052600a608081905269536173756b6520496e7560b01b60a09081526200002d916001919062000461565b506040805180820190915260048082526353494e5560e01b60209092019182526200005b9160029162000461565b506003805460ff191660121790556c01431e0fae6d7217caa0000000600881905560001906196009556002600d5560c8600e556101f4600f8190556000601055601155601280546001600160a01b03191673c60277ee067b2dc45ad37c011bd6b7d688d7db231790556016805463ff0000001961ff001960ff19909216600117919091166101001716630100000017905560085460175569d3c21bcecceda10000006018553480156200010d57600080fd5b50600080546001600160a01b03191673c60277ee067b2dc45ad37c011bd6b7d688d7db23178082556040516001600160a01b039190911691907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a36000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001be57600080fd5b505afa158015620001d3573d6000803e3d6000fd5b505050506040513d6020811015620001ea57600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200023b57600080fd5b505afa15801562000250573d6000803e3d6000fd5b505050506040513d60208110156200026757600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620002ba57600080fd5b505af1158015620002cf573d6000803e3d6000fd5b505050506040513d6020811015620002e657600080fd5b5051601a80546001600160a01b03199081166001600160a01b0393841617909155601980549091169183169190911790556001600a60006200032762000452565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600a8452828120805486166001908117909155601a805484168352600b909552928120805490951683179094559154600c8054928301815584527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c790910180546001600160a01b0319169190921617905560095490600490620003da62000452565b6001600160a01b03168152602081019190915260400160002055620003fe62000452565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6008546040518082815260200191505060405180910390a350620004fd565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004a457805160ff1916838001178555620004d4565b82800160010185558215620004d4579182015b82811115620004d4578251825591602001919060010190620004b7565b50620004e2929150620004e6565b5090565b5b80821115620004e25760008155600101620004e7565b611fae806200050d6000396000f3fe6080604052600436106101bb5760003560e01c806368092bd9116100ec578063a457c2d71161008a578063c4081a4c11610064578063c4081a4c14610641578063dd62ed3e1461066b578063ec28438a146106a6578063f2fde38b146106d0576101c2565b8063a457c2d7146105a3578063a9059cbb146105dc578063b7bfff6514610615576101c2565b8063715018a6116100c6578063715018a6146105385780638da5cb5b1461054d5780638f70ccf71461056257806395d89b411461058e576101c2565b806368092bd9146104b55780636bc87c3a146104f057806370a0823114610505576101c2565b8063357bf15c116101595780634549b039116101335780634549b039146103ec57806349bd5a5e1461041e578063595dec3c1461044f5780635d098b3814610482576101c2565b8063357bf15c14610372578063395093511461039e5780633b124fe7146103d7576101c2565b806322976e0d1161019557806322976e0d146102c557806323b872dd146102da5780632d8381191461031d578063313ce56714610347576101c2565b806306fdde03146101c7578063095ea7b31461025157806318160ddd1461029e576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101dc610703565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102165781810151838201526020016101fe565b50505050905090810190601f1680156102435780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561025d57600080fd5b5061028a6004803603604081101561027457600080fd5b506001600160a01b038135169060200135610799565b604080519115158252519081900360200190f35b3480156102aa57600080fd5b506102b36107b7565b60408051918252519081900360200190f35b3480156102d157600080fd5b506102b36107bd565b3480156102e657600080fd5b5061028a600480360360608110156102fd57600080fd5b506001600160a01b038135811691602081013590911690604001356107c3565b34801561032957600080fd5b506102b36004803603602081101561034057600080fd5b503561084a565b34801561035357600080fd5b5061035c6108ac565b6040805160ff9092168252519081900360200190f35b34801561037e57600080fd5b5061039c6004803603602081101561039557600080fd5b50356108b5565b005b3480156103aa57600080fd5b5061028a600480360360408110156103c157600080fd5b506001600160a01b038135169060200135610912565b3480156103e357600080fd5b506102b3610960565b3480156103f857600080fd5b506102b36004803603604081101561040f57600080fd5b50803590602001351515610966565b34801561042a57600080fd5b50610433610a1f565b604080516001600160a01b039092168252519081900360200190f35b34801561045b57600080fd5b5061028a6004803603602081101561047257600080fd5b50356001600160a01b0316610a2e565b34801561048e57600080fd5b5061039c600480360360208110156104a557600080fd5b50356001600160a01b0316610a43565b3480156104c157600080fd5b5061039c600480360360408110156104d857600080fd5b506001600160a01b0381351690602001351515610abd565b3480156104fc57600080fd5b506102b3610b40565b34801561051157600080fd5b506102b36004803603602081101561052857600080fd5b50356001600160a01b0316610b46565b34801561054457600080fd5b5061039c610ba8565b34801561055957600080fd5b50610433610c4a565b34801561056e57600080fd5b5061039c6004803603602081101561058557600080fd5b50351515610c59565b34801561059a57600080fd5b506101dc610ccb565b3480156105af57600080fd5b5061028a600480360360408110156105c657600080fd5b506001600160a01b038135169060200135610d29565b3480156105e857600080fd5b5061028a600480360360408110156105ff57600080fd5b506001600160a01b038135169060200135610d91565b34801561062157600080fd5b5061039c6004803603602081101561063857600080fd5b50351515610da5565b34801561064d57600080fd5b5061039c6004803603602081101561066457600080fd5b5035610e10565b34801561067757600080fd5b506102b36004803603604081101561068e57600080fd5b506001600160a01b0381358116916020013516610e6d565b3480156106b257600080fd5b5061039c600480360360208110156106c957600080fd5b5035610e98565b3480156106dc57600080fd5b5061039c600480360360208110156106f357600080fd5b50356001600160a01b0316610ef5565b60018054604080516020601f6002600019610100878916150201909516949094049384018190048102820181019092528281526060939092909183018282801561078e5780601f106107635761010080835404028352916020019161078e565b820191906000526020600020905b81548152906001019060200180831161077157829003601f168201915b505050505090505b90565b60006107ad6107a6610fed565b8484610ff1565b5060015b92915050565b60085490565b60115481565b60006107d08484846110dd565b610840846107dc610fed565b61083b85604051806060016040528060288152602001611e7a602891396001600160a01b038a1660009081526007602052604081209061081a610fed565b6001600160a01b031681526020810191909152604001600020549190611526565b610ff1565b5060019392505050565b600060095482111561088d5760405162461bcd60e51b815260040180806020018281038252602a815260200180611de7602a913960400191505060405180910390fd5b60006108976115bd565b90506108a38382611734565b9150505b919050565b60035460ff1690565b6108bd610fed565b6000546001600160a01b0390811691161461090d576040805162461bcd60e51b81526020600482018190526024820152600080516020611ea2833981519152604482015290519081900360640190fd5b600f55565b60006107ad61091f610fed565b8461083b8560076000610930610fed565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061177d565b600e5481565b60006008548311156109bf576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816109dd576109d66109cf6115bd565b84906117d7565b90506107b1565b6109d66109e86115bd565b610a19610a12600d54600a0a600201610a0c600e54896117d790919063ffffffff16565b90611734565b8690611830565b906117d7565b601a546001600160a01b031681565b60056020526000908152604090205460ff1681565b610a4b610fed565b6000546001600160a01b03908116911614610a9b576040805162461bcd60e51b81526020600482018190526024820152600080516020611ea2833981519152604482015290519081900360640190fd5b601280546001600160a01b0319166001600160a01b0392909216919091179055565b610ac5610fed565b6000546001600160a01b03908116911614610b15576040805162461bcd60e51b81526020600482018190526024820152600080516020611ea2833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600560205260409020805460ff1916911515919091179055565b600f5481565b6001600160a01b0381166000908152600b602052604081205460ff1615610b8657506001600160a01b0381166000908152600660205260409020546108a7565b6001600160a01b0382166000908152600460205260409020546107b19061084a565b610bb0610fed565b6000546001600160a01b03908116911614610c00576040805162461bcd60e51b81526020600482018190526024820152600080516020611ea2833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b610c61610fed565b6000546001600160a01b03908116911614610cb1576040805162461bcd60e51b81526020600482018190526024820152600080516020611ea2833981519152604482015290519081900360640190fd5b601680549115156101000261ff0019909216919091179055565b60028054604080516020601f600019610100600187161502019094168590049384018190048102820181019092528281526060939092909183018282801561078e5780601f106107635761010080835404028352916020019161078e565b60006107ad610d36610fed565b8461083b85604051806060016040528060258152602001611f546025913960076000610d60610fed565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611526565b60006107ad610d9e610fed565b84846110dd565b610dad610fed565b6000546001600160a01b03908116911614610dfd576040805162461bcd60e51b81526020600482018190526024820152600080516020611ea2833981519152604482015290519081900360640190fd5b6016805460ff1916911515919091179055565b610e18610fed565b6000546001600160a01b03908116911614610e68576040805162461bcd60e51b81526020600482018190526024820152600080516020611ea2833981519152604482015290519081900360640190fd5b600e55565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205490565b610ea0610fed565b6000546001600160a01b03908116911614610ef0576040805162461bcd60e51b81526020600482018190526024820152600080516020611ea2833981519152604482015290519081900360640190fd5b601755565b610efd610fed565b6000546001600160a01b03908116911614610f4d576040805162461bcd60e51b81526020600482018190526024820152600080516020611ea2833981519152604482015290519081900360640190fd5b6001600160a01b038116610f925760405162461bcd60e51b8152600401808060200182810382526026815260200180611e116026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b0383166110365760405162461bcd60e51b8152600401808060200182810382526024815260200180611f306024913960400191505060405180910390fd5b6001600160a01b03821661107b5760405162461bcd60e51b8152600401808060200182810382526022815260200180611e376022913960400191505060405180910390fd5b6001600160a01b03808416600081815260076020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166111225760405162461bcd60e51b8152600401808060200182810382526025815260200180611f0b6025913960400191505060405180910390fd5b600081116111615760405162461bcd60e51b8152600401808060200182810382526029815260200180611ec26029913960400191505060405180910390fd5b6017548111156111b1576040805162461bcd60e51b81526020600482015260166024820152755472616e73666572204c696d6974204578636565647360501b604482015290519081900360640190fd5b6001600160a01b03831660009081526005602052604090205460ff1615156001141561121d576040805162461bcd60e51b81526020600482015260166024820152751059191c995cdcc81a5cc8189b1858dad31a5cdd195960521b604482015290519081900360640190fd5b60165460ff610100909104161515600114611274576040805162461bcd60e51b815260206004820152601260248201527174726164696e672069732064697361626c6560701b604482015290519081900360640190fd5b600061127f30610b46565b6018546016549192508210159062010000900460ff1615801561129f5750805b80156112b95750601a546001600160a01b03868116911614155b80156112ce57506016546301000000900460ff165b156112dc576112dc82611872565b8260006112e76115bd565b60165490915060ff1680156113225750600a6000611303610fed565b6001600160a01b0316815260208101919091526040016000205460ff16155b801561134757506001600160a01b0386166000908152600a602052604090205460ff16155b801561135c575060165462010000900460ff16155b1561136f5761136c878683611924565b91505b61139b61137c86836117d7565b6001600160a01b03891660009081526004602052604090205490611830565b6001600160a01b0388166000908152600460205260409020556113e06113c183836117d7565b6001600160a01b0388166000908152600460205260409020549061177d565b6001600160a01b03808816600090815260046020908152604080832094909455918a168152600b909152205460ff1615611451576001600160a01b0387166000908152600660205260409020546114379086611830565b6001600160a01b0388166000908152600660205260409020555b6001600160a01b0386166000908152600b602052604090205460ff16156114e3576001600160a01b038616600090815260066020526040902054611495908361177d565b6001600160a01b0380881660008181526006602090815260409182902094909455805186815290519193928b1692600080516020611eeb83398151915292918290030190a350505050611521565b856001600160a01b0316876001600160a01b0316600080516020611eeb833981519152846040518082815260200191505060405180910390a3505050505b505050565b600081848411156115b55760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561157a578181015183820152602001611562565b50505050905090810190601f1680156115a75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60095460085460009190825b600c548110156116f4578260046000600c84815481106115e557fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061164a57508160066000600c848154811061162357fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156116685760085460095461165e91611734565b9350505050610796565b6116a860046000600c848154811061167c57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611830565b92506116ea60066000600c84815481106116be57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611830565b91506001016115c9565b5060085460095461170491611734565b8210156117235760085460095461171a91611734565b92505050610796565b61172d8282611734565b9250505090565b600061177683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611b1b565b9392505050565b600082820183811015611776576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000826117e6575060006107b1565b828202828482816117f357fe5b04146117765760405162461bcd60e51b8152600401808060200182810382526021815260200180611e596021913960400191505060405180910390fd5b600061177683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611526565b6016805462ff000019166201000017905560175481111561189257506017545b600061189f826002611734565b905060006118ad8383611830565b9050476118b983611b80565b60006118c54783611830565b90506118d18382611d2e565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506016805462ff000019169055505050565b600e5460009083901561198d576000611954600d54600201600a0a610a0c600e54886117d790919063ffffffff16565b90506119608282611830565b915061197861196f82866117d7565b60095490611830565b600955601354611988908261177d565b601355505b600f5415611a785760006119b8600d54600201600a0a610a0c600f54886117d790919063ffffffff16565b90506119c48282611830565b91506119e96119d382866117d7565b306000908152600460205260409020549061177d565b30600090815260046020908152604080832093909355600b9052205460ff1615611a385730600090815260066020526040902054611a27908261177d565b306000908152600660205260409020555b601554611a45908261177d565b60155560408051828152905130916001600160a01b03891691600080516020611eeb8339815191529181900360200190a3505b60105415611b13576000611aa3600d54600201600a0a610a0c601054886117d790919063ffffffff16565b9050611aaf8282611830565b600854909250611abf9082611830565b600855611acf61196f82866117d7565b600955601454611adf908261177d565b6014556040805182815290516000916001600160a01b03891691600080516020611eeb8339815191529181900360200190a3505b949350505050565b60008183611b6a5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561157a578181015183820152602001611562565b506000838581611b7657fe5b0495945050505050565b60408051600280825260608083018452926020830190803683370190505090503081600081518110611bae57fe5b6001600160a01b03928316602091820292909201810191909152601954604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015611c0257600080fd5b505afa158015611c16573d6000803e3d6000fd5b505050506040513d6020811015611c2c57600080fd5b5051815182906001908110611c3d57fe5b6001600160a01b039283166020918202929092010152601954611c639130911684610ff1565b60195460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b83811015611ce9578181015183820152602001611cd1565b505050509050019650505050505050600060405180830381600087803b158015611d1257600080fd5b505af1158015611d26573d6000803e3d6000fd5b505050505050565b601954611d469030906001600160a01b031684610ff1565b6019546040805163f305d71960e01b8152306004820181905260248201869052600060448301819052606483015260848201524260a482015290516001600160a01b039092169163f305d71991849160c480830192606092919082900301818588803b158015611db557600080fd5b505af1158015611dc9573d6000803e3d6000fd5b50505050506040513d6060811015611de057600080fd5b5050505056fe416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220acd7f8568fcb721876c914fa0c3055014194c46d090f97e00a30b157282b2f8a64736f6c634300060c0033

Deployed Bytecode

0x6080604052600436106101bb5760003560e01c806368092bd9116100ec578063a457c2d71161008a578063c4081a4c11610064578063c4081a4c14610641578063dd62ed3e1461066b578063ec28438a146106a6578063f2fde38b146106d0576101c2565b8063a457c2d7146105a3578063a9059cbb146105dc578063b7bfff6514610615576101c2565b8063715018a6116100c6578063715018a6146105385780638da5cb5b1461054d5780638f70ccf71461056257806395d89b411461058e576101c2565b806368092bd9146104b55780636bc87c3a146104f057806370a0823114610505576101c2565b8063357bf15c116101595780634549b039116101335780634549b039146103ec57806349bd5a5e1461041e578063595dec3c1461044f5780635d098b3814610482576101c2565b8063357bf15c14610372578063395093511461039e5780633b124fe7146103d7576101c2565b806322976e0d1161019557806322976e0d146102c557806323b872dd146102da5780632d8381191461031d578063313ce56714610347576101c2565b806306fdde03146101c7578063095ea7b31461025157806318160ddd1461029e576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101dc610703565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102165781810151838201526020016101fe565b50505050905090810190601f1680156102435780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561025d57600080fd5b5061028a6004803603604081101561027457600080fd5b506001600160a01b038135169060200135610799565b604080519115158252519081900360200190f35b3480156102aa57600080fd5b506102b36107b7565b60408051918252519081900360200190f35b3480156102d157600080fd5b506102b36107bd565b3480156102e657600080fd5b5061028a600480360360608110156102fd57600080fd5b506001600160a01b038135811691602081013590911690604001356107c3565b34801561032957600080fd5b506102b36004803603602081101561034057600080fd5b503561084a565b34801561035357600080fd5b5061035c6108ac565b6040805160ff9092168252519081900360200190f35b34801561037e57600080fd5b5061039c6004803603602081101561039557600080fd5b50356108b5565b005b3480156103aa57600080fd5b5061028a600480360360408110156103c157600080fd5b506001600160a01b038135169060200135610912565b3480156103e357600080fd5b506102b3610960565b3480156103f857600080fd5b506102b36004803603604081101561040f57600080fd5b50803590602001351515610966565b34801561042a57600080fd5b50610433610a1f565b604080516001600160a01b039092168252519081900360200190f35b34801561045b57600080fd5b5061028a6004803603602081101561047257600080fd5b50356001600160a01b0316610a2e565b34801561048e57600080fd5b5061039c600480360360208110156104a557600080fd5b50356001600160a01b0316610a43565b3480156104c157600080fd5b5061039c600480360360408110156104d857600080fd5b506001600160a01b0381351690602001351515610abd565b3480156104fc57600080fd5b506102b3610b40565b34801561051157600080fd5b506102b36004803603602081101561052857600080fd5b50356001600160a01b0316610b46565b34801561054457600080fd5b5061039c610ba8565b34801561055957600080fd5b50610433610c4a565b34801561056e57600080fd5b5061039c6004803603602081101561058557600080fd5b50351515610c59565b34801561059a57600080fd5b506101dc610ccb565b3480156105af57600080fd5b5061028a600480360360408110156105c657600080fd5b506001600160a01b038135169060200135610d29565b3480156105e857600080fd5b5061028a600480360360408110156105ff57600080fd5b506001600160a01b038135169060200135610d91565b34801561062157600080fd5b5061039c6004803603602081101561063857600080fd5b50351515610da5565b34801561064d57600080fd5b5061039c6004803603602081101561066457600080fd5b5035610e10565b34801561067757600080fd5b506102b36004803603604081101561068e57600080fd5b506001600160a01b0381358116916020013516610e6d565b3480156106b257600080fd5b5061039c600480360360208110156106c957600080fd5b5035610e98565b3480156106dc57600080fd5b5061039c600480360360208110156106f357600080fd5b50356001600160a01b0316610ef5565b60018054604080516020601f6002600019610100878916150201909516949094049384018190048102820181019092528281526060939092909183018282801561078e5780601f106107635761010080835404028352916020019161078e565b820191906000526020600020905b81548152906001019060200180831161077157829003601f168201915b505050505090505b90565b60006107ad6107a6610fed565b8484610ff1565b5060015b92915050565b60085490565b60115481565b60006107d08484846110dd565b610840846107dc610fed565b61083b85604051806060016040528060288152602001611e7a602891396001600160a01b038a1660009081526007602052604081209061081a610fed565b6001600160a01b031681526020810191909152604001600020549190611526565b610ff1565b5060019392505050565b600060095482111561088d5760405162461bcd60e51b815260040180806020018281038252602a815260200180611de7602a913960400191505060405180910390fd5b60006108976115bd565b90506108a38382611734565b9150505b919050565b60035460ff1690565b6108bd610fed565b6000546001600160a01b0390811691161461090d576040805162461bcd60e51b81526020600482018190526024820152600080516020611ea2833981519152604482015290519081900360640190fd5b600f55565b60006107ad61091f610fed565b8461083b8560076000610930610fed565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061177d565b600e5481565b60006008548311156109bf576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816109dd576109d66109cf6115bd565b84906117d7565b90506107b1565b6109d66109e86115bd565b610a19610a12600d54600a0a600201610a0c600e54896117d790919063ffffffff16565b90611734565b8690611830565b906117d7565b601a546001600160a01b031681565b60056020526000908152604090205460ff1681565b610a4b610fed565b6000546001600160a01b03908116911614610a9b576040805162461bcd60e51b81526020600482018190526024820152600080516020611ea2833981519152604482015290519081900360640190fd5b601280546001600160a01b0319166001600160a01b0392909216919091179055565b610ac5610fed565b6000546001600160a01b03908116911614610b15576040805162461bcd60e51b81526020600482018190526024820152600080516020611ea2833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600560205260409020805460ff1916911515919091179055565b600f5481565b6001600160a01b0381166000908152600b602052604081205460ff1615610b8657506001600160a01b0381166000908152600660205260409020546108a7565b6001600160a01b0382166000908152600460205260409020546107b19061084a565b610bb0610fed565b6000546001600160a01b03908116911614610c00576040805162461bcd60e51b81526020600482018190526024820152600080516020611ea2833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b610c61610fed565b6000546001600160a01b03908116911614610cb1576040805162461bcd60e51b81526020600482018190526024820152600080516020611ea2833981519152604482015290519081900360640190fd5b601680549115156101000261ff0019909216919091179055565b60028054604080516020601f600019610100600187161502019094168590049384018190048102820181019092528281526060939092909183018282801561078e5780601f106107635761010080835404028352916020019161078e565b60006107ad610d36610fed565b8461083b85604051806060016040528060258152602001611f546025913960076000610d60610fed565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611526565b60006107ad610d9e610fed565b84846110dd565b610dad610fed565b6000546001600160a01b03908116911614610dfd576040805162461bcd60e51b81526020600482018190526024820152600080516020611ea2833981519152604482015290519081900360640190fd5b6016805460ff1916911515919091179055565b610e18610fed565b6000546001600160a01b03908116911614610e68576040805162461bcd60e51b81526020600482018190526024820152600080516020611ea2833981519152604482015290519081900360640190fd5b600e55565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205490565b610ea0610fed565b6000546001600160a01b03908116911614610ef0576040805162461bcd60e51b81526020600482018190526024820152600080516020611ea2833981519152604482015290519081900360640190fd5b601755565b610efd610fed565b6000546001600160a01b03908116911614610f4d576040805162461bcd60e51b81526020600482018190526024820152600080516020611ea2833981519152604482015290519081900360640190fd5b6001600160a01b038116610f925760405162461bcd60e51b8152600401808060200182810382526026815260200180611e116026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b0383166110365760405162461bcd60e51b8152600401808060200182810382526024815260200180611f306024913960400191505060405180910390fd5b6001600160a01b03821661107b5760405162461bcd60e51b8152600401808060200182810382526022815260200180611e376022913960400191505060405180910390fd5b6001600160a01b03808416600081815260076020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166111225760405162461bcd60e51b8152600401808060200182810382526025815260200180611f0b6025913960400191505060405180910390fd5b600081116111615760405162461bcd60e51b8152600401808060200182810382526029815260200180611ec26029913960400191505060405180910390fd5b6017548111156111b1576040805162461bcd60e51b81526020600482015260166024820152755472616e73666572204c696d6974204578636565647360501b604482015290519081900360640190fd5b6001600160a01b03831660009081526005602052604090205460ff1615156001141561121d576040805162461bcd60e51b81526020600482015260166024820152751059191c995cdcc81a5cc8189b1858dad31a5cdd195960521b604482015290519081900360640190fd5b60165460ff610100909104161515600114611274576040805162461bcd60e51b815260206004820152601260248201527174726164696e672069732064697361626c6560701b604482015290519081900360640190fd5b600061127f30610b46565b6018546016549192508210159062010000900460ff1615801561129f5750805b80156112b95750601a546001600160a01b03868116911614155b80156112ce57506016546301000000900460ff165b156112dc576112dc82611872565b8260006112e76115bd565b60165490915060ff1680156113225750600a6000611303610fed565b6001600160a01b0316815260208101919091526040016000205460ff16155b801561134757506001600160a01b0386166000908152600a602052604090205460ff16155b801561135c575060165462010000900460ff16155b1561136f5761136c878683611924565b91505b61139b61137c86836117d7565b6001600160a01b03891660009081526004602052604090205490611830565b6001600160a01b0388166000908152600460205260409020556113e06113c183836117d7565b6001600160a01b0388166000908152600460205260409020549061177d565b6001600160a01b03808816600090815260046020908152604080832094909455918a168152600b909152205460ff1615611451576001600160a01b0387166000908152600660205260409020546114379086611830565b6001600160a01b0388166000908152600660205260409020555b6001600160a01b0386166000908152600b602052604090205460ff16156114e3576001600160a01b038616600090815260066020526040902054611495908361177d565b6001600160a01b0380881660008181526006602090815260409182902094909455805186815290519193928b1692600080516020611eeb83398151915292918290030190a350505050611521565b856001600160a01b0316876001600160a01b0316600080516020611eeb833981519152846040518082815260200191505060405180910390a3505050505b505050565b600081848411156115b55760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561157a578181015183820152602001611562565b50505050905090810190601f1680156115a75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60095460085460009190825b600c548110156116f4578260046000600c84815481106115e557fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061164a57508160066000600c848154811061162357fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156116685760085460095461165e91611734565b9350505050610796565b6116a860046000600c848154811061167c57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611830565b92506116ea60066000600c84815481106116be57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611830565b91506001016115c9565b5060085460095461170491611734565b8210156117235760085460095461171a91611734565b92505050610796565b61172d8282611734565b9250505090565b600061177683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611b1b565b9392505050565b600082820183811015611776576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000826117e6575060006107b1565b828202828482816117f357fe5b04146117765760405162461bcd60e51b8152600401808060200182810382526021815260200180611e596021913960400191505060405180910390fd5b600061177683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611526565b6016805462ff000019166201000017905560175481111561189257506017545b600061189f826002611734565b905060006118ad8383611830565b9050476118b983611b80565b60006118c54783611830565b90506118d18382611d2e565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506016805462ff000019169055505050565b600e5460009083901561198d576000611954600d54600201600a0a610a0c600e54886117d790919063ffffffff16565b90506119608282611830565b915061197861196f82866117d7565b60095490611830565b600955601354611988908261177d565b601355505b600f5415611a785760006119b8600d54600201600a0a610a0c600f54886117d790919063ffffffff16565b90506119c48282611830565b91506119e96119d382866117d7565b306000908152600460205260409020549061177d565b30600090815260046020908152604080832093909355600b9052205460ff1615611a385730600090815260066020526040902054611a27908261177d565b306000908152600660205260409020555b601554611a45908261177d565b60155560408051828152905130916001600160a01b03891691600080516020611eeb8339815191529181900360200190a3505b60105415611b13576000611aa3600d54600201600a0a610a0c601054886117d790919063ffffffff16565b9050611aaf8282611830565b600854909250611abf9082611830565b600855611acf61196f82866117d7565b600955601454611adf908261177d565b6014556040805182815290516000916001600160a01b03891691600080516020611eeb8339815191529181900360200190a3505b949350505050565b60008183611b6a5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561157a578181015183820152602001611562565b506000838581611b7657fe5b0495945050505050565b60408051600280825260608083018452926020830190803683370190505090503081600081518110611bae57fe5b6001600160a01b03928316602091820292909201810191909152601954604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015611c0257600080fd5b505afa158015611c16573d6000803e3d6000fd5b505050506040513d6020811015611c2c57600080fd5b5051815182906001908110611c3d57fe5b6001600160a01b039283166020918202929092010152601954611c639130911684610ff1565b60195460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b83811015611ce9578181015183820152602001611cd1565b505050509050019650505050505050600060405180830381600087803b158015611d1257600080fd5b505af1158015611d26573d6000803e3d6000fd5b505050505050565b601954611d469030906001600160a01b031684610ff1565b6019546040805163f305d71960e01b8152306004820181905260248201869052600060448301819052606483015260848201524260a482015290516001600160a01b039092169163f305d71991849160c480830192606092919082900301818588803b158015611db557600080fd5b505af1158015611dc9573d6000803e3d6000fd5b50505050506040513d6060811015611de057600080fd5b5050505056fe416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220acd7f8568fcb721876c914fa0c3055014194c46d090f97e00a30b157282b2f8a64736f6c634300060c0033

Deployed Bytecode Sourcemap

20187:13633:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22931:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23959:193;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23959:193:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;23208:99;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;21291:32;;;;;;;;;;;;;:::i;24160:368::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24160:368:0;;;;;;;;;;;;;;;;;:::i;25780:::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25780:368:0;;:::i;23117:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33468:95;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33468:95:0;;:::i;:::-;;24536:300;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24536:300:0;;;;;;;;:::i;21057:28::-;;;;;;;;;;;;;:::i;25252:520::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25252:520:0;;;;;;;;;:::i;21915:29::-;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;21915:29:0;;;;;;;;;;;;;;20487:43;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20487:43:0;-1:-1:-1;;;;;20487:43:0;;:::i;33122:124::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33122:124:0;-1:-1:-1;;;;;33122:124:0;;:::i;33356:106::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33356:106:0;;;;;;;;;;:::i;21137:34::-;;;;;;;;;;;;;:::i;23323:215::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23323:215:0;-1:-1:-1;;;;;23323:215:0;;:::i;17622:148::-;;;;;;;;;;;;;:::i;16980:79::-;;;;;;;;;;;;;:::i;33575:90::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33575:90:0;;;;:::i;23022:87::-;;;;;;;;;;;;;:::i;24844:400::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24844:400:0;;;;;;;;:::i;23546:213::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23546:213:0;;;;;;;;:::i;33259:91::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33259:91:0;;;;:::i;33027:83::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33027:83:0;;:::i;23767:184::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23767:184:0;;;;;;;;;;:::i;33678:98::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33678:98:0;;:::i;17925:281::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17925:281:0;-1:-1:-1;;;;;17925:281:0;;:::i;22931:83::-;23001:5;22994:12;;;;;;;;-1:-1:-1;;22994:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22968:13;;22994:12;;23001:5;;22994:12;;23001:5;22994:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22931:83;;:::o;23959:193::-;24061:4;24083:39;24092:12;:10;:12::i;:::-;24106:7;24115:6;24083:8;:39::i;:::-;-1:-1:-1;24140:4:0;23959:193;;;;;:::o;23208:99::-;23288:11;;23208:99;:::o;21291:32::-;;;;:::o;24160:368::-;24300:4;24317:34;24327:6;24334:9;24344:6;24317:9;:34::i;:::-;24379:119;24388:6;24395:12;:10;:12::i;:::-;24408:89;24447:6;24408:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24408:19:0;;;;;;:11;:19;;;;;;24428:12;:10;:12::i;:::-;-1:-1:-1;;;;;24408:33:0;;;;;;;;;;;;-1:-1:-1;24408:33:0;;;:89;:37;:89::i;:::-;24379:8;:119::i;:::-;-1:-1:-1;24516:4:0;24160:368;;;;;:::o;25780:::-;25883:7;25950:16;;25930;:36;;25908:128;;;;-1:-1:-1;;;25908:128:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26047:19;26069:20;:18;:20::i;:::-;26047:42;-1:-1:-1;26107:33:0;:16;26047:42;26107:20;:33::i;:::-;26100:40;;;25780:368;;;;:::o;23117:83::-;23183:9;;;;23117:83;:::o;33468:95::-;17202:12;:10;:12::i;:::-;17192:6;;-1:-1:-1;;;;;17192:6:0;;;:22;;;17184:67;;;;;-1:-1:-1;;;17184:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17184:67:0;;;;;;;;;;;;;;;33536:13:::1;:19:::0;33468:95::o;24536:300::-;24651:4;24673:133;24696:12;:10;:12::i;:::-;24723:7;24745:50;24784:10;24745:11;:25;24757:12;:10;:12::i;:::-;-1:-1:-1;;;;;24745:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;24745:25:0;;;:34;;;;;;;;;;;:38;:50::i;21057:28::-;;;;:::o;25252:520::-;25374:7;25422:11;;25407;:26;;25399:70;;;;;-1:-1:-1;;;25399:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;25485:17;25480:285;;25526:37;25542:20;:18;:20::i;:::-;25526:11;;:15;:37::i;:::-;25519:44;;;;25480:285;25620:133;25714:20;:18;:20::i;:::-;25620:67;25636:50;25670:11;;25665:2;:16;25684:1;25665:20;25636:24;25652:7;;25636:11;:15;;:24;;;;:::i;:::-;:28;;:50::i;:::-;25620:11;;:15;:67::i;:::-;:71;;:133::i;21915:29::-;;;-1:-1:-1;;;;;21915:29:0;;:::o;20487:43::-;;;;;;;;;;;;;;;:::o;33122:124::-;17202:12;:10;:12::i;:::-;17192:6;;-1:-1:-1;;;;;17192:6:0;;;:22;;;17184:67;;;;;-1:-1:-1;;;17184:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17184:67:0;;;;;;;;;;;;;;;33206:15:::1;:32:::0;;-1:-1:-1;;;;;;33206:32:0::1;-1:-1:-1::0;;;;;33206:32:0;;;::::1;::::0;;;::::1;::::0;;33122:124::o;33356:106::-;17202:12;:10;:12::i;:::-;17192:6;;-1:-1:-1;;;;;17192:6:0;;;:22;;;17184:67;;;;;-1:-1:-1;;;17184:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17184:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33433:15:0;;;::::1;;::::0;;;:10:::1;:15;::::0;;;;:21;;-1:-1:-1;;33433:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;33356:106::o;21137:34::-;;;;:::o;23323:215::-;-1:-1:-1;;;;;23413:20:0;;23389:7;23413:20;;;:11;:20;;;;;;;;23409:55;;;-1:-1:-1;;;;;;23442:22:0;;;;;;:13;:22;;;;;;23435:29;;23409:55;-1:-1:-1;;;;;23502:27:0;;;;;;:18;:27;;;;;;23482:48;;:19;:48::i;17622:148::-;17202:12;:10;:12::i;:::-;17192:6;;-1:-1:-1;;;;;17192:6:0;;;:22;;;17184:67;;;;;-1:-1:-1;;;17184:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17184:67:0;;;;;;;;;;;;;;;17729:1:::1;17713:6:::0;;17692:40:::1;::::0;-1:-1:-1;;;;;17713:6:0;;::::1;::::0;17692:40:::1;::::0;17729:1;;17692:40:::1;17760:1;17743:19:::0;;-1:-1:-1;;;;;;17743:19:0::1;::::0;;17622:148::o;16980:79::-;17018:7;17045:6;-1:-1:-1;;;;;17045:6:0;16980:79;:::o;33575:90::-;17202:12;:10;:12::i;:::-;17192:6;;-1:-1:-1;;;;;17192:6:0;;;:22;;;17184:67;;;;;-1:-1:-1;;;17184:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17184:67:0;;;;;;;;;;;;;;;33637:13:::1;:20:::0;;;::::1;;;;-1:-1:-1::0;;33637:20:0;;::::1;::::0;;;::::1;::::0;;33575:90::o;23022:87::-;23094:7;23087:14;;;;;;;-1:-1:-1;;23087:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23061:13;;23087:14;;23094:7;;23087:14;;23094:7;23087:14;;;;;;;;;;;;;;;;;;;;;;;;24844:400;24964:4;24986:228;25009:12;:10;:12::i;:::-;25036:7;25058:145;25115:15;25058:145;;;;;;;;;;;;;;;;;:11;:25;25070:12;:10;:12::i;:::-;-1:-1:-1;;;;;25058:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;25058:25:0;;;:34;;;;;;;;;;;:145;:38;:145::i;23546:213::-;23668:4;23689:40;23699:12;:10;:12::i;:::-;23712:9;23722:6;23689:9;:40::i;33259:91::-;17202:12;:10;:12::i;:::-;17192:6;;-1:-1:-1;;;;;17192:6:0;;;:22;;;17184:67;;;;;-1:-1:-1;;;17184:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17184:67:0;;;;;;;;;;;;;;;33323:11:::1;:19:::0;;-1:-1:-1;;33323:19:0::1;::::0;::::1;;::::0;;;::::1;::::0;;33259:91::o;33027:83::-;17202:12;:10;:12::i;:::-;17192:6;;-1:-1:-1;;;;;17192:6:0;;;:22;;;17184:67;;;;;-1:-1:-1;;;17184:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17184:67:0;;;;;;;;;;;;;;;33089:7:::1;:13:::0;33027:83::o;23767:184::-;-1:-1:-1;;;;;23916:18:0;;;23884:7;23916:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;23767:184::o;33678:98::-;17202:12;:10;:12::i;:::-;17192:6;;-1:-1:-1;;;;;17192:6:0;;;:22;;;17184:67;;;;;-1:-1:-1;;;17184:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17184:67:0;;;;;;;;;;;;;;;33748:11:::1;:20:::0;33678:98::o;17925:281::-;17202:12;:10;:12::i;:::-;17192:6;;-1:-1:-1;;;;;17192:6:0;;;:22;;;17184:67;;;;;-1:-1:-1;;;17184:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17184:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;18028:22:0;::::1;18006:110;;;;-1:-1:-1::0;;;18006:110:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18153:6;::::0;;18132:38:::1;::::0;-1:-1:-1;;;;;18132:38:0;;::::1;::::0;18153:6;::::1;::::0;18132:38:::1;::::0;::::1;18181:6;:17:::0;;-1:-1:-1;;;;;;18181:17:0::1;-1:-1:-1::0;;;;;18181:17:0;;;::::1;::::0;;;::::1;::::0;;17925:281::o;605:106::-;693:10;605:106;:::o;26155:371::-;-1:-1:-1;;;;;26282:19:0;;26274:68;;;;-1:-1:-1;;;26274:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26361:21:0;;26353:68;;;;-1:-1:-1;;;26353:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26434:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;26486:32;;;;;;;;;;;;;;;;;26155:371;;;:::o;26534:1811::-;-1:-1:-1;;;;;26665:20:0;;26657:70;;;;-1:-1:-1;;;26657:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26755:1;26746:6;:10;26738:64;;;;-1:-1:-1;;;26738:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26831:11;;26821:6;:21;;26813:56;;;;;-1:-1:-1;;;26813:56:0;;;;;;;;;;;;-1:-1:-1;;;26813:56:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;26888:18:0;;;;;;:10;:18;;;;;;;;:26;;:18;:26;;26880:60;;;;;-1:-1:-1;;;26880:60:0;;;;;;;;;;;;-1:-1:-1;;;26880:60:0;;;;;;;;;;;;;;;26959:13;;;;;;;;:21;;:13;:21;26951:51;;;;;-1:-1:-1;;;26951:51:0;;;;;;;;;;;;-1:-1:-1;;;26951:51:0;;;;;;;;;;;;;;;27023:28;27054:24;27072:4;27054:9;:24::i;:::-;27140:19;;27175:16;;27023:55;;-1:-1:-1;27116:43:0;;;;27175:16;;;;;27174:17;:40;;;;;27195:19;27174:40;:67;;;;-1:-1:-1;27228:13:0;;-1:-1:-1;;;;;27218:23:0;;;27228:13;;27218:23;;27174:67;:92;;;;-1:-1:-1;27245:21:0;;;;;;;27174:92;27170:161;;;27283:36;27298:20;27283:14;:36::i;:::-;27368:6;27343:22;27400:20;:18;:20::i;:::-;27436:11;;27385:35;;-1:-1:-1;27436:11:0;;:39;;;;;27452:9;:23;27462:12;:10;:12::i;:::-;-1:-1:-1;;;;;27452:23:0;;;;;;;;;;;;-1:-1:-1;27452:23:0;;;;27451:24;27436:39;:64;;;;-1:-1:-1;;;;;;27480:20:0;;;;;;:9;:20;;;;;;;;27479:21;27436:64;:85;;;;-1:-1:-1;27505:16:0;;;;;;;27504:17;27436:85;27433:163;;;27554:30;27565:6;27572;27579:4;27554:10;:30::i;:::-;27537:47;;27433:163;27672:48;27703:16;:6;27714:4;27703:10;:16::i;:::-;-1:-1:-1;;;;;27672:26:0;;;;;;:18;:26;;;;;;;:30;:48::i;:::-;-1:-1:-1;;;;;27643:26:0;;;;;;:18;:26;;;;;:77;27773:59;27807:24;:14;27826:4;27807:18;:24::i;:::-;-1:-1:-1;;;;;27773:29:0;;;;;;:18;:29;;;;;;;:33;:59::i;:::-;-1:-1:-1;;;;;27741:29:0;;;;;;;:18;:29;;;;;;;;:91;;;;27921:19;;;;;:11;:19;;;;;;;27917:109;;;-1:-1:-1;;;;;27981:21:0;;;;;;:13;:21;;;;;;:33;;28007:6;27981:25;:33::i;:::-;-1:-1:-1;;;;;27957:21:0;;;;;;:13;:21;;;;;:57;27917:109;-1:-1:-1;;;;;28040:22:0;;;;;;:11;:22;;;;;;;;28036:228;;;-1:-1:-1;;;;;28106:24:0;;;;;;:13;:24;;;;;;:44;;28135:14;28106:28;:44::i;:::-;-1:-1:-1;;;;;28079:24:0;;;;;;;:13;:24;;;;;;;;;:71;;;;28182:43;;;;;;;28079:24;;28182:43;;;;-1:-1:-1;;;;;;;;;;;28182:43:0;;;;;;;;28246:7;;;;;;28036:228;28298:9;-1:-1:-1;;;;;28281:43:0;28290:6;-1:-1:-1;;;;;28281:43:0;-1:-1:-1;;;;;;;;;;;28309:14:0;28281:43;;;;;;;;;;;;;;;;;;26534:1811;;;;;;;;:::o;5528:226::-;5648:7;5684:12;5676:6;;;;5668:29;;;;-1:-1:-1;;;5668:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5720:5:0;;;5528:226::o;29968:808::-;30067:16;;30116:11;;30020:7;;30067:16;30020:7;30138:458;30162:9;:16;30158:20;;30138:458;;;30257:16;30222:18;:32;30241:9;30251:1;30241:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30241:12:0;30222:32;;;;;;;;;;;;;:51;;:113;;;30324:11;30294:13;:27;30308:9;30318:1;30308:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30308:12:0;30294:27;;;;;;;;;;;;;:41;30222:113;30200:191;;;30379:11;;30358:16;;:33;;:20;:33::i;:::-;30351:40;;;;;;;30200:191;30425:86;30464:18;:32;30483:9;30493:1;30483:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30483:12:0;30464:32;;;;;;;;;;;;;30425:16;;:20;:86::i;:::-;30406:105;;30540:44;30556:13;:27;30570:9;30580:1;30570:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30570:12:0;30556:27;;;;;;;;;;;;;30540:11;;:15;:44::i;:::-;30526:58;-1:-1:-1;30180:3:0;;30138:458;;;-1:-1:-1;30650:11:0;;30629:16;;:33;;:20;:33::i;:::-;30610:16;:52;30606:111;;;30705:11;;30684:16;;:33;;:20;:33::i;:::-;30677:40;;;;;;30606:111;30735:33;:16;30756:11;30735:20;:33::i;:::-;30728:40;;;;29968:808;:::o;6960:132::-;7018:7;7045:39;7049:1;7052;7045:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;7038:46;6960:132;-1:-1:-1;;;6960:132:0:o;4625:181::-;4683:7;4715:5;;;4739:6;;;;4731:46;;;;;-1:-1:-1;;;4731:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;6013:471;6071:7;6316:6;6312:47;;-1:-1:-1;6346:1:0;6339:8;;6312:47;6383:5;;;6387:1;6383;:5;:1;6407:5;;;;;:10;6399:56;;;;-1:-1:-1;;;6399:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5089:136;5147:7;5174:43;5178:1;5181;5174:43;;;;;;;;;;;;;;;;;:3;:43::i;30789:1097::-;22140:16;:23;;-1:-1:-1;;22140:23:0;;;;;30901:11:::1;::::0;30878:34;::::1;30875:101;;;-1:-1:-1::0;30952:11:0::1;::::0;30875:101:::1;31037:12;31052:27;:20:::0;31077:1:::1;31052:24;:27::i;:::-;31037:42:::0;-1:-1:-1;31090:17:0::1;31110:30;:20:::0;31037:42;31110:24:::1;:30::i;:::-;31090:50:::0;-1:-1:-1;31443:21:0::1;31509:22;31526:4:::0;31509:16:::1;:22::i;:::-;31662:18;31683:41;:21;31709:14:::0;31683:25:::1;:41::i;:::-;31662:62;;31774:35;31787:9;31798:10;31774:12;:35::i;:::-;31835:43;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;;22186:16:0;:24;;-1:-1:-1;;22186:24:0;;;-1:-1:-1;;;30789:1097:0:o;28357:1603::-;28540:7;;28441;;28486:6;;28540:12;28537:290;;28568:14;28585:46;28614:11;;28628:1;28614:15;28609:2;:21;28585:19;28596:7;;28585:6;:10;;:19;;;;:::i;:46::-;28568:63;-1:-1:-1;28663:26:0;:14;28568:63;28663:18;:26::i;:::-;28646:43;-1:-1:-1;28723:38:0;28744:16;:6;28755:4;28744:10;:16::i;:::-;28723;;;:20;:38::i;:::-;28704:16;:57;28791:12;;:24;;28808:6;28791:16;:24::i;:::-;28776:12;:39;-1:-1:-1;28537:290:0;28872:13;;:18;28869:592;;28906:20;28929:52;28964:11;;28978:1;28964:15;28959:2;:21;28929:25;28940:13;;28929:6;:10;;:25;;;;:::i;:52::-;28906:75;-1:-1:-1;29013:32:0;:14;28906:75;29013:18;:32::i;:::-;28996:49;-1:-1:-1;29096:61:0;29134:22;:12;29151:4;29134:16;:22::i;:::-;29123:4;29096:33;;;;:18;:33;;;;;;;:37;:61::i;:::-;29087:4;29060:33;;;;:18;:33;;;;;;;;:97;;;;29175:11;:26;;;;;;29172:142;;;29274:4;29252:28;;;;:13;:28;;;;;;:46;;29285:12;29252:32;:46::i;:::-;29243:4;29221:28;;;;:13;:28;;;;;:77;29172:142;29349:18;;:36;;29372:12;29349:22;:36::i;:::-;29328:18;:57;29405:44;;;;;;;;29430:4;;-1:-1:-1;;;;;29405:44:0;;;-1:-1:-1;;;;;;;;;;;29405:44:0;;;;;;;;28869:592;;29507:8;;:13;29504:407;;29536:15;29554:47;29584:11;;29598:1;29584:15;29579:2;:21;29554:20;29565:8;;29554:6;:10;;:20;;;;:::i;:47::-;29536:65;-1:-1:-1;29633:27:0;:14;29536:65;29633:18;:27::i;:::-;29689:11;;29616:44;;-1:-1:-1;29689:24:0;;29705:7;29689:15;:24::i;:::-;29675:11;:38;29747:39;29768:17;:7;29780:4;29768:11;:17::i;29747:39::-;29728:16;:58;29817:13;;:26;;29835:7;29817:17;:26::i;:::-;29801:13;:42;29863:36;;;;;;;;29888:1;;-1:-1:-1;;;;;29863:36:0;;;-1:-1:-1;;;;;;;;;;;29863:36:0;;;;;;;;29504:407;;29938:14;28357:1603;-1:-1:-1;;;;28357:1603:0:o;7588:312::-;7708:7;7743:12;7736:5;7728:28;;;;-1:-1:-1;;;7728:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7767:9;7783:1;7779;:5;;;;;;;7588:312;-1:-1:-1;;;;;7588:312:0:o;31894:589::-;32044:16;;;32058:1;32044:16;;;32020:21;32044:16;;;;;32020:21;32044:16;;;;;;;;;;-1:-1:-1;32044:16:0;32020:40;;32089:4;32071;32076:1;32071:7;;;;;;;;-1:-1:-1;;;;;32071:23:0;;;:7;;;;;;;;;;:23;;;;32115:15;;:22;;;-1:-1:-1;;;32115:22:0;;;;:15;;;;;:20;;:22;;;;;32071:7;;32115:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32115:22:0;32105:7;;:4;;32110:1;;32105:7;;;;;;-1:-1:-1;;;;;32105:32:0;;;:7;;;;;;;;;:32;32182:15;;32150:62;;32167:4;;32182:15;32200:11;32150:8;:62::i;:::-;32251:15;;:224;;-1:-1:-1;;;32251:224:0;;;;;;;;:15;:224;;;;;;32429:4;32251:224;;;;;;32449:15;32251:224;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32251:15:0;;;;:66;;32332:11;;32402:4;;32429;32449:15;32251:224;;;;;;;;;;;;;;;;:15;:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31894:589;;:::o;32491:519::-;32671:15;;32639:62;;32656:4;;-1:-1:-1;;;;;32671:15:0;32689:11;32639:8;:62::i;:::-;32744:15;;:258;;;-1:-1:-1;;;32744:258:0;;32816:4;32744:258;;;;;;;;;;;;:15;:258;;;;;;;;;;;;;;32976:15;32744:258;;;;;;-1:-1:-1;;;;;32744:15:0;;;;:31;;32783:9;;32744:258;;;;;;;;;;;;;;32783:9;32744:15;:258;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;32491:519:0:o

Swarm Source

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