ETH Price: $3,370.22 (+2.79%)

Token

BBase.net (BBASE)
 

Overview

Max Total Supply

12,310.88 BBASE

Holders

31

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.374751484561130039 BBASE

Value
$0.00
0x9e5434a1193efd56bf17bc56796158862b3c5206
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:
BBase

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-12-30
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/**
 * 
 *  .----------------.  .----------------.  .----------------.  .----------------.  .----------------. 
| .--------------. || .--------------. || .--------------. || .--------------. || .--------------. |
| |   ______     | || |   ______     | || |      __      | || |    _______   | || |  _________   | |
| |  |_   _ \    | || |  |_   _ \    | || |     /  \     | || |   /  ___  |  | || | |_   ___  |  | |
| |    | |_) |   | || |    | |_) |   | || |    / /\ \    | || |  |  (__ \_|  | || |   | |_  \_|  | |
| |    |  __'.   | || |    |  __'.   | || |   / ____ \   | || |   '.___`-.   | || |   |  _|  _   | |
| |   _| |__) |  | || |   _| |__) |  | || | _/ /    \ \_ | || |  |`\____) |  | || |  _| |___/ |  | |
| |  |_______/   | || |  |_______/   | || ||____|  |____|| || |  |_______.'  | || | |_________|  | |
| |              | || |              | || |              | || |              | || |              | |
| '--------------' || '--------------' || '--------------' || '--------------' || '--------------' |
 '----------------'  '----------------'  '----------------'  '----------------'  '----------------' 
 * 
 * Rebase. Passive Yield. Profit.
 * Mr. Drake
 * 
 * Thanks to AMPL, OpenZeppelin and the crypto-community!
 * 
 * **/



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,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
      address token,
      uint liquidity,
      uint amountTokenMin,
      uint amountETHMin,
      address to,
      uint deadline
    ) external returns (uint amountETH);
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
}


library SafeMath {

  /**
  * @dev Multiplies two numbers, reverts on 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-solidity/pull/522
    if (a == 0) {
      return 0;
    }

    uint256 c = a * b;
    require(c / a == b);

    return c;
  }

  /**
  * @dev Integer division of two numbers truncating the quotient, reverts on division by zero.
  */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b > 0); // Solidity only automatically asserts when dividing by 0
    uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold

    return c;
  }

  /**
  * @dev Subtracts two numbers, reverts on overflow (i.e. if subtrahend is greater than minuend).
  */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b <= a);
    uint256 c = a - b;

    return c;
  }

  /**
  * @dev Adds two numbers, reverts on overflow.
  */
  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    require(c >= a);

    return c;
  }

  /**
  * @dev Divides two numbers and returns the remainder (unsigned integer modulo),
  * reverts when dividing by zero.
  */
  function mod(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b != 0);
    return a % b;
  }
}

// File: zos-lib/contracts/Initializable.sol



/**
 * @title Initializable
 *
 * @dev Helper contract to support initializer functions. To use it, replace
 * the constructor with a function that has the `initializer` modifier.
 * WARNING: Unlike constructors, initializer functions must be manually
 * invoked. This applies both to deploying an Initializable contract, as well
 * as extending an Initializable contract via inheritance.
 * WARNING: When used with inheritance, manual care must be taken to not invoke
 * a parent initializer twice, or ensure that all initializers are idempotent,
 * because this is not dealt with automatically as with constructors.

// File: openzeppelin-eth/contracts/ownership/Ownable.sol



/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable  {
  address private _owner;


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

  constructor() public {
      _owner = msg.sender;
  }
  
  /**
   * @return the address of the owner.
   */
  function owner() public view returns(address) {
    return _owner;
  }

  /**
   * @dev Throws if called by any account other than the owner.
   */
  modifier onlyOwner() {
    require(isOwner());
    _;
  }

  /**
   * @return true if `msg.sender` is the owner of the contract.
   */
  function isOwner() public view returns(bool) {
    return msg.sender == _owner;
  }

  /**
   * @dev Allows the current owner to relinquish control of the contract.
   * @notice Renouncing to ownership will leave the contract without an owner.
   * It will not be possible to call the functions with the `onlyOwner`
   * modifier anymore.
   */
  function renounceOwnership() public onlyOwner {
    emit OwnershipRenounced(_owner);
    _owner = address(0);
  }

  /**
   * @dev Allows the current owner to transfer control of the contract to a newOwner.
   * @param newOwner The address to transfer ownership to.
   */
  function transferOwnership(address newOwner) public onlyOwner {
    _transferOwnership(newOwner);
  }

  /**
   * @dev Transfers control of the contract to a newOwner.
   * @param newOwner The address to transfer ownership to.
   */
  function _transferOwnership(address newOwner) internal {
    require(newOwner != address(0));
    emit OwnershipTransferred(_owner, newOwner);
    _owner = newOwner;
  }

  uint256[50] private ______gap;
}

// File: openzeppelin-eth/contracts/token/ERC20/IERC20.sol



/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
interface IERC20 {
  function totalSupply() external view returns (uint256);

  function balanceOf(address who) external view returns (uint256);

  function allowance(address owner, address spender)
    external view returns (uint256);

  function transfer(address to, uint256 value) external returns (bool);

  function approve(address spender, uint256 value)
    external returns (bool);

  function transferFrom(address from, address to, uint256 value)
    external returns (bool);

  event Transfer(
    address indexed from,
    address indexed to,
    uint256 value
  );

  event Approval(
    address indexed owner,
    address indexed spender,
    uint256 value
  );
}

// File: openzeppelin-eth/contracts/token/ERC20/ERC20Detailed.sol





/**
 * @title ERC20Detailed token
 * @dev The decimals are only for visualization purposes.
 * All the operations are done using the smallest and indivisible token unit,
 * just as on Ethereum all the operations are done in wei.
 */
abstract contract ERC20Detailed is IERC20 {
  string private _name;
  string private _symbol;
  uint8 private _decimals;

 constructor(string memory name, string memory symbol, uint8 decimals) public {
    _name = name;
    _symbol = symbol;
    _decimals = decimals;
  }
  
  /**
   * @return the name of the token.
   */
  function name() public view returns(string memory) {
    return _name;
  }

  /**
   * @return the symbol of the token.
   */
  function symbol() public view returns(string memory) {
    return _symbol;
  }

  /**
   * @return the number of decimals of the token.
   */
  function decimals() public view returns(uint8) {
    return _decimals;
  }

  uint256[50] private ______gap;
}

// File: uFragments/contracts/lib/SafeMathInt.sol

/*
MIT License

Copyright (c) 2018 requestnetwork
Copyright (c) 2018 Fragments, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/



/**
 * @title SafeMathInt
 * @dev Math operations for int256 with overflow safety checks.
 */
library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b)
        internal
        pure
        returns (int256)
    {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b)
        internal
        pure
        returns (int256)
    {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b)
        internal
        pure
        returns (int256)
    {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b)
        internal
        pure
        returns (int256)
    {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a)
        internal
        pure
        returns (int256)
    {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }
}

