ETH Price: $3,158.73 (+1.26%)
Gas: 2 Gwei

Token

Sessia Kickers (PRE-KICK)
 

Overview

Max Total Supply

5,315,487.394957983193274053 PRE-KICK

Holders

2,285

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,500 PRE-KICK

Value
$0.00
0x4e667ed19fbf4cd37696d90f5de3f4aeada9599b
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:
SessiaToken

Compiler Version
v0.4.23+commit.124ca40d

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-05-16
*/

pragma solidity ^0.4.18;

library SafeMath {
  function mul(uint256 a, uint256 b) internal constant returns (uint256) {
    uint256 c = a * b;
    assert(a == 0 || c / a == b);
    return c;
  }

  function div(uint256 a, uint256 b) internal constant 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 constant returns (uint256) {
    assert(b <= a);
    return a - b;
  }

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

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.
   */
  function Ownable() {
    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));
    OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }

}

contract ERC20Basic {
  uint256 public totalSupply;
  function balanceOf(address who) public constant returns (uint256);
  function transfer(address to, uint256 value) public returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
}

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));

    // SafeMath.sub will throw if there is not enough balance.
    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    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 constant returns (uint256 balance) {
    return balances[_owner];
  }

}

contract ERC20 is ERC20Basic {
  function allowance(address owner, address spender) public constant 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);
}

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));

    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);
    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;
    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 constant 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)
    returns (bool success) {
    allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
    Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

  function decreaseApproval (address _spender, uint _subtractedValue)
    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);
    }
    Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}

contract MintableToken is StandardToken, Ownable {
  event Mint(address indexed to, uint256 amount);
  event MintFinished();

  bool public mintingFinished = false;


  modifier canMint() {
    require(!mintingFinished);
    _;
  }

  /**
   * @dev Function to mint tokens
   * @param _to The address that will receive the minted tokens.
   * @param _amount The amount of tokens to mint.
   * @return A boolean that indicates if the operation was successful.
   */
  function mint(address _to, uint256 _amount) onlyOwner canMint public returns (bool) {
    totalSupply = totalSupply.add(_amount);
    balances[_to] = balances[_to].add(_amount);
    Mint(_to, _amount);
    Transfer(0x0, _to, _amount);
    return true;
  }

  /**
   * @dev Function to stop minting new tokens.
   * @return True if the operation was successful.
   */
  function finishMinting() onlyOwner public returns (bool) {
    mintingFinished = true;
    MintFinished();
    return true;
  }
}

contract MultiOwners {

    event AccessGrant(address indexed owner);
    event AccessRevoke(address indexed owner);
    
    mapping(address => bool) owners;
    address public publisher;


    function MultiOwners() {
        owners[msg.sender] = true;
        publisher = msg.sender;
    }

    modifier onlyOwner() { 
        require(owners[msg.sender] == true);
        _; 
    }

    function isOwner() constant returns (bool) {
        return owners[msg.sender] ? true : false;
    }

    function checkOwner(address maybe_owner) constant returns (bool) {
        return owners[maybe_owner] ? true : false;
    }


    function grant(address _owner) onlyOwner {
        owners[_owner] = true;
        AccessGrant(_owner);
    }

    function revoke(address _owner) onlyOwner {
        require(_owner != publisher);
        require(msg.sender != _owner);

        owners[_owner] = false;
        AccessRevoke(_owner);
    }
}

contract Haltable is MultiOwners {
    bool public halted;

    modifier stopInEmergency {
        require(!halted);
        _;
    }

    modifier onlyInEmergency {
        require(halted);
        _;
    }

    // called by the owner on emergency, triggers stopped state
    function halt() external onlyOwner {
        halted = true;
    }

    // called by the owner on end of emergency, returns to normal state
    function unhalt() external onlyOwner onlyInEmergency {
        halted = false;
    }

}

