ETH Price: $3,458.51 (-1.81%)
Gas: 3 Gwei

Token

infinityprotocol.io (INFINITY)
 

Overview

Max Total Supply

98,619,094.41014076 INFINITY

Holders

549

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Filtered by Token Holder
slowdeepandhard.eth
Balance
20,830.40447128 INFINITY

Value
$0.00
0xe892ff52b7c99fae2f88ae2e591013905832bd9c
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:
InfinityProtocol

Compiler Version
v0.7.4+commit.3f05b770

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : InfinityProtocol.sol
pragma solidity 0.7.4;

import "@openzeppelin/contracts/GSN/Context.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "./IInfinityProtocol.sol";

contract InfinityProtocol is IInfinityProtocol, Context, Ownable {

    using SafeMath for uint;
    using Address for address;

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

    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
    address public feeReceiver;
    address public router;
    uint public maxCycles;

    string  private constant _NAME = "infinityprotocol.io";
    string  private constant _SYMBOL = "INFINITY";
    uint8   private constant _DECIMALS = 8;

    uint private constant _MAX = ~uint(0);
    uint private constant _DECIMALFACTOR = 10 ** uint(_DECIMALS);
    uint private constant _GRANULARITY = 100;

    uint private _tTotal = 100000000 * _DECIMALFACTOR;
    uint private _rTotal = (_MAX - (_MAX % _tTotal));

    uint private _tFeeTotal;
    uint private _tBurnTotal;
    uint private _infinityCycle;

    uint private _tTradeCycle;
    uint private _tBurnCycle;

    uint private _BURN_FEE;
    uint private _FOT_FEE;
    bool private _feeSet;

    uint private constant _MAX_TX_SIZE = 100000000 * _DECIMALFACTOR;

    constructor (address _router) public {
        _rOwned[_msgSender()] = _rTotal;
        router = _router;
        setMaxCycles(500);
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

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

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

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

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

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

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

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

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

    function transferFrom(address sender, address recipient, uint 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, uint addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint 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 (uint) {
        return _tFeeTotal;
    }

    function totalBurn() public view returns (uint) {
        return _tBurnTotal;
    }

    function setFeeReceiver(address receiver) external onlyOwner() returns (bool) {
        require(receiver != address(0), "Zero address not allowed");
        feeReceiver = receiver;
        return true;
    }

    function totalBurnWithFees() public view returns (uint) {
        return _tBurnTotal.add(_tFeeTotal);
    }

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

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

    function excludeAccount(address account) external onlyOwner() {
        require(!_isExcluded[account], "Account is already excluded");
        require(account != router, 'Not allowed to exclude router');
        require(account != feeReceiver, "Can not exclude fee receiver");
        if (_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

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

        // @dev once all cycles are completed, burn fee will be set to 0 and the protocol
        // reaches its final phase, in which no further supply elasticity will take place
        // and fees will stay at 0

        if (sender != owner() && recipient != owner())
            require(amount <= _MAX_TX_SIZE, "Transfer amount exceeds the maxTxAmount.");

        // @dev 50% fee is burn fee, 50% is fot
        if (_BURN_FEE >= 250) {

            _tTradeCycle = _tTradeCycle.add(amount);


        // @dev adjust current burnFee/fotFee depending on the traded tokens
            if (_tTradeCycle >= (0 * _DECIMALFACTOR) && _tTradeCycle <= (1000000 * _DECIMALFACTOR)) {
                _setFees(500);
            } else if (_tTradeCycle > (1000000 * _DECIMALFACTOR) && _tTradeCycle <= (2000000 * _DECIMALFACTOR)) {
                _setFees(550);
            }   else if (_tTradeCycle > (2000000 * _DECIMALFACTOR) && _tTradeCycle <= (3000000 * _DECIMALFACTOR)) {
                _setFees(600);
            }   else if (_tTradeCycle > (3000000 * _DECIMALFACTOR) && _tTradeCycle <= (4000000 * _DECIMALFACTOR)) {
                _setFees(650);
            } else if (_tTradeCycle > (4000000 * _DECIMALFACTOR) && _tTradeCycle <= (5000000 * _DECIMALFACTOR)) {
                _setFees(700);
            } else if (_tTradeCycle > (5000000 * _DECIMALFACTOR) && _tTradeCycle <= (6000000 * _DECIMALFACTOR)) {
                _setFees(750);
            } else if (_tTradeCycle > (6000000 * _DECIMALFACTOR) && _tTradeCycle <= (7000000 * _DECIMALFACTOR)) {
                _setFees(800);
            } else if (_tTradeCycle > (7000000 * _DECIMALFACTOR) && _tTradeCycle <= (8000000 * _DECIMALFACTOR)) {
                _setFees(850);
            } else if (_tTradeCycle > (8000000 * _DECIMALFACTOR) && _tTradeCycle <= (9000000 * _DECIMALFACTOR)) {
                _setFees(900);
            } else if (_tTradeCycle > (9000000 * _DECIMALFACTOR) && _tTradeCycle <= (10000000 * _DECIMALFACTOR)) {
                _setFees(950);
            } else if (_tTradeCycle > (10000000 * _DECIMALFACTOR) && _tTradeCycle <= (11000000 * _DECIMALFACTOR)) {
                _setFees(1000);
            } else if (_tTradeCycle > (11000000 * _DECIMALFACTOR) && _tTradeCycle <= (12000000 * _DECIMALFACTOR)) {
                _setFees(1050);
            } else if (_tTradeCycle > (12000000 * _DECIMALFACTOR) && _tTradeCycle <= (13000000 * _DECIMALFACTOR)) {
                _setFees(1100);
            } else if (_tTradeCycle > (13000000 * _DECIMALFACTOR) && _tTradeCycle <= (14000000 * _DECIMALFACTOR)) {
                _setFees(1150);
            } else if (_tTradeCycle > (14000000 * _DECIMALFACTOR)) {
                _setFees(1200);
            }
        }

        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, uint transferAmount) private {
        uint currentRate =  _getRate();
        (uint rAmount, uint rTransferAmount, uint rFee, uint tTransferAmount, uint transferFee, uint transferBurn) = _getValues(transferAmount);
        uint rBurn =  transferBurn.mul(currentRate);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);

        _rOwned[feeReceiver] = _rOwned[feeReceiver].add(rFee);

        _burnAndRebase(rBurn, transferFee, transferBurn);
        emit Transfer(sender, recipient, tTransferAmount);

        if (transferFee > 0) {
            emit Transfer(sender, feeReceiver, transferFee);
        }
    }

    function _transferToExcluded(address sender, address recipient, uint transferAmount) private {
        uint currentRate =  _getRate();
        (uint rAmount, uint rTransferAmount, uint rFee, uint tTransferAmount, uint transferFee, uint transferBurn) = _getValues(transferAmount);
        uint rBurn =  transferBurn.mul(currentRate);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);

        _rOwned[feeReceiver] = _rOwned[feeReceiver].add(rFee);

        _burnAndRebase(rBurn, transferFee, transferBurn);
        emit Transfer(sender, recipient, tTransferAmount);

        if (transferFee > 0) {
            emit Transfer(sender, feeReceiver, transferFee);
        }
    }

    function _transferFromExcluded(address sender, address recipient, uint transferAmount) private {
        uint currentRate =  _getRate();
        (uint rAmount, uint rTransferAmount, uint rFee, uint tTransferAmount, uint transferFee, uint transferBurn) = _getValues(transferAmount);
        uint rBurn =  transferBurn.mul(currentRate);
        _tOwned[sender] = _tOwned[sender].sub(transferAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);

        _rOwned[feeReceiver] = _rOwned[feeReceiver].add(rFee);

        _burnAndRebase(rBurn, transferFee, transferBurn);
        emit Transfer(sender, recipient, tTransferAmount);

        if (transferFee > 0) {
            emit Transfer(sender, feeReceiver, transferFee);
        }
    }

    function _transferBothExcluded(address sender, address recipient, uint transferAmount) private {
        uint currentRate =  _getRate();
        (uint rAmount, uint rTransferAmount, uint rFee, uint tTransferAmount, uint transferFee, uint transferBurn) = _getValues(transferAmount);
        uint rBurn =  transferBurn.mul(currentRate);
        _tOwned[sender] = _tOwned[sender].sub(transferAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);

        _rOwned[feeReceiver] = _rOwned[feeReceiver].add(rFee);

        _burnAndRebase(rBurn, transferFee, transferBurn);
        emit Transfer(sender, recipient, tTransferAmount);

        if (transferFee > 0) {
            emit Transfer(sender, feeReceiver, transferFee);
        }
    }

    function _burnAndRebase(uint rBurn, uint transferFee, uint transferBurn) private {
        _rTotal = _rTotal.sub(rBurn);
        _tFeeTotal = _tFeeTotal.add(transferFee);
        _tBurnTotal = _tBurnTotal.add(transferBurn);
        _tBurnCycle = _tBurnCycle.add(transferBurn).add(transferFee);
        _tTotal = _tTotal.sub(transferBurn);


        // @dev after 1,275,000 tokens burnt, supply is expanded by 500,000 tokens 
        if (_tBurnCycle >= (1275000 * _DECIMALFACTOR)) {
                //set rebase percent
                uint _tRebaseDelta = 500000 * _DECIMALFACTOR;
                _tBurnCycle = _tBurnCycle.sub((1275000 * _DECIMALFACTOR));
                _tTradeCycle = 0;
                _setFees(500);

                _rebase(_tRebaseDelta);
        }
    }

    function burn(uint amount) external override returns (bool) {
        address sender  = _msgSender();
        uint balance = balanceOf(sender);
        require(balance >= amount, "Cannot burn more than on balance");
        require(sender == feeReceiver, "Only feeReceiver");

        uint rBurn =  amount.mul(_getRate());
        _rTotal = _rTotal.sub(rBurn);
        _rOwned[sender] = _rOwned[sender].sub(rBurn);

        _tBurnTotal = _tBurnTotal.add(amount);
        _tTotal = _tTotal.sub(amount);

        emit Transfer(sender, address(0), amount);
        return true;
    }

    function _getValues(uint transferAmount) private view returns (uint, uint, uint, uint, uint, uint) {
        (uint tTransferAmount, uint transferFee, uint transferBurn) = _getTValues(transferAmount, _FOT_FEE, _BURN_FEE);
        (uint rAmount, uint rTransferAmount, uint rFee) = _getRValues(transferAmount, transferFee, transferBurn);
        return (rAmount, rTransferAmount, rFee, tTransferAmount, transferFee, transferBurn);
    }

    function _getTValues(uint transferAmount, uint fotFee, uint burnFee) private pure returns (uint, uint, uint) {
        uint transferFee = ((transferAmount.mul(fotFee)).div(_GRANULARITY)).div(100);
        uint transferBurn = ((transferAmount.mul(burnFee)).div(_GRANULARITY)).div(100);
        uint tTransferAmount = transferAmount.sub(transferFee).sub(transferBurn);
        return (tTransferAmount, transferFee, transferBurn);
    }

    function _getRValues(uint transferAmount, uint transferFee, uint transferBurn) private view returns (uint, uint, uint) {
        uint currentRate =  _getRate();
        uint rAmount = transferAmount.mul(currentRate);
        uint rFee = transferFee.mul(currentRate);
        uint rBurn = transferBurn.mul(currentRate);
        uint rTransferAmount = rAmount.sub(rFee).sub(rBurn);
        return (rAmount, rTransferAmount, rFee);
    }

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

    function _getCurrentSupply() private view returns(uint, uint) {
        uint rSupply = _rTotal;
        uint tSupply = _tTotal;
        for (uint 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 _setFees(uint fee) private {
        require(fee >= 0 && fee <= 1500, "fee should be in 0 - 15%");
        if (_BURN_FEE == fee.div(2)) {
            return;
        }

        _BURN_FEE = fee.div(2);
        _FOT_FEE = fee.div(2);
    }

    function setInitialFee() external onlyOwner() {
        require(!_feeSet, "Initial fee already set");
        _setFees(500);
        _feeSet = true;
    }

    function setMaxCycles(uint _maxCycles) public onlyOwner() {
        require(_maxCycles >= _infinityCycle, "Can not set more than current cycle");
        maxCycles = _maxCycles;
    }

    function getBurnFee() public view returns(uint)  {
        return _BURN_FEE;
    }

    function getFee() public view returns(uint)  {
        return _FOT_FEE;
    }

    function _getMaxTxAmount() private pure returns(uint) {
        return _MAX_TX_SIZE;
    }

    function getCycle() public view returns(uint) {
        return _infinityCycle;
    }

    function getBurnCycle() public view returns(uint) {
        return _tBurnCycle;
    }

    function getTradedCycle() public view returns(uint) {
        return _tTradeCycle;
    }

    function _rebase(uint supplyDelta) internal {
        _infinityCycle = _infinityCycle.add(1);
        _tTotal = _tTotal.add(supplyDelta);

        if (_infinityCycle > maxCycles) {
            _setFees(0);
        }
    }
}

File 2 of 8 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "../utils/Context.sol";

File 3 of 8 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "../utils/Context.sol";
/**
 * @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.
 */
abstract 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 virtual 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;
    }
}

File 4 of 8 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.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, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @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) {
        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, reverting 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) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * 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);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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 5 of 8 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.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) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @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");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        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 6 of 8 : IInfinityProtocol.sol
