ETH Price: $3,362.70 (-2.65%)
Gas: 2 Gwei

Token

Roaring Twenties (ROAR)
 

Overview

Max Total Supply

100,000,000 ROAR

Holders

235

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
72,404.381086746 ROAR

Value
$0.00
0xcce1f0dbde35e848e5dbf739305ca928d29dab5b
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:
Roaring

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : Roaring.sol
// SPDX-License-Identifier: MIT

// Roaring Twenties
// Telegram: https://t.me/roaring2022
// Website: https://roaring20s.space

pragma experimental ABIEncoderV2;
pragma solidity >=0.6.0;
import './external/Address.sol';
import './external/Ownable.sol';
import './external/IERC20.sol';
import './external/SafeMath.sol';
import './external/Uniswap.sol';
import './external/ReentrancyGuard.sol';

contract Roaring is Context, IERC20, Ownable {
    using SafeMath for uint256;
    mapping(address => uint256) private _rOwned;
    mapping(address => uint256) private _tOwned;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => bool) private _isExcludedFromFee;
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal;
    uint256 private _rTotal;
    uint256 private _tFeeTotal;

    string public name;
    string public symbol;
    uint8 public constant decimals = 9;

    uint256 private _previousReflectionFee;
    uint256 private _previousTaxFee;
    IUniswapV2Router02 private uniswapRouter;
    address public uniswapPair;
    bool private tradingEnabled = false;
    bool private canSwap = true;
    bool private inSwap = false;

    uint256 public maxTxAmount;
    bool public isLaunchProtectionMode = true;
    mapping(address => bool) bots;

    event MaxBuyAmountUpdated(uint256 _maxBuyAmount);
    event CooldownEnabledUpdated(bool _cooldown);
    event FeeMultiplierUpdated(uint256 _multiplier);
    event FeeRateUpdated(uint256 _rate);

    struct TokenProperties {
        uint256 supply;
        uint256 taxFee;
        uint256 reflectionFee;
        uint256 teamFee;
        uint256 devFee;
        uint256 marketingFee;
        address uniswapRouterAddress;
        address payable teamWalletAddress;
        address payable marketingWaletAddress;
        address payable devWalletAddress;
    }

    TokenProperties public properties;

    modifier lockTheSwap() {
        inSwap = true;
        _;
        inSwap = false;
    }

    constructor(
        string memory _name,
        string memory _symbol,
        TokenProperties memory _properties
    ) public {
        properties = _properties;
        _tTotal = properties.supply * 10**9;
        _rTotal = (MAX - (MAX % _tTotal));
        maxTxAmount = _tTotal.div(1000).mul(15);
        name = _name;
        symbol = _symbol;

        _previousReflectionFee = properties.reflectionFee;
        _previousTaxFee = properties.taxFee;

        _rOwned[_msgSender()] = _rTotal;
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[properties.teamWalletAddress] = true;
        _isExcludedFromFee[properties.marketingWaletAddress] = true;
        _isExcludedFromFee[properties.devWalletAddress] = true;
        
        emit Transfer(address(0), _msgSender(), _tTotal);

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(properties.uniswapRouterAddress);
        uniswapRouter = _uniswapV2Router;
        _approve(address(this), address(uniswapRouter), _tTotal);
        uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        IERC20(uniswapPair).approve(address(uniswapRouter), type(uint256).max);
    }

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

    function balanceOf(address account) public view override returns (uint256) {
        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 tokenFromReflection(uint256 rAmount) private view returns (uint256) {
        require(rAmount <= _rTotal, 'Amount must be less than total reflections');
        uint256 currentRate = _getRate();
        return rAmount.div(currentRate);
    }

    function setCanSwap(bool onoff) external onlyOwner {
        canSwap = onoff;
    }

    function setTradingEnabled() external onlyOwner {
        tradingEnabled = true;
    }

    function removeAllFee() private {
        if (properties.reflectionFee == 0 && properties.taxFee == 0) return;
        _previousReflectionFee = properties.reflectionFee;
        _previousTaxFee = properties.taxFee;
        properties.reflectionFee = 0;
        properties.taxFee = 0;
    }

    function restoreAllFee() private {
        properties.reflectionFee = _previousReflectionFee;
        properties.taxFee = _previousTaxFee;
    }

    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 from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), 'ERC20: transfer from the zero address');
        require(to != address(0), 'ERC20: transfer to the zero address');
        require(amount > 0, 'Transfer amount must be greater than zero');
        if (!tradingEnabled) {
            require(_isExcludedFromFee[from] || _isExcludedFromFee[to] || _isExcludedFromFee[tx.origin], 'Trading is not live yet');
        }

        require(!bots[from] && !bots[tx.origin], 'Bot blacklisted');

        if (isLaunchProtectionMode && !inSwap) {
            require(
                _isExcludedFromFee[from] || _isExcludedFromFee[to] || amount <= maxTxAmount,
                "Max Transfer Limit Exceeds!"
            );
        }
        

        uint256 contractTokenBalance = balanceOf(address(this));

        if (!inSwap && from != uniswapPair && tradingEnabled && canSwap) {
            if (contractTokenBalance > 0) {
                if (contractTokenBalance > balanceOf(uniswapPair).div(100)) {
                    swapTokensForEth(contractTokenBalance);
                }
                
            }
            uint256 contractETHBalance = address(this).balance;
            if (contractETHBalance > 0) {
                sendETHToFee(address(this).balance);
            }
        }

        bool takeFee = true;

        if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
            takeFee = false;
        }

        if (from != uniswapPair && to != uniswapPair) {
            takeFee = false;
        }

        _tokenTransfer(from, to, amount, takeFee);
        if (takeFee && from == uniswapPair) properties.taxFee = _previousTaxFee;
        if (takeFee && to == uniswapPair) properties.reflectionFee = _previousReflectionFee;
    }

    function swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapRouter.WETH();
        _approve(address(this), address(uniswapRouter), tokenAmount);
        uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function sendETHToFee(uint256 amount) private {
        properties.teamWalletAddress.transfer(amount.div(10).mul(properties.teamFee));
        properties.marketingWaletAddress.transfer(amount.div(10).mul(properties.marketingFee));
        properties.devWalletAddress.transfer(amount.div(10).mul(properties.devFee));
    }

    function _tokenTransfer(
        address sender,
        address recipient,
        uint256 amount,
        bool takeFee
    ) private {
        if (!takeFee) removeAllFee();
        _transferStandard(sender, recipient, amount);
        if (!takeFee) restoreAllFee();
    }

    function _transferStandard(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 rAmount,
            uint256 rTransferAmount,
            uint256 rFee,
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tReflect
        ) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);

        _takeTeam(tReflect);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _getValues(uint256 tAmount)
        private
        view
        returns (
            uint256,
            uint256,
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        (uint256 tTransferAmount, uint256 tFee, uint256 tReflect) = _getTValues(tAmount, properties.reflectionFee, properties.taxFee);
        uint256 currentRate = _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tReflect, currentRate);
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tReflect);
    }

    function _getTValues(
        uint256 tAmount,
        uint256 reflectionFee,
        uint256 TaxFee
    )
        private
        pure
        returns (
            uint256,
            uint256,
            uint256
        )
    {
        uint256 tFee = tAmount.mul(reflectionFee).div(100);
        uint256 tReflect = tAmount.mul(TaxFee).div(100);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tReflect);
        return (tTransferAmount, tFee, tReflect);
    }

    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;
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }

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

    function _takeTeam(uint256 tReflect) private {
        uint256 currentRate = _getRate();
        uint256 rTeam = tReflect.mul(currentRate);

        _rOwned[address(this)] = _rOwned[address(this)].add(rTeam);
    }

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

    receive() external payable {}

    function setTreasuryWallet(address payable _teamWalletAddress) external onlyOwner {
        properties.teamWalletAddress = _teamWalletAddress;
        _isExcludedFromFee[properties.teamWalletAddress] = true;
    }

    function setMFCWallet(address payable _marketingWaletAddress) external onlyOwner {
        properties.marketingWaletAddress = _marketingWaletAddress;
        _isExcludedFromFee[properties.marketingWaletAddress] = true;
    }

    function excludeFromFee(address payable ad) external onlyOwner {
        _isExcludedFromFee[ad] = true;
    }

    function includeToFee(address payable ad) external onlyOwner {
        _isExcludedFromFee[ad] = false;
    }

    function setTaxFee(uint256 taxFee) external onlyOwner {
        require(taxFee <= 25, 'Team fee must be less than 25%');
        properties.taxFee = taxFee;
    }

    function setReflectionFee(uint256 reflect) external onlyOwner {
        require(reflect <= 25, 'Tax fee must be less than 25%');
        properties.reflectionFee = reflect;
    }

    function manualSwap() external {
        require(_msgSender() == properties.teamWalletAddress || _msgSender() == properties.marketingWaletAddress || _msgSender() == properties.devWalletAddress, 'Not authorized');
        uint256 contractBalance = balanceOf(address(this));
        swapTokensForEth(contractBalance);
    }

    function manualSend() external {
        require(_msgSender() == properties.teamWalletAddress || _msgSender() == properties.marketingWaletAddress || _msgSender() == properties.devWalletAddress, 'Not authorized');
        uint256 contractETHBalance = address(this).balance;
        sendETHToFee(contractETHBalance);
    }

    function endLaunchProtection() external onlyOwner {
        isLaunchProtectionMode = false;
    }

    function setMaxTxAmount(uint256 percentage) external onlyOwner {
        maxTxAmount = _tTotal.mul(percentage).div(100);
    }

    function setBot(address bot, bool value) external onlyOwner {
        bots[bot] = value;
    }

}

