ETH Price: $3,049.62 (+2.91%)
Gas: 1 Gwei

Token

Degen-flip.app (DFLIP)
 

Overview

Max Total Supply

2,000 DFLIP

Holders

113

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.5 DFLIP

Value
$0.00
0x07796f0fecabf25a8516d99b0669375246b10c2c
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:
DegenFlip

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2020-10-04
*/

// DEGEN-FLIP.APP
//
// No minting function -- total supply == max supply
// Total available 2000 DFLIP Tokens
//
// 1800 DFLIP Allocated to pre-sale
// 100 DFLIP Allocated for aidrop
// 100 DFLIP Allocated for poke.finance rug refugees 
//
// No pre-mine, no dev funds, fully community driven project
//
// https://t.me/PokedegenNFT 

pragma solidity 0.5.17;

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a * b;
    assert(a == 0 || c / a == b);
    return c;
  }

  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    // assert(b > 0); // Solidity automatically throws 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;
  }

  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    assert(b <= a);
    return a - b;
  }

  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    assert(c >= a);
    return c;
  }
}


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


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


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  constructor() public {
    owner = msg.sender;
  }


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


  /**
   * @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) onlyOwner public {
    require(newOwner != address(0));
    emit OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }
}

/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
  uint256 public totalSupply;
  function balanceOf(address who) public view returns (uint256);
  function transfer(address to, uint256 value) public returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
}


/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is ERC20Basic {
  using SafeMath for uint256;

  mapping(address => uint256) balances;

  /**
  * @dev transfer token for a specified address
  * @param _to The address to transfer to.
  * @param _value The amount to be transferred.
  */
  function transfer(address _to, uint256 _value) public returns (bool) {
    require(_to != address(0) && _to != address(this));

    // SafeMath.sub will throw if there is not enough balance.
    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    emit Transfer(msg.sender, _to, _value);
    return true;
  }

  /**
  * @dev Gets the balance of the specified address.
  * @param _owner The address to query the the balance of.
  * @return An uint256 representing the amount owned by the passed address.
  */
  function balanceOf(address _owner) public view returns (uint256 balance) {
    return balances[_owner];
  }
}

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
  function allowance(address owner, address spender) public view returns (uint256);
  function transferFrom(address from, address to, uint256 value) public returns (bool);
  function approve(address spender, uint256 value) public returns (bool);
  event Approval(address indexed owner, address indexed spender, uint256 value);
}


/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev https://github.com/ethereum/EIPs/issues/20
 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is ERC20, BasicToken {

  mapping (address => mapping (address => uint256)) allowed;


  /**
   * @dev Transfer tokens from one address to another
   * @param _from address The address which you want to send tokens from
   * @param _to address The address which you want to transfer to
   * @param _value uint256 the amount of tokens to be transferred
   */
  function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
    require(_to != address(0) && _to != address(this));

    uint256 _allowance = allowed[_from][msg.sender];

    // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met
    // require (_value <= _allowance);

    balances[_from] = balances[_from].sub(_value);
    balances[_to] = balances[_to].add(_value);
    allowed[_from][msg.sender] = _allowance.sub(_value);
    emit Transfer(_from, _to, _value);
    return true;
  }

  /**
   * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
   *
   * 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
   * @param _spender The address which will spend the funds.
   * @param _value The amount of tokens to be spent.
   */
  function approve(address _spender, uint256 _value) public returns (bool) {
    allowed[msg.sender][_spender] = _value;
    emit Approval(msg.sender, _spender, _value);
    return true;
  }

  /**
   * @dev Function to check the amount of tokens that an owner allowed to a spender.
   * @param _owner address The address which owns the funds.
   * @param _spender address The address which will spend the funds.
   * @return A uint256 specifying the amount of tokens still available for the spender.
   */
  function allowance(address _owner, address _spender) public view returns (uint256 remaining) {
    return allowed[_owner][_spender];
  }

  /**
   * approve should be called when allowed[_spender] == 0. To increment
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   */
  function increaseApproval (address _spender, uint _addedValue) public
    returns (bool success) {
    allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

  function decreaseApproval (address _spender, uint _subtractedValue) public
    returns (bool success) {
    uint oldValue = allowed[msg.sender][_spender];
    if (_subtractedValue > oldValue) {
      allowed[msg.sender][_spender] = 0;
    } else {
      allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
    }
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }
}


