ETH Price: $3,111.61 (+0.80%)
Gas: 4 Gwei

Token

moneymaker.finance (🍑)
 

Overview

Max Total Supply

8,760,946.72384148 🍑

Holders

164

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
57,406.44103307 🍑

Value
$0.00
0xe9aee0ae983498caeb04dfdce57d79079bac8cc5
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MoneyMaker

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

/**
 *Submitted for verification at Etherscan.io on 2021-02-05
*/
pragma solidity >=0.6.0 <0.8.0;

// SPDX-License-Identifier: MIT

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

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

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

    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
    
    string  private _NAME = 'moneymaker.finance';
    string  private _SYMBOL = hex'f09f8d91'; // << REPLACE THIS. DOES NOT WORK
    uint8   private constant _DECIMALS = 8;
   
    uint256 private constant _MAX = ~uint256(0);
    uint256 private constant _DECIMALFACTOR = 10 ** uint256(_DECIMALS);
    uint256 private constant _GRANULARITY = 100;
    
    uint256 private _tTotal = 10000000 * _DECIMALFACTOR;               // Supply: 10,000,000
    uint256 private _rTotal = (_MAX - (_MAX % _tTotal));
    
    uint256 private _tFeeTotal;
    uint256 private _tBurnTotal;
    
    uint256 private constant     _TAX_FEE = 600;
    uint256 private constant    _BURN_FEE = 150;
    uint256 private constant _MAX_TX_SIZE = 500000 * _DECIMALFACTOR;   // Limit: 500,000

    constructor (string memory tokenSymbol) {
        _NAME = 'moneymaker.finance';
        _SYMBOL = hex'f09f8d91';
        
        _rOwned[_msgSender()] = _rTotal;
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

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

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

    function decimals() public view returns (uint8) {
        return _DECIMALS;
    }

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

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

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

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

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

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

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

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    function 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 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(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.');
        require(!_isExcluded[account], "Account is already excluded");
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeAccount(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is already excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }

    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    function _transfer(address sender, address recipient, uint256 amount) private {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        
        if(sender != owner() && recipient != owner())
            require(amount <= _MAX_TX_SIZE, "Transfer amount exceeds the maxTxAmount.");
        
        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);
        }
    }

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

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

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

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

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

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

    function _getTValues(uint256 tAmount, uint256 taxFee, uint256 burnFee) private pure returns (uint256, uint256, uint256) {
        uint256 tFee = ((tAmount.mul(taxFee)).div(_GRANULARITY)).div(100);
        uint256 tBurn = ((tAmount.mul(burnFee)).div(_GRANULARITY)).div(100);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tBurn);
        return (tTransferAmount, tFee, tBurn);
    }

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

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

    function _getCurrentSupply() private view returns(uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;      
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }
    
    function _getTaxFee() private view returns(uint256) {
        return _TAX_FEE;
    }

    function _getMaxTxAmount() private view returns(uint256) {
        return _MAX_TX_SIZE;
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"tokenSymbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":[],"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":"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"}]