File 2 of 8 : 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 3 of 8 : Ownable.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
import './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.
 */
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;
    }
}

File 4 of 8 : 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 5 of 8 : 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 6 of 8 : Uniswap.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;

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

interface IUniswapV2Pair {
    function sync() external;
}

interface IUniswapV2Router01 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;
}

File 7 of 8 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;

abstract contract ReentrancyGuard {
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() public {
        _status = _NOT_ENTERED;
    }

    modifier nonReentrant() {
        require(_status != _ENTERED, 'ReentrancyGuard: reentrant call');
        _status = _ENTERED;
        _;
        _status = _NOT_ENTERED;
    }

    modifier isHuman() {
        require(tx.origin == msg.sender, 'sorry humans only');
        _;
    }
}

File 8 of 8 : Context.sol
// 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;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"components":[{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"uint256","name":"taxFee","type":"uint256"},{"internalType":"uint256","name":"reflectionFee","type":"uint256"},{"internalType":"uint256","name":"teamFee","type":"uint256"},{"internalType":"uint256","name":"devFee","type":"uint256"},{"internalType":"uint256","name":"marketingFee","type":"uint256"},{"internalType":"address","name":"uniswapRouterAddress","type":"address"},{"internalType":"address payable","name":"teamWalletAddress","type":"address"},{"internalType":"address payable","name":"marketingWaletAddress","type":"address"},{"internalType":"address payable","name":"devWalletAddress","type":"address"}],"internalType":"struct Roaring.TokenProperties","name":"_properties","type":"tuple"}],"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":false,"internalType":"bool","name":"_cooldown","type":"bool"}],"name":"CooldownEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_multiplier","type":"uint256"}],"name":"FeeMultiplierUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_rate","type":"uint256"}],"name":"FeeRateUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_maxBuyAmount","type":"uint256"}],"name":"MaxBuyAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endLaunchProtection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"ad","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"ad","type":"address"}],"name":"includeToFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isLaunchProtectionMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"properties","outputs":[{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"uint256","name":"taxFee","type":"uint256"},{"internalType":"uint256","name":"reflectionFee","type":"uint256"},{"internalType":"uint256","name":"teamFee","type":"uint256"},{"internalType":"uint256","name":"devFee","type":"uint256"},{"internalType":"uint256","name":"marketingFee","type":"uint256"},{"internalType":"address","name":"uniswapRouterAddress","type":"address"},{"internalType":"address payable","name":"teamWalletAddress","type":"address"},{"internalType":"address payable","name":"marketingWaletAddress","type":"address"},{"internalType":"address payable","name":"devWalletAddress","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"bot","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"setCanSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_marketingWaletAddress","type":"address"}],"name":"setMFCWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"reflect","type":"uint256"}],"name":"setReflectionFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setTradingEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_teamWalletAddress","type":"address"}],"name":"setTreasuryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600d805460ff60b01b1961ffff60a01b19909116600160a81b17169055600f805460ff191660011790553480156200003b57600080fd5b5060405162002af838038062002af88339810160408190526200005e916200084b565b60006200006a6200054d565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35080516011819055602082015160125560408201516013556060820151601455608082015160155560a082015160165560c0820151601780546001600160a01b039283166001600160a01b03199182161790915560e08401516018805491841691831691909117905561010084015160198054918416918316919091179055610120840151601a8054919093169116179055633b9aca00026005819055600019816200015b57fe5b06600019036006819055506200019e600f6200018a6103e86005546200055160201b62000ddc1790919060201c565b620005a460201b62000e251790919060201c565b600e558251620001b6906008906020860190620006f3565b508151620001cc906009906020850190620006f3565b50601354600a55601254600b5560065460016000620001ea6200054d565b6001600160a01b03166001600160a01b031681526020019081526020016000208190555060016004600062000224620005ed60201b60201c565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790553081526004909352818320805485166001908117909155601854821684528284208054861682179055601954821684528284208054861682179055601a54909116835291208054909216179055620002a96200054d565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600554604051620002f0919062000a98565b60405180910390a3601754600c80546001600160a01b0319166001600160a01b0392831690811791829055600554909262000330923092911690620005fc565b806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200036a57600080fd5b505afa1580156200037f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003a591906200080a565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620003ee57600080fd5b505afa15801562000403573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200042991906200080a565b6040518363ffffffff1660e01b81526004016200044892919062000969565b602060405180830381600087803b1580156200046357600080fd5b505af115801562000478573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200049e91906200080a565b600d80546001600160a01b0319166001600160a01b039283161790819055600c5460405163095ea7b360e01b81529183169263095ea7b392620004ec92909116906000199060040162000983565b602060405180830381600087803b1580156200050757600080fd5b505af11580156200051c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000542919062000829565b505050505062000b14565b3390565b60006200059b83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620006b860201b60201c565b90505b92915050565b600082620005b5575060006200059e565b82820282848281620005c357fe5b04146200059b5760405162461bcd60e51b8152600401620005e49062000a13565b60405180910390fd5b6000546001600160a01b031690565b6001600160a01b038316620006255760405162461bcd60e51b8152600401620005e49062000a54565b6001600160a01b0382166200064e5760405162461bcd60e51b8152600401620005e490620009d1565b6001600160a01b0380841660008181526003602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590620006ab90859062000a98565b60405180910390a3505050565b60008183620006dc5760405162461bcd60e51b8152600401620005e491906200099c565b506000838581620006e957fe5b0495945050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200073657805160ff191683800117855562000766565b8280016001018555821562000766579182015b828111156200076657825182559160200191906001019062000749565b506200077492915062000778565b5090565b5b8082111562000774576000815560010162000779565b80516200059e8162000afb565b600082601f830112620007ad578081fd5b81516001600160401b03811115620007c3578182fd5b620007d8601f8201601f191660200162000aa1565b9150808252836020828501011115620007f057600080fd5b6200080381602084016020860162000ac8565b5092915050565b6000602082840312156200081c578081fd5b81516200059b8162000afb565b6000602082840312156200083b578081fd5b815180151581146200059b578182fd5b600080600083850361018081121562000862578283fd5b84516001600160401b038082111562000879578485fd5b62000887888389016200079c565b955060208701519150808211156200089d578485fd5b50620008ac878288016200079c565b93505061014080603f1983011215620008c3578283fd5b620008ce8162000aa1565b915060408601518252606086015160208301526080860151604083015260a0860151606083015260c0860151608083015260e086015160a08301526101006200091a888289016200078f565b60c08401526101206200093089828a016200078f565b60e08501526200094389848a016200078f565b8285015262000957896101608a016200078f565b81850152505050809150509250925092565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b03929092168252602082015260400190565b6000602082528251806020840152620009bd81604085016020870162000ac8565b601f01601f19169190910160400192915050565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b90815260200190565b6040518181016001600160401b038111828210171562000ac057600080fd5b604052919050565b60005b8381101562000ae557818101518382015260200162000acb565b8381111562000af5576000848401525b50505050565b6001600160a01b038116811462000b1157600080fd5b50565b611fd48062000b246000396000f3fe6080604052600436106101c65760003560e01c80638da5cb5b116100f7578063dd62ed3e11610095578063ec556ad011610064578063ec556ad0146104ba578063f2fde38b146104da578063f4293890146104fa578063fcd802b11461050f576101cd565b8063dd62ed3e14610445578063e156afd514610465578063e547be691461047a578063ec28438a1461049a576101cd565b8063a9059cbb116100d1578063a9059cbb146103d0578063c4081a4c146103f0578063c816841b14610410578063cf0848f714610425576101cd565b80638da5cb5b1461037957806395d89b411461039b578063a8602fea146103b0576101cd565b8063342aa8b51161016457806351bc3c851161013e57806351bc3c851461031a57806370a082311461032f578063715018a61461034f5780638c0b5e2214610364576101cd565b8063342aa8b5146102c5578063437823ec146102e55780634e64c68a14610305576101cd565b806318160ddd116101a057806318160ddd1461024c5780631b35bed01461026e57806323b872dd14610283578063313ce567146102a3576101cd565b8063010d009b146101d257806306fdde03146101f4578063095ea7b31461021f576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101f26101ed36600461190c565b61053a565b005b34801561020057600080fd5b506102096105b2565b6040516102169190611a6f565b60405180910390f35b34801561022b57600080fd5b5061023f61023a3660046119ed565b610640565b6040516102169190611a64565b34801561025857600080fd5b5061026161065e565b6040516102169190611e83565b34801561027a57600080fd5b506101f2610664565b34801561028f57600080fd5b5061023f61029e36600461197c565b6106a5565b3480156102af57600080fd5b506102b861072c565b6040516102169190611f53565b3480156102d157600080fd5b506101f26102e03660046119bc565b610731565b3480156102f157600080fd5b506101f261030036600461190c565b610791565b34801561031157600080fd5b5061023f6107ea565b34801561032657600080fd5b506101f26107f3565b34801561033b57600080fd5b5061026161034a36600461190c565b610890565b34801561035b57600080fd5b506101f26108b2565b34801561037057600080fd5b50610261610931565b34801561038557600080fd5b5061038e610937565b6040516102169190611a50565b3480156103a757600080fd5b50610209610946565b3480156103bc57600080fd5b506101f26103cb36600461190c565b6109a1565b3480156103dc57600080fd5b5061023f6103eb3660046119ed565b610a10565b3480156103fc57600080fd5b506101f261040b366004611a38565b610a24565b34801561041c57600080fd5b5061038e610a7f565b34801561043157600080fd5b506101f261044036600461190c565b610a8e565b34801561045157600080fd5b50610261610460366004611944565b610ae4565b34801561047157600080fd5b506101f2610b0f565b34801561048657600080fd5b506101f2610495366004611a38565b610b59565b3480156104a657600080fd5b506101f26104b5366004611a38565b610bb4565b3480156104c657600080fd5b506101f26104d5366004611a18565b610c0f565b3480156104e657600080fd5b506101f26104f536600461190c565b610c62565b34801561050657600080fd5b506101f2610d18565b34801561051b57600080fd5b50610524610da6565b6040516102169a99989796959493929190611efc565b610542610e5f565b6000546001600160a01b039081169116146105785760405162461bcd60e51b815260040161056f90611ce6565b60405180910390fd5b601980546001600160a01b0319166001600160a01b039283161790819055166000908152600460205260409020805460ff19166001179055565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106385780601f1061060d57610100808354040283529160200191610638565b820191906000526020600020905b81548152906001019060200180831161061b57829003601f168201915b505050505081565b600061065461064d610e5f565b8484610e63565b5060015b92915050565b60055490565b61066c610e5f565b6000546001600160a01b039081169116146106995760405162461bcd60e51b815260040161056f90611ce6565b600f805460ff19169055565b60006106b2848484610f17565b610722846106be610e5f565b61071d85604051806060016040528060288152602001611f77602891396001600160a01b038a166000908152600360205260408120906106fc610e5f565b6001600160a01b03168152602081019190915260400160002054919061126f565b610e63565b5060019392505050565b600981565b610739610e5f565b6000546001600160a01b039081169116146107665760405162461bcd60e51b815260040161056f90611ce6565b6001600160a01b03919091166000908152601060205260409020805460ff1916911515919091179055565b610799610e5f565b6000546001600160a01b039081169116146107c65760405162461bcd60e51b815260040161056f90611ce6565b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b600f5460ff1681565b6018546001600160a01b0316610807610e5f565b6001600160a01b0316148061083657506019546001600160a01b031661082b610e5f565b6001600160a01b0316145b8061085b5750601a546001600160a01b0316610850610e5f565b6001600160a01b0316145b6108775760405162461bcd60e51b815260040161056f90611e5b565b600061088230610890565b905061088d8161129b565b50565b6001600160a01b03811660009081526001602052604081205461065890611417565b6108ba610e5f565b6000546001600160a01b039081169116146108e75760405162461bcd60e51b815260040161056f90611ce6565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600e5481565b6000546001600160a01b031690565b6009805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106385780601f1061060d57610100808354040283529160200191610638565b6109a9610e5f565b6000546001600160a01b039081169116146109d65760405162461bcd60e51b815260040161056f90611ce6565b601880546001600160a01b0319166001600160a01b039283161790819055166000908152600460205260409020805460ff19166001179055565b6000610654610a1d610e5f565b8484610f17565b610a2c610e5f565b6000546001600160a01b03908116911614610a595760405162461bcd60e51b815260040161056f90611ce6565b6019811115610a7a5760405162461bcd60e51b815260040161056f90611e24565b601255565b600d546001600160a01b031681565b610a96610e5f565b6000546001600160a01b03908116911614610ac35760405162461bcd60e51b815260040161056f90611ce6565b6001600160a01b03166000908152600460205260409020805460ff19169055565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610b17610e5f565b6000546001600160a01b03908116911614610b445760405162461bcd60e51b815260040161056f90611ce6565b600d805460ff60a01b1916600160a01b179055565b610b61610e5f565b6000546001600160a01b03908116911614610b8e5760405162461bcd60e51b815260040161056f90611ce6565b6019811115610baf5760405162461bcd60e51b815260040161056f90611b2e565b601355565b610bbc610e5f565b6000546001600160a01b03908116911614610be95760405162461bcd60e51b815260040161056f90611ce6565b610c096064610c0383600554610e2590919063ffffffff16565b90610ddc565b600e5550565b610c17610e5f565b6000546001600160a01b03908116911614610c445760405162461bcd60e51b815260040161056f90611ce6565b600d8054911515600160a81b0260ff60a81b19909216919091179055565b610c6a610e5f565b6000546001600160a01b03908116911614610c975760405162461bcd60e51b815260040161056f90611ce6565b6001600160a01b038116610cbd5760405162461bcd60e51b815260040161056f90611baf565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6018546001600160a01b0316610d2c610e5f565b6001600160a01b03161480610d5b57506019546001600160a01b0316610d50610e5f565b6001600160a01b0316145b80610d805750601a546001600160a01b0316610d75610e5f565b6001600160a01b0316145b610d9c5760405162461bcd60e51b815260040161056f90611e5b565b4761088d81611451565b601154601254601354601454601554601654601754601854601954601a546001600160a01b03938416939283169291821691168a565b6000610e1e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611544565b9392505050565b600082610e3457506000610658565b82820282848281610e4157fe5b0414610e1e5760405162461bcd60e51b815260040161056f90611ca5565b3390565b6001600160a01b038316610e895760405162461bcd60e51b815260040161056f90611da9565b6001600160a01b038216610eaf5760405162461bcd60e51b815260040161056f90611bf5565b6001600160a01b0380841660008181526003602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610f0a908590611e83565b60405180910390a3505050565b6001600160a01b038316610f3d5760405162461bcd60e51b815260040161056f90611d64565b6001600160a01b038216610f635760405162461bcd60e51b815260040161056f90611aeb565b60008111610f835760405162461bcd60e51b815260040161056f90611d1b565b600d54600160a01b900460ff16611009576001600160a01b03831660009081526004602052604090205460ff1680610fd357506001600160a01b03821660009081526004602052604090205460ff165b80610fed57503260009081526004602052604090205460ff165b6110095760405162461bcd60e51b815260040161056f90611c6e565b6001600160a01b03831660009081526010602052604090205460ff1615801561104257503260009081526010602052604090205460ff16155b61105e5760405162461bcd60e51b815260040161056f90611ac2565b600f5460ff16801561107a5750600d54600160b01b900460ff16155b156110e7576001600160a01b03831660009081526004602052604090205460ff16806110be57506001600160a01b03821660009081526004602052604090205460ff165b806110cb5750600e548111155b6110e75760405162461bcd60e51b815260040161056f90611ded565b60006110f230610890565b600d54909150600160b01b900460ff1615801561111d5750600d546001600160a01b03858116911614155b80156111325750600d54600160a01b900460ff165b80156111475750600d54600160a81b900460ff165b1561119057801561117e57600d5461116e90606490610c03906001600160a01b0316610890565b81111561117e5761117e8161129b565b47801561118e5761118e47611451565b505b6001600160a01b03841660009081526004602052604090205460019060ff16806111d257506001600160a01b03841660009081526004602052604090205460ff165b156111db575060005b600d546001600160a01b038681169116148015906112075750600d546001600160a01b03858116911614155b15611210575060005b61121c8585858461157b565b8080156112365750600d546001600160a01b038681169116145b1561124257600b546012555b80801561125c5750600d546001600160a01b038581169116145b1561126857600a546013555b5050505050565b600081848411156112935760405162461bcd60e51b815260040161056f9190611a6f565b505050900390565b600d805460ff60b01b1916600160b01b179055604080516002808252606080830184529260208301908036833701905050905030816000815181106112dc57fe5b6001600160a01b03928316602091820292909201810191909152600c54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561133057600080fd5b505afa158015611344573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113689190611928565b8160018151811061137557fe5b6001600160a01b039283166020918202929092010152600c5461139b9130911684610e63565b600c5460405163791ac94760e01b81526001600160a01b039091169063791ac947906113d4908590600090869030904290600401611e8c565b600060405180830381600087803b1580156113ee57600080fd5b505af1158015611402573d6000803e3d6000fd5b5050600d805460ff60b01b1916905550505050565b600060065482111561143b5760405162461bcd60e51b815260040161056f90611b65565b60006114456115a6565b9050610e1e8382610ddc565b6018546014546001600160a01b03909116906108fc9061147c9061147685600a610ddc565b90610e25565b6040518115909202916000818181858888f193505050501580156114a4573d6000803e3d6000fd5b506019546016546001600160a01b03909116906108fc906114ca9061147685600a610ddc565b6040518115909202916000818181858888f193505050501580156114f2573d6000803e3d6000fd5b50601a546015546001600160a01b03909116906108fc906115189061147685600a610ddc565b6040518115909202916000818181858888f19350505050158015611540573d6000803e3d6000fd5b5050565b600081836115655760405162461bcd60e51b815260040161056f9190611a6f565b50600083858161157157fe5b0495945050505050565b80611588576115886115c9565b6115938484846115fb565b806115a0576115a06116f0565b50505050565b60008060006115b36116fe565b90925090506115c28282610ddc565b9250505090565b6013541580156115d95750601254155b156115e3576115f9565b60138054600a5560128054600b55600091829055555b565b60008060008060008061160d87611735565b6001600160a01b038f16600090815260016020526040902054959b5093995091975095509350915061163f9087611798565b6001600160a01b03808b1660009081526001602052604080822093909355908a168152205461166e90866117da565b6001600160a01b038916600090815260016020526040902055611690816117ff565b61169a8483611849565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516116dd9190611e83565b60405180910390a3505050505050505050565b600a54601355600b54601255565b60065460055460009182916117138282610ddc565b82101561172b57600654600554935093505050611731565b90925090505b9091565b60008060008060008060008060006117588a60116002015460116001015461186d565b92509250925060006117686115a6565b9050600080600061177b8e8787876118bc565b919e509c509a509598509396509194505050505091939550919395565b6000610e1e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061126f565b600082820183811015610e1e5760405162461bcd60e51b815260040161056f90611c37565b60006118096115a6565b905060006118178383610e25565b3060009081526001602052604090205490915061183490826117da565b30600090815260016020526040902055505050565b6006546118569083611798565b60065560075461186690826117da565b6007555050565b60008080806118816064610c038989610e25565b905060006118946064610c038a89610e25565b905060006118ac826118a68b86611798565b90611798565b9992985090965090945050505050565b60008080806118cb8886610e25565b905060006118d98887610e25565b905060006118e78888610e25565b905060006118f9826118a68686611798565b939b939a50919850919650505050505050565b60006020828403121561191d578081fd5b8135610e1e81611f61565b600060208284031215611939578081fd5b8151610e1e81611f61565b60008060408385031215611956578081fd5b823561196181611f61565b9150602083013561197181611f61565b809150509250929050565b600080600060608486031215611990578081fd5b833561199b81611f61565b925060208401356119ab81611f61565b929592945050506040919091013590565b600080604083850312156119ce578182fd5b82356119d981611f61565b915060208301358015158114611971578182fd5b600080604083850312156119ff578182fd5b8235611a0a81611f61565b946020939093013593505050565b600060208284031215611a29578081fd5b81358015158114610e1e578182fd5b600060208284031215611a49578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015611a9b57858101830151858201604001528201611a7f565b81811115611aac5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252600f908201526e109bdd08189b1858dadb1a5cdd1959608a1b604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252601d908201527f54617820666565206d757374206265206c657373207468616e20323525000000604082015260600190565b6020808252602a908201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260408201526965666c656374696f6e7360b01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526017908201527f54726164696e67206973206e6f74206c69766520796574000000000000000000604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206040820152687468616e207a65726f60b81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601b908201527f4d6178205472616e73666572204c696d69742045786365656473210000000000604082015260600190565b6020808252601e908201527f5465616d20666565206d757374206265206c657373207468616e203235250000604082015260600190565b6020808252600e908201526d139bdd08185d5d1a1bdc9a5e995960921b604082015260600190565b90815260200190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b81811015611edb5784516001600160a01b031683529383019391830191600101611eb6565b50506001600160a01b03969096166060850152505050608001529392505050565b998a5260208a019890985260408901969096526060880194909452608087019290925260a08601526001600160a01b0390811660c086015290811660e0850152908116610100840152166101208201526101400190565b60ff91909116815260200190565b6001600160a01b038116811461088d57600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122007684aca1e37ddd4812ed924239d11fb27487dec2bb974a7d02a4d27f031dde264736f6c634300060c0033000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000005f5e100000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000040000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000a2869eae6120c8f6093324cad2b57c2a64242076000000000000000000000000082d720d444ef19e298b95134f3aa7b2437195b60000000000000000000000000385c903ca2ee06e54eae4b41be586e0b30957d10000000000000000000000000000000000000000000000000000000000000010526f6172696e67205477656e74696573000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004524f415200000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101c65760003560e01c80638da5cb5b116100f7578063dd62ed3e11610095578063ec556ad011610064578063ec556ad0146104ba578063f2fde38b146104da578063f4293890146104fa578063fcd802b11461050f576101cd565b8063dd62ed3e14610445578063e156afd514610465578063e547be691461047a578063ec28438a1461049a576101cd565b8063a9059cbb116100d1578063a9059cbb146103d0578063c4081a4c146103f0578063c816841b14610410578063cf0848f714610425576101cd565b80638da5cb5b1461037957806395d89b411461039b578063a8602fea146103b0576101cd565b8063342aa8b51161016457806351bc3c851161013e57806351bc3c851461031a57806370a082311461032f578063715018a61461034f5780638c0b5e2214610364576101cd565b8063342aa8b5146102c5578063437823ec146102e55780634e64c68a14610305576101cd565b806318160ddd116101a057806318160ddd1461024c5780631b35bed01461026e57806323b872dd14610283578063313ce567146102a3576101cd565b8063010d009b146101d257806306fdde03146101f4578063095ea7b31461021f576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101f26101ed36600461190c565b61053a565b005b34801561020057600080fd5b506102096105b2565b6040516102169190611a6f565b60405180910390f35b34801561022b57600080fd5b5061023f61023a3660046119ed565b610640565b6040516102169190611a64565b34801561025857600080fd5b5061026161065e565b6040516102169190611e83565b34801561027a57600080fd5b506101f2610664565b34801561028f57600080fd5b5061023f61029e36600461197c565b6106a5565b3480156102af57600080fd5b506102b861072c565b6040516102169190611f53565b3480156102d157600080fd5b506101f26102e03660046119bc565b610731565b3480156102f157600080fd5b506101f261030036600461190c565b610791565b34801561031157600080fd5b5061023f6107ea565b34801561032657600080fd5b506101f26107f3565b34801561033b57600080fd5b5061026161034a36600461190c565b610890565b34801561035b57600080fd5b506101f26108b2565b34801561037057600080fd5b50610261610931565b34801561038557600080fd5b5061038e610937565b6040516102169190611a50565b3480156103a757600080fd5b50610209610946565b3480156103bc57600080fd5b506101f26103cb36600461190c565b6109a1565b3480156103dc57600080fd5b5061023f6103eb3660046119ed565b610a10565b3480156103fc57600080fd5b506101f261040b366004611a38565b610a24565b34801561041c57600080fd5b5061038e610a7f565b34801561043157600080fd5b506101f261044036600461190c565b610a8e565b34801561045157600080fd5b50610261610460366004611944565b610ae4565b34801561047157600080fd5b506101f2610b0f565b34801561048657600080fd5b506101f2610495366004611a38565b610b59565b3480156104a657600080fd5b506101f26104b5366004611a38565b610bb4565b3480156104c657600080fd5b506101f26104d5366004611a18565b610c0f565b3480156104e657600080fd5b506101f26104f536600461190c565b610c62565b34801561050657600080fd5b506101f2610d18565b34801561051b57600080fd5b50610524610da6565b6040516102169a99989796959493929190611efc565b610542610e5f565b6000546001600160a01b039081169116146105785760405162461bcd60e51b815260040161056f90611ce6565b60405180910390fd5b601980546001600160a01b0319166001600160a01b039283161790819055166000908152600460205260409020805460ff19166001179055565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106385780601f1061060d57610100808354040283529160200191610638565b820191906000526020600020905b81548152906001019060200180831161061b57829003601f168201915b505050505081565b600061065461064d610e5f565b8484610e63565b5060015b92915050565b60055490565b61066c610e5f565b6000546001600160a01b039081169116146106995760405162461bcd60e51b815260040161056f90611ce6565b600f805460ff19169055565b60006106b2848484610f17565b610722846106be610e5f565b61071d85604051806060016040528060288152602001611f77602891396001600160a01b038a166000908152600360205260408120906106fc610e5f565b6001600160a01b03168152602081019190915260400160002054919061126f565b610e63565b5060019392505050565b600981565b610739610e5f565b6000546001600160a01b039081169116146107665760405162461bcd60e51b815260040161056f90611ce6565b6001600160a01b03919091166000908152601060205260409020805460ff1916911515919091179055565b610799610e5f565b6000546001600160a01b039081169116146107c65760405162461bcd60e51b815260040161056f90611ce6565b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b600f5460ff1681565b6018546001600160a01b0316610807610e5f565b6001600160a01b0316148061083657506019546001600160a01b031661082b610e5f565b6001600160a01b0316145b8061085b5750601a546001600160a01b0316610850610e5f565b6001600160a01b0316145b6108775760405162461bcd60e51b815260040161056f90611e5b565b600061088230610890565b905061088d8161129b565b50565b6001600160a01b03811660009081526001602052604081205461065890611417565b6108ba610e5f565b6000546001600160a01b039081169116146108e75760405162461bcd60e51b815260040161056f90611ce6565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600e5481565b6000546001600160a01b031690565b6009805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106385780601f1061060d57610100808354040283529160200191610638565b6109a9610e5f565b6000546001600160a01b039081169116146109d65760405162461bcd60e51b815260040161056f90611ce6565b601880546001600160a01b0319166001600160a01b039283161790819055166000908152600460205260409020805460ff19166001179055565b6000610654610a1d610e5f565b8484610f17565b610a2c610e5f565b6000546001600160a01b03908116911614610a595760405162461bcd60e51b815260040161056f90611ce6565b6019811115610a7a5760405162461bcd60e51b815260040161056f90611e24565b601255565b600d546001600160a01b031681565b610a96610e5f565b6000546001600160a01b03908116911614610ac35760405162461bcd60e51b815260040161056f90611ce6565b6001600160a01b03166000908152600460205260409020805460ff19169055565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610b17610e5f565b6000546001600160a01b03908116911614610b445760405162461bcd60e51b815260040161056f90611ce6565b600d805460ff60a01b1916600160a01b179055565b610b61610e5f565b6000546001600160a01b03908116911614610b8e5760405162461bcd60e51b815260040161056f90611ce6565b6019811115610baf5760405162461bcd60e51b815260040161056f90611b2e565b601355565b610bbc610e5f565b6000546001600160a01b03908116911614610be95760405162461bcd60e51b815260040161056f90611ce6565b610c096064610c0383600554610e2590919063ffffffff16565b90610ddc565b600e5550565b610c17610e5f565b6000546001600160a01b03908116911614610c445760405162461bcd60e51b815260040161056f90611ce6565b600d8054911515600160a81b0260ff60a81b19909216919091179055565b610c6a610e5f565b6000546001600160a01b03908116911614610c975760405162461bcd60e51b815260040161056f90611ce6565b6001600160a01b038116610cbd5760405162461bcd60e51b815260040161056f90611baf565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6018546001600160a01b0316610d2c610e5f565b6001600160a01b03161480610d5b57506019546001600160a01b0316610d50610e5f565b6001600160a01b0316145b80610d805750601a546001600160a01b0316610d75610e5f565b6001600160a01b0316145b610d9c5760405162461bcd60e51b815260040161056f90611e5b565b4761088d81611451565b601154601254601354601454601554601654601754601854601954601a546001600160a01b03938416939283169291821691168a565b6000610e1e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611544565b9392505050565b600082610e3457506000610658565b82820282848281610e4157fe5b0414610e1e5760405162461bcd60e51b815260040161056f90611ca5565b3390565b6001600160a01b038316610e895760405162461bcd60e51b815260040161056f90611da9565b6001600160a01b038216610eaf5760405162461bcd60e51b815260040161056f90611bf5565b6001600160a01b0380841660008181526003602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610f0a908590611e83565b60405180910390a3505050565b6001600160a01b038316610f3d5760405162461bcd60e51b815260040161056f90611d64565b6001600160a01b038216610f635760405162461bcd60e51b815260040161056f90611aeb565b60008111610f835760405162461bcd60e51b815260040161056f90611d1b565b600d54600160a01b900460ff16611009576001600160a01b03831660009081526004602052604090205460ff1680610fd357506001600160a01b03821660009081526004602052604090205460ff165b80610fed57503260009081526004602052604090205460ff165b6110095760405162461bcd60e51b815260040161056f90611c6e565b6001600160a01b03831660009081526010602052604090205460ff1615801561104257503260009081526010602052604090205460ff16155b61105e5760405162461bcd60e51b815260040161056f90611ac2565b600f5460ff16801561107a5750600d54600160b01b900460ff16155b156110e7576001600160a01b03831660009081526004602052604090205460ff16806110be57506001600160a01b03821660009081526004602052604090205460ff165b806110cb5750600e548111155b6110e75760405162461bcd60e51b815260040161056f90611ded565b60006110f230610890565b600d54909150600160b01b900460ff1615801561111d5750600d546001600160a01b03858116911614155b80156111325750600d54600160a01b900460ff165b80156111475750600d54600160a81b900460ff165b1561119057801561117e57600d5461116e90606490610c03906001600160a01b0316610890565b81111561117e5761117e8161129b565b47801561118e5761118e47611451565b505b6001600160a01b03841660009081526004602052604090205460019060ff16806111d257506001600160a01b03841660009081526004602052604090205460ff165b156111db575060005b600d546001600160a01b038681169116148015906112075750600d546001600160a01b03858116911614155b15611210575060005b61121c8585858461157b565b8080156112365750600d546001600160a01b038681169116145b1561124257600b546012555b80801561125c5750600d546001600160a01b038581169116145b1561126857600a546013555b5050505050565b600081848411156112935760405162461bcd60e51b815260040161056f9190611a6f565b505050900390565b600d805460ff60b01b1916600160b01b179055604080516002808252606080830184529260208301908036833701905050905030816000815181106112dc57fe5b6001600160a01b03928316602091820292909201810191909152600c54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561133057600080fd5b505afa158015611344573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113689190611928565b8160018151811061137557fe5b6001600160a01b039283166020918202929092010152600c5461139b9130911684610e63565b600c5460405163791ac94760e01b81526001600160a01b039091169063791ac947906113d4908590600090869030904290600401611e8c565b600060405180830381600087803b1580156113ee57600080fd5b505af1158015611402573d6000803e3d6000fd5b5050600d805460ff60b01b1916905550505050565b600060065482111561143b5760405162461bcd60e51b815260040161056f90611b65565b60006114456115a6565b9050610e1e8382610ddc565b6018546014546001600160a01b03909116906108fc9061147c9061147685600a610ddc565b90610e25565b6040518115909202916000818181858888f193505050501580156114a4573d6000803e3d6000fd5b506019546016546001600160a01b03909116906108fc906114ca9061147685600a610ddc565b6040518115909202916000818181858888f193505050501580156114f2573d6000803e3d6000fd5b50601a546015546001600160a01b03909116906108fc906115189061147685600a610ddc565b6040518115909202916000818181858888f19350505050158015611540573d6000803e3d6000fd5b5050565b600081836115655760405162461bcd60e51b815260040161056f9190611a6f565b50600083858161157157fe5b0495945050505050565b80611588576115886115c9565b6115938484846115fb565b806115a0576115a06116f0565b50505050565b60008060006115b36116fe565b90925090506115c28282610ddc565b9250505090565b6013541580156115d95750601254155b156115e3576115f9565b60138054600a5560128054600b55600091829055555b565b60008060008060008061160d87611735565b6001600160a01b038f16600090815260016020526040902054959b5093995091975095509350915061163f9087611798565b6001600160a01b03808b1660009081526001602052604080822093909355908a168152205461166e90866117da565b6001600160a01b038916600090815260016020526040902055611690816117ff565b61169a8483611849565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516116dd9190611e83565b60405180910390a3505050505050505050565b600a54601355600b54601255565b60065460055460009182916117138282610ddc565b82101561172b57600654600554935093505050611731565b90925090505b9091565b60008060008060008060008060006117588a60116002015460116001015461186d565b92509250925060006117686115a6565b9050600080600061177b8e8787876118bc565b919e509c509a509598509396509194505050505091939550919395565b6000610e1e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061126f565b600082820183811015610e1e5760405162461bcd60e51b815260040161056f90611c37565b60006118096115a6565b905060006118178383610e25565b3060009081526001602052604090205490915061183490826117da565b30600090815260016020526040902055505050565b6006546118569083611798565b60065560075461186690826117da565b6007555050565b60008080806118816064610c038989610e25565b905060006118946064610c038a89610e25565b905060006118ac826118a68b86611798565b90611798565b9992985090965090945050505050565b60008080806118cb8886610e25565b905060006118d98887610e25565b905060006118e78888610e25565b905060006118f9826118a68686611798565b939b939a50919850919650505050505050565b60006020828403121561191d578081fd5b8135610e1e81611f61565b600060208284031215611939578081fd5b8151610e1e81611f61565b60008060408385031215611956578081fd5b823561196181611f61565b9150602083013561197181611f61565b809150509250929050565b600080600060608486031215611990578081fd5b833561199b81611f61565b925060208401356119ab81611f61565b929592945050506040919091013590565b600080604083850312156119ce578182fd5b82356119d981611f61565b915060208301358015158114611971578182fd5b600080604083850312156119ff578182fd5b8235611a0a81611f61565b946020939093013593505050565b600060208284031215611a29578081fd5b81358015158114610e1e578182fd5b600060208284031215611a49578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015611a9b57858101830151858201604001528201611a7f565b81811115611aac5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252600f908201526e109bdd08189b1858dadb1a5cdd1959608a1b604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252601d908201527f54617820666565206d757374206265206c657373207468616e20323525000000604082015260600190565b6020808252602a908201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260408201526965666c656374696f6e7360b01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526017908201527f54726164696e67206973206e6f74206c69766520796574000000000000000000604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206040820152687468616e207a65726f60b81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601b908201527f4d6178205472616e73666572204c696d69742045786365656473210000000000604082015260600190565b6020808252601e908201527f5465616d20666565206d757374206265206c657373207468616e203235250000604082015260600190565b6020808252600e908201526d139bdd08185d5d1a1bdc9a5e995960921b604082015260600190565b90815260200190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b81811015611edb5784516001600160a01b031683529383019391830191600101611eb6565b50506001600160a01b03969096166060850152505050608001529392505050565b998a5260208a019890985260408901969096526060880194909452608087019290925260a08601526001600160a01b0390811660c086015290811660e0850152908116610100840152166101208201526101400190565b60ff91909116815260200190565b6001600160a01b038116811461088d57600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122007684aca1e37ddd4812ed924239d11fb27487dec2bb974a7d02a4d27f031dde264736f6c634300060c0033

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

000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000005f5e100000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000040000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000a2869eae6120c8f6093324cad2b57c2a64242076000000000000000000000000082d720d444ef19e298b95134f3aa7b2437195b60000000000000000000000000385c903ca2ee06e54eae4b41be586e0b30957d10000000000000000000000000000000000000000000000000000000000000010526f6172696e67205477656e74696573000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004524f415200000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Roaring Twenties
Arg [1] : _symbol (string): ROAR
Arg [2] : _properties (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]

-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [1] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000005f5e100
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [9] : 000000000000000000000000a2869eae6120c8f6093324cad2b57c2a64242076
Arg [10] : 000000000000000000000000082d720d444ef19e298b95134f3aa7b2437195b6
Arg [11] : 0000000000000000000000000385c903ca2ee06e54eae4b41be586e0b30957d1
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [13] : 526f6172696e67205477656e7469657300000000000000000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [15] : 524f415200000000000000000000000000000000000000000000000000000000


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.