BNB Price: $611.60 (-0.99%)
 

Overview

Max Total Supply

977,520,702,534,165.015551Olympic Doge

Holders

17,004

Market

Price

$0.00 @ 0.000000 BNB

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
805,989,795.638335360660734261 Olympic Doge

Value
$0.00
0x8D73f4127c5b154EB2dea5E10b7539c8b0C6E2f8
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
OlympicDoge

Compiler Version
v0.6.2+commit.bacdbe57

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at BscScan.com on 2021-10-22
*/

/**
 *Submitted for verification at BscScan.com on 2021-08-14
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

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

// File: openzeppelin-solidity\contracts\token\ERC20\IERC20.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

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

// File: openzeppelin-solidity\contracts\math\SafeMath.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

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

// File: openzeppelin-solidity\contracts\utils\Address.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

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

// File: openzeppelin-solidity\contracts\access\Ownable.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

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

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

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

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

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

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

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



pragma solidity ^0.6.0;

contract OlympicDoge 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;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private  _tTotal = 1000000000000000 * 10**18;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;
    
    uint256 private _tBurnTotal;

    string private _name = 'Olympic Doge';
    string private _symbol = 'Olympic Doge';
    uint8 private _decimals = 18;
    
    address private _burnPool = 0x000000000000000000000000000000000000dEaD;
    
    address private fundAddress = address(0xdbEbF9b398E63DfF4231856844Ad25FCdf208669);
    
    mapping(address => bool) private _isExcludedFromFee;
    
    
    uint256 public _taxFee = 6;
    uint256 private _previousTaxFee = _taxFee;
    uint256 public _burnFee = 4;
    uint256 private _previousBurnFee = _burnFee;
    uint256 public _fundFee = 2;
    uint256 private _previousFundFee = _fundFee;
     uint256 public  MAX_STOP_FEE_TOTAL = 300000000000000 * 10**uint256(_decimals);

    constructor () public {
        _rOwned[_msgSender()] = _rTotal;
        
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        
        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 reflect(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 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 setMaxStopFeeTotal(uint256 total) public onlyOwner {
        MAX_STOP_FEE_TOTAL = total;
        restoreAllFee();
    }

    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(_tTotal <= MAX_STOP_FEE_TOTAL) {
            removeAllFee();
            _transferStandard(sender, recipient, amount);
        } else {
        if(_isExcludedFromFee[sender])
            removeAllFee();
        
         _transferStandard(sender, recipient, amount);
         
         if(_isExcludedFromFee[sender])
            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 tFund) = _getValues(tAmount);
        
        
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);  
        
        _rOwned[fundAddress] = _rOwned[fundAddress].add(tFund.mul(currentRate));
        
        _reflectFee(rFee, tBurn.mul(currentRate), tFee, tBurn);
       
        emit Transfer(sender, recipient, tTransferAmount);
        
        emit Transfer(sender, _burnPool, tBurn);
        
        emit Transfer(sender, fundAddress, tFund);
    }


    function calculateTaxFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_taxFee).div(
            10 ** 2
        );
    }

   function calculateBurnFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_burnFee).div(
            10**2
        );
    }
    
    function calculateFundFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_fundFee).div(
            10 ** 2
        );
    }
    

    function removeAllFee() private {
        if(_taxFee == 0 && _burnFee == 0 && _fundFee == 0) return;
        _previousTaxFee = _taxFee;
        _previousBurnFee = _burnFee;
        _previousFundFee = _fundFee;
        _taxFee = 0;
        _burnFee = 0;
        _fundFee = 0;
    }
    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _burnFee = _previousBurnFee;
        _fundFee = _previousFundFee;
    }
    
    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }

    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }
    

    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) {
        (uint256 tTransferAmount, uint256 tFee, uint256 tBurn, uint256 tFund) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tBurn, tFund);
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tBurn,  tFund);
    }

    function _getTValues(uint256 tAmount) private view returns (uint256, uint256,uint256, uint256) {
        uint256 tFee = calculateTaxFee(tAmount);
        uint256 tBurn = calculateBurnFee(tAmount);
        uint256 tFund = calculateFundFee(tAmount);
        
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tBurn).sub(tFund);
        return (tTransferAmount, tFee, tBurn, tFund);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tBurn, uint256 tFund) private view returns (uint256, uint256, uint256) {
        
        uint256 currentRate =  _getRate();
        
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rBurn = tBurn.mul(currentRate);
        uint256 rFund = tFund.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rBurn).sub(rFund);
        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);
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"MAX_STOP_FEE_TOTAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_fundFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","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"}],"name":"reflect","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"total","type":"uint256"}],"name":"setMaxStopFeeTotal","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"}]

6d314dc6448d9338c15b0a000000006006556d20d190a98096d294893fffffffff1960075560c0604052600c60808190526b4f6c796d70696320446f676560a01b60a09081526200005491600a91906200027f565b5060408051808201909152600c8082526b4f6c796d70696320446f676560a01b60209092019182526200008a91600b916200027f565b50600c8054601260ff199091168117610100600160a81b03191662dead001791829055600d805473dbebf9b398e63dff4231856844ad25fcdf2086696001600160a01b03199091161790556006600f8190556010556004601181905590556002601381905560145560ff16600a0a660110d9316ec000026015553480156200011157600080fd5b506000620001276001600160e01b036200026b16565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600754600160006200018b6001600160e01b036200026b16565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506001600e6000620001c56200027060201b60201c565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff19958616179055308152600e909252902080549091166001179055620002186001600160e01b036200026b16565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6006546040518082815260200191505060405180910390a362000321565b335b90565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002c257805160ff1916838001178555620002f2565b82800160010185558215620002f2579182015b82811115620002f2578251825591602001919060010190620002d5565b506200030092915062000304565b5090565b6200026d91905b808211156200030057600081556001016200030b565b611da680620003316000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c806370a0823111610104578063cba0e996116100a2578063ed09743d11610071578063ed09743d14610523578063f2cc0c181461052b578063f2fde38b14610551578063f84354f114610577576101cf565b8063cba0e996146104a1578063d91eb81b146104c7578063dd62ed3e146104cf578063ea2f0b37146104fd576101cf565b806395d89b41116100de57806395d89b4114610439578063a457c2d714610441578063a9059cbb1461046d578063c0b0fda214610499576101cf565b806370a08231146103e7578063715018a61461040d5780638da5cb5b14610415576101cf565b80632d838119116101715780633b124fe71161014b5780633b124fe71461038c5780633c9f861d14610394578063437823ec1461039c5780634549b039146103c2576101cf565b80632d83811914610325578063313ce567146103425780633950935114610360576101cf565b80630ebf3f96116101ad5780630ebf3f96146102b057806313114a9d146102cd57806318160ddd146102e757806323b872dd146102ef576101cf565b8063053ab182146101d457806306fdde03146101f3578063095ea7b314610270575b600080fd5b6101f1600480360360208110156101ea57600080fd5b503561059d565b005b6101fb61068b565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561023557818101518382015260200161021d565b50505050905090810190601f1680156102625780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61029c6004803603604081101561028657600080fd5b506001600160a01b038135169060200135610721565b604080519115158252519081900360200190f35b6101f1600480360360208110156102c657600080fd5b503561073f565b6102d56107a7565b60408051918252519081900360200190f35b6102d56107ad565b61029c6004803603606081101561030557600080fd5b506001600160a01b038135811691602081013590911690604001356107b3565b6102d56004803603602081101561033b57600080fd5b5035610840565b61034a6108a8565b6040805160ff9092168252519081900360200190f35b61029c6004803603604081101561037657600080fd5b506001600160a01b0381351690602001356108b1565b6102d5610905565b6102d561090b565b6101f1600480360360208110156103b257600080fd5b50356001600160a01b0316610911565b6102d5600480360360408110156103d857600080fd5b5080359060200135151561098d565b6102d5600480360360208110156103fd57600080fd5b50356001600160a01b0316610a21565b6101f1610a83565b61041d610b25565b604080516001600160a01b039092168252519081900360200190f35b6101fb610b34565b61029c6004803603604081101561045757600080fd5b506001600160a01b038135169060200135610b95565b61029c6004803603604081101561048357600080fd5b506001600160a01b038135169060200135610c03565b6102d5610c17565b61029c600480360360208110156104b757600080fd5b50356001600160a01b0316610c1d565b6102d5610c3b565b6102d5600480360360408110156104e557600080fd5b506001600160a01b0381358116916020013516610c41565b6101f16004803603602081101561051357600080fd5b50356001600160a01b0316610c6c565b6102d5610ce5565b6101f16004803603602081101561054157600080fd5b50356001600160a01b0316610ceb565b6101f16004803603602081101561056757600080fd5b50356001600160a01b0316610e71565b6101f16004803603602081101561058d57600080fd5b50356001600160a01b0316610f69565b60006105a761112a565b6001600160a01b03811660009081526004602052604090205490915060ff16156106025760405162461bcd60e51b815260040180806020018281038252602c815260200180611d20602c913960400191505060405180910390fd5b600061060d8361112e565b5050506001600160a01b0386166000908152600160205260409020549394506106419392508491505063ffffffff61118116565b6001600160a01b03831660009081526001602052604090205560075461066d908263ffffffff61118116565b600755600854610683908463ffffffff6111ca16565b600855505050565b600a8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107175780601f106106ec57610100808354040283529160200191610717565b820191906000526020600020905b8154815290600101906020018083116106fa57829003601f168201915b5050505050905090565b600061073561072e61112a565b8484611224565b5060015b92915050565b61074761112a565b6000546001600160a01b03908116911614610797576040805162461bcd60e51b81526020600482018190526024820152600080516020611c8e833981519152604482015290519081900360640190fd5b60158190556107a4611310565b50565b60085490565b60065490565b60006107c0848484611324565b610836846107cc61112a565b61083185604051806060016040528060288152602001611c66602891396001600160a01b038a1660009081526003602052604081209061080a61112a565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61147216565b611224565b5060019392505050565b60006007548211156108835760405162461bcd60e51b815260040180806020018281038252602a815260200180611bd3602a913960400191505060405180910390fd5b600061088d611509565b905061089f838263ffffffff61153216565b9150505b919050565b600c5460ff1690565b60006107356108be61112a565b8461083185600360006108cf61112a565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6111ca16565b600f5481565b60095490565b61091961112a565b6000546001600160a01b03908116911614610969576040805162461bcd60e51b81526020600482018190526024820152600080516020611c8e833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600e60205260409020805460ff19166001179055565b60006006548311156109e6576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610a065760006109f68461112e565b5094965061073995505050505050565b6000610a118461112e565b5093965061073995505050505050565b6001600160a01b03811660009081526004602052604081205460ff1615610a6157506001600160a01b0381166000908152600260205260409020546108a3565b6001600160a01b03821660009081526001602052604090205461073990610840565b610a8b61112a565b6000546001600160a01b03908116911614610adb576040805162461bcd60e51b81526020600482018190526024820152600080516020611c8e833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b600b8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107175780601f106106ec57610100808354040283529160200191610717565b6000610735610ba261112a565b8461083185604051806060016040528060258152602001611d4c6025913960036000610bcc61112a565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61147216565b6000610735610c1061112a565b8484611324565b60115481565b6001600160a01b031660009081526004602052604090205460ff1690565b60135481565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610c7461112a565b6000546001600160a01b03908116911614610cc4576040805162461bcd60e51b81526020600482018190526024820152600080516020611c8e833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600e60205260409020805460ff19169055565b60155481565b610cf361112a565b6000546001600160a01b03908116911614610d43576040805162461bcd60e51b81526020600482018190526024820152600080516020611c8e833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff1615610db1576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415610e0b576001600160a01b038116600090815260016020526040902054610df190610840565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b610e7961112a565b6000546001600160a01b03908116911614610ec9576040805162461bcd60e51b81526020600482018190526024820152600080516020611c8e833981519152604482015290519081900360640190fd5b6001600160a01b038116610f0e5760405162461bcd60e51b8152600401808060200182810382526026815260200180611bfd6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610f7161112a565b6000546001600160a01b03908116911614610fc1576040805162461bcd60e51b81526020600482018190526024820152600080516020611c8e833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff1661102e576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b60055481101561112657816001600160a01b03166005828154811061105257fe5b6000918252602090912001546001600160a01b0316141561111e5760058054600019810190811061107f57fe5b600091825260209091200154600580546001600160a01b0390921691839081106110a557fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff1916905560058054806110f757fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611126565b600101611031565b5050565b3390565b60008060008060008060008060008060006111488c611574565b935093509350935060008060006111618f8787876115d5565b919f509d509b509599509397509195509350505050919395979092949650565b60006111c383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611472565b9392505050565b6000828201838110156111c3576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0383166112695760405162461bcd60e51b8152600401808060200182810382526024815260200180611cfc6024913960400191505060405180910390fd5b6001600160a01b0382166112ae5760405162461bcd60e51b8152600401808060200182810382526022815260200180611c236022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b601054600f55601254601155601454601355565b6001600160a01b0383166113695760405162461bcd60e51b8152600401808060200182810382526025815260200180611cd76025913960400191505060405180910390fd5b6001600160a01b0382166113ae5760405162461bcd60e51b8152600401808060200182810382526023815260200180611bb06023913960400191505060405180910390fd5b600081116113ed5760405162461bcd60e51b8152600401808060200182810382526029815260200180611cae6029913960400191505060405180910390fd5b6015546006541161141057611400611662565b61140b8383836116ab565b61146d565b6001600160a01b0383166000908152600e602052604090205460ff161561143957611439611662565b6114448383836116ab565b6001600160a01b0383166000908152600e602052604090205460ff161561146d5761146d611310565b505050565b600081848411156115015760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156114c65781810151838201526020016114ae565b50505050905090810190601f1680156114f35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006115166118b8565b909250905061152b828263ffffffff61153216565b9250505090565b60006111c383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611a2d565b600080600080600061158586611a92565b9050600061159287611aba565b9050600061159f88611ad6565b905060006115c5826115b985818d8963ffffffff61118116565b9063ffffffff61118116565b9993985091965094509092505050565b6000806000806115e3611509565b905060006115f7898363ffffffff611af216565b9050600061160b898463ffffffff611af216565b9050600061161f898563ffffffff611af216565b90506000611633898663ffffffff611af216565b9050600061164d826115b98581898963ffffffff61118116565b949d949c50929a509298505050505050505050565b600f541580156116725750601154155b801561167e5750601354155b15611688576116a9565b600f8054601055601180546012556013805460145560009283905590829055555b565b60006116b5611509565b905060008060008060008060006116cb8961112e565b965096509650965096509650965061171187600160008e6001600160a01b03166001600160a01b031681526020019081526020016000205461118190919063ffffffff16565b6001600160a01b03808d1660009081526001602052604080822093909355908c1681522054611746908763ffffffff6111ca16565b6001600160a01b038b16600090815260016020526040902055611799611772828a63ffffffff611af216565b600d546001600160a01b03166000908152600160205260409020549063ffffffff6111ca16565b600d546001600160a01b03166000908152600160205260409020556117cf856117c8848b63ffffffff611af216565b8585611b4b565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a3600c546040805184815290516001600160a01b036101009093048316928e16917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a3600d546040805183815290516001600160a01b03928316928e16917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a35050505050505050505050565b6007546006546000918291825b6005548110156119f5578260016000600584815481106118e157fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611946575081600260006005848154811061191f57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561195d5760075460065494509450505050611a29565b6119a3600160006005848154811061197157fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849063ffffffff61118116565b92506119eb60026000600584815481106119b957fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839063ffffffff61118116565b91506001016118c5565b50600654600754611a0b9163ffffffff61153216565b821015611a2357600754600654935093505050611a29565b90925090505b9091565b60008183611a7c5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156114c65781810151838201526020016114ae565b506000838581611a8857fe5b0495945050505050565b60006107396064611aae600f5485611af290919063ffffffff16565b9063ffffffff61153216565b60006107396064611aae60115485611af290919063ffffffff16565b60006107396064611aae60135485611af290919063ffffffff16565b600082611b0157506000610739565b82820282848281611b0e57fe5b04146111c35760405162461bcd60e51b8152600401808060200182810382526021815260200180611c456021913960400191505060405180910390fd5b611b64836115b98660075461118190919063ffffffff16565b600755600854611b7a908363ffffffff6111ca16565b600855600954611b90908263ffffffff6111ca16565b600955600654611ba6908263ffffffff61118116565b6006555050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220843d714cdda36b47c68ba945b176eeb3c27c225c055c8e36ede8efc7cb3f153464736f6c63430006020033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c806370a0823111610104578063cba0e996116100a2578063ed09743d11610071578063ed09743d14610523578063f2cc0c181461052b578063f2fde38b14610551578063f84354f114610577576101cf565b8063cba0e996146104a1578063d91eb81b146104c7578063dd62ed3e146104cf578063ea2f0b37146104fd576101cf565b806395d89b41116100de57806395d89b4114610439578063a457c2d714610441578063a9059cbb1461046d578063c0b0fda214610499576101cf565b806370a08231146103e7578063715018a61461040d5780638da5cb5b14610415576101cf565b80632d838119116101715780633b124fe71161014b5780633b124fe71461038c5780633c9f861d14610394578063437823ec1461039c5780634549b039146103c2576101cf565b80632d83811914610325578063313ce567146103425780633950935114610360576101cf565b80630ebf3f96116101ad5780630ebf3f96146102b057806313114a9d146102cd57806318160ddd146102e757806323b872dd146102ef576101cf565b8063053ab182146101d457806306fdde03146101f3578063095ea7b314610270575b600080fd5b6101f1600480360360208110156101ea57600080fd5b503561059d565b005b6101fb61068b565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561023557818101518382015260200161021d565b50505050905090810190601f1680156102625780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61029c6004803603604081101561028657600080fd5b506001600160a01b038135169060200135610721565b604080519115158252519081900360200190f35b6101f1600480360360208110156102c657600080fd5b503561073f565b6102d56107a7565b60408051918252519081900360200190f35b6102d56107ad565b61029c6004803603606081101561030557600080fd5b506001600160a01b038135811691602081013590911690604001356107b3565b6102d56004803603602081101561033b57600080fd5b5035610840565b61034a6108a8565b6040805160ff9092168252519081900360200190f35b61029c6004803603604081101561037657600080fd5b506001600160a01b0381351690602001356108b1565b6102d5610905565b6102d561090b565b6101f1600480360360208110156103b257600080fd5b50356001600160a01b0316610911565b6102d5600480360360408110156103d857600080fd5b5080359060200135151561098d565b6102d5600480360360208110156103fd57600080fd5b50356001600160a01b0316610a21565b6101f1610a83565b61041d610b25565b604080516001600160a01b039092168252519081900360200190f35b6101fb610b34565b61029c6004803603604081101561045757600080fd5b506001600160a01b038135169060200135610b95565b61029c6004803603604081101561048357600080fd5b506001600160a01b038135169060200135610c03565b6102d5610c17565b61029c600480360360208110156104b757600080fd5b50356001600160a01b0316610c1d565b6102d5610c3b565b6102d5600480360360408110156104e557600080fd5b506001600160a01b0381358116916020013516610c41565b6101f16004803603602081101561051357600080fd5b50356001600160a01b0316610c6c565b6102d5610ce5565b6101f16004803603602081101561054157600080fd5b50356001600160a01b0316610ceb565b6101f16004803603602081101561056757600080fd5b50356001600160a01b0316610e71565b6101f16004803603602081101561058d57600080fd5b50356001600160a01b0316610f69565b60006105a761112a565b6001600160a01b03811660009081526004602052604090205490915060ff16156106025760405162461bcd60e51b815260040180806020018281038252602c815260200180611d20602c913960400191505060405180910390fd5b600061060d8361112e565b5050506001600160a01b0386166000908152600160205260409020549394506106419392508491505063ffffffff61118116565b6001600160a01b03831660009081526001602052604090205560075461066d908263ffffffff61118116565b600755600854610683908463ffffffff6111ca16565b600855505050565b600a8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107175780601f106106ec57610100808354040283529160200191610717565b820191906000526020600020905b8154815290600101906020018083116106fa57829003601f168201915b5050505050905090565b600061073561072e61112a565b8484611224565b5060015b92915050565b61074761112a565b6000546001600160a01b03908116911614610797576040805162461bcd60e51b81526020600482018190526024820152600080516020611c8e833981519152604482015290519081900360640190fd5b60158190556107a4611310565b50565b60085490565b60065490565b60006107c0848484611324565b610836846107cc61112a565b61083185604051806060016040528060288152602001611c66602891396001600160a01b038a1660009081526003602052604081209061080a61112a565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61147216565b611224565b5060019392505050565b60006007548211156108835760405162461bcd60e51b815260040180806020018281038252602a815260200180611bd3602a913960400191505060405180910390fd5b600061088d611509565b905061089f838263ffffffff61153216565b9150505b919050565b600c5460ff1690565b60006107356108be61112a565b8461083185600360006108cf61112a565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6111ca16565b600f5481565b60095490565b61091961112a565b6000546001600160a01b03908116911614610969576040805162461bcd60e51b81526020600482018190526024820152600080516020611c8e833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600e60205260409020805460ff19166001179055565b60006006548311156109e6576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610a065760006109f68461112e565b5094965061073995505050505050565b6000610a118461112e565b5093965061073995505050505050565b6001600160a01b03811660009081526004602052604081205460ff1615610a6157506001600160a01b0381166000908152600260205260409020546108a3565b6001600160a01b03821660009081526001602052604090205461073990610840565b610a8b61112a565b6000546001600160a01b03908116911614610adb576040805162461bcd60e51b81526020600482018190526024820152600080516020611c8e833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b600b8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107175780601f106106ec57610100808354040283529160200191610717565b6000610735610ba261112a565b8461083185604051806060016040528060258152602001611d4c6025913960036000610bcc61112a565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61147216565b6000610735610c1061112a565b8484611324565b60115481565b6001600160a01b031660009081526004602052604090205460ff1690565b60135481565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610c7461112a565b6000546001600160a01b03908116911614610cc4576040805162461bcd60e51b81526020600482018190526024820152600080516020611c8e833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600e60205260409020805460ff19169055565b60155481565b610cf361112a565b6000546001600160a01b03908116911614610d43576040805162461bcd60e51b81526020600482018190526024820152600080516020611c8e833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff1615610db1576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415610e0b576001600160a01b038116600090815260016020526040902054610df190610840565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b610e7961112a565b6000546001600160a01b03908116911614610ec9576040805162461bcd60e51b81526020600482018190526024820152600080516020611c8e833981519152604482015290519081900360640190fd5b6001600160a01b038116610f0e5760405162461bcd60e51b8152600401808060200182810382526026815260200180611bfd6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610f7161112a565b6000546001600160a01b03908116911614610fc1576040805162461bcd60e51b81526020600482018190526024820152600080516020611c8e833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff1661102e576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b60055481101561112657816001600160a01b03166005828154811061105257fe5b6000918252602090912001546001600160a01b0316141561111e5760058054600019810190811061107f57fe5b600091825260209091200154600580546001600160a01b0390921691839081106110a557fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff1916905560058054806110f757fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611126565b600101611031565b5050565b3390565b60008060008060008060008060008060006111488c611574565b935093509350935060008060006111618f8787876115d5565b919f509d509b509599509397509195509350505050919395979092949650565b60006111c383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611472565b9392505050565b6000828201838110156111c3576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0383166112695760405162461bcd60e51b8152600401808060200182810382526024815260200180611cfc6024913960400191505060405180910390fd5b6001600160a01b0382166112ae5760405162461bcd60e51b8152600401808060200182810382526022815260200180611c236022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b601054600f55601254601155601454601355565b6001600160a01b0383166113695760405162461bcd60e51b8152600401808060200182810382526025815260200180611cd76025913960400191505060405180910390fd5b6001600160a01b0382166113ae5760405162461bcd60e51b8152600401808060200182810382526023815260200180611bb06023913960400191505060405180910390fd5b600081116113ed5760405162461bcd60e51b8152600401808060200182810382526029815260200180611cae6029913960400191505060405180910390fd5b6015546006541161141057611400611662565b61140b8383836116ab565b61146d565b6001600160a01b0383166000908152600e602052604090205460ff161561143957611439611662565b6114448383836116ab565b6001600160a01b0383166000908152600e602052604090205460ff161561146d5761146d611310565b505050565b600081848411156115015760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156114c65781810151838201526020016114ae565b50505050905090810190601f1680156114f35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006115166118b8565b909250905061152b828263ffffffff61153216565b9250505090565b60006111c383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611a2d565b600080600080600061158586611a92565b9050600061159287611aba565b9050600061159f88611ad6565b905060006115c5826115b985818d8963ffffffff61118116565b9063ffffffff61118116565b9993985091965094509092505050565b6000806000806115e3611509565b905060006115f7898363ffffffff611af216565b9050600061160b898463ffffffff611af216565b9050600061161f898563ffffffff611af216565b90506000611633898663ffffffff611af216565b9050600061164d826115b98581898963ffffffff61118116565b949d949c50929a509298505050505050505050565b600f541580156116725750601154155b801561167e5750601354155b15611688576116a9565b600f8054601055601180546012556013805460145560009283905590829055555b565b60006116b5611509565b905060008060008060008060006116cb8961112e565b965096509650965096509650965061171187600160008e6001600160a01b03166001600160a01b031681526020019081526020016000205461118190919063ffffffff16565b6001600160a01b03808d1660009081526001602052604080822093909355908c1681522054611746908763ffffffff6111ca16565b6001600160a01b038b16600090815260016020526040902055611799611772828a63ffffffff611af216565b600d546001600160a01b03166000908152600160205260409020549063ffffffff6111ca16565b600d546001600160a01b03166000908152600160205260409020556117cf856117c8848b63ffffffff611af216565b8585611b4b565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a3600c546040805184815290516001600160a01b036101009093048316928e16917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a3600d546040805183815290516001600160a01b03928316928e16917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a35050505050505050505050565b6007546006546000918291825b6005548110156119f5578260016000600584815481106118e157fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611946575081600260006005848154811061191f57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561195d5760075460065494509450505050611a29565b6119a3600160006005848154811061197157fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849063ffffffff61118116565b92506119eb60026000600584815481106119b957fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839063ffffffff61118116565b91506001016118c5565b50600654600754611a0b9163ffffffff61153216565b821015611a2357600754600654935093505050611a29565b90925090505b9091565b60008183611a7c5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156114c65781810151838201526020016114ae565b506000838581611a8857fe5b0495945050505050565b60006107396064611aae600f5485611af290919063ffffffff16565b9063ffffffff61153216565b60006107396064611aae60115485611af290919063ffffffff16565b60006107396064611aae60135485611af290919063ffffffff16565b600082611b0157506000610739565b82820282848281611b0e57fe5b04146111c35760405162461bcd60e51b8152600401808060200182810382526021815260200180611c456021913960400191505060405180910390fd5b611b64836115b98660075461118190919063ffffffff16565b600755600854611b7a908363ffffffff6111ca16565b600855600954611b90908263ffffffff6111ca16565b600955600654611ba6908263ffffffff61118116565b6006555050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220843d714cdda36b47c68ba945b176eeb3c27c225c055c8e36ede8efc7cb3f153464736f6c63430006020033

Deployed Bytecode Sourcemap

17938:11404:0:-:0;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17938:11404:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21758:378;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21758:378:0;;:::i;:::-;;19540:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;19540:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20452:161;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20452:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;23675:131;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23675:131:0;;:::i;21563:87::-;;;:::i;:::-;;;;;;;;;;;;;;;;19817:95;;;:::i;20621:313::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20621:313:0;;;;;;;;;;;;;;;;;:::i;22590:253::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22590:253:0;;:::i;19726:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20942:218;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20942:218:0;;;;;;;;:::i;18949:26::-;;;:::i;21662:88::-;;;:::i;26680:111::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26680:111:0;-1:-1:-1;;;;;26680:111:0;;:::i;22144:438::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22144:438:0;;;;;;;;;:::i;19920:198::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19920:198:0;-1:-1:-1;;;;;19920:198:0;;:::i;17353:148::-;;;:::i;16711:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;16711:79:0;;;;;;;;;;;;;;19631:87;;;:::i;21168:269::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21168:269:0;;;;;;;;:::i;20126:167::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20126:167:0;;;;;;;;:::i;19030:27::-;;;:::i;21445:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21445:110:0;-1:-1:-1;;;;;21445:110:0;;:::i;19114:27::-;;;:::i;20301:143::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20301:143:0;;;;;;;;;;:::i;26799:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26799:110:0;-1:-1:-1;;;;;26799:110:0;;:::i;19199:77::-;;;:::i;22851:332::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22851:332:0;-1:-1:-1;;;;;22851:332:0;;:::i;17656:244::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17656:244:0;-1:-1:-1;;;;;17656:244:0;;:::i;23191:478::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23191:478:0;-1:-1:-1;;;;;23191:478:0;;:::i;21758:378::-;21810:14;21827:12;:10;:12::i;:::-;-1:-1:-1;;;;;21859:19:0;;;;;;:11;:19;;;;;;21810:29;;-1:-1:-1;21859:19:0;;21858:20;21850:77;;;;-1:-1:-1;;;21850:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21939:15;21964:19;21975:7;21964:10;:19::i;:::-;-1:-1:-1;;;;;;;;22012:15:0;;;;;;:7;:15;;;;;;21938:45;;-1:-1:-1;22012:28:0;;:15;-1:-1:-1;21938:45:0;;-1:-1:-1;;22012:28:0;:19;:28;:::i;:::-;-1:-1:-1;;;;;21994:15:0;;;;;;:7;:15;;;;;:46;22061:7;;:20;;22073:7;22061:20;:11;:20;:::i;:::-;22051:7;:30;22105:10;;:23;;22120:7;22105:23;:14;:23;:::i;:::-;22092:10;:36;-1:-1:-1;;;21758:378:0:o;19540:83::-;19610:5;19603:12;;;;;;;;-1:-1:-1;;19603:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19577:13;;19603:12;;19610:5;;19603:12;;19610:5;19603:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19540:83;:::o;20452:161::-;20527:4;20544:39;20553:12;:10;:12::i;:::-;20567:7;20576:6;20544:8;:39::i;:::-;-1:-1:-1;20601:4:0;20452:161;;;;;:::o;23675:131::-;16933:12;:10;:12::i;:::-;16923:6;;-1:-1:-1;;;;;16923:6:0;;;:22;;;16915:67;;;;;-1:-1:-1;;;16915:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16915:67:0;;;;;;;;;;;;;;;23746:18:::1;:26:::0;;;23783:15:::1;:13;:15::i;:::-;23675:131:::0;:::o;21563:87::-;21632:10;;21563:87;:::o;19817:95::-;19897:7;;19817:95;:::o;20621:313::-;20719:4;20736:36;20746:6;20754:9;20765:6;20736:9;:36::i;:::-;20783:121;20792:6;20800:12;:10;:12::i;:::-;20814:89;20852:6;20814:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20814:19:0;;;;;;:11;:19;;;;;;20834:12;:10;:12::i;:::-;-1:-1:-1;;;;;20814:33:0;;;;;;;;;;;;-1:-1:-1;20814:33:0;;;:89;;:37;:89;:::i;:::-;20783:8;:121::i;:::-;-1:-1:-1;20922:4:0;20621:313;;;;;:::o;22590:253::-;22656:7;22695;;22684;:18;;22676:73;;;;-1:-1:-1;;;22676:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22760:19;22783:10;:8;:10::i;:::-;22760:33;-1:-1:-1;22811:24:0;:7;22760:33;22811:24;:11;:24;:::i;:::-;22804:31;;;22590:253;;;;:::o;19726:83::-;19792:9;;;;19726:83;:::o;20942:218::-;21030:4;21047:83;21056:12;:10;:12::i;:::-;21070:7;21079:50;21118:10;21079:11;:25;21091:12;:10;:12::i;:::-;-1:-1:-1;;;;;21079:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21079:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;18949:26::-;;;;:::o;21662:88::-;21731:11;;21662:88;:::o;26680:111::-;16933:12;:10;:12::i;:::-;16923:6;;-1:-1:-1;;;;;16923:6:0;;;:22;;;16915:67;;;;;-1:-1:-1;;;16915:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16915:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;26749:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;26749:34:0::1;26779:4;26749:34;::::0;;26680:111::o;22144:438::-;22234:7;22273;;22262;:18;;22254:62;;;;;-1:-1:-1;;;22254:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;22332:17;22327:248;;22367:15;22392:19;22403:7;22392:10;:19::i;:::-;-1:-1:-1;22366:45:0;;-1:-1:-1;22426:14:0;;-1:-1:-1;;;;;;22426:14:0;22327:248;22475:23;22507:19;22518:7;22507:10;:19::i;:::-;-1:-1:-1;22473:53:0;;-1:-1:-1;22541:22:0;;-1:-1:-1;;;;;;22541:22:0;19920:198;-1:-1:-1;;;;;20010:20:0;;19986:7;20010:20;;;:11;:20;;;;;;;;20006:49;;;-1:-1:-1;;;;;;20039:16:0;;;;;;:7;:16;;;;;;20032:23;;20006:49;-1:-1:-1;;;;;20093:16:0;;;;;;:7;:16;;;;;;20073:37;;:19;:37::i;17353:148::-;16933:12;:10;:12::i;:::-;16923:6;;-1:-1:-1;;;;;16923:6:0;;;:22;;;16915:67;;;;;-1:-1:-1;;;16915:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16915:67:0;;;;;;;;;;;;;;;17460:1:::1;17444:6:::0;;17423:40:::1;::::0;-1:-1:-1;;;;;17444:6:0;;::::1;::::0;17423:40:::1;::::0;17460:1;;17423:40:::1;17491:1;17474:19:::0;;-1:-1:-1;;;;;;17474:19:0::1;::::0;;17353:148::o;16711:79::-;16749:7;16776:6;-1:-1:-1;;;;;16776:6:0;16711:79;:::o;19631:87::-;19703:7;19696:14;;;;;;;;-1:-1:-1;;19696:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19670:13;;19696:14;;19703:7;;19696:14;;19703:7;19696:14;;;;;;;;;;;;;;;;;;;;;;;;21168:269;21261:4;21278:129;21287:12;:10;:12::i;:::-;21301:7;21310:96;21349:15;21310:96;;;;;;;;;;;;;;;;;:11;:25;21322:12;:10;:12::i;:::-;-1:-1:-1;;;;;21310:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21310:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;20126:167::-;20204:4;20221:42;20231:12;:10;:12::i;:::-;20245:9;20256:6;20221:9;:42::i;19030:27::-;;;;:::o;21445:110::-;-1:-1:-1;;;;;21527:20:0;21503:4;21527:20;;;:11;:20;;;;;;;;;21445:110::o;19114:27::-;;;;:::o;20301:143::-;-1:-1:-1;;;;;20409:18:0;;;20382:7;20409:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;20301:143::o;26799:110::-;16933:12;:10;:12::i;:::-;16923:6;;-1:-1:-1;;;;;16923:6:0;;;:22;;;16915:67;;;;;-1:-1:-1;;;16915:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16915:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;26866:27:0::1;26896:5;26866:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;26866:35:0::1;::::0;;26799:110::o;19199:77::-;;;;:::o;22851:332::-;16933:12;:10;:12::i;:::-;16923:6;;-1:-1:-1;;;;;16923:6:0;;;:22;;;16915:67;;;;;-1:-1:-1;;;16915:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16915:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;22933:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;22932:21;22924:61;;;::::0;;-1:-1:-1;;;22924:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;22999:16:0;::::1;23018:1;22999:16:::0;;;:7:::1;:16;::::0;;;;;:20;22996:108:::1;;-1:-1:-1::0;;;;;23075:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;23055:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;23036:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;22996:108:::1;-1:-1:-1::0;;;;;23114:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;23114:27:0::1;23137:4;23114:27:::0;;::::1;::::0;;;23152:9:::1;27:10:-1::0;;23:18;;::::1;45:23:::0;;23152::0;;;;::::1;::::0;;-1:-1:-1;;;;;;23152:23:0::1;::::0;;::::1;::::0;;22851:332::o;17656:244::-;16933:12;:10;:12::i;:::-;16923:6;;-1:-1:-1;;;;;16923:6:0;;;:22;;;16915:67;;;;;-1:-1:-1;;;16915:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16915:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;17745:22:0;::::1;17737:73;;;;-1:-1:-1::0;;;17737:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17847:6;::::0;;17826:38:::1;::::0;-1:-1:-1;;;;;17826:38:0;;::::1;::::0;17847:6;::::1;::::0;17826:38:::1;::::0;::::1;17875:6;:17:::0;;-1:-1:-1;;;;;;17875:17:0::1;-1:-1:-1::0;;;;;17875:17:0;;;::::1;::::0;;;::::1;::::0;;17656:244::o;23191:478::-;16933:12;:10;:12::i;:::-;16923:6;;-1:-1:-1;;;;;16923:6:0;;;:22;;;16915:67;;;;;-1:-1:-1;;;16915:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16915:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;23272:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;23264:60;;;::::0;;-1:-1:-1;;;23264:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;23340:9;23335:327;23359:9;:16:::0;23355:20;::::1;23335:327;;;23417:7;-1:-1:-1::0;;;;;23401:23:0::1;:9;23411:1;23401:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;23401:12:0::1;:23;23397:254;;;23460:9;23470:16:::0;;-1:-1:-1;;23470:20:0;;;23460:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;23445:9:::1;:12:::0;;-1:-1:-1;;;;;23460:31:0;;::::1;::::0;23455:1;;23445:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;23445:46:0::1;-1:-1:-1::0;;;;;23445:46:0;;::::1;;::::0;;23510:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;23549:11:::1;:20:::0;;;;:28;;-1:-1:-1;;23549:28:0::1;::::0;;23596:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;23596:15:0;;;;;-1:-1:-1;;;;;;23596:15:0::1;::::0;;;;;23630:5:::1;;23397:254;23377:3;;23335:327;;;;23191:478:::0;:::o;675:106::-;763:10;675:106;:::o;27227:431::-;27286:7;27295;27304;27313;27322;27331;27340;27361:23;27386:12;27400:13;27415;27432:20;27444:7;27432:11;:20::i;:::-;27360:92;;;;;;;;27464:15;27481:23;27506:12;27522:40;27534:7;27543:4;27549:5;27556;27522:11;:40::i;:::-;27463:99;;-1:-1:-1;27463:99:0;-1:-1:-1;27463:99:0;-1:-1:-1;27613:15:0;;-1:-1:-1;27630:4:0;;-1:-1:-1;27636:5:0;;-1:-1:-1;27644:5:0;-1:-1:-1;;;;27227:431:0;;;;;;;;;:::o;5299:136::-;5357:7;5384:43;5388:1;5391;5384:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;5377:50;5299:136;-1:-1:-1;;;5299:136:0:o;4835:181::-;4893:7;4925:5;;;4949:6;;;;4941:46;;;;;-1:-1:-1;;;4941:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;23814:337;-1:-1:-1;;;;;23907:19:0;;23899:68;;;;-1:-1:-1;;;23899:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23986:21:0;;23978:68;;;;-1:-1:-1;;;23978:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24059:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;24111:32;;;;;;;;;;;;;;;;;23814:337;;;:::o;26515:153::-;26569:15;;26559:7;:25;26606:16;;26595:8;:27;26644:16;;26633:8;:27;26515:153::o;24159:716::-;-1:-1:-1;;;;;24256:20:0;;24248:70;;;;-1:-1:-1;;;24248:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24337:23:0;;24329:71;;;;-1:-1:-1;;;24329:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24428:1;24419:6;:10;24411:64;;;;-1:-1:-1;;;24411:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24511:18;;24500:7;;:29;24497:369;;24546:14;:12;:14::i;:::-;24575:44;24593:6;24601:9;24612:6;24575:17;:44::i;:::-;24497:369;;;-1:-1:-1;;;;;24651:26:0;;;;;;:18;:26;;;;;;;;24648:58;;;24692:14;:12;:14::i;:::-;24728:44;24746:6;24754:9;24765:6;24728:17;:44::i;:::-;-1:-1:-1;;;;;24798:26:0;;;;;;:18;:26;;;;;;;;24795:59;;;24839:15;:13;:15::i;:::-;24159:716;;;:::o;5738:192::-;5824:7;5860:12;5852:6;;;;5844:29;;;;-1:-1:-1;;;5844:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;5844:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5896:5:0;;;5738:192::o;28607:163::-;28648:7;28669:15;28686;28705:19;:17;:19::i;:::-;28668:56;;-1:-1:-1;28668:56:0;-1:-1:-1;28742:20:0;28668:56;;28742:20;:11;:20;:::i;:::-;28735:27;;;;28607:163;:::o;7136:132::-;7194:7;7221:39;7225:1;7228;7221:39;;;;;;;;;;;;;;;;;:3;:39::i;27666:398::-;27726:7;27735;27743;27752;27772:12;27787:24;27803:7;27787:15;:24::i;:::-;27772:39;;27822:13;27838:25;27855:7;27838:16;:25::i;:::-;27822:41;;27874:13;27890:25;27907:7;27890:16;:25::i;:::-;27874:41;-1:-1:-1;27936:23:0;27962:39;27874:41;27962:28;27984:5;27962:28;:7;27974:4;27962:17;:11;:17;:::i;:::-;:21;:28;:21;:28;:::i;:39::-;27936:65;28037:4;;-1:-1:-1;28043:5:0;;-1:-1:-1;28043:5:0;-1:-1:-1;27666:398:0;;-1:-1:-1;;;27666:398:0:o;28072:527::-;28176:7;28185;28194;28224:19;28247:10;:8;:10::i;:::-;28224:33;-1:-1:-1;28278:15:0;28296:24;:7;28224:33;28296:24;:11;:24;:::i;:::-;28278:42;-1:-1:-1;28331:12:0;28346:21;:4;28355:11;28346:21;:8;:21;:::i;:::-;28331:36;-1:-1:-1;28378:13:0;28394:22;:5;28404:11;28394:22;:9;:22;:::i;:::-;28378:38;-1:-1:-1;28427:13:0;28443:22;:5;28453:11;28443:22;:9;:22;:::i;:::-;28427:38;-1:-1:-1;28476:23:0;28502:39;28427:38;28502:28;28524:5;28502:28;:7;28514:4;28502:17;:11;:17;:::i;:39::-;28560:7;;;;-1:-1:-1;28586:4:0;;-1:-1:-1;28072:527:0;;-1:-1:-1;;;;;;;;;28072:527:0:o;26221:288::-;26267:7;;:12;:29;;;;-1:-1:-1;26283:8:0;;:13;26267:29;:46;;;;-1:-1:-1;26300:8:0;;:13;26267:46;26264:58;;;26315:7;;26264:58;26350:7;;;26332:15;:25;26387:8;;;26368:16;:27;26425:8;;;26406:16;:27;-1:-1:-1;26444:11:0;;;;26466:12;;;;26489;26221:288;:::o;24883:825::-;24991:19;25014:10;:8;:10::i;:::-;24991:33;;25036:15;25053:23;25078:12;25092:23;25117:12;25131:13;25146;25163:19;25174:7;25163:10;:19::i;:::-;25035:147;;;;;;;;;;;;;;25231:28;25251:7;25231;:15;25239:6;-1:-1:-1;;;;;25231:15:0;-1:-1:-1;;;;;25231:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;25213:15:0;;;;;;;:7;:15;;;;;;:46;;;;25301:18;;;;;;;:39;;25324:15;25301:39;:22;:39;:::i;:::-;-1:-1:-1;;;;;25280:18:0;;;;;;:7;:18;;;;;:60;25386:48;25411:22;:5;25421:11;25411:22;:9;:22;:::i;:::-;25394:11;;-1:-1:-1;;;;;25394:11:0;25386:20;;;;:7;:20;;;;;;;:48;:24;:48;:::i;:::-;25371:11;;-1:-1:-1;;;;;25371:11:0;25363:20;;;;:7;:20;;;;;:71;25455:54;25467:4;25473:22;:5;25483:11;25473:22;:9;:22;:::i;:::-;25497:4;25503:5;25455:11;:54::i;:::-;25551:9;-1:-1:-1;;;;;25534:44:0;25543:6;-1:-1:-1;;;;;25534:44:0;;25562:15;25534:44;;;;;;;;;;;;;;;;;;25621:9;;25604:34;;;;;;;;-1:-1:-1;;;;;25621:9:0;;;;;;;25604:34;;;;;;;;;;;;;25681:11;;25664:36;;;;;;;;-1:-1:-1;;;;;25681:11:0;;;;25664:36;;;;;;;;;;;;;24883:825;;;;;;;;;;;:::o;28778:561::-;28875:7;;28911;;28828;;;;;28935:289;28959:9;:16;28955:20;;28935:289;;;29025:7;29001;:21;29009:9;29019:1;29009:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29009:12:0;29001:21;;;;;;;;;;;;;:31;;:66;;;29060:7;29036;:21;29044:9;29054:1;29044:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29044:12:0;29036:21;;;;;;;;;;;;;:31;29001:66;28997:97;;;29077:7;;29086;;29069:25;;;;;;;;;28997:97;29119:34;29131:7;:21;29139:9;29149:1;29139:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29139:12:0;29131:21;;;;;;;;;;;;;29119:7;;:34;:11;:34;:::i;:::-;29109:44;;29178:34;29190:7;:21;29198:9;29208:1;29198:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29198:12:0;29190:21;;;;;;;;;;;;;29178:7;;:34;:11;:34;:::i;:::-;29168:44;-1:-1:-1;28977:3:0;;28935:289;;;-1:-1:-1;29260:7:0;;29248;;:20;;;:11;:20;:::i;:::-;29238:7;:30;29234:61;;;29278:7;;29287;;29270:25;;;;;;;;29234:61;29314:7;;-1:-1:-1;29323:7:0;-1:-1:-1;28778:561:0;;;:::o;7764:278::-;7850:7;7885:12;7878:5;7870:28;;;;-1:-1:-1;;;7870:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;7870:28:0;;7909:9;7925:1;7921;:5;;;;;;;7764:278;-1:-1:-1;;;;;7764:278:0:o;25718:156::-;25782:7;25809:57;25848:7;25809:20;25821:7;;25809;:11;;:20;;;;:::i;:::-;:24;:57;:24;:57;:::i;25881:156::-;25946:7;25973:56;26013:5;25973:21;25985:8;;25973:7;:11;;:21;;;;:::i;26049:158::-;26114:7;26141:58;26181:7;26141:21;26153:8;;26141:7;:11;;:21;;;;:::i;6189:471::-;6247:7;6492:6;6488:47;;-1:-1:-1;6522:1:0;6515:8;;6488:47;6559:5;;;6563:1;6559;:5;:1;6583:5;;;;;:10;6575:56;;;;-1:-1:-1;;;6575:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26923:284;27031:28;27053:5;27031:17;27043:4;27031:7;;:11;;:17;;;;:::i;:28::-;27021:7;:38;27083:10;;:20;;27098:4;27083:20;:14;:20;:::i;:::-;27070:10;:33;27128:11;;:22;;27144:5;27128:22;:15;:22;:::i;:::-;27114:11;:36;27181:7;;:18;;27193:5;27181:18;:11;:18;:::i;:::-;27171:7;:28;-1:-1:-1;;;;26923:284:0:o

Swarm Source

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