contract SessiaToken is MintableToken, MultiOwners {

    string public constant name = "Sessia Kickers";
    string public constant symbol = "PRE-KICK";
    uint8 public constant decimals = 18;

    function transferFrom(address from, address to, uint256 value) public returns (bool) {
        if(!isOwner()) {
            revert();
        }
        return super.transferFrom(from, to, value);
    }

    function transfer(address to, uint256 value) public returns (bool) {
        if(!isOwner()) {
            revert();
        }
        return super.transfer(to, value);
    }

    function grant(address _owner) public {
        require(publisher == msg.sender);
        return super.grant(_owner);
    }

    function revoke(address _owner) public {
        require(publisher == msg.sender);
        return super.revoke(_owner);
    }

    function mint(address _to, uint256 _amount) public returns (bool) {
        require(publisher == msg.sender);
        return super.mint(_to, _amount);
    }

}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"grant","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"revoke","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"publisher","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"maybe_owner","type":"address"}],"name":"checkOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"}],"name":"AccessGrant","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"}],"name":"AccessRevoke","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]

6080604090815260038054600160a060020a033316600160a860020a031990911681179091556000818152600460205291909120805460ff1916600117905560058054600160a060020a0319169091179055610e4e806100606000396000f30060806040526004361061011c5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461012157806306fdde031461014a578063095ea7b3146101d457806318160ddd146101f857806323b872dd1461021f578063313ce5671461024957806340c10f1914610274578063661884631461029857806370284d19146102bc57806370a08231146102df57806374a8f103146103005780637d64bcb4146103215780638c72c54e146103365780638da5cb5b146103675780638f32d59b1461037c57806395d89b4114610391578063a9059cbb146103a6578063d73dd623146103ca578063dd62ed3e146103ee578063e0e3671c14610415578063f2fde38b14610436575b600080fd5b34801561012d57600080fd5b50610136610457565b604080519115158252519081900360200190f35b34801561015657600080fd5b5061015f610478565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610199578181015183820152602001610181565b50505050905090810190601f1680156101c65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101e057600080fd5b50610136600160a060020a03600435166024356104af565b34801561020457600080fd5b5061020d610519565b60408051918252519081900360200190f35b34801561022b57600080fd5b50610136600160a060020a036004358116906024351660443561051f565b34801561025557600080fd5b5061025e610547565b6040805160ff9092168252519081900360200190f35b34801561028057600080fd5b50610136600160a060020a036004351660243561054c565b3480156102a457600080fd5b50610136600160a060020a036004351660243561057b565b3480156102c857600080fd5b506102dd600160a060020a0360043516610674565b005b3480156102eb57600080fd5b5061020d600160a060020a036004351661069b565b34801561030c57600080fd5b506102dd600160a060020a03600435166106b6565b34801561032d57600080fd5b506101366106da565b34801561034257600080fd5b5061034b610768565b60408051600160a060020a039092168252519081900360200190f35b34801561037357600080fd5b5061034b610777565b34801561038857600080fd5b50610136610786565b34801561039d57600080fd5b5061015f6107b5565b3480156103b257600080fd5b50610136600160a060020a03600435166024356107ec565b3480156103d657600080fd5b50610136600160a060020a036004351660243561080b565b3480156103fa57600080fd5b5061020d600160a060020a03600435811690602435166108ad565b34801561042157600080fd5b50610136600160a060020a03600435166108d8565b34801561044257600080fd5b506102dd600160a060020a0360043516610908565b60035474010000000000000000000000000000000000000000900460ff1681565b60408051808201909152600e81527f536573736961204b69636b657273000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60005481565b6000610529610786565b151561053457600080fd5b61053f8484846109b0565b949350505050565b601281565b60055460009033600160a060020a0390811691161461056a57600080fd5b6105748383610ada565b9392505050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054808311156105d857600160a060020a03338116600090815260026020908152604080832093881683529290529081205561060f565b6105e8818463ffffffff610c0616565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529482529182902054825190815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35060019392505050565b60055433600160a060020a0390811691161461068f57600080fd5b61069881610c18565b50565b600160a060020a031660009081526001602052604090205490565b60055433600160a060020a039081169116146106d157600080fd5b61069881610c8e565b600160a060020a03331660009081526004602052604081205460ff16151560011461070457600080fd5b6003805474ff00000000000000000000000000000000000000001916740100000000000000000000000000000000000000001790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600554600160a060020a031681565b600354600160a060020a031681565b600160a060020a03331660009081526004602052604081205460ff166107ad5760006107b0565b60015b905090565b60408051808201909152600881527f5052452d4b49434b000000000000000000000000000000000000000000000000602082015281565b60006107f6610786565b151561080157600080fd5b6105748383610d3d565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610843908363ffffffff610e1316565b600160a060020a0333811660008181526002602090815260408083209489168084529482529182902085905581519485529051929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600160a060020a03811660009081526004602052604081205460ff166108ff576000610902565b60015b92915050565b600160a060020a03331660009081526004602052604090205460ff16151560011461093257600080fd5b600160a060020a038116151561094757600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600080600160a060020a03841615156109c857600080fd5b50600160a060020a03808516600081815260026020908152604080832033909516835293815283822054928252600190529190912054610a0e908463ffffffff610c0616565b600160a060020a038087166000908152600160205260408082209390935590861681522054610a43908463ffffffff610e1316565b600160a060020a038516600090815260016020526040902055610a6c818463ffffffff610c0616565b600160a060020a038087166000818152600260209081526040808320338616845282529182902094909455805187815290519288169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3506001949350505050565b600160a060020a03331660009081526004602052604081205460ff161515600114610b0457600080fd5b60035474010000000000000000000000000000000000000000900460ff1615610b2c57600080fd5b600054610b3f908363ffffffff610e1316565b6000908155600160a060020a038416815260016020526040902054610b6a908363ffffffff610e1316565b600160a060020a038416600081815260016020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b600082821115610c1257fe5b50900390565b600160a060020a03331660009081526004602052604090205460ff161515600114610c4257600080fd5b600160a060020a038116600081815260046020526040808220805460ff19166001179055517f1350a997c6c86bcc51dd7e51f7ef618d620e6a85d8fdabb82a980c149ad88d479190a250565b600160a060020a03331660009081526004602052604090205460ff161515600114610cb857600080fd5b600554600160a060020a0382811691161415610cd357600080fd5b80600160a060020a031633600160a060020a031614151515610cf457600080fd5b600160a060020a038116600081815260046020526040808220805460ff19169055517f1d1eff42eefbeecfca7e39f8adb5d7f19a7ebbb4c3e82c51f2500d7d76ab24689190a250565b6000600160a060020a0383161515610d5457600080fd5b600160a060020a033316600090815260016020526040902054610d7d908363ffffffff610c0616565b600160a060020a033381166000908152600160205260408082209390935590851681522054610db2908363ffffffff610e1316565b600160a060020a038085166000818152600160209081526040918290209490945580518681529051919333909316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350600192915050565b60008282018381101561057457fe00a165627a7a723058209dbdedf001d05a5f2c223c58582c13339b41548301449930fbe9c2f0e87706280029