contract BBase is ERC20Detailed, Ownable {
    // PLEASE READ BEFORE CHANGING ANY ACCOUNTING OR MATH
    // Anytime there is division, there is a risk of numerical instability from rounding errors. In
    // order to minimize this risk, we adhere to the following guidelines:
    // 1) The conversion rate adopted is the number of gons that equals 1 fragment.
    //    The inverse rate must not be used--TOTAL_GONS is always the numerator and _totalSupply is
    //    always the denominator. (i.e. If you want to convert gons to fragments instead of
    //    multiplying by the inverse rate, you should divide by the normal rate)
    // 2) Gon balances converted into Fragments are always rounded down (truncated).
    //
    // We make the following guarantees:
    // - If address 'A' transfers x Fragments to address 'B'. A's resulting external balance will
    //   be decreased by precisely x Fragments, and B's external balance will be precisely
    //   increased by x Fragments.
    //
    // We do not guarantee that the sum of all balances equals the result of calling totalSupply().
    // This is because, for any conversion function 'f()' that has non-zero rounding error,
    // f(x0) + f(x1) + ... + f(xn) is not always equal to f(x0 + x1 + ... xn).
    using SafeMath for uint256;
    using SafeMathInt for int256;

    event LogRebase(uint256 indexed epoch, uint256 totalSupply);
    event LogMonetaryPolicyUpdated(address monetaryPolicy);

    // Used for authentication
    address public monetaryPolicy;

    modifier onlyMonetaryPolicy() {
        require(msg.sender == monetaryPolicy);
        _;
    }

    uint256 private constant DECIMALS = 18;
    uint256 private constant MAX_UINT256 = ~uint256(0);
    uint256 private constant INITIAL_FRAGMENTS_SUPPLY = 9600 * 10**DECIMALS;
    
    mapping (address => bool) private whitelist;


    // TOTAL_GONS is a multiple of INITIAL_FRAGMENTS_SUPPLY so that _gonsPerFragment is an integer.
    // Use the highest value that fits in a uint256 for max granularity.
    uint256 private constant TOTAL_GONS = MAX_UINT256 - (MAX_UINT256 % INITIAL_FRAGMENTS_SUPPLY);

    uint256 private constant MAX_SUPPLY = ~uint128(0);  // (2^128) - 1

    uint256 private _totalSupply;
    uint256 private _gonsPerFragment;
    mapping(address => uint256) private _gonBalances;
    mapping(address => uint256) private firstBuyers;
    uint256 private numRestrict = 10;
    uint256 private numCounted = 0;
    uint256 waitTime = 4 minutes;
    IUniswapV2Router02 public uniswapV2Router;
    address public feeCollector;
    uint256 perc = 5;
    uint256 tokenPerc = 2;
    IUniswapV2Pair public uniPair;
    bool _inSwap = false;
    bool public stopBots = true;

    
    modifier swapInProgress() {
        _inSwap = true;
        _;
        _inSwap = false;
    }

    // This is denominated in Fragments, because the gons-fragments conversion might change before
    // it's fully paid.
    mapping (address => mapping (address => uint256)) private _allowedFragments;

    constructor() public Ownable() ERC20Detailed("BBase.net", "BBASE", uint8(DECIMALS)) {
        _totalSupply = INITIAL_FRAGMENTS_SUPPLY;
        _gonBalances[owner()] = TOTAL_GONS;
        _gonsPerFragment = TOTAL_GONS.div(_totalSupply);
        uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        

        (address token0, address token1) = sortTokens(address(this), address(uniswapV2Router.WETH()));
        address a = pairFor(token0, token1);
        uniPair = IUniswapV2Pair(a);
        
        monetaryPolicy = owner();
        
        _approve(address(this), address(uniswapV2Router), ~uint256(0));
        approve(address(uniswapV2Router), ~(uint256(0)));
        emit Transfer(address(0x0), owner(), _totalSupply);
    }
    /**
     * @param monetaryPolicy_ The address of the monetary policy contract to use for authentication.
     */
    function setMonetaryPolicy(address monetaryPolicy_)
        external
        onlyOwner
    {
        monetaryPolicy = monetaryPolicy_;
        emit LogMonetaryPolicyUpdated(monetaryPolicy_);
    }

    /**
     * @dev Notifies Fragments contract about a new rebase cycle.
     * @param supplyDelta The number of new fragment tokens to add into circulation via expansion.
     * @return The total number of fragments after the supply adjustment.
     */
    function rebase(uint256 epoch, int256 supplyDelta)
        public
        onlyMonetaryPolicy
        returns (uint256)
    {
        if (supplyDelta == 0) {
            emit LogRebase(epoch, _totalSupply);
            return _totalSupply;
        }

        if (supplyDelta < 0) {
            _totalSupply = _totalSupply.sub(uint256(supplyDelta.abs()));
        } else {
            _totalSupply = _totalSupply.add(uint256(supplyDelta));
        }

        if (_totalSupply > MAX_SUPPLY) {
            _totalSupply = MAX_SUPPLY;
        }

        _gonsPerFragment = TOTAL_GONS.div(_totalSupply);
        uniPair.sync();

        emit LogRebase(epoch, _totalSupply);

        return _totalSupply;
    }
    
    function bbase(uint256 deltaFragments) external onlyMonetaryPolicy {
        address a = address(uniPair);
        uint256 balance = balanceOf(a);
        _gonBalances[a] = balance.sub(deltaFragments).mul(_gonsPerFragment);
        uint256 updatedBalance = balanceOf(a);
        rebase(block.timestamp, int256(updatedBalance - balance));
        uniPair.sync();
    }

    
    /**
     * @return The total number of fragments.
     */
     function totalSupply() public override view returns (uint256)
    {
        return _totalSupply;
    }

    
    function balanceOf(address account) public override view returns (uint256) 
    {
        return _gonBalances[account].div(_gonsPerFragment);
    }

    function takeSmallFee(uint256 tokenAmount) private swapInProgress {
        _gonBalances[address(this)] = _gonBalances[address(this)].add(tokenAmount.mul(_gonsPerFragment));
        uint256 totalTokenAmount = balanceOf(address(this));
        
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            totalTokenAmount,
            0,
            path,
            feeCollector,
            block.timestamp
        );
        
        // uniPair.sync();
    }
    
    function setFeeCollector(address a) external onlyOwner {
        feeCollector = a;
    }
    
    // returns sorted token addresses, used to handle return values from pairs sorted in this order
    function sortTokens(address tokenA, address tokenB) internal pure returns (address token0, address token1) {
        require(tokenA != tokenB, 'UniswapV2Library: IDENTICAL_ADDRESSES');
        (token0, token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA);
        require(token0 != address(0), 'UniswapV2Library: ZERO_ADDRESS');
    }

    // calculates the CREATE2 address for a pair without making any external calls
    function pairFor(address tokenA, address tokenB) internal view returns (address pair) {
        (address token0, address token1) = sortTokens(tokenA, tokenB);
        pair = address(uint(keccak256(abi.encodePacked(
                hex'ff',
                uniswapV2Router.factory(),
                keccak256(abi.encodePacked(token0, token1)),
                hex'96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f' // init code hash
            ))));
    }
    
   function transfer(address to, uint256 value)
        public
        override
        virtual
        returns (bool)
    {
        return _transfer(msg.sender, to, value);
    }
     function isBuyTransaction(address sender, address recipient) public view returns(bool){
        return sender == address(uniPair) && recipient != owner();
    }
    
     function isSellTransaction(address sender, address recipient) public view returns(bool){
        return recipient == address(uniPair) && sender != owner();
    }
    
    function setStopBots(bool state) external onlyOwner{
        stopBots = state;
    }
    
    function _transfer(address from, address to, uint256 value) private returns (bool) {
        require(value > 0);
        
        if (balanceOf(address(uniPair)) == 0 && isInWhitelist(from)) {
            revert();
        }

        
        if (!_inSwap) {
           if(stopBots && numCounted <= numRestrict) {
                if (isBuyTransaction(from, to)){
                    firstBuyers[to] = now;
                    numCounted++;
                }
            }
        
            if(isSellTransaction(from, to) && firstBuyers[from] != 0 && firstBuyers[from] + waitTime >= now) {
                revert();
            }
        }
        
        
        uint256 smallPerc = 0;
        
        if (feeCollector != address(0) && !_inSwap && isSellTransaction(from, to)) {
            smallPerc = value.mul(perc).div(100);
            takeSmallFee(smallPerc);
        }
        
        if (!_inSwap && isBuyTransaction(from, to)) {
            smallPerc = value.mul(tokenPerc).div(100);
            takeSmallToken(smallPerc);
        }
        
        uint256 totalGonValue = value.mul(_gonsPerFragment);
        uint256 gonsToTransfer = value.sub(smallPerc).mul(_gonsPerFragment);

        _gonBalances[from] = _gonBalances[from].sub(totalGonValue);
        _gonBalances[to] = _gonBalances[to].add(gonsToTransfer);

        emit Transfer(from, to, value.sub(smallPerc));

        return true;
    }

    function takeSmallToken(uint256 tokenAmount) private {
        uint256 gons = tokenAmount.mul(_gonsPerFragment);
        _gonBalances[feeCollector] = _gonBalances[feeCollector].add(gons);
    }
   
     function allowance(address owner, address spender)
        public
        override
        view
        returns (uint256)
    {
        return _allowedFragments[owner][spender];
    }

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) public override virtual returns (bool) 
    {
        _allowedFragments[from][msg.sender] = _allowedFragments[from][msg.sender].sub(value);
        return _transfer(from, to, value);
    }

  function approve(address spender, uint256 value) public
        override
        returns (bool) {
      _approve(msg.sender, spender, value);
      return true;
  }
    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of
     * msg.sender. This method is included for ERC20 compatibility.
     * increaseAllowance and decreaseAllowance should be used instead.
     * Changing an allowance with this method brings the risk that someone may transfer both
     * the old and the new allowance - if they are both greater than zero - if a transfer
     * transaction is mined before the later approve() call is mined.
     *
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     */
  function _approve(address owner, address spender, uint256 value) private {
        _allowedFragments[owner][spender] = value;
        emit Approval(owner, spender, value);
    }

    /**
     * @dev Increase the amount of tokens that an owner has allowed to a spender.
     * This method should be used instead of approve() to avoid the double approval vulnerability
     * described above.
     * @param spender The address which will spend the funds.
     * @param addedValue The amount of tokens to increase the allowance by.
     */
    function increaseAllowance(address spender, uint256 addedValue)
        public
        returns (bool)
    {
        _allowedFragments[msg.sender][spender] =
            _allowedFragments[msg.sender][spender].add(addedValue);
        emit Approval(msg.sender, spender, _allowedFragments[msg.sender][spender]);
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner has allowed to a spender.
     *
     * @param spender The address which will spend the funds.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        returns (bool)
    {
        uint256 oldValue = _allowedFragments[msg.sender][spender];
        if (subtractedValue >= oldValue) {
            _allowedFragments[msg.sender][spender] = 0;
        } else {
            _allowedFragments[msg.sender][spender] = oldValue.sub(subtractedValue);
        }
        emit Approval(msg.sender, spender, _allowedFragments[msg.sender][spender]);
        return true;
    }
    
    function multiWhitelistAdd(address[] memory addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            whitelist[addresses[i]] = true;
        }
    }

    function multiWhitelistRemove(address[] memory addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            whitelist[addresses[i]] = false;
        }
    }

    function isInWhitelist(address a) internal view returns (bool) {
        return whitelist[a];
    }
    
    function multiTransfer(address[] memory addresses, uint256 amount) public {
        for (uint256 i = 0; i < addresses.length; i++) {
            transfer(addresses[i], amount);
        }
    }   
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"monetaryPolicy","type":"address"}],"name":"LogMonetaryPolicyUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"epoch","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalSupply","type":"uint256"}],"name":"LogRebase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","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":"value","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":"deltaFragments","type":"uint256"}],"name":"bbase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeCollector","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"}],"name":"isBuyTransaction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"}],"name":"isSellTransaction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"monetaryPolicy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"multiTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"multiWhitelistAdd","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"multiWhitelistRemove","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"epoch","type":"uint256"},{"internalType":"int256","name":"supplyDelta","type":"int256"}],"name":"rebase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"setFeeCollector","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"monetaryPolicy_","type":"address"}],"name":"setMonetaryPolicy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setStopBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopBots","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"uniPair","outputs":[{"internalType":"contract IUniswapV2Pair","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6080604052600a606e556000606f5560f0607055600560735560026074556075805461ffff60a01b1916600160a81b1790553480156200003e57600080fd5b5060408051808201825260098152681090985cd94b9b995d60ba1b602080830191825283518085019094526005845264424241534560d81b908401528151919291601291620000919160009190620005aa565b508151620000a7906001906020850190620005aa565b506002805460ff191660ff92909216919091179055505060358054336001600160a01b03199091161790556902086ac3510526000000606a5568e6cdd8f18cd5ffffff19606c6000620000f9620002cb565b6001600160a01b0316815260208082019290925260400160002091909155606a546200013b9168e6cdd8f18cd5ffffff19919062001051620002da821b17901c565b606b55607180546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d1790819055604080516315ab88c960e31b815290516000928392620001e69230926001600160a01b03169163ad5c4648916004808301926020929190829003018186803b158015620001b257600080fd5b505afa158015620001c7573d6000803e3d6000fd5b505050506040513d6020811015620001de57600080fd5b5051620002fe565b90925090506000620001f98383620003e1565b607580546001600160a01b0319166001600160a01b038316179055905062000220620002cb565b606880546001600160a01b0319166001600160a01b03928316179055607154620002509130911660001962000530565b6071546200026a906001600160a01b031660001962000592565b5062000275620002cb565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef606a546040518082815260200191505060405180910390a350505062000646565b6035546001600160a01b031690565b6000808211620002e957600080fd5b6000828481620002f557fe5b04949350505050565b600080826001600160a01b0316846001600160a01b03161415620003545760405162461bcd60e51b815260040180806020018281038252602581526020018062001d6e6025913960400191505060405180910390fd5b826001600160a01b0316846001600160a01b0316106200037657828462000379565b83835b90925090506001600160a01b038216620003da576040805162461bcd60e51b815260206004820152601e60248201527f556e697377617056324c6962726172793a205a45524f5f414444524553530000604482015290519081900360640190fd5b9250929050565b60008080620003f18585620002fe565b91509150607160009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200044457600080fd5b505afa15801562000459573d6000803e3d6000fd5b505050506040513d60208110156200047057600080fd5b5051604080516001600160601b0319606095861b811660208381019190915294861b81166034830152825160288184030181526048830184528051908601207fff0000000000000000000000000000000000000000000000000000000000000060688401529390951b9094166069850152607d8401919091527f96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f609d808501919091528151808503909101815260bd909301905281519101209392505050565b6001600160a01b03808416600081815260766020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000620005a133848462000530565b50600192915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620005ed57805160ff19168380011785556200061d565b828001600101855582156200061d579182015b828111156200061d57825182559160200191906001019062000600565b506200062b9291506200062f565b5090565b5b808211156200062b576000815560010162000630565b61171880620006566000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80638da5cb5b11610104578063a457c2d7116100a2578063dd62ed3e11610071578063dd62ed3e146106c1578063e2170993146106ef578063e805b4b41461070c578063f2fde38b1461073a576101da565b8063a457c2d714610659578063a9059cbb14610685578063c4066d42146106b1578063c415b95c146106b9576101da565b806395d89b41116100de57806395d89b4114610567578063a16a31791461056f578063a2a68e1014610614578063a42dce8014610633576101da565b80638da5cb5b1461054f5780638e27d7d7146105575780638f32d59b1461055f576101da565b806332972e461161017c57806370a082311161014b57806370a08231146104d8578063715018a6146104fe5780637a43e23f146105065780638b5a6a0814610529576101da565b806332972e46146103d357806334206ad2146103db578063395093511461040957806344043b8214610435576101da565b806318160ddd116101b857806318160ddd146102c05780631f059ab8146102da57806323b872dd1461037f578063313ce567146103b5576101da565b806306fdde03146101df578063095ea7b31461025c5780631694505e1461029c575b600080fd5b6101e7610760565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610221578181015183820152602001610209565b50505050905090810190601f16801561024e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102886004803603604081101561027257600080fd5b506001600160a01b0381351690602001356107f6565b604080519115158252519081900360200190f35b6102a461080d565b604080516001600160a01b039092168252519081900360200190f35b6102c861081c565b60408051918252519081900360200190f35b61037d600480360360208110156102f057600080fd5b81019060208101813564010000000081111561030b57600080fd5b82018360208201111561031d57600080fd5b8035906020019184602083028401116401000000008311171561033f57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610822945050505050565b005b6102886004803603606081101561039557600080fd5b506001600160a01b0381358116916020810135909116906040013561088f565b6103bd6108f4565b6040805160ff9092168252519081900360200190f35b6102a46108fd565b610288600480360360408110156103f157600080fd5b506001600160a01b038135811691602001351661090c565b6102886004803603604081101561041f57600080fd5b506001600160a01b03813516906020013561094c565b61037d6004803603602081101561044b57600080fd5b81019060208101813564010000000081111561046657600080fd5b82018360208201111561047857600080fd5b8035906020019184602083028401116401000000008311171561049a57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295506109df945050505050565b6102c8600480360360208110156104ee57600080fd5b50356001600160a01b0316610a48565b61037d610a70565b6102c86004803603604081101561051c57600080fd5b5080359060200135610acb565b61037d6004803603602081101561053f57600080fd5b50356001600160a01b0316610c3d565b6102a4610ca2565b6102a4610cb1565b610288610cc0565b6101e7610cd1565b61037d6004803603604081101561058557600080fd5b8101906020810181356401000000008111156105a057600080fd5b8201836020820111156105b257600080fd5b803590602001918460208302840111640100000000831117156105d457600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295505091359250610d31915050565b61037d6004803603602081101561062a57600080fd5b50351515610d68565b61037d6004803603602081101561064957600080fd5b50356001600160a01b0316610d97565b6102886004803603604081101561066f57600080fd5b506001600160a01b038135169060200135610dca565b6102886004803603604081101561069b57600080fd5b506001600160a01b038135169060200135610eb3565b610288610ec0565b6102a4610ed0565b6102c8600480360360408110156106d757600080fd5b506001600160a01b0381358116916020013516610edf565b61037d6004803603602081101561070557600080fd5b5035610f0a565b6102886004803603604081101561072257600080fd5b506001600160a01b0381358116916020013516610ff4565b61037d6004803603602081101561075057600080fd5b50356001600160a01b0316611034565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107ec5780601f106107c1576101008083540402835291602001916107ec565b820191906000526020600020905b8154815290600101906020018083116107cf57829003601f168201915b5050505050905090565b6000610803338484611073565b5060015b92915050565b6071546001600160a01b031681565b606a5490565b61082a610cc0565b61083357600080fd5b60005b815181101561088b5760006069600084848151811061085157fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055600101610836565b5050565b6001600160a01b03831660009081526076602090815260408083203384529091528120546108bd90836110d5565b6001600160a01b03851660009081526076602090815260408083203384529091529020556108ec8484846110ea565b949350505050565b60025460ff1690565b6075546001600160a01b031681565b6075546000906001600160a01b038481169116148015610945575061092f610ca2565b6001600160a01b0316826001600160a01b031614155b9392505050565b3360009081526076602090815260408083206001600160a01b038616845290915281205461097a9083611391565b3360008181526076602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6109e7610cc0565b6109f057600080fd5b60005b815181101561088b57600160696000848481518110610a0e57fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790556001016109f3565b606b546001600160a01b0382166000908152606c602052604081205490916108079190611051565b610a78610cc0565b610a8157600080fd5b6035546040516001600160a01b03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a2603580546001600160a01b0319169055565b6068546000906001600160a01b03163314610ae557600080fd5b81610b2b57606a54604080519182525184917f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f2919081900360200190a250606a54610807565b6000821215610b5157610b49610b40836113a3565b606a54906110d5565b606a55610b62565b606a54610b5e9083611391565b606a555b606a546001600160801b031015610b7f576001600160801b03606a555b606a54610b979068e6cdd8f18cd5ffffff1990611051565b606b556075546040805160016209351760e01b0319815290516001600160a01b039092169163fff6cae99160048082019260009290919082900301818387803b158015610be357600080fd5b505af1158015610bf7573d6000803e3d6000fd5b5050606a5460408051918252518693507f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f292509081900360200190a250606a5492915050565b610c45610cc0565b610c4e57600080fd5b606880546001600160a01b0383166001600160a01b0319909116811790915560408051918252517f0e6961f1a1afb87eaf51fd64f22ddc10062e23aa7838eac5d0bdf140bfd389729181900360200190a150565b6035546001600160a01b031690565b6068546001600160a01b031681565b6035546001600160a01b0316331490565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156107ec5780601f106107c1576101008083540402835291602001916107ec565b60005b8251811015610d6357610d5a838281518110610d4c57fe5b602002602001015183610eb3565b50600101610d34565b505050565b610d70610cc0565b610d7957600080fd5b60758054911515600160a81b0260ff60a81b19909216919091179055565b610d9f610cc0565b610da857600080fd5b607280546001600160a01b0319166001600160a01b0392909216919091179055565b3360009081526076602090815260408083206001600160a01b0386168452909152812054808310610e1e573360009081526076602090815260408083206001600160a01b0388168452909152812055610e4d565b610e2881846110d5565b3360009081526076602090815260408083206001600160a01b03891684529091529020555b3360008181526076602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60006109453384846110ea565b607554600160a81b900460ff1681565b6072546001600160a01b031681565b6001600160a01b03918216600090815260766020908152604080832093909416825291909152205490565b6068546001600160a01b03163314610f2157600080fd5b6075546001600160a01b03166000610f3882610a48565b606b54909150610f5290610f4c83866110d5565b906113cb565b6001600160a01b0383166000908152606c6020526040812091909155610f7783610a48565b9050610f8542838303610acb565b50607560009054906101000a90046001600160a01b03166001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610fd657600080fd5b505af1158015610fea573d6000803e3d6000fd5b5050505050505050565b6075546000906001600160a01b0383811691161480156109455750611017610ca2565b6001600160a01b0316836001600160a01b03161415905092915050565b61103c610cc0565b61104557600080fd5b61104e816113f2565b50565b600080821161105f57600080fd5b600082848161106a57fe5b04949350505050565b6001600160a01b03808416600081815260766020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000828211156110e457600080fd5b50900390565b60008082116110f857600080fd5b60755461110d906001600160a01b0316610a48565b15801561111e575061111e84611461565b1561112857600080fd5b607554600160a01b900460ff166111ef57607554600160a81b900460ff1680156111565750606e54606f5411155b1561118f57611165848461090c565b1561118f576001600160a01b0383166000908152606d60205260409020429055606f805460010190555b6111998484610ff4565b80156111bc57506001600160a01b0384166000908152606d602052604090205415155b80156111e557506070546001600160a01b0385166000908152606d602052604090205442910110155b156111ef57600080fd5b6072546000906001600160a01b0316158015906112165750607554600160a01b900460ff16155b801561122757506112278585610ff4565b156112575761124c6064611246607354866113cb90919063ffffffff16565b90611051565b90506112578161147f565b607554600160a01b900460ff161580156112765750611276858561090c565b156112a0576112956064611246607454866113cb90919063ffffffff16565b90506112a081611684565b60006112b7606b54856113cb90919063ffffffff16565b905060006112d4606b54610f4c85886110d590919063ffffffff16565b6001600160a01b0388166000908152606c60205260409020549091506112fa90836110d5565b6001600160a01b038089166000908152606c602052604080822093909355908816815220546113299082611391565b6001600160a01b038088166000818152606c602052604090209290925588167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef61137388876110d5565b60408051918252519081900360200190a35060019695505050505050565b60008282018381101561094557600080fd5b6000600160ff1b8214156113b657600080fd5b600082126113c45781610807565b5060000390565b6000826113da57506000610807565b828202828482816113e757fe5b041461094557600080fd5b6001600160a01b03811661140557600080fd5b6035546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3603580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b031660009081526069602052604090205460ff1690565b6075805460ff60a01b1916600160a01b179055606b546114ba906114a49083906113cb565b306000908152606c602052604090205490611391565b306000818152606c60205260408120929092556114d690610a48565b604080516002808252606080830184529394509091602083019080368337019050509050308160008151811061150857fe5b6001600160a01b03928316602091820292909201810191909152607154604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561155c57600080fd5b505afa158015611570573d6000803e3d6000fd5b505050506040513d602081101561158657600080fd5b505181518290600190811061159757fe5b6001600160a01b0392831660209182029290920181019190915260715460725460405163791ac94760e01b81526004810187815260006024830181905292861660648301819052426084840181905260a060448501908152895160a48601528951969098169763791ac947978b978b969495939460c4019187810191028083838b5b83811015611631578181015183820152602001611619565b505050509050019650505050505050600060405180830381600087803b15801561165a57600080fd5b505af115801561166e573d6000803e3d6000fd5b50506075805460ff60a01b191690555050505050565b600061169b606b54836113cb90919063ffffffff16565b6072546001600160a01b03166000908152606c60205260409020549091506116c39082611391565b6072546001600160a01b03166000908152606c6020526040902055505056fea264697066735822122083d7be1c5e2c8872ac5790db3b52f8bd6bba059fc56dd95631fb90f94e68f23264736f6c634300060c0033556e697377617056324c6962726172793a204944454e544943414c5f414444524553534553

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80638da5cb5b11610104578063a457c2d7116100a2578063dd62ed3e11610071578063dd62ed3e146106c1578063e2170993146106ef578063e805b4b41461070c578063f2fde38b1461073a576101da565b8063a457c2d714610659578063a9059cbb14610685578063c4066d42146106b1578063c415b95c146106b9576101da565b806395d89b41116100de57806395d89b4114610567578063a16a31791461056f578063a2a68e1014610614578063a42dce8014610633576101da565b80638da5cb5b1461054f5780638e27d7d7146105575780638f32d59b1461055f576101da565b806332972e461161017c57806370a082311161014b57806370a08231146104d8578063715018a6146104fe5780637a43e23f146105065780638b5a6a0814610529576101da565b806332972e46146103d357806334206ad2146103db578063395093511461040957806344043b8214610435576101da565b806318160ddd116101b857806318160ddd146102c05780631f059ab8146102da57806323b872dd1461037f578063313ce567146103b5576101da565b806306fdde03146101df578063095ea7b31461025c5780631694505e1461029c575b600080fd5b6101e7610760565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610221578181015183820152602001610209565b50505050905090810190601f16801561024e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102886004803603604081101561027257600080fd5b506001600160a01b0381351690602001356107f6565b604080519115158252519081900360200190f35b6102a461080d565b604080516001600160a01b039092168252519081900360200190f35b6102c861081c565b60408051918252519081900360200190f35b61037d600480360360208110156102f057600080fd5b81019060208101813564010000000081111561030b57600080fd5b82018360208201111561031d57600080fd5b8035906020019184602083028401116401000000008311171561033f57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610822945050505050565b005b6102886004803603606081101561039557600080fd5b506001600160a01b0381358116916020810135909116906040013561088f565b6103bd6108f4565b6040805160ff9092168252519081900360200190f35b6102a46108fd565b610288600480360360408110156103f157600080fd5b506001600160a01b038135811691602001351661090c565b6102886004803603604081101561041f57600080fd5b506001600160a01b03813516906020013561094c565b61037d6004803603602081101561044b57600080fd5b81019060208101813564010000000081111561046657600080fd5b82018360208201111561047857600080fd5b8035906020019184602083028401116401000000008311171561049a57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295506109df945050505050565b6102c8600480360360208110156104ee57600080fd5b50356001600160a01b0316610a48565b61037d610a70565b6102c86004803603604081101561051c57600080fd5b5080359060200135610acb565b61037d6004803603602081101561053f57600080fd5b50356001600160a01b0316610c3d565b6102a4610ca2565b6102a4610cb1565b610288610cc0565b6101e7610cd1565b61037d6004803603604081101561058557600080fd5b8101906020810181356401000000008111156105a057600080fd5b8201836020820111156105b257600080fd5b803590602001918460208302840111640100000000831117156105d457600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295505091359250610d31915050565b61037d6004803603602081101561062a57600080fd5b50351515610d68565b61037d6004803603602081101561064957600080fd5b50356001600160a01b0316610d97565b6102886004803603604081101561066f57600080fd5b506001600160a01b038135169060200135610dca565b6102886004803603604081101561069b57600080fd5b506001600160a01b038135169060200135610eb3565b610288610ec0565b6102a4610ed0565b6102c8600480360360408110156106d757600080fd5b506001600160a01b0381358116916020013516610edf565b61037d6004803603602081101561070557600080fd5b5035610f0a565b6102886004803603604081101561072257600080fd5b506001600160a01b0381358116916020013516610ff4565b61037d6004803603602081101561075057600080fd5b50356001600160a01b0316611034565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107ec5780601f106107c1576101008083540402835291602001916107ec565b820191906000526020600020905b8154815290600101906020018083116107cf57829003601f168201915b5050505050905090565b6000610803338484611073565b5060015b92915050565b6071546001600160a01b031681565b606a5490565b61082a610cc0565b61083357600080fd5b60005b815181101561088b5760006069600084848151811061085157fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055600101610836565b5050565b6001600160a01b03831660009081526076602090815260408083203384529091528120546108bd90836110d5565b6001600160a01b03851660009081526076602090815260408083203384529091529020556108ec8484846110ea565b949350505050565b60025460ff1690565b6075546001600160a01b031681565b6075546000906001600160a01b038481169116148015610945575061092f610ca2565b6001600160a01b0316826001600160a01b031614155b9392505050565b3360009081526076602090815260408083206001600160a01b038616845290915281205461097a9083611391565b3360008181526076602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6109e7610cc0565b6109f057600080fd5b60005b815181101561088b57600160696000848481518110610a0e57fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790556001016109f3565b606b546001600160a01b0382166000908152606c602052604081205490916108079190611051565b610a78610cc0565b610a8157600080fd5b6035546040516001600160a01b03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a2603580546001600160a01b0319169055565b6068546000906001600160a01b03163314610ae557600080fd5b81610b2b57606a54604080519182525184917f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f2919081900360200190a250606a54610807565b6000821215610b5157610b49610b40836113a3565b606a54906110d5565b606a55610b62565b606a54610b5e9083611391565b606a555b606a546001600160801b031015610b7f576001600160801b03606a555b606a54610b979068e6cdd8f18cd5ffffff1990611051565b606b556075546040805160016209351760e01b0319815290516001600160a01b039092169163fff6cae99160048082019260009290919082900301818387803b158015610be357600080fd5b505af1158015610bf7573d6000803e3d6000fd5b5050606a5460408051918252518693507f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f292509081900360200190a250606a5492915050565b610c45610cc0565b610c4e57600080fd5b606880546001600160a01b0383166001600160a01b0319909116811790915560408051918252517f0e6961f1a1afb87eaf51fd64f22ddc10062e23aa7838eac5d0bdf140bfd389729181900360200190a150565b6035546001600160a01b031690565b6068546001600160a01b031681565b6035546001600160a01b0316331490565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156107ec5780601f106107c1576101008083540402835291602001916107ec565b60005b8251811015610d6357610d5a838281518110610d4c57fe5b602002602001015183610eb3565b50600101610d34565b505050565b610d70610cc0565b610d7957600080fd5b60758054911515600160a81b0260ff60a81b19909216919091179055565b610d9f610cc0565b610da857600080fd5b607280546001600160a01b0319166001600160a01b0392909216919091179055565b3360009081526076602090815260408083206001600160a01b0386168452909152812054808310610e1e573360009081526076602090815260408083206001600160a01b0388168452909152812055610e4d565b610e2881846110d5565b3360009081526076602090815260408083206001600160a01b03891684529091529020555b3360008181526076602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60006109453384846110ea565b607554600160a81b900460ff1681565b6072546001600160a01b031681565b6001600160a01b03918216600090815260766020908152604080832093909416825291909152205490565b6068546001600160a01b03163314610f2157600080fd5b6075546001600160a01b03166000610f3882610a48565b606b54909150610f5290610f4c83866110d5565b906113cb565b6001600160a01b0383166000908152606c6020526040812091909155610f7783610a48565b9050610f8542838303610acb565b50607560009054906101000a90046001600160a01b03166001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610fd657600080fd5b505af1158015610fea573d6000803e3d6000fd5b5050505050505050565b6075546000906001600160a01b0383811691161480156109455750611017610ca2565b6001600160a01b0316836001600160a01b03161415905092915050565b61103c610cc0565b61104557600080fd5b61104e816113f2565b50565b600080821161105f57600080fd5b600082848161106a57fe5b04949350505050565b6001600160a01b03808416600081815260766020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000828211156110e457600080fd5b50900390565b60008082116110f857600080fd5b60755461110d906001600160a01b0316610a48565b15801561111e575061111e84611461565b1561112857600080fd5b607554600160a01b900460ff166111ef57607554600160a81b900460ff1680156111565750606e54606f5411155b1561118f57611165848461090c565b1561118f576001600160a01b0383166000908152606d60205260409020429055606f805460010190555b6111998484610ff4565b80156111bc57506001600160a01b0384166000908152606d602052604090205415155b80156111e557506070546001600160a01b0385166000908152606d602052604090205442910110155b156111ef57600080fd5b6072546000906001600160a01b0316158015906112165750607554600160a01b900460ff16155b801561122757506112278585610ff4565b156112575761124c6064611246607354866113cb90919063ffffffff16565b90611051565b90506112578161147f565b607554600160a01b900460ff161580156112765750611276858561090c565b156112a0576112956064611246607454866113cb90919063ffffffff16565b90506112a081611684565b60006112b7606b54856113cb90919063ffffffff16565b905060006112d4606b54610f4c85886110d590919063ffffffff16565b6001600160a01b0388166000908152606c60205260409020549091506112fa90836110d5565b6001600160a01b038089166000908152606c602052604080822093909355908816815220546113299082611391565b6001600160a01b038088166000818152606c602052604090209290925588167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef61137388876110d5565b60408051918252519081900360200190a35060019695505050505050565b60008282018381101561094557600080fd5b6000600160ff1b8214156113b657600080fd5b600082126113c45781610807565b5060000390565b6000826113da57506000610807565b828202828482816113e757fe5b041461094557600080fd5b6001600160a01b03811661140557600080fd5b6035546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3603580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b031660009081526069602052604090205460ff1690565b6075805460ff60a01b1916600160a01b179055606b546114ba906114a49083906113cb565b306000908152606c602052604090205490611391565b306000818152606c60205260408120929092556114d690610a48565b604080516002808252606080830184529394509091602083019080368337019050509050308160008151811061150857fe5b6001600160a01b03928316602091820292909201810191909152607154604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561155c57600080fd5b505afa158015611570573d6000803e3d6000fd5b505050506040513d602081101561158657600080fd5b505181518290600190811061159757fe5b6001600160a01b0392831660209182029290920181019190915260715460725460405163791ac94760e01b81526004810187815260006024830181905292861660648301819052426084840181905260a060448501908152895160a48601528951969098169763791ac947978b978b969495939460c4019187810191028083838b5b83811015611631578181015183820152602001611619565b505050509050019650505050505050600060405180830381600087803b15801561165a57600080fd5b505af115801561166e573d6000803e3d6000fd5b50506075805460ff60a01b191690555050505050565b600061169b606b54836113cb90919063ffffffff16565b6072546001600160a01b03166000908152606c60205260409020549091506116c39082611391565b6072546001600160a01b03166000908152606c6020526040902055505056fea264697066735822122083d7be1c5e2c8872ac5790db3b52f8bd6bba059fc56dd95631fb90f94e68f23264736f6c634300060c0033