import "./IERC20.sol";

interface IInfinityProtocol is IERC20 {
    function burn(uint amount) external returns (bool);
}

File 7 of 8 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.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 8 of 8 : IERC20.sol
pragma solidity 0.7.4;

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_router","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":[],"name":"feeReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBurnCycle","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCycle","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTradedCycle","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"maxCycles","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"transferAmount","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":"router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"setFeeReceiver","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setInitialFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxCycles","type":"uint256"}],"name":"setMaxCycles","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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":"totalBurnWithFees","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"}]

6080604052662386f26fc10000600955660e3d2cfe61ffff19600a553480156200002857600080fd5b50604051620027f6380380620027f6833981810160405260208110156200004e57600080fd5b505160006200005c62000158565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600a5460016000620000b762000158565b6001600160a01b039081168252602082019290925260400160002091909155600780546001600160a01b031916918316919091179055620000fa6101f46200015c565b6200010462000158565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040518082815260200191505060405180910390a3506200022c565b3390565b6200016662000158565b6001600160a01b0316620001796200021d565b6001600160a01b031614620001d5576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600d54811015620002185760405162461bcd60e51b8152600401808060200182810382526023815260200180620027d36023913960400191505060405180910390fd5b600855565b6000546001600160a01b031690565b612597806200023c6000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c80638ccb31b61161011a578063cba0e996116100ad578063efdcd9741161007c578063efdcd9741461053e578063f2cc0c1814610564578063f2fde38b1461058a578063f84354f1146105b0578063f887ea40146105d657610206565b8063cba0e996146104da578063ced72f8714610500578063d8f8cc2d14610508578063dd62ed3e1461051057610206565b8063a457c2d7116100e9578063a457c2d714610472578063a9059cbb1461049e578063aa4b10d1146104ca578063b3f00674146104d257610206565b80638ccb31b6146104365780638da5cb5b1461043e57806395d89b4114610462578063a0d4398b1461046a57610206565b8063376805211161019d5780634549b0391161016c5780634549b039146103d3578063655bce22146103f857806368c33e211461040057806370a0823114610408578063715018a61461042e57610206565b8063376805211461037a57806339509351146103825780633c9f861d146103ae57806342966c68146103b657610206565b806318160ddd116101d957806318160ddd1461030157806323b872dd146103095780632d8381191461033f578063313ce5671461035c57610206565b806306fdde031461020b578063088b96c214610288578063095ea7b3146102a757806313114a9d146102e7575b600080fd5b6102136105de565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561024d578181015183820152602001610235565b50505050905090810190601f16801561027a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102a56004803603602081101561029e57600080fd5b503561060b565b005b6102d3600480360360408110156102bd57600080fd5b506001600160a01b0381351690602001356106b3565b604080519115158252519081900360200190f35b6102ef6106d1565b60408051918252519081900360200190f35b6102ef6106d7565b6102d36004803603606081101561031f57600080fd5b506001600160a01b038135811691602081013590911690604001356106dd565b6102ef6004803603602081101561035557600080fd5b5035610764565b6103646107c6565b6040805160ff9092168252519081900360200190f35b6102ef6107cb565b6102d36004803603604081101561039857600080fd5b506001600160a01b0381351690602001356107d1565b6102ef61081f565b6102d3600480360360208110156103cc57600080fd5b5035610825565b6102ef600480360360408110156103e957600080fd5b508035906020013515156109b8565b6102ef610a4a565b6102ef610a50565b6102ef6004803603602081101561041e57600080fd5b50356001600160a01b0316610a6e565b6102a5610ad0565b6102ef610b7c565b610446610b82565b604080516001600160a01b039092168252519081900360200190f35b610213610b91565b6102ef610bb3565b6102d36004803603604081101561048857600080fd5b506001600160a01b038135169060200135610bb9565b6102d3600480360360408110156104b457600080fd5b506001600160a01b038135169060200135610c21565b6102ef610c35565b610446610c3b565b6102d3600480360360208110156104f057600080fd5b50356001600160a01b0316610c4a565b6102ef610c68565b6102a5610c6e565b6102ef6004803603604081101561052657600080fd5b506001600160a01b0381358116916020013516610d42565b6102d36004803603602081101561055457600080fd5b50356001600160a01b0316610d6d565b6102a56004803603602081101561057a57600080fd5b50356001600160a01b0316610e51565b6102a5600480360360208110156105a057600080fd5b50356001600160a01b03166110a7565b6102a5600480360360208110156105c657600080fd5b50356001600160a01b03166111a9565b610446611374565b604080518082019091526013815272696e66696e69747970726f746f636f6c2e696f60681b602082015290565b610613611383565b6001600160a01b0316610624610b82565b6001600160a01b03161461066d576040805162461bcd60e51b815260206004820181905260248201526000805160206124ab833981519152604482015290519081900360640190fd5b600d548110156106ae5760405162461bcd60e51b81526004018080602001828103825260238152602001806124176023913960400191505060405180910390fd5b600855565b60006106c76106c0611383565b8484611387565b5060015b92915050565b600b5490565b60095490565b60006106ea848484611473565b61075a846106f6611383565b61075585604051806060016040528060288152602001612483602891396001600160a01b038a16600090815260036020526040812090610734611383565b6001600160a01b0316815260208101919091526040016000205491906119f1565b611387565b5060019392505050565b6000600a548211156107a75760405162461bcd60e51b815260040180806020018281038252602a8152602001806123a5602a913960400191505060405180910390fd5b60006107b1611a88565b90506107bd8382611aab565b9150505b919050565b600890565b60085481565b60006106c76107de611383565b8461075585600360006107ef611383565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611b12565b600c5490565b600080610830611383565b9050600061083d82610a6e565b905083811015610894576040805162461bcd60e51b815260206004820181905260248201527f43616e6e6f74206275726e206d6f7265207468616e206f6e2062616c616e6365604482015290519081900360640190fd5b6006546001600160a01b038381169116146108e9576040805162461bcd60e51b815260206004820152601060248201526f27b7363c903332b2a932b1b2b4bb32b960811b604482015290519081900360640190fd5b60006108fd6108f6611a88565b8690611b73565b600a5490915061090d9082611bcc565b600a556001600160a01b0383166000908152600160205260409020546109339082611bcc565b6001600160a01b038416600090815260016020526040902055600c546109599086611b12565b600c556009546109699086611bcc565b6009556040805186815290516000916001600160a01b038616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3506001949350505050565b6000600954831115610a11576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610a30576000610a2184611c29565b509395506106cb945050505050565b6000610a3b84611c29565b509295506106cb945050505050565b600d5490565b6000610a69600b54600c54611b1290919063ffffffff16565b905090565b6001600160a01b03811660009081526004602052604081205460ff1615610aae57506001600160a01b0381166000908152600260205260409020546107c1565b6001600160a01b0382166000908152600160205260409020546106cb90610764565b610ad8611383565b6001600160a01b0316610ae9610b82565b6001600160a01b031614610b32576040805162461bcd60e51b815260206004820181905260248201526000805160206124ab833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600f5490565b6000546001600160a01b031690565b604080518082019091526008815267494e46494e49545960c01b602082015290565b600e5490565b60006106c7610bc6611383565b846107558560405180606001604052806025815260200161253d6025913960036000610bf0611383565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906119f1565b60006106c7610c2e611383565b8484611473565b60105490565b6006546001600160a01b031681565b6001600160a01b031660009081526004602052604090205460ff1690565b60115490565b610c76611383565b6001600160a01b0316610c87610b82565b6001600160a01b031614610cd0576040805162461bcd60e51b815260206004820181905260248201526000805160206124ab833981519152604482015290519081900360640190fd5b60125460ff1615610d28576040805162461bcd60e51b815260206004820152601760248201527f496e697469616c2066656520616c726561647920736574000000000000000000604482015290519081900360640190fd5b610d336101f4611c76565b6012805460ff19166001179055565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b6000610d77611383565b6001600160a01b0316610d88610b82565b6001600160a01b031614610dd1576040805162461bcd60e51b815260206004820181905260248201526000805160206124ab833981519152604482015290519081900360640190fd5b6001600160a01b038216610e2c576040805162461bcd60e51b815260206004820152601860248201527f5a65726f2061646472657373206e6f7420616c6c6f7765640000000000000000604482015290519081900360640190fd5b50600680546001600160a01b0383166001600160a01b03199091161790556001919050565b610e59611383565b6001600160a01b0316610e6a610b82565b6001600160a01b031614610eb3576040805162461bcd60e51b815260206004820181905260248201526000805160206124ab833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff1615610f21576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6007546001600160a01b0382811691161415610f84576040805162461bcd60e51b815260206004820152601d60248201527f4e6f7420616c6c6f77656420746f206578636c75646520726f75746572000000604482015290519081900360640190fd5b6006546001600160a01b0382811691161415610fe7576040805162461bcd60e51b815260206004820152601c60248201527f43616e206e6f74206578636c7564652066656520726563656976657200000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415611041576001600160a01b03811660009081526001602052604090205461102790610764565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b6110af611383565b6001600160a01b03166110c0610b82565b6001600160a01b031614611109576040805162461bcd60e51b815260206004820181905260248201526000805160206124ab833981519152604482015290519081900360640190fd5b6001600160a01b03811661114e5760405162461bcd60e51b81526004018080602001828103825260268152602001806123cf6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6111b1611383565b6001600160a01b03166111c2610b82565b6001600160a01b03161461120b576040805162461bcd60e51b815260206004820181905260248201526000805160206124ab833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff16611278576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c726561647920696e636c756465640000000000604482015290519081900360640190fd5b60005b60055481101561137057816001600160a01b03166005828154811061129c57fe5b6000918252602090912001546001600160a01b03161415611368576005805460001981019081106112c957fe5b600091825260209091200154600580546001600160a01b0390921691839081106112ef57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff19169055600580548061134157fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611370565b60010161127b565b5050565b6007546001600160a01b031681565b3390565b6001600160a01b0383166113cc5760405162461bcd60e51b81526004018080602001828103825260248152602001806125196024913960400191505060405180910390fd5b6001600160a01b0382166114115760405162461bcd60e51b81526004018080602001828103825260228152602001806123f56022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166114b85760405162461bcd60e51b81526004018080602001828103825260258152602001806124f46025913960400191505060405180910390fd5b6001600160a01b0382166114fd5760405162461bcd60e51b81526004018080602001828103825260238152602001806123826023913960400191505060405180910390fd5b6000811161153c5760405162461bcd60e51b81526004018080602001828103825260298152602001806124cb6029913960400191505060405180910390fd5b611544610b82565b6001600160a01b0316836001600160a01b03161415801561157e5750611568610b82565b6001600160a01b0316826001600160a01b031614155b156115c957662386f26fc100008111156115c95760405162461bcd60e51b815260040180806020018281038252602881526020018061243a6028913960400191505060405180910390fd5b60fa6010541061189857600e546115e09082611b12565b600e55600e54655af3107a400010611602576115fd6101f4611c76565b611898565b600e54655af3107a40001080156116215750600e5465b5e620f4800010155b15611631576115fd610226611c76565b600e5465b5e620f480001080156116515750600e54660110d9316ec00010155b15611661576115fd610258611c76565b600e54660110d9316ec0001080156116825750600e5466016bcc41e9000010155b15611692576115fd61028a611c76565b600e5466016bcc41e900001080156116b35750600e546601c6bf5263400010155b156116c3576115fd6102bc611c76565b600e546601c6bf526340001080156116e45750600e54660221b262dd800010155b156116f4576115fd6102ee611c76565b600e54660221b262dd80001080156117155750600e5466027ca57357c00010155b15611725576115fd610320611c76565b600e5466027ca57357c0001080156117465750600e546602d79883d2000010155b15611756576115fd610352611c76565b600e546602d79883d200001080156117775750600e546603328b944c400010155b15611787576115fd610384611c76565b600e546603328b944c40001080156117a85750600e5466038d7ea4c6800010155b156117b8576115fd6103b6611c76565b600e5466038d7ea4c680001080156117d95750600e546603e871b540c00010155b156117e9576115fd6103e8611c76565b600e546603e871b540c00010801561180a5750600e5466044364c5bb000010155b1561181a576115fd61041a611c76565b600e5466044364c5bb000010801561183b5750600e5466049e57d635400010155b1561184b576115fd61044c611c76565b600e5466049e57d635400010801561186c5750600e546604f94ae6af800010155b1561187c576115fd61047e611c76565b600e546604f94ae6af80001015611898576118986104b0611c76565b6001600160a01b03831660009081526004602052604090205460ff1680156118d957506001600160a01b03821660009081526004602052604090205460ff16155b156118ee576118e9838383611d06565b6119ec565b6001600160a01b03831660009081526004602052604090205460ff1615801561192f57506001600160a01b03821660009081526004602052604090205460ff165b1561193f576118e9838383611ec6565b6001600160a01b03831660009081526004602052604090205460ff1615801561198157506001600160a01b03821660009081526004602052604090205460ff16155b15611991576118e9838383611f90565b6001600160a01b03831660009081526004602052604090205460ff1680156119d157506001600160a01b03821660009081526004602052604090205460ff165b156119e1576118e9838383611ff5565b6119ec838383611f90565b505050565b60008184841115611a805760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611a45578181015183820152602001611a2d565b50505050905090810190601f168015611a725780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611a95612089565b9092509050611aa48282611aab565b9250505090565b6000808211611b01576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b818381611b0a57fe5b049392505050565b600082820183811015611b6c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600082611b82575060006106cb565b82820282848281611b8f57fe5b0414611b6c5760405162461bcd60e51b81526004018080602001828103825260218152602001806124626021913960400191505060405180910390fd5b600082821115611c23576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000806000806000806000806000611c468a6011546010546121ec565b9250925092506000806000611c5c8d8686612245565b919f909e50909c50959a5093985091965092945050505050565b6105dc811115611ccd576040805162461bcd60e51b815260206004820152601860248201527f6665652073686f756c6420626520696e2030202d203135250000000000000000604482015290519081900360640190fd5b611cd8816002611aab565b6010541415611ce657611d03565b611cf1816002611aab565b601055611cff816002611aab565b6011555b50565b6000611d10611a88565b9050600080600080600080611d2488611c29565b9550955095509550955095506000611d458883611b7390919063ffffffff16565b6001600160a01b038c16600090815260026020526040902054909150611d6b908a611bcc565b6001600160a01b038c16600090815260026020908152604080832093909355600190522054611d9a9088611bcc565b6001600160a01b03808d1660009081526001602052604080822093909355908c1681522054611dc99087611b12565b6001600160a01b03808c166000908152600160205260408082209390935560065490911681522054611dfb9086611b12565b6006546001600160a01b0316600090815260016020526040902055611e218184846122a2565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a38215611eb9576006546040805185815290516001600160a01b03928316928e16917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a35b5050505050505050505050565b6000611ed0611a88565b9050600080600080600080611ee488611c29565b9550955095509550955095506000611f058883611b7390919063ffffffff16565b6001600160a01b038c16600090815260016020526040902054909150611f2b9088611bcc565b6001600160a01b03808d16600090815260016020908152604080832094909455918d16815260029091522054611f619085611b12565b6001600160a01b038b16600090815260026020908152604080832093909355600190522054611dc99087611b12565b6000611f9a611a88565b9050600080600080600080611fae88611c29565b9550955095509550955095506000611fcf8883611b7390919063ffffffff16565b6001600160a01b038c16600090815260016020526040902054909150611d9a9088611bcc565b6000611fff611a88565b905060008060008060008061201388611c29565b95509550955095509550955060006120348883611b7390919063ffffffff16565b6001600160a01b038c1660009081526002602052604090205490915061205a908a611bcc565b6001600160a01b038c16600090815260026020908152604080832093909355600190522054611f2b9088611bcc565b600a546009546000918291825b6005548110156121ba578260016000600584815481106120b257fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061211757508160026000600584815481106120f057fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561212e57600a54600954945094505050506121e8565b61216e600160006005848154811061214257fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611bcc565b92506121b0600260006005848154811061218457fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611bcc565b9150600101612096565b50600954600a546121ca91611aab565b8210156121e257600a546009549350935050506121e8565b90925090505b9091565b6000808080612208606461220281818b8b611b73565b90611aab565b9050600061221d606461220281818c8b611b73565b905060006122358261222f8b86611bcc565b90611bcc565b9992985090965090945050505050565b600080600080612253611a88565b905060006122618883611b73565b9050600061226f8884611b73565b9050600061227d8885611b73565b9050600061228f8261222f8686611bcc565b939b939a50919850919650505050505050565b600a546122af9084611bcc565b600a55600b546122bf9083611b12565b600b55600c546122cf9082611b12565b600c55600f546122eb9083906122e59084611b12565b90611b12565b600f556009546122fb9082611bcc565b600955600f546573f5e8357800116119ec57600f54652d79883d200090612328906573f5e8357800611bcc565b600f556000600e5561233b6101f4611c76565b6123448161234a565b50505050565b600d54612358906001611b12565b600d556009546123689082611b12565b600955600854600d541115611d0357611d036000611c7656fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737343616e206e6f7420736574206d6f7265207468616e2063757272656e74206379636c655472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122016549d23c78f8c63128d7984c0bb85cbf49af7b363570be7ef172ed770c884c864736f6c6343000704003343616e206e6f7420736574206d6f7265207468616e2063757272656e74206379636c650000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102065760003560e01c80638ccb31b61161011a578063cba0e996116100ad578063efdcd9741161007c578063efdcd9741461053e578063f2cc0c1814610564578063f2fde38b1461058a578063f84354f1146105b0578063f887ea40146105d657610206565b8063cba0e996146104da578063ced72f8714610500578063d8f8cc2d14610508578063dd62ed3e1461051057610206565b8063a457c2d7116100e9578063a457c2d714610472578063a9059cbb1461049e578063aa4b10d1146104ca578063b3f00674146104d257610206565b80638ccb31b6146104365780638da5cb5b1461043e57806395d89b4114610462578063a0d4398b1461046a57610206565b8063376805211161019d5780634549b0391161016c5780634549b039146103d3578063655bce22146103f857806368c33e211461040057806370a0823114610408578063715018a61461042e57610206565b8063376805211461037a57806339509351146103825780633c9f861d146103ae57806342966c68146103b657610206565b806318160ddd116101d957806318160ddd1461030157806323b872dd146103095780632d8381191461033f578063313ce5671461035c57610206565b806306fdde031461020b578063088b96c214610288578063095ea7b3146102a757806313114a9d146102e7575b600080fd5b6102136105de565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561024d578181015183820152602001610235565b50505050905090810190601f16801561027a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102a56004803603602081101561029e57600080fd5b503561060b565b005b6102d3600480360360408110156102bd57600080fd5b506001600160a01b0381351690602001356106b3565b604080519115158252519081900360200190f35b6102ef6106d1565b60408051918252519081900360200190f35b6102ef6106d7565b6102d36004803603606081101561031f57600080fd5b506001600160a01b038135811691602081013590911690604001356106dd565b6102ef6004803603602081101561035557600080fd5b5035610764565b6103646107c6565b6040805160ff9092168252519081900360200190f35b6102ef6107cb565b6102d36004803603604081101561039857600080fd5b506001600160a01b0381351690602001356107d1565b6102ef61081f565b6102d3600480360360208110156103cc57600080fd5b5035610825565b6102ef600480360360408110156103e957600080fd5b508035906020013515156109b8565b6102ef610a4a565b6102ef610a50565b6102ef6004803603602081101561041e57600080fd5b50356001600160a01b0316610a6e565b6102a5610ad0565b6102ef610b7c565b610446610b82565b604080516001600160a01b039092168252519081900360200190f35b610213610b91565b6102ef610bb3565b6102d36004803603604081101561048857600080fd5b506001600160a01b038135169060200135610bb9565b6102d3600480360360408110156104b457600080fd5b506001600160a01b038135169060200135610c21565b6102ef610c35565b610446610c3b565b6102d3600480360360208110156104f057600080fd5b50356001600160a01b0316610c4a565b6102ef610c68565b6102a5610c6e565b6102ef6004803603604081101561052657600080fd5b506001600160a01b0381358116916020013516610d42565b6102d36004803603602081101561055457600080fd5b50356001600160a01b0316610d6d565b6102a56004803603602081101561057a57600080fd5b50356001600160a01b0316610e51565b6102a5600480360360208110156105a057600080fd5b50356001600160a01b03166110a7565b6102a5600480360360208110156105c657600080fd5b50356001600160a01b03166111a9565b610446611374565b604080518082019091526013815272696e66696e69747970726f746f636f6c2e696f60681b602082015290565b610613611383565b6001600160a01b0316610624610b82565b6001600160a01b03161461066d576040805162461bcd60e51b815260206004820181905260248201526000805160206124ab833981519152604482015290519081900360640190fd5b600d548110156106ae5760405162461bcd60e51b81526004018080602001828103825260238152602001806124176023913960400191505060405180910390fd5b600855565b60006106c76106c0611383565b8484611387565b5060015b92915050565b600b5490565b60095490565b60006106ea848484611473565b61075a846106f6611383565b61075585604051806060016040528060288152602001612483602891396001600160a01b038a16600090815260036020526040812090610734611383565b6001600160a01b0316815260208101919091526040016000205491906119f1565b611387565b5060019392505050565b6000600a548211156107a75760405162461bcd60e51b815260040180806020018281038252602a8152602001806123a5602a913960400191505060405180910390fd5b60006107b1611a88565b90506107bd8382611aab565b9150505b919050565b600890565b60085481565b60006106c76107de611383565b8461075585600360006107ef611383565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611b12565b600c5490565b600080610830611383565b9050600061083d82610a6e565b905083811015610894576040805162461bcd60e51b815260206004820181905260248201527f43616e6e6f74206275726e206d6f7265207468616e206f6e2062616c616e6365604482015290519081900360640190fd5b6006546001600160a01b038381169116146108e9576040805162461bcd60e51b815260206004820152601060248201526f27b7363c903332b2a932b1b2b4bb32b960811b604482015290519081900360640190fd5b60006108fd6108f6611a88565b8690611b73565b600a5490915061090d9082611bcc565b600a556001600160a01b0383166000908152600160205260409020546109339082611bcc565b6001600160a01b038416600090815260016020526040902055600c546109599086611b12565b600c556009546109699086611bcc565b6009556040805186815290516000916001600160a01b038616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3506001949350505050565b6000600954831115610a11576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610a30576000610a2184611c29565b509395506106cb945050505050565b6000610a3b84611c29565b509295506106cb945050505050565b600d5490565b6000610a69600b54600c54611b1290919063ffffffff16565b905090565b6001600160a01b03811660009081526004602052604081205460ff1615610aae57506001600160a01b0381166000908152600260205260409020546107c1565b6001600160a01b0382166000908152600160205260409020546106cb90610764565b610ad8611383565b6001600160a01b0316610ae9610b82565b6001600160a01b031614610b32576040805162461bcd60e51b815260206004820181905260248201526000805160206124ab833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600f5490565b6000546001600160a01b031690565b604080518082019091526008815267494e46494e49545960c01b602082015290565b600e5490565b60006106c7610bc6611383565b846107558560405180606001604052806025815260200161253d6025913960036000610bf0611383565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906119f1565b60006106c7610c2e611383565b8484611473565b60105490565b6006546001600160a01b031681565b6001600160a01b031660009081526004602052604090205460ff1690565b60115490565b610c76611383565b6001600160a01b0316610c87610b82565b6001600160a01b031614610cd0576040805162461bcd60e51b815260206004820181905260248201526000805160206124ab833981519152604482015290519081900360640190fd5b60125460ff1615610d28576040805162461bcd60e51b815260206004820152601760248201527f496e697469616c2066656520616c726561647920736574000000000000000000604482015290519081900360640190fd5b610d336101f4611c76565b6012805460ff19166001179055565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b6000610d77611383565b6001600160a01b0316610d88610b82565b6001600160a01b031614610dd1576040805162461bcd60e51b815260206004820181905260248201526000805160206124ab833981519152604482015290519081900360640190fd5b6001600160a01b038216610e2c576040805162461bcd60e51b815260206004820152601860248201527f5a65726f2061646472657373206e6f7420616c6c6f7765640000000000000000604482015290519081900360640190fd5b50600680546001600160a01b0383166001600160a01b03199091161790556001919050565b610e59611383565b6001600160a01b0316610e6a610b82565b6001600160a01b031614610eb3576040805162461bcd60e51b815260206004820181905260248201526000805160206124ab833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff1615610f21576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6007546001600160a01b0382811691161415610f84576040805162461bcd60e51b815260206004820152601d60248201527f4e6f7420616c6c6f77656420746f206578636c75646520726f75746572000000604482015290519081900360640190fd5b6006546001600160a01b0382811691161415610fe7576040805162461bcd60e51b815260206004820152601c60248201527f43616e206e6f74206578636c7564652066656520726563656976657200000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415611041576001600160a01b03811660009081526001602052604090205461102790610764565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b6110af611383565b6001600160a01b03166110c0610b82565b6001600160a01b031614611109576040805162461bcd60e51b815260206004820181905260248201526000805160206124ab833981519152604482015290519081900360640190fd5b6001600160a01b03811661114e5760405162461bcd60e51b81526004018080602001828103825260268152602001806123cf6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6111b1611383565b6001600160a01b03166111c2610b82565b6001600160a01b03161461120b576040805162461bcd60e51b815260206004820181905260248201526000805160206124ab833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff16611278576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c726561647920696e636c756465640000000000604482015290519081900360640190fd5b60005b60055481101561137057816001600160a01b03166005828154811061129c57fe5b6000918252602090912001546001600160a01b03161415611368576005805460001981019081106112c957fe5b600091825260209091200154600580546001600160a01b0390921691839081106112ef57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff19169055600580548061134157fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611370565b60010161127b565b5050565b6007546001600160a01b031681565b3390565b6001600160a01b0383166113cc5760405162461bcd60e51b81526004018080602001828103825260248152602001806125196024913960400191505060405180910390fd5b6001600160a01b0382166114115760405162461bcd60e51b81526004018080602001828103825260228152602001806123f56022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166114b85760405162461bcd60e51b81526004018080602001828103825260258152602001806124f46025913960400191505060405180910390fd5b6001600160a01b0382166114fd5760405162461bcd60e51b81526004018080602001828103825260238152602001806123826023913960400191505060405180910390fd5b6000811161153c5760405162461bcd60e51b81526004018080602001828103825260298152602001806124cb6029913960400191505060405180910390fd5b611544610b82565b6001600160a01b0316836001600160a01b03161415801561157e5750611568610b82565b6001600160a01b0316826001600160a01b031614155b156115c957662386f26fc100008111156115c95760405162461bcd60e51b815260040180806020018281038252602881526020018061243a6028913960400191505060405180910390fd5b60fa6010541061189857600e546115e09082611b12565b600e55600e54655af3107a400010611602576115fd6101f4611c76565b611898565b600e54655af3107a40001080156116215750600e5465b5e620f4800010155b15611631576115fd610226611c76565b600e5465b5e620f480001080156116515750600e54660110d9316ec00010155b15611661576115fd610258611c76565b600e54660110d9316ec0001080156116825750600e5466016bcc41e9000010155b15611692576115fd61028a611c76565b600e5466016bcc41e900001080156116b35750600e546601c6bf5263400010155b156116c3576115fd6102bc611c76565b600e546601c6bf526340001080156116e45750600e54660221b262dd800010155b156116f4576115fd6102ee611c76565b600e54660221b262dd80001080156117155750600e5466027ca57357c00010155b15611725576115fd610320611c76565b600e5466027ca57357c0001080156117465750600e546602d79883d2000010155b15611756576115fd610352611c76565b600e546602d79883d200001080156117775750600e546603328b944c400010155b15611787576115fd610384611c76565b600e546603328b944c40001080156117a85750600e5466038d7ea4c6800010155b156117b8576115fd6103b6611c76565b600e5466038d7ea4c680001080156117d95750600e546603e871b540c00010155b156117e9576115fd6103e8611c76565b600e546603e871b540c00010801561180a5750600e5466044364c5bb000010155b1561181a576115fd61041a611c76565b600e5466044364c5bb000010801561183b5750600e5466049e57d635400010155b1561184b576115fd61044c611c76565b600e5466049e57d635400010801561186c5750600e546604f94ae6af800010155b1561187c576115fd61047e611c76565b600e546604f94ae6af80001015611898576118986104b0611c76565b6001600160a01b03831660009081526004602052604090205460ff1680156118d957506001600160a01b03821660009081526004602052604090205460ff16155b156118ee576118e9838383611d06565b6119ec565b6001600160a01b03831660009081526004602052604090205460ff1615801561192f57506001600160a01b03821660009081526004602052604090205460ff165b1561193f576118e9838383611ec6565b6001600160a01b03831660009081526004602052604090205460ff1615801561198157506001600160a01b03821660009081526004602052604090205460ff16155b15611991576118e9838383611f90565b6001600160a01b03831660009081526004602052604090205460ff1680156119d157506001600160a01b03821660009081526004602052604090205460ff165b156119e1576118e9838383611ff5565b6119ec838383611f90565b505050565b60008184841115611a805760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611a45578181015183820152602001611a2d565b50505050905090810190601f168015611a725780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611a95612089565b9092509050611aa48282611aab565b9250505090565b6000808211611b01576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b818381611b0a57fe5b049392505050565b600082820183811015611b6c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600082611b82575060006106cb565b82820282848281611b8f57fe5b0414611b6c5760405162461bcd60e51b81526004018080602001828103825260218152602001806124626021913960400191505060405180910390fd5b600082821115611c23576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000806000806000806000806000611c468a6011546010546121ec565b9250925092506000806000611c5c8d8686612245565b919f909e50909c50959a5093985091965092945050505050565b6105dc811115611ccd576040805162461bcd60e51b815260206004820152601860248201527f6665652073686f756c6420626520696e2030202d203135250000000000000000604482015290519081900360640190fd5b611cd8816002611aab565b6010541415611ce657611d03565b611cf1816002611aab565b601055611cff816002611aab565b6011555b50565b6000611d10611a88565b9050600080600080600080611d2488611c29565b9550955095509550955095506000611d458883611b7390919063ffffffff16565b6001600160a01b038c16600090815260026020526040902054909150611d6b908a611bcc565b6001600160a01b038c16600090815260026020908152604080832093909355600190522054611d9a9088611bcc565b6001600160a01b03808d1660009081526001602052604080822093909355908c1681522054611dc99087611b12565b6001600160a01b03808c166000908152600160205260408082209390935560065490911681522054611dfb9086611b12565b6006546001600160a01b0316600090815260016020526040902055611e218184846122a2565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a38215611eb9576006546040805185815290516001600160a01b03928316928e16917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a35b5050505050505050505050565b6000611ed0611a88565b9050600080600080600080611ee488611c29565b9550955095509550955095506000611f058883611b7390919063ffffffff16565b6001600160a01b038c16600090815260016020526040902054909150611f2b9088611bcc565b6001600160a01b03808d16600090815260016020908152604080832094909455918d16815260029091522054611f619085611b12565b6001600160a01b038b16600090815260026020908152604080832093909355600190522054611dc99087611b12565b6000611f9a611a88565b9050600080600080600080611fae88611c29565b9550955095509550955095506000611fcf8883611b7390919063ffffffff16565b6001600160a01b038c16600090815260016020526040902054909150611d9a9088611bcc565b6000611fff611a88565b905060008060008060008061201388611c29565b95509550955095509550955060006120348883611b7390919063ffffffff16565b6001600160a01b038c1660009081526002602052604090205490915061205a908a611bcc565b6001600160a01b038c16600090815260026020908152604080832093909355600190522054611f2b9088611bcc565b600a546009546000918291825b6005548110156121ba578260016000600584815481106120b257fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061211757508160026000600584815481106120f057fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561212e57600a54600954945094505050506121e8565b61216e600160006005848154811061214257fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611bcc565b92506121b0600260006005848154811061218457fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611bcc565b9150600101612096565b50600954600a546121ca91611aab565b8210156121e257600a546009549350935050506121e8565b90925090505b9091565b6000808080612208606461220281818b8b611b73565b90611aab565b9050600061221d606461220281818c8b611b73565b905060006122358261222f8b86611bcc565b90611bcc565b9992985090965090945050505050565b600080600080612253611a88565b905060006122618883611b73565b9050600061226f8884611b73565b9050600061227d8885611b73565b9050600061228f8261222f8686611bcc565b939b939a50919850919650505050505050565b600a546122af9084611bcc565b600a55600b546122bf9083611b12565b600b55600c546122cf9082611b12565b600c55600f546122eb9083906122e59084611b12565b90611b12565b600f556009546122fb9082611bcc565b600955600f546573f5e8357800116119ec57600f54652d79883d200090612328906573f5e8357800611bcc565b600f556000600e5561233b6101f4611c76565b6123448161234a565b50505050565b600d54612358906001611b12565b600d556009546123689082611b12565b600955600854600d541115611d0357611d036000611c7656fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737343616e206e6f7420736574206d6f7265207468616e2063757272656e74206379636c655472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122016549d23c78f8c63128d7984c0bb85cbf49af7b363570be7ef172ed770c884c864736f6c63430007040033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

-----Decoded View---------------
Arg [0] : _router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d


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.