interface tokenRecipient { 
    function receiveApproval(address _from, uint256 _value, bytes calldata _extraData) external;
}

contract DegenFlip is StandardToken, Ownable {

    string public constant name = "Degen-flip.app";
    string public constant symbol = "DFLIP";
    uint public constant decimals = 18;
    // there is no problem in using * here instead of .mul()
    uint256 public constant initialSupply = 2000 * (10 ** uint256(decimals));

    // Constructors
    constructor () public {
        totalSupply = initialSupply;
        balances[msg.sender] = initialSupply; // Send all tokens to owner
        emit Transfer(address(0), msg.sender, initialSupply);
    }
    
    function approveAndCall(address _spender, uint256 _value, bytes calldata _extraData)
        external
        returns (bool success) 
    {
        tokenRecipient spender = tokenRecipient(_spender);
        if (approve(_spender, _value)) {
            spender.receiveApproval(msg.sender, _value, _extraData);
            return true;
        }
    }
    
    function transferAnyERC20Token(address _tokenAddress, address _to, uint _amount) public onlyOwner {
        ERC20(_tokenAddress).transfer(_to, _amount);
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"bytes","name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"initialSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transferAnyERC20Token","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"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"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b50600380546001600160a01b03191633908117909155686c6b935b8bbd400000600081815582815260016020908152604080832084905580519384525191927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a3610b11806100896000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063d493b9ac11610066578063d493b9ac14610351578063d73dd62314610389578063dd62ed3e146103b5578063f2fde38b146103e357610100565b80638da5cb5b1461027457806395d89b4114610298578063a9059cbb146102a0578063cae9ca51146102cc57610100565b8063313ce567116100d3578063313ce56714610212578063378dc3dc1461021a578063661884631461022257806370a082311461024e57610100565b806306fdde0314610105578063095ea7b31461018257806318160ddd146101c257806323b872dd146101dc575b600080fd5b61010d610409565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014757818101518382015260200161012f565b50505050905090810190601f1680156101745780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101ae6004803603604081101561019857600080fd5b506001600160a01b038135169060200135610433565b604080519115158252519081900360200190f35b6101ca610499565b60408051918252519081900360200190f35b6101ae600480360360608110156101f257600080fd5b506001600160a01b0381358116916020810135909116906040013561049f565b6101ca6105d4565b6101ca6105d9565b6101ae6004803603604081101561023857600080fd5b506001600160a01b0381351690602001356105e6565b6101ca6004803603602081101561026457600080fd5b50356001600160a01b03166106d6565b61027c6106f1565b604080516001600160a01b039092168252519081900360200190f35b61010d610700565b6101ae600480360360408110156102b657600080fd5b506001600160a01b038135169060200135610721565b6101ae600480360360608110156102e257600080fd5b6001600160a01b038235169160208101359181019060608101604082013564010000000081111561031257600080fd5b82018360208201111561032457600080fd5b8035906020019184600183028401116401000000008311171561034657600080fd5b5090925090506107fd565b6103876004803603606081101561036757600080fd5b506001600160a01b038135811691602081013590911690604001356108c2565b005b6101ae6004803603604081101561039f57600080fd5b506001600160a01b03813516906020013561096a565b6101ca600480360360408110156103cb57600080fd5b506001600160a01b0381358116916020013516610a03565b610387600480360360208110156103f957600080fd5b50356001600160a01b0316610a2e565b6040518060400160405280600e81526020016d0446567656e2d666c69702e6170760941b81525081565b3360008181526002602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60005481565b60006001600160a01b038316158015906104c257506001600160a01b0383163014155b6104cb57600080fd5b6001600160a01b0384166000818152600260209081526040808320338452825280832054938352600190915290205461050a908463ffffffff610ab416565b6001600160a01b03808716600090815260016020526040808220939093559086168152205461053f908463ffffffff610ac616565b6001600160a01b038516600090815260016020526040902055610568818463ffffffff610ab416565b6001600160a01b03808716600081815260026020908152604080832033845282529182902094909455805187815290519288169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3506001949350505050565b601281565b686c6b935b8bbd40000081565b3360009081526002602090815260408083206001600160a01b03861684529091528120548083111561063b573360009081526002602090815260408083206001600160a01b0388168452909152812055610670565b61064b818463ffffffff610ab416565b3360009081526002602090815260408083206001600160a01b03891684529091529020555b3360008181526002602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6001600160a01b031660009081526001602052604090205490565b6003546001600160a01b031681565b60405180604001604052806005815260200164044464c49560dc1b81525081565b60006001600160a01b0383161580159061074457506001600160a01b0383163014155b61074d57600080fd5b3360009081526001602052604090205461076d908363ffffffff610ab416565b33600090815260016020526040808220929092556001600160a01b0385168152205461079f908363ffffffff610ac616565b6001600160a01b0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b60008461080a8186610433565b156108b85760405163a2d5785360e01b8152336004820181815260248301889052606060448401908152606484018790526001600160a01b0385169363a2d5785393928a928a928a929190608401848480828437600081840152601f19601f82011690508083019250505095505050505050600060405180830381600087803b15801561089657600080fd5b505af11580156108aa573d6000803e3d6000fd5b5050505060019150506108ba565b505b949350505050565b6003546001600160a01b031633146108d957600080fd5b826001600160a01b031663a9059cbb83836040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561093957600080fd5b505af115801561094d573d6000803e3d6000fd5b505050506040513d602081101561096357600080fd5b5050505050565b3360009081526002602090815260408083206001600160a01b038616845290915281205461099e908363ffffffff610ac616565b3360008181526002602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6003546001600160a01b03163314610a4557600080fd5b6001600160a01b038116610a5857600080fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b600082821115610ac057fe5b50900390565b600082820183811015610ad557fe5b939250505056fea265627a7a723158206b50a22e2d868c152a0e14d9416b1e39e13901f0434f9365538245902631895b64736f6c63430005110032

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063d493b9ac11610066578063d493b9ac14610351578063d73dd62314610389578063dd62ed3e146103b5578063f2fde38b146103e357610100565b80638da5cb5b1461027457806395d89b4114610298578063a9059cbb146102a0578063cae9ca51146102cc57610100565b8063313ce567116100d3578063313ce56714610212578063378dc3dc1461021a578063661884631461022257806370a082311461024e57610100565b806306fdde0314610105578063095ea7b31461018257806318160ddd146101c257806323b872dd146101dc575b600080fd5b61010d610409565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014757818101518382015260200161012f565b50505050905090810190601f1680156101745780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101ae6004803603604081101561019857600080fd5b506001600160a01b038135169060200135610433565b604080519115158252519081900360200190f35b6101ca610499565b60408051918252519081900360200190f35b6101ae600480360360608110156101f257600080fd5b506001600160a01b0381358116916020810135909116906040013561049f565b6101ca6105d4565b6101ca6105d9565b6101ae6004803603604081101561023857600080fd5b506001600160a01b0381351690602001356105e6565b6101ca6004803603602081101561026457600080fd5b50356001600160a01b03166106d6565b61027c6106f1565b604080516001600160a01b039092168252519081900360200190f35b61010d610700565b6101ae600480360360408110156102b657600080fd5b506001600160a01b038135169060200135610721565b6101ae600480360360608110156102e257600080fd5b6001600160a01b038235169160208101359181019060608101604082013564010000000081111561031257600080fd5b82018360208201111561032457600080fd5b8035906020019184600183028401116401000000008311171561034657600080fd5b5090925090506107fd565b6103876004803603606081101561036757600080fd5b506001600160a01b038135811691602081013590911690604001356108c2565b005b6101ae6004803603604081101561039f57600080fd5b506001600160a01b03813516906020013561096a565b6101ca600480360360408110156103cb57600080fd5b506001600160a01b0381358116916020013516610a03565b610387600480360360208110156103f957600080fd5b50356001600160a01b0316610a2e565b6040518060400160405280600e81526020016d0446567656e2d666c69702e6170760941b81525081565b3360008181526002602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60005481565b60006001600160a01b038316158015906104c257506001600160a01b0383163014155b6104cb57600080fd5b6001600160a01b0384166000818152600260209081526040808320338452825280832054938352600190915290205461050a908463ffffffff610ab416565b6001600160a01b03808716600090815260016020526040808220939093559086168152205461053f908463ffffffff610ac616565b6001600160a01b038516600090815260016020526040902055610568818463ffffffff610ab416565b6001600160a01b03808716600081815260026020908152604080832033845282529182902094909455805187815290519288169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3506001949350505050565b601281565b686c6b935b8bbd40000081565b3360009081526002602090815260408083206001600160a01b03861684529091528120548083111561063b573360009081526002602090815260408083206001600160a01b0388168452909152812055610670565b61064b818463ffffffff610ab416565b3360009081526002602090815260408083206001600160a01b03891684529091529020555b3360008181526002602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6001600160a01b031660009081526001602052604090205490565b6003546001600160a01b031681565b60405180604001604052806005815260200164044464c49560dc1b81525081565b60006001600160a01b0383161580159061074457506001600160a01b0383163014155b61074d57600080fd5b3360009081526001602052604090205461076d908363ffffffff610ab416565b33600090815260016020526040808220929092556001600160a01b0385168152205461079f908363ffffffff610ac616565b6001600160a01b0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b60008461080a8186610433565b156108b85760405163a2d5785360e01b8152336004820181815260248301889052606060448401908152606484018790526001600160a01b0385169363a2d5785393928a928a928a929190608401848480828437600081840152601f19601f82011690508083019250505095505050505050600060405180830381600087803b15801561089657600080fd5b505af11580156108aa573d6000803e3d6000fd5b5050505060019150506108ba565b505b949350505050565b6003546001600160a01b031633146108d957600080fd5b826001600160a01b031663a9059cbb83836040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561093957600080fd5b505af115801561094d573d6000803e3d6000fd5b505050506040513d602081101561096357600080fd5b5050505050565b3360009081526002602090815260408083206001600160a01b038616845290915281205461099e908363ffffffff610ac616565b3360008181526002602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6003546001600160a01b03163314610a4557600080fd5b6001600160a01b038116610a5857600080fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b600082821115610ac057fe5b50900390565b600082820183811015610ad557fe5b939250505056fea265627a7a723158206b50a22e2d868c152a0e14d9416b1e39e13901f0434f9365538245902631895b64736f6c63430005110032

Deployed Bytecode Sourcemap

7769:1115:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7769:1115:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7823:46;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;7823:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6011:192;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6011:192:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;2361:26;;;:::i;:::-;;;;;;;;;;;;;;;;4801:575;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4801:575:0;;;;;;;;;;;;;;;;;:::i;7922:34::-;;;:::i;8025:72::-;;;:::i;7202:426::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;7202:426:0;;;;;;;;:::i;3554:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3554:109:0;-1:-1:-1;;;;;3554:109:0;;:::i;1399:20::-;;;:::i;:::-;;;;-1:-1:-1;;;;;1399:20:0;;;;;;;;;;;;;;7876:39;;;:::i;2974:371::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;2974:371:0;;;;;;;;:::i;8345:358::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;8345:358:0;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;8345:358:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;8345:358:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;8345:358:0;;-1:-1:-1;8345:358:0;-1:-1:-1;8345:358:0;:::i;8715:160::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8715:160:0;;;;;;;;;;;;;;;;;:::i;:::-;;6916:280;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6916:280:0;;;;;;;;:::i;6530:138::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6530:138:0;;;;;;;;;;:::i;2018:178::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2018:178:0;-1:-1:-1;;;;;2018:178:0;;:::i;7823:46::-;;;;;;;;;;;;;;-1:-1:-1;;;7823:46:0;;;;:::o;6011:192::-;6099:10;6078:4;6091:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6091:29:0;;;;;;;;;;;:38;;;6141;;;;;;;6078:4;;6091:29;;6099:10;;6141:38;;;;;;;;-1:-1:-1;6193:4:0;6011:192;;;;:::o;2361:26::-;;;;:::o;4801:575::-;4883:4;-1:-1:-1;;;;;4904:17:0;;;;;;:41;;-1:-1:-1;;;;;;4925:20:0;;4940:4;4925:20;;4904:41;4896:50;;;;;;-1:-1:-1;;;;;4976:14:0;;4955:18;4976:14;;;:7;:14;;;;;;;;4991:10;4976:26;;;;;;;;5179:15;;;:8;:15;;;;;;:27;;5199:6;5179:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;5161:15:0;;;;;;;:8;:15;;;;;;:45;;;;5229:13;;;;;;;:25;;5247:6;5229:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;5213:13:0;;;;;;:8;:13;;;;;:41;5290:22;:10;5305:6;5290:22;:14;:22;:::i;:::-;-1:-1:-1;;;;;5261:14:0;;;;;;;:7;:14;;;;;;;;5276:10;5261:26;;;;;;;;:51;;;;5324:28;;;;;;;;;;;5261:14;;5324:28;;;;;;;;;;;-1:-1:-1;5366:4:0;;4801:575;-1:-1:-1;;;;4801:575:0:o;7922:34::-;7954:2;7922:34;:::o;8025:72::-;8065:32;8025:72;:::o;7202:426::-;7336:10;7291:12;7328:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7328:29:0;;;;;;;;;;7368:27;;;7364:168;;;7414:10;7438:1;7406:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7406:29:0;;;;;;;;;:33;7364:168;;;7494:30;:8;7507:16;7494:30;:12;:30;:::i;:::-;7470:10;7462:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7462:29:0;;;;;;;;;:62;7364:168;7552:10;7574:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7543:61:0;;7574:29;;;;;;;;;;;7543:61;;;;;;;;;7552:10;7543:61;;;;;;;;;;;-1:-1:-1;7618:4:0;;7202:426;-1:-1:-1;;;7202:426:0:o;3554:109::-;-1:-1:-1;;;;;3641:16:0;3610:15;3641:16;;;:8;:16;;;;;;;3554:109::o;1399:20::-;;;-1:-1:-1;;;;;1399:20:0;;:::o;7876:39::-;;;;;;;;;;;;;;-1:-1:-1;;;7876:39:0;;;;:::o;2974:371::-;3037:4;-1:-1:-1;;;;;3058:17:0;;;;;;:41;;-1:-1:-1;;;;;;3079:20:0;;3094:4;3079:20;;3058:41;3050:50;;;;;;3205:10;3196:20;;;;:8;:20;;;;;;:32;;3221:6;3196:32;:24;:32;:::i;:::-;3182:10;3173:20;;;;:8;:20;;;;;;:55;;;;-1:-1:-1;;;;;3251:13:0;;;;;;:25;;3269:6;3251:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;3235:13:0;;;;;;:8;:13;;;;;;;;;:41;;;;3288:33;;;;;;;3235:13;;3297:10;;3288:33;;;;;;;;;;-1:-1:-1;3335:4:0;2974:371;;;;:::o;8345:358::-;8466:12;8537:8;8561:25;8537:8;8579:6;8561:7;:25::i;:::-;8557:139;;;8603:55;;-1:-1:-1;;;8603:55:0;;8627:10;8603:55;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8603:23:0;;;;;8627:10;8639:6;;8647:10;;;;8603:55;;;;8647:10;;;;8603:55;1:33:-1;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;8603:55:0;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8603:55:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;8603:55:0;;;;8680:4;8673:11;;;;;8557:139;8345:358;;;;;;;;:::o;8715:160::-;1829:5;;-1:-1:-1;;;;;1829:5:0;1815:10;:19;1807:28;;;;;;8830:13;-1:-1:-1;;;;;8824:29:0;;8854:3;8859:7;8824:43;;;;;;;;;;;;;-1:-1:-1;;;;;8824:43:0;-1:-1:-1;;;;;8824:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8824:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;8824:43:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;8715:160:0:o;6916:280::-;7061:10;7000:12;7053:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7053:29:0;;;;;;;;;;:46;;7087:11;7053:46;:33;:46;:::i;:::-;7029:10;7021:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7021:29:0;;;;;;;;;;;;:78;;;7111:61;;;;;;7021:29;;7111:61;;;;;;;;;;;-1:-1:-1;7186:4:0;6916:280;;;;:::o;6530:138::-;-1:-1:-1;;;;;6637:15:0;;;6604:17;6637:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;6530:138::o;2018:178::-;1829:5;;-1:-1:-1;;;;;1829:5:0;1815:10;:19;1807:28;;;;;;-1:-1:-1;;;;;2095:22:0;;2087:31;;;;;;2151:5;;2130:37;;-1:-1:-1;;;;;2130:37:0;;;;2151:5;;2130:37;;2151:5;;2130:37;2174:5;:16;;-1:-1:-1;;;;;;2174:16:0;-1:-1:-1;;;;;2174:16:0;;;;;;;;;;2018:178::o;921:113::-;979:7;1007:1;1002;:6;;995:14;;;;-1:-1:-1;1023:5:0;;;921:113::o;1040:133::-;1098:7;1126:5;;;1145:6;;;;1138:14;;;;1166:1;1040:133;-1:-1:-1;;;1040:133:0:o

Swarm Source

bzzr://6b50a22e2d868c152a0e14d9416b1e39e13901f0434f9365538245902631895b
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.