60c060405260126080819052716d6f6e65796d616b65722e66696e616e636560701b60a0908152620000359160069190620002b6565b5060408051808201909152600480825263f09f8d9160e01b60209092019182526200006391600791620002b6565b5066038d7ea4c680006008556507326b47ffff196009553480156200008757600080fd5b50604051620020343803806200203483398181016040526020811015620000ad57600080fd5b8101908080516040519392919084640100000000821115620000ce57600080fd5b908301906020820185811115620000e457600080fd5b8251640100000000811182820188101715620000ff57600080fd5b82525081516020918201929091019080838360005b838110156200012e57818101518382015260200162000114565b50505050905090810190601f1680156200015c5780820380516001836020036101000a031916815260200191505b50604052505050600062000175620002b260201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350604080518082019091526012808252716d6f6e65796d616b65722e66696e616e636560701b6020909201918252620001fa91600691620002b6565b5060408051808201909152600480825263f09f8d9160e01b60209092019182526200022891600791620002b6565b50600954600160006200023a620002b2565b6001600160a01b031681526020810191909152604001600020556200025e620002b2565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6008546040518082815260200191505060405180910390a35062000362565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620002ee576000855562000339565b82601f106200030957805160ff191683800117855562000339565b8280016001018555821562000339579182015b82811115620003395782518255916020019190600101906200031c565b50620003479291506200034b565b5090565b5b808211156200034757600081556001016200034c565b611cc280620003726000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063a9059cbb1161007c578063a9059cbb14610395578063cba0e996146103c1578063dd62ed3e146103e7578063f2cc0c1814610415578063f2fde38b1461043b578063f84354f11461046157610142565b806370a082311461030f578063715018a6146103355780638da5cb5b1461033d57806395d89b4114610361578063a457c2d71461036957610142565b80632d8381191161010a5780632d8381191461025c578063313ce5671461027957806339509351146102975780633bd5d173146102c35780633c9f861d146102e25780634549b039146102ea57610142565b806306fdde0314610147578063095ea7b3146101c457806313114a9d1461020457806318160ddd1461021e57806323b872dd14610226575b600080fd5b61014f610487565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610189578181015183820152602001610171565b50505050905090810190601f1680156101b65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f0600480360360408110156101da57600080fd5b506001600160a01b03813516906020013561051d565b604080519115158252519081900360200190f35b61020c61053b565b60408051918252519081900360200190f35b61020c610541565b6101f06004803603606081101561023c57600080fd5b506001600160a01b03813581169160208101359091169060400135610547565b61020c6004803603602081101561027257600080fd5b50356105ce565b610281610630565b6040805160ff9092168252519081900360200190f35b6101f0600480360360408110156102ad57600080fd5b506001600160a01b038135169060200135610635565b6102e0600480360360208110156102d957600080fd5b5035610683565b005b61020c61075d565b61020c6004803603604081101561030057600080fd5b50803590602001351515610763565b61020c6004803603602081101561032557600080fd5b50356001600160a01b03166107f5565b6102e0610857565b6103456108f9565b604080516001600160a01b039092168252519081900360200190f35b61014f610908565b6101f06004803603604081101561037f57600080fd5b506001600160a01b038135169060200135610969565b6101f0600480360360408110156103ab57600080fd5b506001600160a01b0381351690602001356109d1565b6101f0600480360360208110156103d757600080fd5b50356001600160a01b03166109e5565b61020c600480360360408110156103fd57600080fd5b506001600160a01b0381358116916020013516610a03565b6102e06004803603602081101561042b57600080fd5b50356001600160a01b0316610a2e565b6102e06004803603602081101561045157600080fd5b50356001600160a01b0316610c10565b6102e06004803603602081101561047757600080fd5b50356001600160a01b0316610d08565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105135780601f106104e857610100808354040283529160200191610513565b820191906000526020600020905b8154815290600101906020018083116104f657829003601f168201915b5050505050905090565b600061053161052a610ec9565b8484610ecd565b5060015b92915050565b600a5490565b60085490565b6000610554848484610fb9565b6105c484610560610ec9565b6105bf85604051806060016040528060288152602001611b60602891396001600160a01b038a1660009081526003602052604081209061059e610ec9565b6001600160a01b031681526020810191909152604001600020549190611267565b610ecd565b5060019392505050565b60006009548211156106115760405162461bcd60e51b815260040180806020018281038252602a815260200180611aa5602a913960400191505060405180910390fd5b600061061b6112fe565b90506106278382611321565b9150505b919050565b600890565b6000610531610642610ec9565b846105bf8560036000610653610ec9565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061136a565b600061068d610ec9565b6001600160a01b03811660009081526004602052604090205490915060ff16156106e85760405162461bcd60e51b815260040180806020018281038252602c815260200180611c3c602c913960400191505060405180910390fd5b60006106f3836113c4565b505050506001600160a01b03841660009081526001602052604090205491925061071f91905082611420565b6001600160a01b0383166000908152600160205260409020556009546107459082611420565b600955600a54610755908461136a565b600a55505050565b600b5490565b60006008548311156107bc576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816107db5760006107cc846113c4565b50939550610535945050505050565b60006107e6846113c4565b50929550610535945050505050565b6001600160a01b03811660009081526004602052604081205460ff161561083557506001600160a01b03811660009081526002602052604090205461062b565b6001600160a01b038216600090815260016020526040902054610535906105ce565b61085f610ec9565b6000546001600160a01b039081169116146108af576040805162461bcd60e51b81526020600482018190526024820152600080516020611b88833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105135780601f106104e857610100808354040283529160200191610513565b6000610531610976610ec9565b846105bf85604051806060016040528060258152602001611c6860259139600360006109a0610ec9565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611267565b60006105316109de610ec9565b8484610fb9565b6001600160a01b031660009081526004602052604090205460ff1690565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610a36610ec9565b6000546001600160a01b03908116911614610a86576040805162461bcd60e51b81526020600482018190526024820152600080516020611b88833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610ae25760405162461bcd60e51b8152600401808060200182810382526022815260200180611c1a6022913960400191505060405180910390fd5b6001600160a01b03811660009081526004602052604090205460ff1615610b50576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415610baa576001600160a01b038116600090815260016020526040902054610b90906105ce565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b610c18610ec9565b6000546001600160a01b03908116911614610c68576040805162461bcd60e51b81526020600482018190526024820152600080516020611b88833981519152604482015290519081900360640190fd5b6001600160a01b038116610cad5760405162461bcd60e51b8152600401808060200182810382526026815260200180611acf6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610d10610ec9565b6000546001600160a01b03908116911614610d60576040805162461bcd60e51b81526020600482018190526024820152600080516020611b88833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff16610dcd576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600554811015610ec557816001600160a01b031660058281548110610df157fe5b6000918252602090912001546001600160a01b03161415610ebd57600580546000198101908110610e1e57fe5b600091825260209091200154600580546001600160a01b039092169183908110610e4457fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff191690556005805480610e9657fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610ec5565b600101610dd0565b5050565b3390565b6001600160a01b038316610f125760405162461bcd60e51b8152600401808060200182810382526024815260200180611bf66024913960400191505060405180910390fd5b6001600160a01b038216610f575760405162461bcd60e51b8152600401808060200182810382526022815260200180611af56022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610ffe5760405162461bcd60e51b8152600401808060200182810382526025815260200180611bd16025913960400191505060405180910390fd5b6001600160a01b0382166110435760405162461bcd60e51b8152600401808060200182810382526023815260200180611a826023913960400191505060405180910390fd5b600081116110825760405162461bcd60e51b8152600401808060200182810382526029815260200180611ba86029913960400191505060405180910390fd5b61108a6108f9565b6001600160a01b0316836001600160a01b0316141580156110c457506110ae6108f9565b6001600160a01b0316826001600160a01b031614155b1561110e57652d79883d200081111561110e5760405162461bcd60e51b8152600401808060200182810382526028815260200180611b176028913960400191505060405180910390fd5b6001600160a01b03831660009081526004602052604090205460ff16801561114f57506001600160a01b03821660009081526004602052604090205460ff16155b156111645761115f838383611462565b611262565b6001600160a01b03831660009081526004602052604090205460ff161580156111a557506001600160a01b03821660009081526004602052604090205460ff165b156111b55761115f8383836115a2565b6001600160a01b03831660009081526004602052604090205460ff161580156111f757506001600160a01b03821660009081526004602052604090205460ff16155b156112075761115f83838361166c565b6001600160a01b03831660009081526004602052604090205460ff16801561124757506001600160a01b03821660009081526004602052604090205460ff165b156112575761115f8383836116d1565b61126283838361166c565b505050565b600081848411156112f65760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156112bb5781810151838201526020016112a3565b50505050905090810190601f1680156112e85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061130b611765565b909250905061131a8282611321565b9250505090565b600061136383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506118c8565b9392505050565b600082820183811015611363576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006113e08a610258609661192d565b92509250925060006113f06112fe565b905060008060006114038e878787611986565b919e509c509a509598509396509194505050505091939550919395565b600061136383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611267565b600061146c6112fe565b9050600080600080600080611480886113c4565b95509550955095509550955060006114a188836119d690919063ffffffff16565b6001600160a01b038c166000908152600260205260409020549091506114c7908a611420565b6001600160a01b038c166000908152600260209081526040808320939093556001905220546114f69088611420565b6001600160a01b03808d1660009081526001602052604080822093909355908c1681522054611525908761136a565b6001600160a01b038b1660009081526001602052604090205561154a85828585611a2f565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a35050505050505050505050565b60006115ac6112fe565b90506000806000806000806115c0886113c4565b95509550955095509550955060006115e188836119d690919063ffffffff16565b6001600160a01b038c166000908152600160205260409020549091506116079088611420565b6001600160a01b03808d16600090815260016020908152604080832094909455918d1681526002909152205461163d908561136a565b6001600160a01b038b16600090815260026020908152604080832093909355600190522054611525908761136a565b60006116766112fe565b905060008060008060008061168a886113c4565b95509550955095509550955060006116ab88836119d690919063ffffffff16565b6001600160a01b038c166000908152600160205260409020549091506114f69088611420565b60006116db6112fe565b90506000806000806000806116ef886113c4565b955095509550955095509550600061171088836119d690919063ffffffff16565b6001600160a01b038c16600090815260026020526040902054909150611736908a611420565b6001600160a01b038c166000908152600260209081526040808320939093556001905220546116079088611420565b6009546008546000918291825b6005548110156118965782600160006005848154811061178e57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806117f357508160026000600584815481106117cc57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561180a57600954600854945094505050506118c4565b61184a600160006005848154811061181e57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611420565b925061188c600260006005848154811061186057fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611420565b9150600101611772565b506008546009546118a691611321565b8210156118be576009546008549350935050506118c4565b90925090505b9091565b600081836119175760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156112bb5781810151838201526020016112a3565b50600083858161192357fe5b0495945050505050565b6000808080611949606461194381818b8b6119d6565b90611321565b9050600061195e606461194381818c8b6119d6565b90506000611976826119708b86611420565b90611420565b9992985090965090945050505050565b600080808061199588866119d6565b905060006119a388876119d6565b905060006119b188886119d6565b905060006119c3826119708686611420565b939b939a50919850919650505050505050565b6000826119e557506000610535565b828202828482816119f257fe5b04146113635760405162461bcd60e51b8152600401808060200182810382526021815260200180611b3f6021913960400191505060405180910390fd5b611a48836119708660095461142090919063ffffffff16565b600955600a54611a58908361136a565b600a55600b54611a68908261136a565b600b55600854611a789082611420565b6008555050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212202b886e50691b1df76ef1fa2a1607140d2547c48794e6de809dfc203d7c161b7864736f6c6343000706003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063a9059cbb1161007c578063a9059cbb14610395578063cba0e996146103c1578063dd62ed3e146103e7578063f2cc0c1814610415578063f2fde38b1461043b578063f84354f11461046157610142565b806370a082311461030f578063715018a6146103355780638da5cb5b1461033d57806395d89b4114610361578063a457c2d71461036957610142565b80632d8381191161010a5780632d8381191461025c578063313ce5671461027957806339509351146102975780633bd5d173146102c35780633c9f861d146102e25780634549b039146102ea57610142565b806306fdde0314610147578063095ea7b3146101c457806313114a9d1461020457806318160ddd1461021e57806323b872dd14610226575b600080fd5b61014f610487565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610189578181015183820152602001610171565b50505050905090810190601f1680156101b65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f0600480360360408110156101da57600080fd5b506001600160a01b03813516906020013561051d565b604080519115158252519081900360200190f35b61020c61053b565b60408051918252519081900360200190f35b61020c610541565b6101f06004803603606081101561023c57600080fd5b506001600160a01b03813581169160208101359091169060400135610547565b61020c6004803603602081101561027257600080fd5b50356105ce565b610281610630565b6040805160ff9092168252519081900360200190f35b6101f0600480360360408110156102ad57600080fd5b506001600160a01b038135169060200135610635565b6102e0600480360360208110156102d957600080fd5b5035610683565b005b61020c61075d565b61020c6004803603604081101561030057600080fd5b50803590602001351515610763565b61020c6004803603602081101561032557600080fd5b50356001600160a01b03166107f5565b6102e0610857565b6103456108f9565b604080516001600160a01b039092168252519081900360200190f35b61014f610908565b6101f06004803603604081101561037f57600080fd5b506001600160a01b038135169060200135610969565b6101f0600480360360408110156103ab57600080fd5b506001600160a01b0381351690602001356109d1565b6101f0600480360360208110156103d757600080fd5b50356001600160a01b03166109e5565b61020c600480360360408110156103fd57600080fd5b506001600160a01b0381358116916020013516610a03565b6102e06004803603602081101561042b57600080fd5b50356001600160a01b0316610a2e565b6102e06004803603602081101561045157600080fd5b50356001600160a01b0316610c10565b6102e06004803603602081101561047757600080fd5b50356001600160a01b0316610d08565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105135780601f106104e857610100808354040283529160200191610513565b820191906000526020600020905b8154815290600101906020018083116104f657829003601f168201915b5050505050905090565b600061053161052a610ec9565b8484610ecd565b5060015b92915050565b600a5490565b60085490565b6000610554848484610fb9565b6105c484610560610ec9565b6105bf85604051806060016040528060288152602001611b60602891396001600160a01b038a1660009081526003602052604081209061059e610ec9565b6001600160a01b031681526020810191909152604001600020549190611267565b610ecd565b5060019392505050565b60006009548211156106115760405162461bcd60e51b815260040180806020018281038252602a815260200180611aa5602a913960400191505060405180910390fd5b600061061b6112fe565b90506106278382611321565b9150505b919050565b600890565b6000610531610642610ec9565b846105bf8560036000610653610ec9565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061136a565b600061068d610ec9565b6001600160a01b03811660009081526004602052604090205490915060ff16156106e85760405162461bcd60e51b815260040180806020018281038252602c815260200180611c3c602c913960400191505060405180910390fd5b60006106f3836113c4565b505050506001600160a01b03841660009081526001602052604090205491925061071f91905082611420565b6001600160a01b0383166000908152600160205260409020556009546107459082611420565b600955600a54610755908461136a565b600a55505050565b600b5490565b60006008548311156107bc576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816107db5760006107cc846113c4565b50939550610535945050505050565b60006107e6846113c4565b50929550610535945050505050565b6001600160a01b03811660009081526004602052604081205460ff161561083557506001600160a01b03811660009081526002602052604090205461062b565b6001600160a01b038216600090815260016020526040902054610535906105ce565b61085f610ec9565b6000546001600160a01b039081169116146108af576040805162461bcd60e51b81526020600482018190526024820152600080516020611b88833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105135780601f106104e857610100808354040283529160200191610513565b6000610531610976610ec9565b846105bf85604051806060016040528060258152602001611c6860259139600360006109a0610ec9565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611267565b60006105316109de610ec9565b8484610fb9565b6001600160a01b031660009081526004602052604090205460ff1690565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610a36610ec9565b6000546001600160a01b03908116911614610a86576040805162461bcd60e51b81526020600482018190526024820152600080516020611b88833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610ae25760405162461bcd60e51b8152600401808060200182810382526022815260200180611c1a6022913960400191505060405180910390fd5b6001600160a01b03811660009081526004602052604090205460ff1615610b50576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415610baa576001600160a01b038116600090815260016020526040902054610b90906105ce565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b610c18610ec9565b6000546001600160a01b03908116911614610c68576040805162461bcd60e51b81526020600482018190526024820152600080516020611b88833981519152604482015290519081900360640190fd5b6001600160a01b038116610cad5760405162461bcd60e51b8152600401808060200182810382526026815260200180611acf6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610d10610ec9565b6000546001600160a01b03908116911614610d60576040805162461bcd60e51b81526020600482018190526024820152600080516020611b88833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff16610dcd576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600554811015610ec557816001600160a01b031660058281548110610df157fe5b6000918252602090912001546001600160a01b03161415610ebd57600580546000198101908110610e1e57fe5b600091825260209091200154600580546001600160a01b039092169183908110610e4457fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff191690556005805480610e9657fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610ec5565b600101610dd0565b5050565b3390565b6001600160a01b038316610f125760405162461bcd60e51b8152600401808060200182810382526024815260200180611bf66024913960400191505060405180910390fd5b6001600160a01b038216610f575760405162461bcd60e51b8152600401808060200182810382526022815260200180611af56022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610ffe5760405162461bcd60e51b8152600401808060200182810382526025815260200180611bd16025913960400191505060405180910390fd5b6001600160a01b0382166110435760405162461bcd60e51b8152600401808060200182810382526023815260200180611a826023913960400191505060405180910390fd5b600081116110825760405162461bcd60e51b8152600401808060200182810382526029815260200180611ba86029913960400191505060405180910390fd5b61108a6108f9565b6001600160a01b0316836001600160a01b0316141580156110c457506110ae6108f9565b6001600160a01b0316826001600160a01b031614155b1561110e57652d79883d200081111561110e5760405162461bcd60e51b8152600401808060200182810382526028815260200180611b176028913960400191505060405180910390fd5b6001600160a01b03831660009081526004602052604090205460ff16801561114f57506001600160a01b03821660009081526004602052604090205460ff16155b156111645761115f838383611462565b611262565b6001600160a01b03831660009081526004602052604090205460ff161580156111a557506001600160a01b03821660009081526004602052604090205460ff165b156111b55761115f8383836115a2565b6001600160a01b03831660009081526004602052604090205460ff161580156111f757506001600160a01b03821660009081526004602052604090205460ff16155b156112075761115f83838361166c565b6001600160a01b03831660009081526004602052604090205460ff16801561124757506001600160a01b03821660009081526004602052604090205460ff165b156112575761115f8383836116d1565b61126283838361166c565b505050565b600081848411156112f65760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156112bb5781810151838201526020016112a3565b50505050905090810190601f1680156112e85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061130b611765565b909250905061131a8282611321565b9250505090565b600061136383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506118c8565b9392505050565b600082820183811015611363576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006113e08a610258609661192d565b92509250925060006113f06112fe565b905060008060006114038e878787611986565b919e509c509a509598509396509194505050505091939550919395565b600061136383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611267565b600061146c6112fe565b9050600080600080600080611480886113c4565b95509550955095509550955060006114a188836119d690919063ffffffff16565b6001600160a01b038c166000908152600260205260409020549091506114c7908a611420565b6001600160a01b038c166000908152600260209081526040808320939093556001905220546114f69088611420565b6001600160a01b03808d1660009081526001602052604080822093909355908c1681522054611525908761136a565b6001600160a01b038b1660009081526001602052604090205561154a85828585611a2f565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a35050505050505050505050565b60006115ac6112fe565b90506000806000806000806115c0886113c4565b95509550955095509550955060006115e188836119d690919063ffffffff16565b6001600160a01b038c166000908152600160205260409020549091506116079088611420565b6001600160a01b03808d16600090815260016020908152604080832094909455918d1681526002909152205461163d908561136a565b6001600160a01b038b16600090815260026020908152604080832093909355600190522054611525908761136a565b60006116766112fe565b905060008060008060008061168a886113c4565b95509550955095509550955060006116ab88836119d690919063ffffffff16565b6001600160a01b038c166000908152600160205260409020549091506114f69088611420565b60006116db6112fe565b90506000806000806000806116ef886113c4565b955095509550955095509550600061171088836119d690919063ffffffff16565b6001600160a01b038c16600090815260026020526040902054909150611736908a611420565b6001600160a01b038c166000908152600260209081526040808320939093556001905220546116079088611420565b6009546008546000918291825b6005548110156118965782600160006005848154811061178e57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806117f357508160026000600584815481106117cc57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561180a57600954600854945094505050506118c4565b61184a600160006005848154811061181e57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611420565b925061188c600260006005848154811061186057fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611420565b9150600101611772565b506008546009546118a691611321565b8210156118be576009546008549350935050506118c4565b90925090505b9091565b600081836119175760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156112bb5781810151838201526020016112a3565b50600083858161192357fe5b0495945050505050565b6000808080611949606461194381818b8b6119d6565b90611321565b9050600061195e606461194381818c8b6119d6565b90506000611976826119708b86611420565b90611420565b9992985090965090945050505050565b600080808061199588866119d6565b905060006119a388876119d6565b905060006119b188886119d6565b905060006119c3826119708686611420565b939b939a50919850919650505050505050565b6000826119e557506000610535565b828202828482816119f257fe5b04146113635760405162461bcd60e51b8152600401808060200182810382526021815260200180611b3f6021913960400191505060405180910390fd5b611a48836119708660095461142090919063ffffffff16565b600955600a54611a58908361136a565b600a55600b54611a68908261136a565b600b55600854611a789082611420565b6008555050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212202b886e50691b1df76ef1fa2a1607140d2547c48794e6de809dfc203d7c161b7864736f6c63430007060033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : tokenSymbol (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

16964:12232:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18381:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19293:161;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19293:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;20404:87;;;:::i;:::-;;;;;;;;;;;;;;;;18658:95;;;:::i;19462:313::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19462:313:0;;;;;;;;;;;;;;;;;:::i;21428:253::-;;;;;;;;;;;;;;;;-1:-1:-1;21428:253:0;;:::i;18567:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19783:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19783:218:0;;;;;;;;:::i;20599:377::-;;;;;;;;;;;;;;;;-1:-1:-1;20599:377:0;;:::i;:::-;;20503:88;;;:::i;20984:436::-;;;;;;;;;;;;;;;;-1:-1:-1;20984:436:0;;;;;;;;;:::i;18761:198::-;;;;;;;;;;;;;;;;-1:-1:-1;18761:198:0;-1:-1:-1;;;;;18761:198:0;;:::i;16410:148::-;;;:::i;15768:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;15768:79:0;;;;;;;;;;;;;;18472:87;;;:::i;20009:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20009:269:0;;;;;;;;:::i;18967:167::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18967:167:0;;;;;;;;:::i;20286:110::-;;;;;;;;;;;;;;;;-1:-1:-1;20286:110:0;-1:-1:-1;;;;;20286:110:0;;:::i;19142:143::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19142:143:0;;;;;;;;;;:::i;21689:443::-;;;;;;;;;;;;;;;;-1:-1:-1;21689:443:0;-1:-1:-1;;;;;21689:443:0;;:::i;16713:244::-;;;;;;;;;;;;;;;;-1:-1:-1;16713:244:0;-1:-1:-1;;;;;16713:244:0;;:::i;22140:478::-;;;;;;;;;;;;;;;;-1:-1:-1;22140:478:0;-1:-1:-1;;;;;22140:478:0;;:::i;18381:83::-;18451:5;18444:12;;;;;;;;-1:-1:-1;;18444:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18418:13;;18444:12;;18451:5;;18444:12;;18451:5;18444:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18381:83;:::o;19293:161::-;19368:4;19385:39;19394:12;:10;:12::i;:::-;19408:7;19417:6;19385:8;:39::i;:::-;-1:-1:-1;19442:4:0;19293:161;;;;;:::o;20404:87::-;20473:10;;20404:87;:::o;18658:95::-;18738:7;;18658:95;:::o;19462:313::-;19560:4;19577:36;19587:6;19595:9;19606:6;19577:9;:36::i;:::-;19624:121;19633:6;19641:12;:10;:12::i;:::-;19655:89;19693:6;19655:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19655:19:0;;;;;;:11;:19;;;;;;19675:12;:10;:12::i;:::-;-1:-1:-1;;;;;19655:33:0;;;;;;;;;;;;-1:-1:-1;19655:33:0;;;:89;:37;:89::i;:::-;19624:8;:121::i;:::-;-1:-1:-1;19763:4:0;19462:313;;;;;:::o;21428:253::-;21494:7;21533;;21522;:18;;21514:73;;;;-1:-1:-1;;;21514:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21598:19;21621:10;:8;:10::i;:::-;21598:33;-1:-1:-1;21649:24:0;:7;21598:33;21649:11;:24::i;:::-;21642:31;;;21428:253;;;;:::o;18567:83::-;17526:1;18567:83;:::o;19783:218::-;19871:4;19888:83;19897:12;:10;:12::i;:::-;19911:7;19920:50;19959:10;19920:11;:25;19932:12;:10;:12::i;:::-;-1:-1:-1;;;;;19920:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;19920:25:0;;;:34;;;;;;;;;;;:38;:50::i;20599:377::-;20651:14;20668:12;:10;:12::i;:::-;-1:-1:-1;;;;;20700:19:0;;;;;;:11;:19;;;;;;20651:29;;-1:-1:-1;20700:19:0;;20699:20;20691:77;;;;-1:-1:-1;;;20691:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20780:15;20804:19;20815:7;20804:10;:19::i;:::-;-1:-1:-1;;;;;;;;;20852:15:0;;;;;;:7;:15;;;;;;20779:44;;-1:-1:-1;20852:28:0;;:15;-1:-1:-1;20779:44:0;20852:19;:28::i;:::-;-1:-1:-1;;;;;20834:15:0;;;;;;:7;:15;;;;;:46;20901:7;;:20;;20913:7;20901:11;:20::i;:::-;20891:7;:30;20945:10;;:23;;20960:7;20945:14;:23::i;:::-;20932:10;:36;-1:-1:-1;;;20599:377:0:o;20503:88::-;20572:11;;20503:88;:::o;20984:436::-;21074:7;21113;;21102;:18;;21094:62;;;;;-1:-1:-1;;;21094:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21172:17;21167:246;;21207:15;21231:19;21242:7;21231:10;:19::i;:::-;-1:-1:-1;21206:44:0;;-1:-1:-1;21265:14:0;;-1:-1:-1;;;;;21265:14:0;21167:246;21314:23;21345:19;21356:7;21345:10;:19::i;:::-;-1:-1:-1;21312:52:0;;-1:-1:-1;21379:22:0;;-1:-1:-1;;;;;21379:22:0;18761:198;-1:-1:-1;;;;;18851:20:0;;18827:7;18851:20;;;:11;:20;;;;;;;;18847:49;;;-1:-1:-1;;;;;;18880:16:0;;;;;;:7;:16;;;;;;18873:23;;18847:49;-1:-1:-1;;;;;18934:16:0;;;;;;:7;:16;;;;;;18914:37;;:19;:37::i;16410:148::-;15990:12;:10;:12::i;:::-;15980:6;;-1:-1:-1;;;;;15980:6:0;;;:22;;;15972:67;;;;;-1:-1:-1;;;15972:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15972:67:0;;;;;;;;;;;;;;;16517:1:::1;16501:6:::0;;16480:40:::1;::::0;-1:-1:-1;;;;;16501:6:0;;::::1;::::0;16480:40:::1;::::0;16517:1;;16480:40:::1;16548:1;16531:19:::0;;-1:-1:-1;;;;;;16531:19:0::1;::::0;;16410:148::o;15768:79::-;15806:7;15833:6;-1:-1:-1;;;;;15833:6:0;15768:79;:::o;18472:87::-;18544:7;18537:14;;;;;;;;-1:-1:-1;;18537:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18511:13;;18537:14;;18544:7;;18537:14;;18544:7;18537:14;;;;;;;;;;;;;;;;;;;;;;;;20009:269;20102:4;20119:129;20128:12;:10;:12::i;:::-;20142:7;20151:96;20190:15;20151:96;;;;;;;;;;;;;;;;;:11;:25;20163:12;:10;:12::i;:::-;-1:-1:-1;;;;;20151:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;20151:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;18967:167::-;19045:4;19062:42;19072:12;:10;:12::i;:::-;19086:9;19097:6;19062:9;:42::i;20286:110::-;-1:-1:-1;;;;;20368:20:0;20344:4;20368:20;;;:11;:20;;;;;;;;;20286:110::o;19142:143::-;-1:-1:-1;;;;;19250:18:0;;;19223:7;19250:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19142:143::o;21689:443::-;15990:12;:10;:12::i;:::-;15980:6;;-1:-1:-1;;;;;15980:6:0;;;:22;;;15972:67;;;;;-1:-1:-1;;;15972:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15972:67:0;;;;;;;;;;;;;;;21781:42:::1;-1:-1:-1::0;;;;;21770:53:0;::::1;;;21762:100;;;;-1:-1:-1::0;;;21762:100:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;21882:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;21881:21;21873:61;;;::::0;;-1:-1:-1;;;21873:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;21948:16:0;::::1;21967:1;21948:16:::0;;;:7:::1;:16;::::0;;;;;:20;21945:108:::1;;-1:-1:-1::0;;;;;22024:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;22004:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;21985:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;21945:108:::1;-1:-1:-1::0;;;;;22063:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;22063:27:0::1;22086:4;22063:27:::0;;::::1;::::0;;;22101:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;22101:23:0::1;::::0;;::::1;::::0;;21689:443::o;16713:244::-;15990:12;:10;:12::i;:::-;15980:6;;-1:-1:-1;;;;;15980:6:0;;;:22;;;15972:67;;;;;-1:-1:-1;;;15972:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15972:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16802:22:0;::::1;16794:73;;;;-1:-1:-1::0;;;16794:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16904:6;::::0;;16883:38:::1;::::0;-1:-1:-1;;;;;16883:38:0;;::::1;::::0;16904:6;::::1;::::0;16883:38:::1;::::0;::::1;16932:6;:17:::0;;-1:-1:-1;;;;;;16932:17:0::1;-1:-1:-1::0;;;;;16932:17:0;;;::::1;::::0;;;::::1;::::0;;16713:244::o;22140:478::-;15990:12;:10;:12::i;:::-;15980:6;;-1:-1:-1;;;;;15980:6:0;;;:22;;;15972:67;;;;;-1:-1:-1;;;15972:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15972:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;22221:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;22213:60;;;::::0;;-1:-1:-1;;;22213:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;22289:9;22284:327;22308:9;:16:::0;22304:20;::::1;22284:327;;;22366:7;-1:-1:-1::0;;;;;22350:23:0::1;:9;22360:1;22350:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;22350:12:0::1;:23;22346:254;;;22409:9;22419:16:::0;;-1:-1:-1;;22419:20:0;;;22409:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;22394:9:::1;:12:::0;;-1:-1:-1;;;;;22409:31:0;;::::1;::::0;22404:1;;22394:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;22394:46:0::1;-1:-1:-1::0;;;;;22394:46:0;;::::1;;::::0;;22459:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;22498:11:::1;:20:::0;;;;:28;;-1:-1:-1;;22498:28:0::1;::::0;;22545:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;22545:15:0;;;;;-1:-1:-1;;;;;;22545:15:0::1;::::0;;;;;22579:5:::1;;22346:254;22326:3;;22284:327;;;;22140:478:::0;:::o;243:106::-;331:10;243:106;:::o;22626:337::-;-1:-1:-1;;;;;22719:19:0;;22711:68;;;;-1:-1:-1;;;22711:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22798:21:0;;22790:68;;;;-1:-1:-1;;;22790:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22871:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;22923:32;;;;;;;;;;;;;;;;;22626:337;;;:::o;22971:1096::-;-1:-1:-1;;;;;23068:20:0;;23060:70;;;;-1:-1:-1;;;23060:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23149:23:0;;23141:71;;;;-1:-1:-1;;;23141:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23240:1;23231:6;:10;23223:64;;;;-1:-1:-1;;;23223:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23321:7;:5;:7::i;:::-;-1:-1:-1;;;;;23311:17:0;:6;-1:-1:-1;;;;;23311:17:0;;;:41;;;;;23345:7;:5;:7::i;:::-;-1:-1:-1;;;;;23332:20:0;:9;-1:-1:-1;;;;;23332:20:0;;;23311:41;23308:134;;;18089:23;23375:22;;;23367:75;;;;-1:-1:-1;;;23367:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23467:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;23491:22:0;;;;;;:11;:22;;;;;;;;23490:23;23467:46;23463:597;;;23530:48;23552:6;23560:9;23571:6;23530:21;:48::i;:::-;23463:597;;;-1:-1:-1;;;;;23601:19:0;;;;;;:11;:19;;;;;;;;23600:20;:46;;;;-1:-1:-1;;;;;;23624:22:0;;;;;;:11;:22;;;;;;;;23600:46;23596:464;;;23663:46;23683:6;23691:9;23702:6;23663:19;:46::i;23596:464::-;-1:-1:-1;;;;;23732:19:0;;;;;;:11;:19;;;;;;;;23731:20;:47;;;;-1:-1:-1;;;;;;23756:22:0;;;;;;:11;:22;;;;;;;;23755:23;23731:47;23727:333;;;23795:44;23813:6;23821:9;23832:6;23795:17;:44::i;23727:333::-;-1:-1:-1;;;;;23861:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;23884:22:0;;;;;;:11;:22;;;;;;;;23861:45;23857:203;;;23923:48;23945:6;23953:9;23964:6;23923:21;:48::i;23857:203::-;24004:44;24022:6;24030:9;24041:6;24004:17;:44::i;:::-;22971:1096;;;:::o;5053:192::-;5139:7;5175:12;5167:6;;;;5159:29;;;;-1:-1:-1;;;5159:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5211:5:0;;;5053:192::o;28254:163::-;28295:7;28316:15;28333;28352:19;:17;:19::i;:::-;28315:56;;-1:-1:-1;28315:56:0;-1:-1:-1;28389:20:0;28315:56;;28389:11;:20::i;:::-;28382:27;;;;28254:163;:::o;6451:132::-;6509:7;6536:39;6540:1;6543;6536:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6529:46;6451:132;-1:-1:-1;;;6451:132:0:o;4150:181::-;4208:7;4240:5;;;4264:6;;;;4256:46;;;;;-1:-1:-1;;;4256:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;26956:470;27015:7;27024;27033;27042;27051;27060;27081:23;27106:12;27120:13;27137:41;27149:7;17989:3;18039;27137:11;:41::i;:::-;27080:98;;;;;;27189:19;27212:10;:8;:10::i;:::-;27189:33;;27234:15;27251:23;27276:12;27292:46;27304:7;27313:4;27319:5;27326:11;27292;:46::i;:::-;27233:105;;-1:-1:-1;27233:105:0;-1:-1:-1;27233:105:0;-1:-1:-1;27389:15:0;;-1:-1:-1;27406:4:0;;-1:-1:-1;27412:5:0;;-1:-1:-1;;;;;26956:470:0;;;;;;;:::o;4614:136::-;4672:7;4699:43;4703:1;4706;4699:43;;;;;;;;;;;;;;;;;:3;:43::i;25318:632::-;25420:19;25443:10;:8;:10::i;:::-;25420:33;;25465:15;25482:23;25507:12;25521:23;25546:12;25560:13;25577:19;25588:7;25577:10;:19::i;:::-;25464:132;;;;;;;;;;;;25607:13;25624:22;25634:11;25624:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;25675:15:0;;;;;;:7;:15;;;;;;25607:39;;-1:-1:-1;25675:28:0;;25695:7;25675:19;:28::i;:::-;-1:-1:-1;;;;;25657:15:0;;;;;;:7;:15;;;;;;;;:46;;;;25732:7;:15;;;;:28;;25752:7;25732:19;:28::i;:::-;-1:-1:-1;;;;;25714:15:0;;;;;;;:7;:15;;;;;;:46;;;;25792:18;;;;;;;:39;;25815:15;25792:22;:39::i;:::-;-1:-1:-1;;;;;25771:18:0;;;;;;:7;:18;;;;;:60;25845:37;25857:4;25863:5;25870:4;25876:5;25845:11;:37::i;:::-;25915:9;-1:-1:-1;;;;;25898:44:0;25907:6;-1:-1:-1;;;;;25898:44:0;;25926:15;25898:44;;;;;;;;;;;;;;;;;;25318:632;;;;;;;;;;;:::o;24658:652::-;24758:19;24781:10;:8;:10::i;:::-;24758:33;;24803:15;24820:23;24845:12;24859:23;24884:12;24898:13;24915:19;24926:7;24915:10;:19::i;:::-;24802:132;;;;;;;;;;;;24945:13;24962:22;24972:11;24962:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;25013:15:0;;;;;;:7;:15;;;;;;24945:39;;-1:-1:-1;25013:28:0;;25033:7;25013:19;:28::i;:::-;-1:-1:-1;;;;;24995:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;25073:18;;;;;:7;:18;;;;;:39;;25096:15;25073:22;:39::i;:::-;-1:-1:-1;;;;;25052:18:0;;;;;;:7;:18;;;;;;;;:60;;;;25144:7;:18;;;;:39;;25167:15;25144:22;:39::i;24075:575::-;24173:19;24196:10;:8;:10::i;:::-;24173:33;;24218:15;24235:23;24260:12;24274:23;24299:12;24313:13;24330:19;24341:7;24330:10;:19::i;:::-;24217:132;;;;;;;;;;;;24360:13;24377:22;24387:11;24377:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;24428:15:0;;;;;;:7;:15;;;;;;24360:39;;-1:-1:-1;24428:28:0;;24448:7;24428:19;:28::i;25958:708::-;26060:19;26083:10;:8;:10::i;:::-;26060:33;;26105:15;26122:23;26147:12;26161:23;26186:12;26200:13;26217:19;26228:7;26217:10;:19::i;:::-;26104:132;;;;;;;;;;;;26247:13;26264:22;26274:11;26264:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;26315:15:0;;;;;;:7;:15;;;;;;26247:39;;-1:-1:-1;26315:28:0;;26335:7;26315:19;:28::i;:::-;-1:-1:-1;;;;;26297:15:0;;;;;;:7;:15;;;;;;;;:46;;;;26372:7;:15;;;;:28;;26392:7;26372:19;:28::i;28425:561::-;28522:7;;28558;;28475;;;;;28582:289;28606:9;:16;28602:20;;28582:289;;;28672:7;28648;:21;28656:9;28666:1;28656:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28656:12:0;28648:21;;;;;;;;;;;;;:31;;:66;;;28707:7;28683;:21;28691:9;28701:1;28691:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28691:12:0;28683:21;;;;;;;;;;;;;:31;28648:66;28644:97;;;28724:7;;28733;;28716:25;;;;;;;;;28644:97;28766:34;28778:7;:21;28786:9;28796:1;28786:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28786:12:0;28778:21;;;;;;;;;;;;;28766:7;;:11;:34::i;:::-;28756:44;;28825:34;28837:7;:21;28845:9;28855:1;28845:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28845:12:0;28837:21;;;;;;;;;;;;;28825:7;;:11;:34::i;:::-;28815:44;-1:-1:-1;28624:3:0;;28582:289;;;-1:-1:-1;28907:7:0;;28895;;:20;;:11;:20::i;:::-;28885:7;:30;28881:61;;;28925:7;;28934;;28917:25;;;;;;;;28881:61;28961:7;;-1:-1:-1;28970:7:0;-1:-1:-1;28425:561:0;;;:::o;7079:278::-;7165:7;7200:12;7193:5;7185:28;;;;-1:-1:-1;;;7185:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7224:9;7240:1;7236;:5;;;;;;;7079:278;-1:-1:-1;;;;;7079:278:0:o;27434:395::-;27527:7;;;;27580:50;27626:3;27581:39;27626:3;27581:39;27582:7;27594:6;27582:11;:19::i;:::-;27581:25;;:39::i;27580:50::-;27565:65;-1:-1:-1;27641:13:0;27657:51;27704:3;27658:40;27704:3;27658:40;27659:7;27671;27659:11;:20::i;27657:51::-;27641:67;-1:-1:-1;27719:23:0;27745:28;27641:67;27745:17;:7;27757:4;27745:11;:17::i;:::-;:21;;:28::i;:::-;27719:54;27809:4;;-1:-1:-1;27815:5:0;;-1:-1:-1;27434:395:0;;-1:-1:-1;;;;;27434:395:0:o;27837:409::-;27947:7;;;;28003:24;:7;28015:11;28003;:24::i;:::-;27985:42;-1:-1:-1;28038:12:0;28053:21;:4;28062:11;28053:8;:21::i;:::-;28038:36;-1:-1:-1;28085:13:0;28101:22;:5;28111:11;28101:9;:22::i;:::-;28085:38;-1:-1:-1;28134:23:0;28160:28;28085:38;28160:17;:7;28172:4;28160:11;:17::i;:28::-;28207:7;;;;-1:-1:-1;28233:4:0;;-1:-1:-1;27837:409:0;;-1:-1:-1;;;;;;;27837:409:0:o;5504:471::-;5562:7;5807:6;5803:47;;-1:-1:-1;5837:1:0;5830:8;;5803:47;5874:5;;;5878:1;5874;:5;:1;5898:5;;;;;:10;5890:56;;;;-1:-1:-1;;;5890:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26674:274;26782:28;26804:5;26782:17;26794:4;26782:7;;:11;;:17;;;;:::i;:28::-;26772:7;:38;26834:10;;:20;;26849:4;26834:14;:20::i;:::-;26821:10;:33;26879:11;;:22;;26895:5;26879:15;:22::i;:::-;26865:11;:36;26922:7;;:18;;26934:5;26922:11;:18::i;:::-;26912:7;:28;-1:-1:-1;;;;26674:274:0:o

Swarm Source

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