Deployed Bytecode

0x60806040526004361061011c5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461012157806306fdde031461014a578063095ea7b3146101d457806318160ddd146101f857806323b872dd1461021f578063313ce5671461024957806340c10f1914610274578063661884631461029857806370284d19146102bc57806370a08231146102df57806374a8f103146103005780637d64bcb4146103215780638c72c54e146103365780638da5cb5b146103675780638f32d59b1461037c57806395d89b4114610391578063a9059cbb146103a6578063d73dd623146103ca578063dd62ed3e146103ee578063e0e3671c14610415578063f2fde38b14610436575b600080fd5b34801561012d57600080fd5b50610136610457565b604080519115158252519081900360200190f35b34801561015657600080fd5b5061015f610478565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610199578181015183820152602001610181565b50505050905090810190601f1680156101c65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101e057600080fd5b50610136600160a060020a03600435166024356104af565b34801561020457600080fd5b5061020d610519565b60408051918252519081900360200190f35b34801561022b57600080fd5b50610136600160a060020a036004358116906024351660443561051f565b34801561025557600080fd5b5061025e610547565b6040805160ff9092168252519081900360200190f35b34801561028057600080fd5b50610136600160a060020a036004351660243561054c565b3480156102a457600080fd5b50610136600160a060020a036004351660243561057b565b3480156102c857600080fd5b506102dd600160a060020a0360043516610674565b005b3480156102eb57600080fd5b5061020d600160a060020a036004351661069b565b34801561030c57600080fd5b506102dd600160a060020a03600435166106b6565b34801561032d57600080fd5b506101366106da565b34801561034257600080fd5b5061034b610768565b60408051600160a060020a039092168252519081900360200190f35b34801561037357600080fd5b5061034b610777565b34801561038857600080fd5b50610136610786565b34801561039d57600080fd5b5061015f6107b5565b3480156103b257600080fd5b50610136600160a060020a03600435166024356107ec565b3480156103d657600080fd5b50610136600160a060020a036004351660243561080b565b3480156103fa57600080fd5b5061020d600160a060020a03600435811690602435166108ad565b34801561042157600080fd5b50610136600160a060020a03600435166108d8565b34801561044257600080fd5b506102dd600160a060020a0360043516610908565b60035474010000000000000000000000000000000000000000900460ff1681565b60408051808201909152600e81527f536573736961204b69636b657273000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60005481565b6000610529610786565b151561053457600080fd5b61053f8484846109b0565b949350505050565b601281565b60055460009033600160a060020a0390811691161461056a57600080fd5b6105748383610ada565b9392505050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054808311156105d857600160a060020a03338116600090815260026020908152604080832093881683529290529081205561060f565b6105e8818463ffffffff610c0616565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529482529182902054825190815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35060019392505050565b60055433600160a060020a0390811691161461068f57600080fd5b61069881610c18565b50565b600160a060020a031660009081526001602052604090205490565b60055433600160a060020a039081169116146106d157600080fd5b61069881610c8e565b600160a060020a03331660009081526004602052604081205460ff16151560011461070457600080fd5b6003805474ff00000000000000000000000000000000000000001916740100000000000000000000000000000000000000001790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600554600160a060020a031681565b600354600160a060020a031681565b600160a060020a03331660009081526004602052604081205460ff166107ad5760006107b0565b60015b905090565b60408051808201909152600881527f5052452d4b49434b000000000000000000000000000000000000000000000000602082015281565b60006107f6610786565b151561080157600080fd5b6105748383610d3d565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610843908363ffffffff610e1316565b600160a060020a0333811660008181526002602090815260408083209489168084529482529182902085905581519485529051929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600160a060020a03811660009081526004602052604081205460ff166108ff576000610902565b60015b92915050565b600160a060020a03331660009081526004602052604090205460ff16151560011461093257600080fd5b600160a060020a038116151561094757600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600080600160a060020a03841615156109c857600080fd5b50600160a060020a03808516600081815260026020908152604080832033909516835293815283822054928252600190529190912054610a0e908463ffffffff610c0616565b600160a060020a038087166000908152600160205260408082209390935590861681522054610a43908463ffffffff610e1316565b600160a060020a038516600090815260016020526040902055610a6c818463ffffffff610c0616565b600160a060020a038087166000818152600260209081526040808320338616845282529182902094909455805187815290519288169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3506001949350505050565b600160a060020a03331660009081526004602052604081205460ff161515600114610b0457600080fd5b60035474010000000000000000000000000000000000000000900460ff1615610b2c57600080fd5b600054610b3f908363ffffffff610e1316565b6000908155600160a060020a038416815260016020526040902054610b6a908363ffffffff610e1316565b600160a060020a038416600081815260016020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b600082821115610c1257fe5b50900390565b600160a060020a03331660009081526004602052604090205460ff161515600114610c4257600080fd5b600160a060020a038116600081815260046020526040808220805460ff19166001179055517f1350a997c6c86bcc51dd7e51f7ef618d620e6a85d8fdabb82a980c149ad88d479190a250565b600160a060020a03331660009081526004602052604090205460ff161515600114610cb857600080fd5b600554600160a060020a0382811691161415610cd357600080fd5b80600160a060020a031633600160a060020a031614151515610cf457600080fd5b600160a060020a038116600081815260046020526040808220805460ff19169055517f1d1eff42eefbeecfca7e39f8adb5d7f19a7ebbb4c3e82c51f2500d7d76ab24689190a250565b6000600160a060020a0383161515610d5457600080fd5b600160a060020a033316600090815260016020526040902054610d7d908363ffffffff610c0616565b600160a060020a033381166000908152600160205260408082209390935590851681522054610db2908363ffffffff610e1316565b600160a060020a038085166000818152600160209081526040918290209490945580518681529051919333909316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350600192915050565b60008282018381101561057457fe00a165627a7a723058209dbdedf001d05a5f2c223c58582c13339b41548301449930fbe9c2f0e87706280029

Swarm Source

bzzr://9dbdedf001d05a5f2c223c58582c13339b41548301449930fbe9c2f0e8770628
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.