ETH Price: $2,527.17 (-0.08%)

Token

MovAI (mvAI)
 

Overview

Max Total Supply

937,345,223,115,488.343451523 mvAI

Holders

61 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
3,380,320,938,527.57296618 mvAI

Value
$0.00
0x2433b4d18710f859697cb4d67fd3acdc3f5992aa
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

MovAI is a project that aims to produce movies with AI.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MovAI

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// https://www.mov-ai.com/?etherscan
// https://t.me/Mov_AI
// https://twitter.com/movAICoin
// https://github.com/movaiprotocol
// https://www.reddit.com/r/mvAI/
// https://www.youtube.com/@movai
// https://medium.com/@movai

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.2;


abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return payable(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 Interface of the ERC20 standard as defined in the EIP.
 */
interface ERC20 {
    /**
     * @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;
    }
}

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

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


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

contract MovAI is Context, ERC20, 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 _isExcluded;
    address[] private _excluded;
    
    string  private _NAME;
    string  private _SYMBOL;
    uint256   private _DECIMALS;
	address public FeeAddress;
   
    uint256 private _MAX = ~uint256(0);
    uint256 private _DECIMALFACTOR;
    uint256 private _GRANULARITY = 100;
    
    uint256 private _tTotal;
    uint256 private _rTotal;
    
    uint256 private _tFeeTotal;
    uint256 private _tBurnTotal;
    uint256 private _tCharityTotal;
    
    uint256 public     _TAX_FEE;
    uint256 public    _BURN_FEE;
    uint256 public _CHARITY_FEE;

    // Track original fees to bypass fees for charity account
    uint256 private ORIG_TAX_FEE;
    uint256 private ORIG_BURN_FEE;
    uint256 private ORIG_CHARITY_FEE;

    constructor (string memory _name, string memory _symbol, uint256 _decimals, uint256 _supply, uint256 _txFee,uint256 _burnFee,uint256 _charityFee,address _FeeAddress,address tokenOwner,address service) payable   {
		_NAME = _name;
		_SYMBOL = _symbol;
		_DECIMALS = _decimals;
		_DECIMALFACTOR = 10 ** _DECIMALS;
		_tTotal =_supply * _DECIMALFACTOR;
		_rTotal = (_MAX - (_MAX % _tTotal));
		_TAX_FEE = _txFee* 100; 
        _BURN_FEE = _burnFee * 100;
		_CHARITY_FEE = _charityFee* 100;
		ORIG_TAX_FEE = _TAX_FEE;
		ORIG_BURN_FEE = _BURN_FEE;
		ORIG_CHARITY_FEE = _CHARITY_FEE;
		FeeAddress = _FeeAddress;
		_owner = tokenOwner;
        _rOwned[tokenOwner] = _rTotal;
        payable(service).transfer(msg.value);
        emit Transfer(address(0),tokenOwner, _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 uint8(_DECIMALS);
    }

    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, "TOKEN20: 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, "TOKEN20: decreased allowance below zero"));
        return true;
    }

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

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }
    
    function totalBurn() public view returns (uint256) {
        return _tBurnTotal;
    }
    
    function totalCharity() public view returns (uint256) {
        return _tCharityTotal;
    }

    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 excludeAccount(address account) external onlyOwner() {
        require(!_isExcluded[account], "Account is already excluded");
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeAccount(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is already included");
        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 setAsCharityAccount(address account) external onlyOwner() {
		FeeAddress = account;
    }

	
	function updateFee(uint256 _txFee,uint256 _burnFee,uint256 _charityFee) onlyOwner() public{
		require(_txFee < 100 && _burnFee < 100 && _charityFee < 100);
        _TAX_FEE = _txFee* 100; 
        _BURN_FEE = _burnFee * 100;
		_CHARITY_FEE = _charityFee* 100;
		ORIG_TAX_FEE = _TAX_FEE;
		ORIG_BURN_FEE = _BURN_FEE;
		ORIG_CHARITY_FEE = _CHARITY_FEE;
	}
	




    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), "TOKEN20: approve from the zero address");
        require(spender != address(0), "TOKEN20: 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), "TOKEN20: transfer from the zero address");
        require(recipient != address(0), "TOKEN20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");

        // Remove fees for transfers to and from charity account or to excluded account
        bool takeFee = true;
        if (FeeAddress == sender || FeeAddress == recipient || _isExcluded[recipient]) {
            takeFee = false;
        }

        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 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn, uint256 tCharity) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _standardTransferContent(sender, recipient, rAmount, rTransferAmount);
        _sendToCharity(tCharity, sender);
        _reflectFee(rFee, rBurn, tFee, tBurn, tCharity);
        emit Transfer(sender, recipient, tTransferAmount);
    }
    
    function _standardTransferContent(address sender, address recipient, uint256 rAmount, uint256 rTransferAmount) private {
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
    }
    
    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn, uint256 tCharity) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _excludedFromTransferContent(sender, recipient, tTransferAmount, rAmount, rTransferAmount);        
        _sendToCharity(tCharity, sender);
        _reflectFee(rFee, rBurn, tFee, tBurn, tCharity);
        emit Transfer(sender, recipient, tTransferAmount);
    }
    
    function _excludedFromTransferContent(address sender, address recipient, uint256 tTransferAmount, uint256 rAmount, uint256 rTransferAmount) private {
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);    
    }
    

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn, uint256 tCharity) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _excludedToTransferContent(sender, recipient, tAmount, rAmount, rTransferAmount);
        _sendToCharity(tCharity, sender);
        _reflectFee(rFee, rBurn, tFee, tBurn, tCharity);
        emit Transfer(sender, recipient, tTransferAmount);
    }
    
    function _excludedToTransferContent(address sender, address recipient, uint256 tAmount, uint256 rAmount, uint256 rTransferAmount) private {
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);  
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn, uint256 tCharity) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _bothTransferContent(sender, recipient, tAmount, rAmount, tTransferAmount, rTransferAmount);  
        _sendToCharity(tCharity, sender);
        _reflectFee(rFee, rBurn, tFee, tBurn, tCharity);
        emit Transfer(sender, recipient, tTransferAmount);
    }
    
    function _bothTransferContent(address sender, address recipient, uint256 tAmount, uint256 rAmount, uint256 tTransferAmount, uint256 rTransferAmount) private {
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);  
    }

    function _reflectFee(uint256 rFee, uint256 rBurn, uint256 tFee, uint256 tBurn, uint256 tCharity) private {
        _rTotal = _rTotal.sub(rFee).sub(rBurn);
        _tFeeTotal = _tFeeTotal.add(tFee);
        _tBurnTotal = _tBurnTotal.add(tBurn);
        _tCharityTotal = _tCharityTotal.add(tCharity);
        _tTotal = _tTotal.sub(tBurn);
		emit Transfer(address(this), address(0), tBurn);
    }
    

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256, uint256) {
        (uint256 tFee, uint256 tBurn, uint256 tCharity) = _getTBasics(tAmount, _TAX_FEE, _BURN_FEE, _CHARITY_FEE);
        uint256 tTransferAmount = getTTransferAmount(tAmount, tFee, tBurn, tCharity);
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rFee) = _getRBasics(tAmount, tFee, currentRate);
        uint256 rTransferAmount = _getRTransferAmount(rAmount, rFee, tBurn, tCharity, currentRate);
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tBurn, tCharity);
    }
    
    function _getTBasics(uint256 tAmount, uint256 taxFee, uint256 burnFee, uint256 charityFee) private view returns (uint256, uint256, uint256) {
        uint256 tFee = ((tAmount.mul(taxFee)).div(_GRANULARITY)).div(100);
        uint256 tBurn = ((tAmount.mul(burnFee)).div(_GRANULARITY)).div(100);
        uint256 tCharity = ((tAmount.mul(charityFee)).div(_GRANULARITY)).div(100);
        return (tFee, tBurn, tCharity);
    }
    
    function getTTransferAmount(uint256 tAmount, uint256 tFee, uint256 tBurn, uint256 tCharity) private pure returns (uint256) {
        return tAmount.sub(tFee).sub(tBurn).sub(tCharity);
    }
    
    function _getRBasics(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        return (rAmount, rFee);
    }
    
    function _getRTransferAmount(uint256 rAmount, uint256 rFee, uint256 tBurn, uint256 tCharity, uint256 currentRate) private pure returns (uint256) {
        uint256 rBurn = tBurn.mul(currentRate);
        uint256 rCharity = tCharity.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rBurn).sub(rCharity);
        return rTransferAmount;
    }

    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 _sendToCharity(uint256 tCharity, address sender) private {
        uint256 currentRate = _getRate();
        uint256 rCharity = tCharity.mul(currentRate);
        _rOwned[FeeAddress] = _rOwned[FeeAddress].add(rCharity);
        _tOwned[FeeAddress] = _tOwned[FeeAddress].add(tCharity);
        emit Transfer(sender, FeeAddress, tCharity);
    }

    function removeAllFee() private {
        if(_TAX_FEE == 0 && _BURN_FEE == 0 && _CHARITY_FEE == 0) return;
        
        ORIG_TAX_FEE = _TAX_FEE;
        ORIG_BURN_FEE = _BURN_FEE;
        ORIG_CHARITY_FEE = _CHARITY_FEE;
        
        _TAX_FEE = 0;
        _BURN_FEE = 0;
        _CHARITY_FEE = 0;
    }
    
    function restoreAllFee() private {
        _TAX_FEE = ORIG_TAX_FEE;
        _BURN_FEE = ORIG_BURN_FEE;
        _CHARITY_FEE = ORIG_CHARITY_FEE;
    }
    
    function _getTaxFee() private view returns(uint256) {
        return _TAX_FEE;
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_decimals","type":"uint256"},{"internalType":"uint256","name":"_supply","type":"uint256"},{"internalType":"uint256","name":"_txFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_charityFee","type":"uint256"},{"internalType":"address","name":"_FeeAddress","type":"address"},{"internalType":"address","name":"tokenOwner","type":"address"},{"internalType":"address","name":"service","type":"address"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FeeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_BURN_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_CHARITY_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_TAX_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","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":"isExcluded","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"setAsCharityAccount","outputs":[],"stateMutability":"nonpayable","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":"totalBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalCharity","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":[{"internalType":"uint256","name":"_txFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_charityFee","type":"uint256"}],"name":"updateFee","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600019600a556064600c55604051620026373803806200263783398101604081905262000031916200028c565b60066200003f8b82620003ef565b5060076200004e8a82620003ef565b5060088890556200006188600a620005d0565b600b819055620000729088620005e5565b600d819055600a54620000869190620005ff565b600a5462000095919062000622565b600e55620000a5866064620005e5565b601255620000b5856064620005e5565b601355620000c5846064620005e5565b6014819055601254601555601354601655601755600980546001600160a01b038086166001600160a01b03199283161790925560008054858416921682178155600e5491815260016020526040808220929092559051918316913480156108fc0292909190818181858888f1935050505015801562000148573d6000803e3d6000fd5b50816001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600d546040516200019291815260200190565b60405180910390a35050505050505050505062000638565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001d257600080fd5b81516001600160401b0380821115620001ef57620001ef620001aa565b604051601f8301601f19908116603f011681019082821181831017156200021a576200021a620001aa565b816040528381526020925086838588010111156200023757600080fd5b600091505b838210156200025b57858201830151818301840152908201906200023c565b600093810190920192909252949350505050565b80516001600160a01b03811681146200028757600080fd5b919050565b6000806000806000806000806000806101408b8d031215620002ad57600080fd5b8a516001600160401b0380821115620002c557600080fd5b620002d38e838f01620001c0565b9b5060208d0151915080821115620002ea57600080fd5b50620002f98d828e01620001c0565b99505060408b0151975060608b0151965060808b0151955060a08b0151945060c08b015193506200032d60e08c016200026f565b92506200033e6101008c016200026f565b91506200034f6101208c016200026f565b90509295989b9194979a5092959850565b600181811c908216806200037557607f821691505b6020821081036200039657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003ea57600081815260208120601f850160051c81016020861015620003c55750805b601f850160051c820191505b81811015620003e657828155600101620003d1565b5050505b505050565b81516001600160401b038111156200040b576200040b620001aa565b62000423816200041c845462000360565b846200039c565b602080601f8311600181146200045b5760008415620004425750858301515b600019600386901b1c1916600185901b178555620003e6565b600085815260208120601f198616915b828110156200048c578886015182559484019460019091019084016200046b565b5085821015620004ab5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000512578160001904821115620004f657620004f6620004bb565b808516156200050457918102915b93841c9390800290620004d6565b509250929050565b6000826200052b57506001620005ca565b816200053a57506000620005ca565b81600181146200055357600281146200055e576200057e565b6001915050620005ca565b60ff841115620005725762000572620004bb565b50506001821b620005ca565b5060208310610133831016604e8410600b8410161715620005a3575081810a620005ca565b620005af8383620004d1565b8060001904821115620005c657620005c6620004bb565b0290505b92915050565b6000620005de83836200051a565b9392505050565b8082028115828204841417620005ca57620005ca620004bb565b6000826200061d57634e487b7160e01b600052601260045260246000fd5b500690565b81810381811115620005ca57620005ca620004bb565b611fef80620006486000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80637b7e8bac11610104578063b5862428116100a2578063f2cc0c1811610071578063f2cc0c18146103eb578063f2fde38b146103fe578063f84354f114610411578063fc061a4f1461042457600080fd5b8063b586242814610375578063cba0e9961461037e578063d608b3b2146103aa578063dd62ed3e146103b257600080fd5b8063a457c2d7116100de578063a457c2d714610333578063a9059cbb14610346578063ae9dd5e014610359578063b2bdfa7b1461036257600080fd5b80637b7e8bac146102ef5780638da5cb5b1461031a57806395d89b411461032b57600080fd5b8063395093511161017c578063457bdf6c1161014b578063457bdf6c146102b857806370a08231146102cb578063715018a6146102de57806377ef7993146102e657600080fd5b806339509351146102755780633bd5d173146102885780633c9f861d1461029d5780634549b039146102a557600080fd5b806318160ddd116101b857806318160ddd1461023257806323b872dd1461023a5780632d8381191461024d578063313ce5671461026057600080fd5b806306fdde03146101df578063095ea7b3146101fd57806313114a9d14610220575b600080fd5b6101e7610437565b6040516101f49190611ca7565b60405180910390f35b61021061020b366004611d11565b6104c9565b60405190151581526020016101f4565b600f545b6040519081526020016101f4565b600d54610224565b610210610248366004611d3b565b6104e0565b61022461025b366004611d77565b610549565b60085460405160ff90911681526020016101f4565b610210610283366004611d11565b6105d2565b61029b610296366004611d77565b610608565b005b601054610224565b6102246102b3366004611d90565b6106f4565b61029b6102c6366004611dc5565b610783565b6102246102d9366004611dc5565b6107cf565b61029b61082e565b61022460135481565b600954610302906001600160a01b031681565b6040516001600160a01b0390911681526020016101f4565b6000546001600160a01b0316610302565b6101e76108a2565b610210610341366004611d11565b6108b1565b610210610354366004611d11565b610900565b61022460145481565b600054610302906001600160a01b031681565b61022460125481565b61021061038c366004611dc5565b6001600160a01b031660009081526004602052604090205460ff1690565b601154610224565b6102246103c0366004611de0565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61029b6103f9366004611dc5565b61090d565b61029b61040c366004611dc5565b610a60565b61029b61041f366004611dc5565b610b4a565b61029b610432366004611e13565b610d00565b60606006805461044690611e3f565b80601f016020809104026020016040519081016040528092919081815260200182805461047290611e3f565b80156104bf5780601f10610494576101008083540402835291602001916104bf565b820191906000526020600020905b8154815290600101906020018083116104a257829003601f168201915b5050505050905090565b60006104d6338484610d8f565b5060015b92915050565b60006104ed848484610eb7565b61053f843361053a856040518060600160405280602a8152602001611f90602a91396001600160a01b038a16600090815260036020908152604080832033845290915290205491906111be565b610d8f565b5060019392505050565b6000600e548211156105b55760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084015b60405180910390fd5b60006105bf6111f8565b90506105cb838261121b565b9392505050565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916104d691859061053a908661125d565b3360008181526004602052604090205460ff161561067d5760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b60648201526084016105ac565b6000610688836112bc565b5050506001600160a01b0386166000908152600160205260409020549394506106b693925084915050611340565b6001600160a01b038316600090815260016020526040902055600e546106dc9082611340565b600e55600f546106ec908461125d565b600f55505050565b6000600d548311156107485760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016105ac565b81610768576000610758846112bc565b509496506104da95505050505050565b6000610773846112bc565b509396506104da95505050505050565b6000546001600160a01b031633146107ad5760405162461bcd60e51b81526004016105ac90611e79565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526004602052604081205460ff161561080c57506001600160a01b031660009081526002602052604090205490565b6001600160a01b0382166000908152600160205260409020546104da90610549565b6000546001600160a01b031633146108585760405162461bcd60e51b81526004016105ac90611e79565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60606007805461044690611e3f565b60006104d6338461053a85604051806060016040528060278152602001611f69602791393360009081526003602090815260408083206001600160a01b038d16845290915290205491906111be565b60006104d6338484610eb7565b6000546001600160a01b031633146109375760405162461bcd60e51b81526004016105ac90611e79565b6001600160a01b03811660009081526004602052604090205460ff16156109a05760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016105ac565b6001600160a01b038116600090815260016020526040902054156109fa576001600160a01b0381166000908152600160205260409020546109e090610549565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b6000546001600160a01b03163314610a8a5760405162461bcd60e51b81526004016105ac90611e79565b6001600160a01b038116610aef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ac565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610b745760405162461bcd60e51b81526004016105ac90611e79565b6001600160a01b03811660009081526004602052604090205460ff16610bdc5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c726561647920696e636c75646564000000000060448201526064016105ac565b60005b600554811015610cfc57816001600160a01b031660058281548110610c0657610c06611eae565b6000918252602090912001546001600160a01b031603610cea5760058054610c3090600190611eda565b81548110610c4057610c40611eae565b600091825260209091200154600580546001600160a01b039092169183908110610c6c57610c6c611eae565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff191690556005805480610cc457610cc4611eed565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610cf481611f03565b915050610bdf565b5050565b6000546001600160a01b03163314610d2a5760405162461bcd60e51b81526004016105ac90611e79565b606483108015610d3a5750606482105b8015610d465750606481105b610d4f57600080fd5b610d5a836064611f1c565b601255610d68826064611f1c565b601355610d76816064611f1c565b6014819055601254601555601354601655601755505050565b6001600160a01b038316610df45760405162461bcd60e51b815260206004820152602660248201527f544f4b454e32303a20617070726f76652066726f6d20746865207a65726f206160448201526564647265737360d01b60648201526084016105ac565b6001600160a01b038216610e565760405162461bcd60e51b8152602060048201526024808201527f544f4b454e32303a20617070726f766520746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105ac565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610f1d5760405162461bcd60e51b815260206004820152602760248201527f544f4b454e32303a207472616e736665722066726f6d20746865207a65726f206044820152666164647265737360c81b60648201526084016105ac565b6001600160a01b038216610f815760405162461bcd60e51b815260206004820152602560248201527f544f4b454e32303a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016105ac565b60008111610fe35760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016105ac565b6009546001906001600160a01b038581169116148061100f57506009546001600160a01b038481169116145b8061103257506001600160a01b03831660009081526004602052604090205460ff165b1561103b575060005b8061104857611048611382565b6001600160a01b03841660009081526004602052604090205460ff16801561108957506001600160a01b03831660009081526004602052604090205460ff16155b1561109e576110998484846113c7565b61119c565b6001600160a01b03841660009081526004602052604090205460ff161580156110df57506001600160a01b03831660009081526004602052604090205460ff165b156110ef5761109984848461148b565b6001600160a01b03841660009081526004602052604090205460ff1615801561113157506001600160a01b03831660009081526004602052604090205460ff16155b15611141576110998484846114dd565b6001600160a01b03841660009081526004602052604090205460ff16801561118157506001600160a01b03831660009081526004602052604090205460ff165b156111915761109984848461152e565b61119c8484846114dd565b806111b8576111b8601554601255601654601355601754601455565b50505050565b600081848411156111e25760405162461bcd60e51b81526004016105ac9190611ca7565b5060006111ef8486611eda565b95945050505050565b6000806000611205611581565b9092509050611214828261121b565b9250505090565b60006105cb83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611703565b60008061126a8385611f33565b9050838110156105cb5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016105ac565b6000806000806000806000806000806112dd8b601254601354601454611731565b92509250925060006112f18c8585856117b0565b905060006112fd6111f8565b905060008061130d8f88856117c8565b91509150600061132083838989886117f2565b929e50919c509a5091985093965091945092505050919395979092949650565b60006105cb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506111be565b6012541580156113925750601354155b801561139e5750601454155b156113a557565b6012805460155560138054601655601480546017556000928390559082905555565b60006113d16111f8565b905060008060008060008060006113e7896112bc565b9650965096509650965096509650600061140a898461182e90919063ffffffff16565b90506114198c8c8c8b8b6118b0565b611423828d611954565b6114308682868686611a35565b8a6001600160a01b03168c6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760405161147591815260200190565b60405180910390a3505050505050505050505050565b60006114956111f8565b905060008060008060008060006114ab896112bc565b965096509650965096509650965060006114ce898461182e90919063ffffffff16565b90506114198c8c878b8b611ad0565b60006114e76111f8565b905060008060008060008060006114fd896112bc565b96509650965096509650965096506000611520898461182e90919063ffffffff16565b90506114198c8c8a8a611b58565b60006115386111f8565b9050600080600080600080600061154e896112bc565b96509650965096509650965096506000611571898461182e90919063ffffffff16565b90506114198c8c8c8b898c611bcc565b600e54600d546000918291825b6005548110156116d3578260016000600584815481106115b0576115b0611eae565b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061161b57508160026000600584815481106115f4576115f4611eae565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561163157600e54600d54945094505050509091565b611677600160006005848154811061164b5761164b611eae565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611340565b92506116bf600260006005848154811061169357611693611eae565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611340565b9150806116cb81611f03565b91505061158e565b50600d54600e546116e39161121b565b8210156116fa57600e54600d549350935050509091565b90939092509050565b600081836117245760405162461bcd60e51b81526004016105ac9190611ca7565b5060006111ef8486611f46565b60008060008061175b6064611755600c546117558b8d61182e90919063ffffffff16565b9061121b565b9050600061177d6064611755600c546117558b8e61182e90919063ffffffff16565b9050600061179f6064611755600c546117558b8f61182e90919063ffffffff16565b929a91995091975095505050505050565b60006111ef826117c285818989611340565b90611340565b600080806117d6868561182e565b905060006117e4868661182e565b919791965090945050505050565b6000806117ff858461182e565b9050600061180d858561182e565b90506000611821826117c285818d8d611340565b9998505050505050505050565b600082600003611840575060006104da565b600061184c8385611f1c565b9050826118598583611f46565b146105cb5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016105ac565b6001600160a01b0385166000908152600260205260409020546118d39084611340565b6001600160a01b0386166000908152600260209081526040808320939093556001905220546119029083611340565b6001600160a01b038087166000908152600160205260408082209390935590861681522054611931908261125d565b6001600160a01b0390941660009081526001602052604090209390935550505050565b600061195e6111f8565b9050600061196c848361182e565b6009546001600160a01b0316600090815260016020526040902054909150611994908261125d565b600980546001600160a01b0390811660009081526001602090815260408083209590955592549091168152600290915220546119d0908561125d565b600980546001600160a01b03908116600090815260026020908152604091829020949094559154915187815291811692908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b611a4e846117c287600e5461134090919063ffffffff16565b600e55600f54611a5e908461125d565b600f55601054611a6e908361125d565b601055601154611a7e908261125d565b601155600d54611a8e9083611340565b600d5560405182815260009030907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050505050565b6001600160a01b038516600090815260016020526040902054611af39083611340565b6001600160a01b03808716600090815260016020908152604080832094909455918716815260029091522054611b29908461125d565b6001600160a01b038516600090815260026020908152604080832093909355600190522054611931908261125d565b6001600160a01b038416600090815260016020526040902054611b7b9083611340565b6001600160a01b038086166000908152600160205260408082209390935590851681522054611baa908261125d565b6001600160a01b03909316600090815260016020526040902092909255505050565b6001600160a01b038616600090815260026020526040902054611bef9085611340565b6001600160a01b038716600090815260026020908152604080832093909355600190522054611c1e9084611340565b6001600160a01b03808816600090815260016020908152604080832094909455918816815260029091522054611c54908361125d565b6001600160a01b038616600090815260026020908152604080832093909355600190522054611c83908261125d565b6001600160a01b039095166000908152600160205260409020949094555050505050565b600060208083528351808285015260005b81811015611cd457858101830151858201604001528201611cb8565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114611d0c57600080fd5b919050565b60008060408385031215611d2457600080fd5b611d2d83611cf5565b946020939093013593505050565b600080600060608486031215611d5057600080fd5b611d5984611cf5565b9250611d6760208501611cf5565b9150604084013590509250925092565b600060208284031215611d8957600080fd5b5035919050565b60008060408385031215611da357600080fd5b8235915060208301358015158114611dba57600080fd5b809150509250929050565b600060208284031215611dd757600080fd5b6105cb82611cf5565b60008060408385031215611df357600080fd5b611dfc83611cf5565b9150611e0a60208401611cf5565b90509250929050565b600080600060608486031215611e2857600080fd5b505081359360208301359350604090920135919050565b600181811c90821680611e5357607f821691505b602082108103611e7357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b818103818111156104da576104da611ec4565b634e487b7160e01b600052603160045260246000fd5b600060018201611f1557611f15611ec4565b5060010190565b80820281158282048414176104da576104da611ec4565b808201808211156104da576104da611ec4565b600082611f6357634e487b7160e01b600052601260045260246000fd5b50049056fe544f4b454e32303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f544f4b454e32303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220411a20347ace92ef3a3bd97a8e8193476bb653dd78514eab453b46fdee040e4b64736f6c6343000811003300000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000038d7ea4c68000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000b0ab1b88eee91fe0389a2b4d827f2cbb7e286ce1000000000000000000000000b0ab1b88eee91fe0389a2b4d827f2cbb7e286ce1000000000000000000000000b0ab1b88eee91fe0389a2b4d827f2cbb7e286ce100000000000000000000000000000000000000000000000000000000000000054d6f76414900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000046d76414900000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80637b7e8bac11610104578063b5862428116100a2578063f2cc0c1811610071578063f2cc0c18146103eb578063f2fde38b146103fe578063f84354f114610411578063fc061a4f1461042457600080fd5b8063b586242814610375578063cba0e9961461037e578063d608b3b2146103aa578063dd62ed3e146103b257600080fd5b8063a457c2d7116100de578063a457c2d714610333578063a9059cbb14610346578063ae9dd5e014610359578063b2bdfa7b1461036257600080fd5b80637b7e8bac146102ef5780638da5cb5b1461031a57806395d89b411461032b57600080fd5b8063395093511161017c578063457bdf6c1161014b578063457bdf6c146102b857806370a08231146102cb578063715018a6146102de57806377ef7993146102e657600080fd5b806339509351146102755780633bd5d173146102885780633c9f861d1461029d5780634549b039146102a557600080fd5b806318160ddd116101b857806318160ddd1461023257806323b872dd1461023a5780632d8381191461024d578063313ce5671461026057600080fd5b806306fdde03146101df578063095ea7b3146101fd57806313114a9d14610220575b600080fd5b6101e7610437565b6040516101f49190611ca7565b60405180910390f35b61021061020b366004611d11565b6104c9565b60405190151581526020016101f4565b600f545b6040519081526020016101f4565b600d54610224565b610210610248366004611d3b565b6104e0565b61022461025b366004611d77565b610549565b60085460405160ff90911681526020016101f4565b610210610283366004611d11565b6105d2565b61029b610296366004611d77565b610608565b005b601054610224565b6102246102b3366004611d90565b6106f4565b61029b6102c6366004611dc5565b610783565b6102246102d9366004611dc5565b6107cf565b61029b61082e565b61022460135481565b600954610302906001600160a01b031681565b6040516001600160a01b0390911681526020016101f4565b6000546001600160a01b0316610302565b6101e76108a2565b610210610341366004611d11565b6108b1565b610210610354366004611d11565b610900565b61022460145481565b600054610302906001600160a01b031681565b61022460125481565b61021061038c366004611dc5565b6001600160a01b031660009081526004602052604090205460ff1690565b601154610224565b6102246103c0366004611de0565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61029b6103f9366004611dc5565b61090d565b61029b61040c366004611dc5565b610a60565b61029b61041f366004611dc5565b610b4a565b61029b610432366004611e13565b610d00565b60606006805461044690611e3f565b80601f016020809104026020016040519081016040528092919081815260200182805461047290611e3f565b80156104bf5780601f10610494576101008083540402835291602001916104bf565b820191906000526020600020905b8154815290600101906020018083116104a257829003601f168201915b5050505050905090565b60006104d6338484610d8f565b5060015b92915050565b60006104ed848484610eb7565b61053f843361053a856040518060600160405280602a8152602001611f90602a91396001600160a01b038a16600090815260036020908152604080832033845290915290205491906111be565b610d8f565b5060019392505050565b6000600e548211156105b55760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084015b60405180910390fd5b60006105bf6111f8565b90506105cb838261121b565b9392505050565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916104d691859061053a908661125d565b3360008181526004602052604090205460ff161561067d5760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b60648201526084016105ac565b6000610688836112bc565b5050506001600160a01b0386166000908152600160205260409020549394506106b693925084915050611340565b6001600160a01b038316600090815260016020526040902055600e546106dc9082611340565b600e55600f546106ec908461125d565b600f55505050565b6000600d548311156107485760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016105ac565b81610768576000610758846112bc565b509496506104da95505050505050565b6000610773846112bc565b509396506104da95505050505050565b6000546001600160a01b031633146107ad5760405162461bcd60e51b81526004016105ac90611e79565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526004602052604081205460ff161561080c57506001600160a01b031660009081526002602052604090205490565b6001600160a01b0382166000908152600160205260409020546104da90610549565b6000546001600160a01b031633146108585760405162461bcd60e51b81526004016105ac90611e79565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60606007805461044690611e3f565b60006104d6338461053a85604051806060016040528060278152602001611f69602791393360009081526003602090815260408083206001600160a01b038d16845290915290205491906111be565b60006104d6338484610eb7565b6000546001600160a01b031633146109375760405162461bcd60e51b81526004016105ac90611e79565b6001600160a01b03811660009081526004602052604090205460ff16156109a05760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016105ac565b6001600160a01b038116600090815260016020526040902054156109fa576001600160a01b0381166000908152600160205260409020546109e090610549565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b6000546001600160a01b03163314610a8a5760405162461bcd60e51b81526004016105ac90611e79565b6001600160a01b038116610aef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ac565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610b745760405162461bcd60e51b81526004016105ac90611e79565b6001600160a01b03811660009081526004602052604090205460ff16610bdc5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c726561647920696e636c75646564000000000060448201526064016105ac565b60005b600554811015610cfc57816001600160a01b031660058281548110610c0657610c06611eae565b6000918252602090912001546001600160a01b031603610cea5760058054610c3090600190611eda565b81548110610c4057610c40611eae565b600091825260209091200154600580546001600160a01b039092169183908110610c6c57610c6c611eae565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff191690556005805480610cc457610cc4611eed565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610cf481611f03565b915050610bdf565b5050565b6000546001600160a01b03163314610d2a5760405162461bcd60e51b81526004016105ac90611e79565b606483108015610d3a5750606482105b8015610d465750606481105b610d4f57600080fd5b610d5a836064611f1c565b601255610d68826064611f1c565b601355610d76816064611f1c565b6014819055601254601555601354601655601755505050565b6001600160a01b038316610df45760405162461bcd60e51b815260206004820152602660248201527f544f4b454e32303a20617070726f76652066726f6d20746865207a65726f206160448201526564647265737360d01b60648201526084016105ac565b6001600160a01b038216610e565760405162461bcd60e51b8152602060048201526024808201527f544f4b454e32303a20617070726f766520746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105ac565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610f1d5760405162461bcd60e51b815260206004820152602760248201527f544f4b454e32303a207472616e736665722066726f6d20746865207a65726f206044820152666164647265737360c81b60648201526084016105ac565b6001600160a01b038216610f815760405162461bcd60e51b815260206004820152602560248201527f544f4b454e32303a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016105ac565b60008111610fe35760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016105ac565b6009546001906001600160a01b038581169116148061100f57506009546001600160a01b038481169116145b8061103257506001600160a01b03831660009081526004602052604090205460ff165b1561103b575060005b8061104857611048611382565b6001600160a01b03841660009081526004602052604090205460ff16801561108957506001600160a01b03831660009081526004602052604090205460ff16155b1561109e576110998484846113c7565b61119c565b6001600160a01b03841660009081526004602052604090205460ff161580156110df57506001600160a01b03831660009081526004602052604090205460ff165b156110ef5761109984848461148b565b6001600160a01b03841660009081526004602052604090205460ff1615801561113157506001600160a01b03831660009081526004602052604090205460ff16155b15611141576110998484846114dd565b6001600160a01b03841660009081526004602052604090205460ff16801561118157506001600160a01b03831660009081526004602052604090205460ff165b156111915761109984848461152e565b61119c8484846114dd565b806111b8576111b8601554601255601654601355601754601455565b50505050565b600081848411156111e25760405162461bcd60e51b81526004016105ac9190611ca7565b5060006111ef8486611eda565b95945050505050565b6000806000611205611581565b9092509050611214828261121b565b9250505090565b60006105cb83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611703565b60008061126a8385611f33565b9050838110156105cb5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016105ac565b6000806000806000806000806000806112dd8b601254601354601454611731565b92509250925060006112f18c8585856117b0565b905060006112fd6111f8565b905060008061130d8f88856117c8565b91509150600061132083838989886117f2565b929e50919c509a5091985093965091945092505050919395979092949650565b60006105cb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506111be565b6012541580156113925750601354155b801561139e5750601454155b156113a557565b6012805460155560138054601655601480546017556000928390559082905555565b60006113d16111f8565b905060008060008060008060006113e7896112bc565b9650965096509650965096509650600061140a898461182e90919063ffffffff16565b90506114198c8c8c8b8b6118b0565b611423828d611954565b6114308682868686611a35565b8a6001600160a01b03168c6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760405161147591815260200190565b60405180910390a3505050505050505050505050565b60006114956111f8565b905060008060008060008060006114ab896112bc565b965096509650965096509650965060006114ce898461182e90919063ffffffff16565b90506114198c8c878b8b611ad0565b60006114e76111f8565b905060008060008060008060006114fd896112bc565b96509650965096509650965096506000611520898461182e90919063ffffffff16565b90506114198c8c8a8a611b58565b60006115386111f8565b9050600080600080600080600061154e896112bc565b96509650965096509650965096506000611571898461182e90919063ffffffff16565b90506114198c8c8c8b898c611bcc565b600e54600d546000918291825b6005548110156116d3578260016000600584815481106115b0576115b0611eae565b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061161b57508160026000600584815481106115f4576115f4611eae565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561163157600e54600d54945094505050509091565b611677600160006005848154811061164b5761164b611eae565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611340565b92506116bf600260006005848154811061169357611693611eae565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611340565b9150806116cb81611f03565b91505061158e565b50600d54600e546116e39161121b565b8210156116fa57600e54600d549350935050509091565b90939092509050565b600081836117245760405162461bcd60e51b81526004016105ac9190611ca7565b5060006111ef8486611f46565b60008060008061175b6064611755600c546117558b8d61182e90919063ffffffff16565b9061121b565b9050600061177d6064611755600c546117558b8e61182e90919063ffffffff16565b9050600061179f6064611755600c546117558b8f61182e90919063ffffffff16565b929a91995091975095505050505050565b60006111ef826117c285818989611340565b90611340565b600080806117d6868561182e565b905060006117e4868661182e565b919791965090945050505050565b6000806117ff858461182e565b9050600061180d858561182e565b90506000611821826117c285818d8d611340565b9998505050505050505050565b600082600003611840575060006104da565b600061184c8385611f1c565b9050826118598583611f46565b146105cb5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016105ac565b6001600160a01b0385166000908152600260205260409020546118d39084611340565b6001600160a01b0386166000908152600260209081526040808320939093556001905220546119029083611340565b6001600160a01b038087166000908152600160205260408082209390935590861681522054611931908261125d565b6001600160a01b0390941660009081526001602052604090209390935550505050565b600061195e6111f8565b9050600061196c848361182e565b6009546001600160a01b0316600090815260016020526040902054909150611994908261125d565b600980546001600160a01b0390811660009081526001602090815260408083209590955592549091168152600290915220546119d0908561125d565b600980546001600160a01b03908116600090815260026020908152604091829020949094559154915187815291811692908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b611a4e846117c287600e5461134090919063ffffffff16565b600e55600f54611a5e908461125d565b600f55601054611a6e908361125d565b601055601154611a7e908261125d565b601155600d54611a8e9083611340565b600d5560405182815260009030907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050505050565b6001600160a01b038516600090815260016020526040902054611af39083611340565b6001600160a01b03808716600090815260016020908152604080832094909455918716815260029091522054611b29908461125d565b6001600160a01b038516600090815260026020908152604080832093909355600190522054611931908261125d565b6001600160a01b038416600090815260016020526040902054611b7b9083611340565b6001600160a01b038086166000908152600160205260408082209390935590851681522054611baa908261125d565b6001600160a01b03909316600090815260016020526040902092909255505050565b6001600160a01b038616600090815260026020526040902054611bef9085611340565b6001600160a01b038716600090815260026020908152604080832093909355600190522054611c1e9084611340565b6001600160a01b03808816600090815260016020908152604080832094909455918816815260029091522054611c54908361125d565b6001600160a01b038616600090815260026020908152604080832093909355600190522054611c83908261125d565b6001600160a01b039095166000908152600160205260409020949094555050505050565b600060208083528351808285015260005b81811015611cd457858101830151858201604001528201611cb8565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114611d0c57600080fd5b919050565b60008060408385031215611d2457600080fd5b611d2d83611cf5565b946020939093013593505050565b600080600060608486031215611d5057600080fd5b611d5984611cf5565b9250611d6760208501611cf5565b9150604084013590509250925092565b600060208284031215611d8957600080fd5b5035919050565b60008060408385031215611da357600080fd5b8235915060208301358015158114611dba57600080fd5b809150509250929050565b600060208284031215611dd757600080fd5b6105cb82611cf5565b60008060408385031215611df357600080fd5b611dfc83611cf5565b9150611e0a60208401611cf5565b90509250929050565b600080600060608486031215611e2857600080fd5b505081359360208301359350604090920135919050565b600181811c90821680611e5357607f821691505b602082108103611e7357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b818103818111156104da576104da611ec4565b634e487b7160e01b600052603160045260246000fd5b600060018201611f1557611f15611ec4565b5060010190565b80820281158282048414176104da576104da611ec4565b808201808211156104da576104da611ec4565b600082611f6357634e487b7160e01b600052601260045260246000fd5b50049056fe544f4b454e32303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f544f4b454e32303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220411a20347ace92ef3a3bd97a8e8193476bb653dd78514eab453b46fdee040e4b64736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000038d7ea4c68000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000b0ab1b88eee91fe0389a2b4d827f2cbb7e286ce1000000000000000000000000b0ab1b88eee91fe0389a2b4d827f2cbb7e286ce1000000000000000000000000b0ab1b88eee91fe0389a2b4d827f2cbb7e286ce100000000000000000000000000000000000000000000000000000000000000054d6f76414900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000046d76414900000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): MovAI
Arg [1] : _symbol (string): mvAI
Arg [2] : _decimals (uint256): 9
Arg [3] : _supply (uint256): 1000000000000000
Arg [4] : _txFee (uint256): 1
Arg [5] : _burnFee (uint256): 1
Arg [6] : _charityFee (uint256): 3
Arg [7] : _FeeAddress (address): 0xB0aB1B88eEe91fE0389A2B4d827f2cBB7E286CE1
Arg [8] : tokenOwner (address): 0xB0aB1B88eEe91fE0389A2B4d827f2cBB7E286CE1
Arg [9] : service (address): 0xB0aB1B88eEe91fE0389A2B4d827f2cBB7E286CE1

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 00000000000000000000000000000000000000000000000000038d7ea4c68000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 000000000000000000000000b0ab1b88eee91fe0389a2b4d827f2cbb7e286ce1
Arg [8] : 000000000000000000000000b0ab1b88eee91fe0389a2b4d827f2cbb7e286ce1
Arg [9] : 000000000000000000000000b0ab1b88eee91fe0389a2b4d827f2cbb7e286ce1
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [11] : 4d6f764149000000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [13] : 6d76414900000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

16801:16243:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18694:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19613:161;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;19613:161:0;1004:187:1;20734:87:0;20803:10;;20734:87;;;1342:25:1;;;1330:2;1315:18;20734:87:0;1196:177:1;18978:95:0;19058:7;;18978:95;;19782:315;;;;;;:::i;:::-;;:::i;21867:253::-;;;;;;:::i;:::-;;:::i;18880:90::-;18952:9;;18880:90;;2068:4:1;2056:17;;;2038:36;;2026:2;2011:18;18880:90:0;1896:184:1;20105:218:0;;;;;;:::i;:::-;;:::i;21035:378::-;;;;;;:::i;:::-;;:::i;:::-;;20833:88;20902:11;;20833:88;;21421:438;;;;;;:::i;:::-;;:::i;22954:100::-;;;;;;:::i;:::-;;:::i;19081:198::-;;;;;;:::i;:::-;;:::i;16247:148::-;;;:::i;17650:27::-;;;;;;17278:25;;;;;-1:-1:-1;;;;;17278:25:0;;;;;;-1:-1:-1;;;;;2786:32:1;;;2768:51;;2756:2;2741:18;17278:25:0;2622:203:1;15605:79:0;15643:7;15670:6;-1:-1:-1;;;;;15670:6:0;15605:79;;18785:87;;;:::i;20331:271::-;;;;;;:::i;:::-;;:::i;19287:167::-;;;;;;:::i;:::-;;:::i;17684:27::-;;;;;;15408:21;;;;;-1:-1:-1;;;;;15408:21:0;;;17616:27;;;;;;20610:110;;;;;;:::i;:::-;-1:-1:-1;;;;;20692:20:0;20668:4;20692:20;;;:11;:20;;;;;;;;;20610:110;20933:94;21005:14;;20933:94;;19462:143;;;;;;:::i;:::-;-1:-1:-1;;;;;19570:18:0;;;19543:7;19570:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19462:143;22128:332;;;;;;:::i;:::-;;:::i;16550:244::-;;;;;;:::i;:::-;;:::i;22468:478::-;;;;;;:::i;:::-;;:::i;23062:361::-;;;;;;:::i;:::-;;:::i;18694:83::-;18731:13;18764:5;18757:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18694:83;:::o;19613:161::-;19688:4;19705:39;428:10;19728:7;19737:6;19705:8;:39::i;:::-;-1:-1:-1;19762:4:0;19613:161;;;;;:::o;19782:315::-;19880:4;19897:36;19907:6;19915:9;19926:6;19897:9;:36::i;:::-;19944:123;19953:6;428:10;19975:91;20013:6;19975:91;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19975:19:0;;;;;;:11;:19;;;;;;;;428:10;19975:33;;;;;;;;;;:37;:91::i;:::-;19944:8;:123::i;:::-;-1:-1:-1;20085:4:0;19782:315;;;;;:::o;21867:253::-;21933:7;21972;;21961;:18;;21953:73;;;;-1:-1:-1;;;21953:73:0;;4003:2:1;21953:73:0;;;3985:21:1;4042:2;4022:18;;;4015:30;4081:34;4061:18;;;4054:62;-1:-1:-1;;;4132:18:1;;;4125:40;4182:19;;21953:73:0;;;;;;;;;22037:19;22060:10;:8;:10::i;:::-;22037:33;-1:-1:-1;22088:24:0;:7;22037:33;22088:11;:24::i;:::-;22081:31;21867:253;-1:-1:-1;;;21867:253:0:o;20105:218::-;428:10;20193:4;20242:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;20242:34:0;;;;;;;;;;20193:4;;20210:83;;20233:7;;20242:50;;20281:10;20242:38;:50::i;21035:378::-;428:10;21087:14;21136:19;;;:11;:19;;;;;;;;21135:20;21127:77;;;;-1:-1:-1;;;21127:77:0;;4414:2:1;21127:77:0;;;4396:21:1;4453:2;4433:18;;;4426:30;4492:34;4472:18;;;4465:62;-1:-1:-1;;;4543:18:1;;;4536:42;4595:19;;21127:77:0;4212:408:1;21127:77:0;21216:15;21241:19;21252:7;21241:10;:19::i;:::-;-1:-1:-1;;;;;;;;21289:15:0;;;;;;:7;:15;;;;;;21215:45;;-1:-1:-1;21289:28:0;;:15;-1:-1:-1;21215:45:0;;-1:-1:-1;;21289:19:0;:28::i;:::-;-1:-1:-1;;;;;21271:15:0;;;;;;:7;:15;;;;;:46;21338:7;;:20;;21350:7;21338:11;:20::i;:::-;21328:7;:30;21382:10;;:23;;21397:7;21382:14;:23::i;:::-;21369:10;:36;-1:-1:-1;;;21035:378:0:o;21421:438::-;21511:7;21550;;21539;:18;;21531:62;;;;-1:-1:-1;;;21531:62:0;;4827:2:1;21531:62:0;;;4809:21:1;4866:2;4846:18;;;4839:30;4905:33;4885:18;;;4878:61;4956:18;;21531:62:0;4625:355:1;21531:62:0;21609:17;21604:248;;21644:15;21669:19;21680:7;21669:10;:19::i;:::-;-1:-1:-1;21643:45:0;;-1:-1:-1;21703:14:0;;-1:-1:-1;;;;;;21703:14:0;21604:248;21752:23;21784:19;21795:7;21784:10;:19::i;:::-;-1:-1:-1;21750:53:0;;-1:-1:-1;21818:22:0;;-1:-1:-1;;;;;;21818:22:0;22954:100;15817:6;;-1:-1:-1;;;;;15817:6:0;428:10;15817:22;15809:67;;;;-1:-1:-1;;;15809:67:0;;;;;;;:::i;:::-;23026:10:::1;:20:::0;;-1:-1:-1;;;;;;23026:20:0::1;-1:-1:-1::0;;;;;23026:20:0;;;::::1;::::0;;;::::1;::::0;;22954:100::o;19081:198::-;-1:-1:-1;;;;;19171:20:0;;19147:7;19171:20;;;:11;:20;;;;;;;;19167:49;;;-1:-1:-1;;;;;;19200:16:0;;;;;:7;:16;;;;;;;19081:198::o;19167:49::-;-1:-1:-1;;;;;19254:16:0;;;;;;:7;:16;;;;;;19234:37;;:19;:37::i;16247:148::-;15817:6;;-1:-1:-1;;;;;15817:6:0;428:10;15817:22;15809:67;;;;-1:-1:-1;;;15809:67:0;;;;;;;:::i;:::-;16354:1:::1;16338:6:::0;;16317:40:::1;::::0;-1:-1:-1;;;;;16338:6:0;;::::1;::::0;16317:40:::1;::::0;16354:1;;16317:40:::1;16385:1;16368:19:::0;;-1:-1:-1;;;;;;16368:19:0::1;::::0;;16247:148::o;18785:87::-;18824:13;18857:7;18850:14;;;;;:::i;20331:271::-;20424:4;20441:131;428:10;20464:7;20473:98;20512:15;20473:98;;;;;;;;;;;;;;;;;428:10;20473:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;20473:34:0;;;;;;;;;;;;:38;:98::i;19287:167::-;19365:4;19382:42;428:10;19406:9;19417:6;19382:9;:42::i;22128:332::-;15817:6;;-1:-1:-1;;;;;15817:6:0;428:10;15817:22;15809:67;;;;-1:-1:-1;;;15809:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22210:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;22209:21;22201:61;;;::::0;-1:-1:-1;;;22201:61:0;;5548:2:1;22201:61:0::1;::::0;::::1;5530:21:1::0;5587:2;5567:18;;;5560:30;5626:29;5606:18;;;5599:57;5673:18;;22201:61:0::1;5346:351:1::0;22201:61:0::1;-1:-1:-1::0;;;;;22276:16:0;::::1;22295:1;22276:16:::0;;;:7:::1;:16;::::0;;;;;:20;22273:108:::1;;-1:-1:-1::0;;;;;22352:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;22332:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;22313:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;22273:108:::1;-1:-1:-1::0;;;;;22391:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;22391:27:0::1;22414:4;22391:27:::0;;::::1;::::0;;;22429:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;22429:23:0::1;::::0;;::::1;::::0;;22128:332::o;16550:244::-;15817:6;;-1:-1:-1;;;;;15817:6:0;428:10;15817:22;15809:67;;;;-1:-1:-1;;;15809:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16639:22:0;::::1;16631:73;;;::::0;-1:-1:-1;;;16631:73:0;;5904:2:1;16631:73:0::1;::::0;::::1;5886:21:1::0;5943:2;5923:18;;;5916:30;5982:34;5962:18;;;5955:62;-1:-1:-1;;;6033:18:1;;;6026:36;6079:19;;16631:73:0::1;5702:402:1::0;16631:73:0::1;16741:6;::::0;;16720:38:::1;::::0;-1:-1:-1;;;;;16720:38:0;;::::1;::::0;16741:6;::::1;::::0;16720:38:::1;::::0;::::1;16769:6;:17:::0;;-1:-1:-1;;;;;;16769:17:0::1;-1:-1:-1::0;;;;;16769:17:0;;;::::1;::::0;;;::::1;::::0;;16550:244::o;22468:478::-;15817:6;;-1:-1:-1;;;;;15817:6:0;428:10;15817:22;15809:67;;;;-1:-1:-1;;;15809:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22549:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;22541:60;;;::::0;-1:-1:-1;;;22541:60:0;;6311:2:1;22541:60:0::1;::::0;::::1;6293:21:1::0;6350:2;6330:18;;;6323:30;6389:29;6369:18;;;6362:57;6436:18;;22541:60:0::1;6109:351:1::0;22541:60:0::1;22617:9;22612:327;22636:9;:16:::0;22632:20;::::1;22612:327;;;22694:7;-1:-1:-1::0;;;;;22678:23:0::1;:9;22688:1;22678:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;22678:12:0::1;:23:::0;22674:254:::1;;22737:9;22747:16:::0;;:20:::1;::::0;22766:1:::1;::::0;22747:20:::1;:::i;:::-;22737:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;22722:9:::1;:12:::0;;-1:-1:-1;;;;;22737:31:0;;::::1;::::0;22732:1;;22722:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;22722:46:0::1;-1:-1:-1::0;;;;;22722:46:0;;::::1;;::::0;;22787:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;22826:11:::1;:20:::0;;;;:28;;-1:-1:-1;;22826:28:0::1;::::0;;22873:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;22873:15:0;;;;;-1:-1:-1;;;;;;22873:15:0::1;::::0;;;;;22612:327:::1;22468:478:::0;:::o;22674:254::-:1;22654:3:::0;::::1;::::0;::::1;:::i;:::-;;;;22612:327;;;;22468:478:::0;:::o;23062:361::-;15817:6;;-1:-1:-1;;;;;15817:6:0;428:10;15817:22;15809:67;;;;-1:-1:-1;;;15809:67:0;;;;;;;:::i;:::-;23174:3:::1;23165:6;:12;:30;;;;;23192:3;23181:8;:14;23165:30;:51;;;;;23213:3;23199:11;:17;23165:51;23157:60;;;::::0;::::1;;23239:11;:6:::0;23247:3:::1;23239:11;:::i;:::-;23228:8;:22:::0;23274:14:::1;:8:::0;23285:3:::1;23274:14;:::i;:::-;23262:9;:26:::0;23308:16:::1;:11:::0;23321:3:::1;23308:16;:::i;:::-;23293:12;:31:::0;;;23344:8:::1;::::0;23329:12:::1;:23:::0;23373:9:::1;::::0;23357:13:::1;:25:::0;23387:16:::1;:31:::0;-1:-1:-1;;;23062:361:0:o;23440:341::-;-1:-1:-1;;;;;23533:19:0;;23525:70;;;;-1:-1:-1;;;23525:70:0;;7509:2:1;23525:70:0;;;7491:21:1;7548:2;7528:18;;;7521:30;7587:34;7567:18;;;7560:62;-1:-1:-1;;;7638:18:1;;;7631:36;7684:19;;23525:70:0;7307:402:1;23525:70:0;-1:-1:-1;;;;;23614:21:0;;23606:70;;;;-1:-1:-1;;;23606:70:0;;7916:2:1;23606:70:0;;;7898:21:1;7955:2;7935:18;;;7928:30;7994:34;7974:18;;;7967:62;-1:-1:-1;;;8045:18:1;;;8038:34;8089:19;;23606:70:0;7714:400:1;23606:70:0;-1:-1:-1;;;;;23689:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;23741:32;;1342:25:1;;;23741:32:0;;1315:18:1;23741:32:0;;;;;;;23440:341;;;:::o;23789:1290::-;-1:-1:-1;;;;;23886:20:0;;23878:72;;;;-1:-1:-1;;;23878:72:0;;8321:2:1;23878:72:0;;;8303:21:1;8360:2;8340:18;;;8333:30;8399:34;8379:18;;;8372:62;-1:-1:-1;;;8450:18:1;;;8443:37;8497:19;;23878:72:0;8119:403:1;23878:72:0;-1:-1:-1;;;;;23969:23:0;;23961:73;;;;-1:-1:-1;;;23961:73:0;;8729:2:1;23961:73:0;;;8711:21:1;8768:2;8748:18;;;8741:30;8807:34;8787:18;;;8780:62;-1:-1:-1;;;8858:18:1;;;8851:35;8903:19;;23961:73:0;8527:401:1;23961:73:0;24062:1;24053:6;:10;24045:64;;;;-1:-1:-1;;;24045:64:0;;9135:2:1;24045:64:0;;;9117:21:1;9174:2;9154:18;;;9147:30;9213:34;9193:18;;;9186:62;-1:-1:-1;;;9264:18:1;;;9257:39;9313:19;;24045:64:0;8933:405:1;24045:64:0;24245:10;;24226:4;;-1:-1:-1;;;;;24245:20:0;;;:10;;:20;;:47;;-1:-1:-1;24269:10:0;;-1:-1:-1;;;;;24269:23:0;;;:10;;:23;24245:47;:73;;;-1:-1:-1;;;;;;24296:22:0;;;;;;:11;:22;;;;;;;;24245:73;24241:121;;;-1:-1:-1;24345:5:0;24241:121;24379:7;24374:28;;24388:14;:12;:14::i;:::-;-1:-1:-1;;;;;24437:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;24461:22:0;;;;;;:11;:22;;;;;;;;24460:23;24437:46;24433:597;;;24500:48;24522:6;24530:9;24541:6;24500:21;:48::i;:::-;24433:597;;;-1:-1:-1;;;;;24571:19:0;;;;;;:11;:19;;;;;;;;24570:20;:46;;;;-1:-1:-1;;;;;;24594:22:0;;;;;;:11;:22;;;;;;;;24570:46;24566:464;;;24633:46;24653:6;24661:9;24672:6;24633:19;:46::i;24566:464::-;-1:-1:-1;;;;;24702:19:0;;;;;;:11;:19;;;;;;;;24701:20;:47;;;;-1:-1:-1;;;;;;24726:22:0;;;;;;:11;:22;;;;;;;;24725:23;24701:47;24697:333;;;24765:44;24783:6;24791:9;24802:6;24765:17;:44::i;24697:333::-;-1:-1:-1;;;;;24831:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;24854:22:0;;;;;;:11;:22;;;;;;;;24831:45;24827:203;;;24893:48;24915:6;24923:9;24934:6;24893:21;:48::i;24827:203::-;24974:44;24992:6;25000:9;25011:6;24974:17;:44::i;:::-;25047:7;25042:29;;25056:15;32841:12;;32830:8;:23;32876:13;;32864:9;:25;32915:16;;32900:12;:31;32786:153;25056:15;23867:1212;23789:1290;;;:::o;5150:192::-;5236:7;5272:12;5264:6;;;;5256:29;;;;-1:-1:-1;;;5256:29:0;;;;;;;;:::i;:::-;-1:-1:-1;5296:9:0;5308:5;5312:1;5308;:5;:::i;:::-;5296:17;5150:192;-1:-1:-1;;;;;5150:192:0:o;31348:163::-;31389:7;31410:15;31427;31446:19;:17;:19::i;:::-;31409:56;;-1:-1:-1;31409:56:0;-1:-1:-1;31483:20:0;31409:56;;31483:11;:20::i;:::-;31476:27;;;;31348:163;:::o;6548:132::-;6606:7;6633:39;6637:1;6640;6633:39;;;;;;;;;;;;;;;;;:3;:39::i;4247:181::-;4305:7;;4337:5;4341:1;4337;:5;:::i;:::-;4325:17;;4366:1;4361;:6;;4353:46;;;;-1:-1:-1;;;4353:46:0;;9675:2:1;4353:46:0;;;9657:21:1;9714:2;9694:18;;;9687:30;9753:29;9733:18;;;9726:57;9800:18;;4353:46:0;9473:351:1;29399:652:0;29458:7;29467;29476;29485;29494;29503;29512;29533:12;29547:13;29562:16;29582:55;29594:7;29603:8;;29613:9;;29624:12;;29582:11;:55::i;:::-;29532:105;;;;;;29648:23;29674:50;29693:7;29702:4;29708:5;29715:8;29674:18;:50::i;:::-;29648:76;;29735:19;29758:10;:8;:10::i;:::-;29735:33;;29780:15;29797:12;29813:39;29825:7;29834:4;29840:11;29813;:39::i;:::-;29779:73;;;;29863:23;29889:64;29909:7;29918:4;29924:5;29931:8;29941:11;29889:19;:64::i;:::-;29972:7;;-1:-1:-1;29863:90:0;;-1:-1:-1;29998:4:0;-1:-1:-1;30004:15:0;;-1:-1:-1;30021:4:0;;-1:-1:-1;30027:5:0;;-1:-1:-1;30034:8:0;-1:-1:-1;;;29399:652:0;;;;;;;;;:::o;4711:136::-;4769:7;4796:43;4800:1;4803;4796:43;;;;;;;;;;;;;;;;;:3;:43::i;32454:320::-;32500:8;;:13;:31;;;;-1:-1:-1;32517:9:0;;:14;32500:31;:52;;;;-1:-1:-1;32535:12:0;;:17;32500:52;32497:64;;;32454:320::o;32497:64::-;32596:8;;;32581:12;:23;32631:9;;;32615:13;:25;32670:12;;;32651:16;:31;-1:-1:-1;32703:12:0;;;;32726:13;;;;32750:16;32454:320::o;26964:606::-;27066:19;27089:10;:8;:10::i;:::-;27066:33;;27111:15;27128:23;27153:12;27167:23;27192:12;27206:13;27221:16;27241:19;27252:7;27241:10;:19::i;:::-;27110:150;;;;;;;;;;;;;;27271:13;27288:22;27298:11;27288:5;:9;;:22;;;;:::i;:::-;27271:39;;27321:80;27348:6;27356:9;27367:7;27376;27385:15;27321:26;:80::i;:::-;27412:32;27427:8;27437:6;27412:14;:32::i;:::-;27455:47;27467:4;27473:5;27480:4;27486:5;27493:8;27455:11;:47::i;:::-;27535:9;-1:-1:-1;;;;;27518:44:0;27527:6;-1:-1:-1;;;;;27518:44:0;;27546:15;27518:44;;;;1342:25:1;;1330:2;1315:18;;1196:177;27518:44:0;;;;;;;;27055:515;;;;;;;;;26964:606;;;:::o;25957:622::-;26057:19;26080:10;:8;:10::i;:::-;26057:33;;26102:15;26119:23;26144:12;26158:23;26183:12;26197:13;26212:16;26232:19;26243:7;26232:10;:19::i;:::-;26101:150;;;;;;;;;;;;;;26262:13;26279:22;26289:11;26279:5;:9;;:22;;;;:::i;:::-;26262:39;;26312:90;26341:6;26349:9;26360:15;26377:7;26386:15;26312:28;:90::i;25087:591::-;25185:19;25208:10;:8;:10::i;:::-;25185:33;;25230:15;25247:23;25272:12;25286:23;25311:12;25325:13;25340:16;25360:19;25371:7;25360:10;:19::i;:::-;25229:150;;;;;;;;;;;;;;25390:13;25407:22;25417:11;25407:5;:9;;:22;;;;:::i;:::-;25390:39;;25440:69;25465:6;25473:9;25484:7;25493:15;25440:24;:69::i;27923:619::-;28025:19;28048:10;:8;:10::i;:::-;28025:33;;28070:15;28087:23;28112:12;28126:23;28151:12;28165:13;28180:16;28200:19;28211:7;28200:10;:19::i;:::-;28069:150;;;;;;;;;;;;;;28230:13;28247:22;28257:11;28247:5;:9;;:22;;;;:::i;:::-;28230:39;;28280:91;28301:6;28309:9;28320:7;28329;28338:15;28355;28280:20;:91::i;31519:561::-;31616:7;;31652;;31569;;;;;31676:289;31700:9;:16;31696:20;;31676:289;;;31766:7;31742;:21;31750:9;31760:1;31750:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;31750:12:0;31742:21;;;;;;;;;;;;;:31;;:66;;;31801:7;31777;:21;31785:9;31795:1;31785:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;31785:12:0;31777:21;;;;;;;;;;;;;:31;31742:66;31738:97;;;31818:7;;31827;;31810:25;;;;;;;31519:561;;:::o;31738:97::-;31860:34;31872:7;:21;31880:9;31890:1;31880:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;31880:12:0;31872:21;;;;;;;;;;;;;31860:7;;:11;:34::i;:::-;31850:44;;31919:34;31931:7;:21;31939:9;31949:1;31939:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;31939:12:0;31931:21;;;;;;;;;;;;;31919:7;;:11;:34::i;:::-;31909:44;-1:-1:-1;31718:3:0;;;;:::i;:::-;;;;31676:289;;;-1:-1:-1;32001:7:0;;31989;;:20;;:11;:20::i;:::-;31979:7;:30;31975:61;;;32019:7;;32028;;32011:25;;;;;;31519:561;;:::o;31975:61::-;32055:7;;32064;;-1:-1:-1;31519:561:0;-1:-1:-1;31519:561:0:o;7176:278::-;7262:7;7297:12;7290:5;7282:28;;;;-1:-1:-1;;;7282:28:0;;;;;;;;:::i;:::-;-1:-1:-1;7321:9:0;7333:5;7337:1;7333;:5;:::i;30063:427::-;30176:7;30185;30194;30214:12;30229:50;30275:3;30230:39;30256:12;;30231:19;30243:6;30231:7;:11;;:19;;;;:::i;:::-;30230:25;;:39::i;30229:50::-;30214:65;;30290:13;30306:51;30353:3;30307:40;30334:12;;30308:20;30320:7;30308;:11;;:20;;;;:::i;30306:51::-;30290:67;;30368:16;30387:54;30437:3;30388:43;30418:12;;30389:23;30401:10;30389:7;:11;;:23;;;;:::i;30387:54::-;30460:4;;30466:5;;-1:-1:-1;30460:4:0;;-1:-1:-1;30063:427:0;-1:-1:-1;;;;;;30063:427:0:o;30502:191::-;30616:7;30643:42;30676:8;30643:28;30665:5;30643:28;:7;30655:4;30643:11;:17::i;:::-;:21;;:28::i;30705:254::-;30800:7;;;30847:24;:7;30859:11;30847;:24::i;:::-;30829:42;-1:-1:-1;30882:12:0;30897:21;:4;30906:11;30897:8;:21::i;:::-;30937:7;;;;-1:-1:-1;30705:254:0;;-1:-1:-1;;;;;30705:254:0:o;30971:369::-;31107:7;;31143:22;:5;31153:11;31143:9;:22::i;:::-;31127:38;-1:-1:-1;31176:16:0;31195:25;:8;31208:11;31195:12;:25::i;:::-;31176:44;-1:-1:-1;31231:23:0;31257:42;31176:44;31257:28;31279:5;31257:28;:7;31269:4;31257:11;:17::i;:42::-;31231:68;30971:369;-1:-1:-1;;;;;;;;;30971:369:0:o;5601:471::-;5659:7;5904:1;5909;5904:6;5900:47;;-1:-1:-1;5934:1:0;5927:8;;5900:47;5959:9;5971:5;5975:1;5971;:5;:::i;:::-;5959:17;-1:-1:-1;6004:1:0;5995:5;5999:1;5959:17;5995:5;:::i;:::-;:10;5987:56;;;;-1:-1:-1;;;5987:56:0;;10253:2:1;5987:56:0;;;10235:21:1;10292:2;10272:18;;;10265:30;10331:34;10311:18;;;10304:62;-1:-1:-1;;;10382:18:1;;;10375:31;10423:19;;5987:56:0;10051:397:1;27582:333:0;-1:-1:-1;;;;;27749:15:0;;;;;;:7;:15;;;;;;:28;;27769:7;27749:19;:28::i;:::-;-1:-1:-1;;;;;27731:15:0;;;;;;:7;:15;;;;;;;;:46;;;;27806:7;:15;;;;:28;;27826:7;27806:19;:28::i;:::-;-1:-1:-1;;;;;27788:15:0;;;;;;;:7;:15;;;;;;:46;;;;27866:18;;;;;;;:39;;27889:15;27866:22;:39::i;:::-;-1:-1:-1;;;;;27845:18:0;;;;;;;:7;:18;;;;;:60;;;;-1:-1:-1;;;;27582:333:0:o;32088:358::-;32165:19;32187:10;:8;:10::i;:::-;32165:32;-1:-1:-1;32208:16:0;32227:25;:8;32165:32;32227:12;:25::i;:::-;32293:10;;-1:-1:-1;;;;;32293:10:0;32285:19;;;;:7;:19;;;;;;32208:44;;-1:-1:-1;32285:33:0;;32208:44;32285:23;:33::i;:::-;32271:10;;;-1:-1:-1;;;;;32271:10:0;;;32263:19;;;;:7;:19;;;;;;;;:55;;;;32359:10;;;;;32351:19;;:7;:19;;;;;:33;;32375:8;32351:23;:33::i;:::-;32337:10;;;-1:-1:-1;;;;;32337:10:0;;;32329:19;;;;:7;:19;;;;;;;;;:55;;;;32417:10;;32400:38;;1342:25:1;;;32417:10:0;;;;32400:38;;;;;;1315:18:1;32400:38:0;;;;;;;32154:292;;32088:358;;:::o;28985:400::-;29111:28;29133:5;29111:17;29123:4;29111:7;;:11;;:17;;;;:::i;:28::-;29101:7;:38;29163:10;;:20;;29178:4;29163:14;:20::i;:::-;29150:10;:33;29208:11;;:22;;29224:5;29208:15;:22::i;:::-;29194:11;:36;29258:14;;:28;;29277:8;29258:18;:28::i;:::-;29241:14;:45;29307:7;;:18;;29319:5;29307:11;:18::i;:::-;29297:7;:28;29335:42;;1342:25:1;;;29367:1:0;;29352:4;;29335:42;;1330:2:1;1315:18;29335:42:0;;;;;;;28985:400;;;;;:::o;26591:359::-;-1:-1:-1;;;;;26768:15:0;;;;;;:7;:15;;;;;;:28;;26788:7;26768:19;:28::i;:::-;-1:-1:-1;;;;;26750:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;26828:18;;;;;:7;:18;;;;;:39;;26851:15;26828:22;:39::i;:::-;-1:-1:-1;;;;;26807:18:0;;;;;;:7;:18;;;;;;;;:60;;;;26899:7;:18;;;;:39;;26922:15;26899:22;:39::i;25690:255::-;-1:-1:-1;;;;;25838:15:0;;;;;;:7;:15;;;;;;:28;;25858:7;25838:19;:28::i;:::-;-1:-1:-1;;;;;25820:15:0;;;;;;;:7;:15;;;;;;:46;;;;25898:18;;;;;;;:39;;25921:15;25898:22;:39::i;:::-;-1:-1:-1;;;;;25877:18:0;;;;;;;:7;:18;;;;;:60;;;;-1:-1:-1;;;25690:255:0:o;28554:423::-;-1:-1:-1;;;;;28740:15:0;;;;;;:7;:15;;;;;;:28;;28760:7;28740:19;:28::i;:::-;-1:-1:-1;;;;;28722:15:0;;;;;;:7;:15;;;;;;;;:46;;;;28797:7;:15;;;;:28;;28817:7;28797:19;:28::i;:::-;-1:-1:-1;;;;;28779:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;28857:18;;;;;:7;:18;;;;;:39;;28880:15;28857:22;:39::i;:::-;-1:-1:-1;;;;;28836:18:0;;;;;;:7;:18;;;;;;;;:60;;;;28928:7;:18;;;;:39;;28951:15;28928:22;:39::i;:::-;-1:-1:-1;;;;;28907:18:0;;;;;;;:7;:18;;;;;:60;;;;-1:-1:-1;;;;;28554:423:0:o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1711:180::-;1770:6;1823:2;1811:9;1802:7;1798:23;1794:32;1791:52;;;1839:1;1836;1829:12;1791:52;-1:-1:-1;1862:23:1;;1711:180;-1:-1:-1;1711:180:1:o;2085:341::-;2150:6;2158;2211:2;2199:9;2190:7;2186:23;2182:32;2179:52;;;2227:1;2224;2217:12;2179:52;2263:9;2250:23;2240:33;;2323:2;2312:9;2308:18;2295:32;2370:5;2363:13;2356:21;2349:5;2346:32;2336:60;;2392:1;2389;2382:12;2336:60;2415:5;2405:15;;;2085:341;;;;;:::o;2431:186::-;2490:6;2543:2;2531:9;2522:7;2518:23;2514:32;2511:52;;;2559:1;2556;2549:12;2511:52;2582:29;2601:9;2582:29;:::i;2830:260::-;2898:6;2906;2959:2;2947:9;2938:7;2934:23;2930:32;2927:52;;;2975:1;2972;2965:12;2927:52;2998:29;3017:9;2998:29;:::i;:::-;2988:39;;3046:38;3080:2;3069:9;3065:18;3046:38;:::i;:::-;3036:48;;2830:260;;;;;:::o;3095:316::-;3172:6;3180;3188;3241:2;3229:9;3220:7;3216:23;3212:32;3209:52;;;3257:1;3254;3247:12;3209:52;-1:-1:-1;;3280:23:1;;;3350:2;3335:18;;3322:32;;-1:-1:-1;3401:2:1;3386:18;;;3373:32;;3095:316;-1:-1:-1;3095:316:1:o;3416:380::-;3495:1;3491:12;;;;3538;;;3559:61;;3613:4;3605:6;3601:17;3591:27;;3559:61;3666:2;3658:6;3655:14;3635:18;3632:38;3629:161;;3712:10;3707:3;3703:20;3700:1;3693:31;3747:4;3744:1;3737:15;3775:4;3772:1;3765:15;3629:161;;3416:380;;;:::o;4985:356::-;5187:2;5169:21;;;5206:18;;;5199:30;5265:34;5260:2;5245:18;;5238:62;5332:2;5317:18;;4985:356::o;6465:127::-;6526:10;6521:3;6517:20;6514:1;6507:31;6557:4;6554:1;6547:15;6581:4;6578:1;6571:15;6597:127;6658:10;6653:3;6649:20;6646:1;6639:31;6689:4;6686:1;6679:15;6713:4;6710:1;6703:15;6729:128;6796:9;;;6817:11;;;6814:37;;;6831:18;;:::i;6862:127::-;6923:10;6918:3;6914:20;6911:1;6904:31;6954:4;6951:1;6944:15;6978:4;6975:1;6968:15;6994:135;7033:3;7054:17;;;7051:43;;7074:18;;:::i;:::-;-1:-1:-1;7121:1:1;7110:13;;6994:135::o;7134:168::-;7207:9;;;7238;;7255:15;;;7249:22;;7235:37;7225:71;;7276:18;;:::i;9343:125::-;9408:9;;;9429:10;;;9426:36;;;9442:18;;:::i;9829:217::-;9869:1;9895;9885:132;;9939:10;9934:3;9930:20;9927:1;9920:31;9974:4;9971:1;9964:15;10002:4;9999:1;9992:15;9885:132;-1:-1:-1;10031:9:1;;9829:217::o

Swarm Source

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