Deployed Bytecode Sourcemap

12488:13749:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8976:76;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23021:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23021:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;15037:41;;;:::i;:::-;;;;-1:-1:-1;;;;;15037:41:0;;;;;;;;;;;;;;18163:105;;;:::i;:::-;;;;;;;;;;;;;;;;25714:200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25714:200:0;;-1:-1:-1;25714:200:0;;-1:-1:-1;;;;;25714:200:0:i;:::-;;22726:289;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22726:289:0;;;;;;;;;;;;;;;;;:::i;9262:76::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15170:29;;;:::i;20408:162::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20408:162:0;;;;;;;;;;:::i;24381:343::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24381:343:0;;;;;;;;:::i;25510:196::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25510:196:0;;-1:-1:-1;25510:196:0;;-1:-1:-1;;;;;25510:196:0:i;18282:150::-;;;;;;;;;;;;;;;;-1:-1:-1;18282:150:0;-1:-1:-1;;;;;18282:150:0;;:::i;6713:116::-;;;:::i;16969:728::-;;;;;;;;;;;;;;;;-1:-1:-1;16969:728:0;;;;;;;:::i;16499:202::-;;;;;;;;;;;;;;;;-1:-1:-1;16499:202:0;-1:-1:-1;;;;;16499:202:0;;:::i;6054:72::-;;;:::i;14009:29::-;;;:::i;6356:85::-;;;:::i;9111:80::-;;;:::i;26035:196::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26035:196:0;;-1:-1:-1;;26035:196:0;;;-1:-1:-1;26035:196:0;;-1:-1:-1;;26035:196:0:i;20758:86::-;;;;;;;;;;;;;;;;-1:-1:-1;20758:86:0;;;;:::i;19084:90::-;;;;;;;;;;;;;;;;-1:-1:-1;19084:90:0;-1:-1:-1;;;;;19084:90:0;;:::i;24986:512::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24986:512:0;;;;;;;;:::i;20218:183::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20218:183:0;;;;;;;;:::i;15233:27::-;;;:::i;15085:::-;;;:::i;22528:190::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22528:190:0;;;;;;;;;;:::i;17709:374::-;;;;;;;;;;;;;;;;-1:-1:-1;17709:374:0;;:::i;20583:163::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20583:163:0;;;;;;;;;;:::i;6996:103::-;;;;;;;;;;;;;;;;-1:-1:-1;6996:103:0;-1:-1:-1;;;;;6996:103:0;;:::i;8976:76::-;9041:5;9034:12;;;;;;;;-1:-1:-1;;9034:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9012:13;;9034:12;;9041:5;;9034:12;;9041:5;9034:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8976:76;:::o;23021:169::-;23113:4;23128:36;23137:10;23149:7;23158:5;23128:8;:36::i;:::-;-1:-1:-1;23180:4:0;23021:169;;;;;:::o;15037:41::-;;;-1:-1:-1;;;;;15037:41:0;;:::o;18163:105::-;18248:12;;18163:105;:::o;25714:200::-;6247:9;:7;:9::i;:::-;6239:18;;;;;;25807:9:::1;25802:105;25826:9;:16;25822:1;:20;25802:105;;;25890:5;25864:9;:23;25874:9;25884:1;25874:12;;;;;;;;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;25864:23:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;25864:23:0;:31;;-1:-1:-1;;25864:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;25844:3:0::1;25802:105;;;;25714:200:::0;:::o;22726:289::-;-1:-1:-1;;;;;22917:23:0;;22856:4;22917:23;;;:17;:23;;;;;;;;22941:10;22917:35;;;;;;;;:46;;22957:5;22917:39;:46::i;:::-;-1:-1:-1;;;;;22879:23:0;;;;;;:17;:23;;;;;;;;22903:10;22879:35;;;;;;;:84;22981:26;22897:4;22997:2;23001:5;22981:9;:26::i;:::-;22974:33;22726:289;-1:-1:-1;;;;22726:289:0:o;9262:76::-;9323:9;;;;9262:76;:::o;15170:29::-;;;-1:-1:-1;;;;;15170:29:0;;:::o;20408:162::-;20530:7;;20489:4;;-1:-1:-1;;;;;20512:26:0;;;20530:7;;20512:26;:50;;;;;20555:7;:5;:7::i;:::-;-1:-1:-1;;;;;20542:20:0;:9;-1:-1:-1;;;;;20542:20:0;;;20512:50;20505:57;20408:162;-1:-1:-1;;;20408:162:0:o;24381:343::-;24573:10;24479:4;24555:29;;;:17;:29;;;;;;;;-1:-1:-1;;;;;24555:38:0;;;;;;;;;;:54;;24598:10;24555:42;:54::i;:::-;24519:10;24501:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;24501:38:0;;;;;;;;;;;;:108;;;24625:69;;;;;;24501:38;;24625:69;;;;;;;;;;;-1:-1:-1;24712:4:0;24381:343;;;;:::o;25510:196::-;6247:9;:7;:9::i;:::-;6239:18;;;;;;25600:9:::1;25595:104;25619:9;:16;25615:1;:20;25595:104;;;25683:4;25657:9;:23;25667:9;25677:1;25667:12;;;;;;;;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;25657:23:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;25657:23:0;:30;;-1:-1:-1;;25657:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;25637:3:0::1;25595:104;;18282:150:::0;18407:16;;-1:-1:-1;;;;;18381:21:0;;18348:7;18381:21;;;:12;:21;;;;;;18348:7;;18381:43;;:21;:25;:43::i;6713:116::-;6247:9;:7;:9::i;:::-;6239:18;;;;;;6790:6:::1;::::0;6771:26:::1;::::0;-1:-1:-1;;;;;6790:6:0;;::::1;::::0;6771:26:::1;::::0;6790:6:::1;::::0;6771:26:::1;6804:6;:19:::0;;-1:-1:-1;;;;;;6804:19:0::1;::::0;;6713:116::o;16969:728::-;14110:14;;17082:7;;-1:-1:-1;;;;;14110:14:0;14096:10;:28;14088:37;;;;;;17111:16;17107:118:::1;;17166:12;::::0;17149:30:::1;::::0;;;;;;17159:5;;17149:30:::1;::::0;;;;;::::1;::::0;;::::1;-1:-1:-1::0;17201:12:0::1;::::0;17194:19:::1;;17107:118;17255:1;17241:11;:15;17237:193;;;17288:44;17313:17;:11;:15;:17::i;:::-;17288:12;::::0;;:16:::1;:44::i;:::-;17273:12;:59:::0;17237:193:::1;;;17380:12;::::0;:38:::1;::::0;17405:11;17380:16:::1;:38::i;:::-;17365:12;:53:::0;17237:193:::1;17446:12;::::0;-1:-1:-1;;;;;;17442:83:0::1;;;-1:-1:-1::0;;;;;17488:12:0::1;:25:::0;17442:83:::1;17571:12;::::0;17556:28:::1;::::0;-1:-1:-1;;14606:54:0;17556:14:::1;:28::i;:::-;17537:16;:47:::0;17595:7:::1;::::0;:14:::1;::::0;;-1:-1:-1;;;;;;17595:14:0;;;;-1:-1:-1;;;;;17595:7:0;;::::1;::::0;:12:::1;::::0;:14:::1;::::0;;::::1;::::0;:7:::1;::::0;:14;;;;;;;;:7;;:14;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;17644:12:0::1;::::0;17627:30:::1;::::0;;;;;;17637:5;;-1:-1:-1;17627:30:0::1;::::0;-1:-1:-1;17627:30:0;;;;::::1;::::0;;::::1;-1:-1:-1::0;17677:12:0::1;::::0;16969:728;;;;:::o;16499:202::-;6247:9;:7;:9::i;:::-;6239:18;;;;;;16604:14:::1;:32:::0;;-1:-1:-1;;;;;16604:32:0;::::1;-1:-1:-1::0;;;;;;16604:32:0;;::::1;::::0;::::1;::::0;;;16652:41:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;16499:202:::0;:::o;6054:72::-;6114:6;;-1:-1:-1;;;;;6114:6:0;6054:72;:::o;14009:29::-;;;-1:-1:-1;;;;;14009:29:0;;:::o;6356:85::-;6429:6;;-1:-1:-1;;;;;6429:6:0;6415:10;:20;;6356:85::o;9111:80::-;9178:7;9171:14;;;;;;;;-1:-1:-1;;9171:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9149:13;;9171:14;;9178:7;;9171:14;;9178:7;9171:14;;;;;;;;;;;;;;;;;;;;;;;;26035:196;26125:9;26120:104;26144:9;:16;26140:1;:20;26120:104;;;26182:30;26191:9;26201:1;26191:12;;;;;;;;;;;;;;26205:6;26182:8;:30::i;:::-;-1:-1:-1;26162:3:0;;26120:104;;;;26035:196;;:::o;20758:86::-;6247:9;:7;:9::i;:::-;6239:18;;;;;;20820:8:::1;:16:::0;;;::::1;;-1:-1:-1::0;;;20820:16:0::1;-1:-1:-1::0;;;;20820:16:0;;::::1;::::0;;;::::1;::::0;;20758:86::o;19084:90::-;6247:9;:7;:9::i;:::-;6239:18;;;;;;19150:12:::1;:16:::0;;-1:-1:-1;;;;;;19150:16:0::1;-1:-1:-1::0;;;;;19150:16:0;;;::::1;::::0;;;::::1;::::0;;19084:90::o;24986:512::-;25148:10;25089:4;25130:29;;;:17;:29;;;;;;;;-1:-1:-1;;;;;25130:38:0;;;;;;;;;;25183:27;;;25179:205;;25245:10;25268:1;25227:29;;;:17;:29;;;;;;;;-1:-1:-1;;;;;25227:38:0;;;;;;;;;:42;25179:205;;;25343:29;:8;25356:15;25343:12;:29::i;:::-;25320:10;25302:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;25302:38:0;;;;;;;;;:70;25179:205;25408:10;25429:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;25399:69:0;;25429:38;;;;;;;;;;;25399:69;;;;;;;;;25408:10;25399:69;;;;;;;;;;;-1:-1:-1;25486:4:0;;24986:512;-1:-1:-1;;;24986:512:0:o;20218:183::-;20332:4;20361:32;20371:10;20383:2;20387:5;20361:9;:32::i;15233:27::-;;;-1:-1:-1;;;15233:27:0;;;;;:::o;15085:::-;;;-1:-1:-1;;;;;15085:27:0;;:::o;22528:190::-;-1:-1:-1;;;;;22677:24:0;;;22645:7;22677:24;;;:17;:24;;;;;;;;:33;;;;;;;;;;;;;22528:190::o;17709:374::-;14110:14;;-1:-1:-1;;;;;14110:14:0;14096:10;:28;14088:37;;;;;;17807:7:::1;::::0;-1:-1:-1;;;;;17807:7:0::1;17787:9;17844:12;17807:7:::0;17844:9:::1;:12::i;:::-;17917:16;::::0;17826:30;;-1:-1:-1;17885:49:0::1;::::0;:27:::1;17826:30:::0;17897:14;17885:11:::1;:27::i;:::-;:31:::0;::::1;:49::i;:::-;-1:-1:-1::0;;;;;17867:15:0;::::1;;::::0;;;:12:::1;:15;::::0;;;;:67;;;;17970:12:::1;17880:1:::0;17970:9:::1;:12::i;:::-;17945:37;;17993:57;18000:15;18041:7;18024:14;:24;17993:6;:57::i;:::-;;18061:7;;;;;;;;;-1:-1:-1::0;;;;;18061:7:0::1;-1:-1:-1::0;;;;;18061:12:0::1;;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;14136:1;;;17709:374:::0;:::o;20583:163::-;20709:7;;20665:4;;-1:-1:-1;;;;;20688:29:0;;;20709:7;;20688:29;:50;;;;;20731:7;:5;:7::i;:::-;-1:-1:-1;;;;;20721:17:0;:6;-1:-1:-1;;;;;20721:17:0;;;20681:57;;20583:163;;;;:::o;6996:103::-;6247:9;:7;:9::i;:::-;6239:18;;;;;;7065:28:::1;7084:8;7065:18;:28::i;:::-;6996:103:::0;:::o;3782:276::-;3840:7;3868:1;3864;:5;3856:14;;;;;;3935:9;3951:1;3947;:5;;;;;;;3782:276;-1:-1:-1;;;;3782:276:0:o;23828:180::-;-1:-1:-1;;;;;23912:24:0;;;;;;;:17;:24;;;;;;;;:33;;;;;;;;;;;;;:41;;;23969:31;;;;;;;;;;;;;;;;;23828:180;;;:::o;4176:136::-;4234:7;4263:1;4258;:6;;4250:15;;;;;;-1:-1:-1;4284:5:0;;;4176:136::o;20856:1456::-;20933:4;20966:1;20958:5;:9;20950:18;;;;;;21011:7;;20993:27;;-1:-1:-1;;;;;21011:7:0;20993:9;:27::i;:::-;:32;:55;;;;;21029:19;21043:4;21029:13;:19::i;:::-;20989:96;;;21065:8;;;20989:96;21112:7;;-1:-1:-1;;;21112:7:0;;;;21107:409;;21138:8;;-1:-1:-1;;;21138:8:0;;;;:37;;;;;21164:11;;21150:10;;:25;;21138:37;21135:206;;;21200:26;21217:4;21223:2;21200:16;:26::i;:::-;21196:130;;;-1:-1:-1;;;;;21250:15:0;;;;;;:11;:15;;;;;21268:3;21250:21;;21294:10;:12;;;;;;21196:130;21368:27;21386:4;21392:2;21368:17;:27::i;:::-;:53;;;;-1:-1:-1;;;;;;21399:17:0;;;;;;:11;:17;;;;;;:22;;21368:53;:92;;;;-1:-1:-1;21445:8:0;;-1:-1:-1;;;;;21425:17:0;;;;;;:11;:17;;;;;;21457:3;21425:28;;:35;;21368:92;21365:140;;;21481:8;;;21365:140;21592:12;;21546:17;;-1:-1:-1;;;;;21592:12:0;:26;;;;:38;;-1:-1:-1;21623:7:0;;-1:-1:-1;;;21623:7:0;;;;21622:8;21592:38;:69;;;;;21634:27;21652:4;21658:2;21634:17;:27::i;:::-;21588:176;;;21690:24;21710:3;21690:15;21700:4;;21690:5;:9;;:15;;;;:::i;:::-;:19;;:24::i;:::-;21678:36;;21729:23;21742:9;21729:12;:23::i;:::-;21789:7;;-1:-1:-1;;;21789:7:0;;;;21788:8;:38;;;;;21800:26;21817:4;21823:2;21800:16;:26::i;:::-;21784:152;;;21855:29;21880:3;21855:20;21865:9;;21855:5;:9;;:20;;;;:::i;:29::-;21843:41;;21899:25;21914:9;21899:14;:25::i;:::-;21956:21;21980:27;21990:16;;21980:5;:9;;:27;;;;:::i;:::-;21956:51;;22018:22;22043:42;22068:16;;22043:20;22053:9;22043:5;:9;;:20;;;;:::i;:42::-;-1:-1:-1;;;;;22119:18:0;;;;;;:12;:18;;;;;;22018:67;;-1:-1:-1;22119:37:0;;22142:13;22119:22;:37::i;:::-;-1:-1:-1;;;;;22098:18:0;;;;;;;:12;:18;;;;;;:58;;;;22186:16;;;;;;;:36;;22207:14;22186:20;:36::i;:::-;-1:-1:-1;;;;;22167:16:0;;;;;;;:12;:16;;;;;:55;;;;22240:40;;;22259:20;:5;22269:9;22259;:20::i;:::-;22240:40;;;;;;;;;;;;;;;-1:-1:-1;22300:4:0;;20856:1456;-1:-1:-1;;;;;;20856:1456:0:o;4380:136::-;4438:7;4466:5;;;4486:6;;;;4478:15;;;;;12320:161;12393:6;-1:-1:-1;;;12425:15:0;;;12417:24;;;;;;12463:1;12459;:5;:14;;12472:1;12459:14;;;-1:-1:-1;12467:2:0;;;12320:161::o;3274:393::-;3332:7;3560:6;3556:37;;-1:-1:-1;3584:1:0;3577:8;;3556:37;3613:5;;;3617:1;3613;:5;:1;3633:5;;;;;:10;3625:19;;;;;7239:173;-1:-1:-1;;;;;7309:22:0;;7301:31;;;;;;7365:6;;7344:38;;-1:-1:-1;;;;;7344:38:0;;;;7365:6;;7344:38;;7365:6;;7344:38;7389:6;:17;;-1:-1:-1;;;;;;7389:17:0;-1:-1:-1;;;;;7389:17:0;;;;;;;;;;7239:173::o;25922:101::-;-1:-1:-1;;;;;26003:12:0;25979:4;26003:12;;;:9;:12;;;;;;;;;25922:101::o;18440:632::-;15312:7;:14;;-1:-1:-1;;;;15312:14:0;-1:-1:-1;;;15312:14:0;;;18595:16:::1;::::0;18547:66:::1;::::0;18579:33:::1;::::0;:11;;:15:::1;:33::i;:::-;18568:4;18547:27;::::0;;;:12:::1;:27;::::0;;;;;;:31:::1;:66::i;:::-;18538:4;18517:27;::::0;;;:12:::1;:27;::::0;;;;:96;;;;18651:24:::1;::::0;:9:::1;:24::i;:::-;18720:16;::::0;;18734:1:::1;18720:16:::0;;;18696:21:::1;18720:16:::0;;::::1;::::0;;18624:51;;-1:-1:-1;18720:16:0;;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;18720:16:0::1;18696:40;;18765:4;18747;18752:1;18747:7;;;;;;;;-1:-1:-1::0;;;;;18747:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;18791:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;18791:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;18747:7;;18791:22;;;;;:15;:22;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;18791:22:0;18781:7;;:4;;18786:1:::1;::::0;18781:7;::::1;;;;;-1:-1:-1::0;;;;;18781:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:32;;;;18826:15:::1;::::0;18973:12:::1;::::0;18826:200:::1;::::0;-1:-1:-1;;;18826:200:0;;::::1;::::0;::::1;::::0;;;:15:::1;:200:::0;;;;;;18973:12;;::::1;18826:200:::0;;;;;;19000:15:::1;18826:200:::0;;;;;;;;;;;;;;;;;;;;;:15;;;::::1;::::0;:66:::1;::::0;18907:16;;18954:4;;18973:12;;19000:15;;18826:200;;;;;::::1;::::0;::::1;::::0;;;:15;:200:::1;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;15349:7:0;:15;;-1:-1:-1;;;;15349:15:0;;;-1:-1:-1;;;;;18440:632:0:o;22320:196::-;22384:12;22399:33;22415:16;;22399:11;:15;;:33;;;;:::i;:::-;22485:12;;-1:-1:-1;;;;;22485:12:0;22472:26;;;;:12;:26;;;;;;22384:48;;-1:-1:-1;22472:36:0;;22384:48;22472:30;:36::i;:::-;22456:12;;-1:-1:-1;;;;;22456:12:0;22443:26;;;;:12;:26;;;;;:65;-1:-1:-1;;22320:196:0:o

Swarm Source

ipfs://83d7be1c5e2c8872ac5790db3b52f8bd6bba059fc56dd95631fb90f94e68f232
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.