Overview
Max Total Supply
500,000,000 SURE
Holders
13,563 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 6 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SUREToken
Compiler Version
v0.4.24+commit.e67f0147
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-07-19 */ pragma solidity ^0.4.24; contract ERC20Basic { function totalSupply() public view returns (uint256); 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); } 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 ); } contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) public balances; uint256 public totalSupply_; function totalSupply() public view returns (uint256) { return totalSupply_; } /** * 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)); require(_value <= balances[msg.sender]); balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); emit Transfer(msg.sender, _to, _value); return true; } /** * 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) { return balances[_owner]; } } /** * @title Ownable * 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 OwnershipRenounced(address indexed previousOwner); event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * The Ownable constructor sets the original `owner` of the contract to the sender * account. */ constructor() public { owner = msg.sender; } /** * Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * 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); } /** * 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); } /** * 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; } } /** * @title SafeMath * Math operations with safety checks that throw on error */ library SafeMath { /** * Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256 c) { // Gas optimization: this is cheaper than asserting 'a' not being zero, but the // benefit is lost if 'b' is also tested. if (a == 0) { return 0; } c = a * b; assert(c / a == b); return c; } /** * Integer division of two numbers, truncating the quotient. */ 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 a / b; } /** * Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } /** * Adds two numbers, throws on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256 c) { c = a + b; assert(c >= a); return c; } } contract StandardToken is ERC20, BasicToken { mapping (address => mapping (address => uint256)) internal allowed; /** * 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)); require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); emit Transfer(_from, _to, _value); return true; } /** * 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: * @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; } /** * 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) { return allowed[_owner][_spender]; } /** * Increase the amount of tokens that an owner allowed to a 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) * @param _spender The address which will spend the funds. * @param _addedValue The amount of tokens to increase the allowance by. */ function increaseApproval( address _spender, uint256 _addedValue ) public returns (bool) { allowed[msg.sender][_spender] = ( allowed[msg.sender][_spender].add(_addedValue)); emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } /** * Decrease the amount of tokens that an owner allowed to a spender. * approve should be called when allowed[_spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * @param _spender The address which will spend the funds. * @param _subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseApproval( address _spender, uint256 _subtractedValue ) public returns (bool) { uint256 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; } } contract MintableToken is StandardToken, Ownable { event Mint(address indexed to, uint256 amount); event MintFinished(); bool public mintingFinished = false; modifier canMint() { require(!mintingFinished); _; } modifier hasMintPermission() { require(msg.sender == owner); _; } /** * 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 ) hasMintPermission canMint public returns (bool) { totalSupply_ = totalSupply_.add(_amount); balances[_to] = balances[_to].add(_amount); emit Mint(_to, _amount); emit Transfer(address(0), _to, _amount); return true; } /** * Function to stop minting new tokens. * @return True if the operation was successful. */ function finishMinting() onlyOwner canMint public returns (bool) { mintingFinished = true; emit MintFinished(); return true; } } contract SUREToken is MintableToken { address private deployedAddress = 0x65E5fF263Dd264b78ADcb08c1788c4CEC8910B4B; //Replace this address by the Ethereum main net string public name = "SURETY Token"; string public symbol = "SURE"; uint public decimals = 6; uint public totalSupplyToken = 500000000; /* The finalizer contract that allows unlift the transfer limits on this token */ address public releaseAgent; /* A crowdsale contract can release us to the wild if ICO success. If false we are are in transfer lock up period.*/ bool public released = false; /* Map of agents that are allowed to transfer tokens regardless of the lock down period. These are crowdsale contracts and possible the team multisig itself. */ mapping (address => bool) public transferAgents; /* A contract can release SURETY.AI team members/advisors to transfertoken. If false we are are in transfer lock up period.*/ bool public releasedTeam = false; /* Map of SURETY.AI's team members/advisors. */ mapping (address => bool) public teamMembers; constructor() public { totalSupply_ = totalSupplyToken * (10 ** decimals); balances[deployedAddress] = totalSupply_; transferAgents[deployedAddress] = true; releaseAgent = deployedAddress; emit Transfer(address(0), deployedAddress, totalSupply_); } /** * Limit token transfer until the crowdsale is over. */ modifier canTransfer(address _sender) { if(!released) { if(!transferAgents[_sender]) { revert("The token is in the locking period"); } } else if (!releasedTeam && teamMembers[_sender]) { revert("Team members/advisors cannot trade during this period."); } _; } /** * Set the contract that can call release and make the token transferable. */ function setReleaseAgent(address addr) onlyOwner inReleaseState(false) public { releaseAgent = addr; } /** * Owner can allow a particular address (a crowdsale contract) to transfer tokens despite the lock up period. */ function setTransferAgent(address addr, bool state) onlyOwner inReleaseState(false) public { require (!teamMembers[addr], "Error! This address is a team member/advisor address."); transferAgents[addr] = state; } /** * Owner can add the team member/advisor address. */ function setTeamMember(address addr, bool state) onlyOwner inReleaseState(false) public { require (!transferAgents[addr], "Error! This address is in the transfer agent list."); teamMembers[addr] = state; } /** * End locking state */ function releaseTokenTransfer() public onlyReleaseAgent { released = true; } /** * Resume locking state. */ function stopTokenTransfer() public onlyReleaseAgent { released = false; } /** * End locking state for team member/advisor. */ function releaseTeamTokenTransfer() public onlyReleaseAgent { releasedTeam = true; } /** * Resume locking state for team member/advisor. */ function stopTeamTokenTransfer() public onlyReleaseAgent { releasedTeam = false; } /** The function can be called only before or after the tokens have been releasesd */ modifier inReleaseState(bool releaseState) { if(releaseState != released) { revert(); } _; } /** The function can be called only by a whitelisted release agent. */ modifier onlyReleaseAgent() { if(msg.sender != releaseAgent) { revert(); } _; } function transfer(address _to, uint256 _value) canTransfer(msg.sender) public returns (bool success) { return super.transfer(_to, _value); } function transferFrom(address _from, address _to, uint _value) canTransfer(_from) public returns (bool success) { return super.transferFrom(_from, _to, _value); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":false,"inputs":[{"name":"addr","type":"address"},{"name":"state","type":"bool"}],"name":"setTransferAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"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":false,"inputs":[],"name":"releaseTeamTokenTransfer","outputs":[],"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":"stopTeamTokenTransfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupplyToken","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balances","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"}],"name":"setReleaseAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply_","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"releasedTeam","outputs":[{"name":"","type":"bool"}],"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":"releaseTokenTransfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"},{"name":"state","type":"bool"}],"name":"setTeamMember","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","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":"","type":"address"}],"name":"transferAgents","outputs":[{"name":"","type":"bool"}],"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":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"released","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"stopTokenTransfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"teamMembers","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"releaseAgent","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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"}],"name":"OwnershipRenounced","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"}]
Contract Creation Code
6003805460a060020a60ff021916905560048054600160a060020a0319167365e5ff263dd264b78adcb08c1788c4cec8910b4b17905560c0604052600c60808190527f53555245545920546f6b656e000000000000000000000000000000000000000060a09081526200007691600591906200019a565b506040805180820190915260048082527f53555245000000000000000000000000000000000000000000000000000000006020909201918252620000bd916006916200019a565b506006600755631dcd65006008556009805460a060020a60ff0219169055600b805460ff19169055348015620000f257600080fd5b506003805433600160a060020a031991821617909155600754600854600a91820a02600181815560048054600160a060020a0390811660009081526020818152604080832096909655835483168252958652848120805460ff1916851790559154600980549190921696168617905590548251908152915190927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef928290030190a36200023f565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001dd57805160ff19168380011785556200020d565b828001600101855582156200020d579182015b828111156200020d578251825591602001919060010190620001f0565b506200021b9291506200021f565b5090565b6200023c91905b808211156200021b576000815560010162000226565b90565b6114b0806200024f6000396000f3006080604052600436106101955763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166302f652a3811461019a57806305d2035b146101c257806306fdde03146101eb578063095ea7b3146102755780630e5fdad41461029957806318160ddd146102ae5780631ee5f936146102d557806323b872dd146102ea578063272133451461031457806327e235e31461032957806329ff4f531461034a578063313ce5671461036b578063324536eb1461038057806338e4b06b1461039557806340c10f19146103aa5780635f412d4f146103ce57806360bba03d146103e3578063661884631461040957806370a082311461042d578063715018a61461044e5780637d64bcb414610463578063867c2857146104785780638da5cb5b1461049957806395d89b41146104ca57806396132521146104df578063a9059cbb146104f4578063b49d3a5314610518578063c836292b1461052d578063d1f276d31461054e578063d73dd62314610563578063dd62ed3e14610587578063f2fde38b146105ae575b600080fd5b3480156101a657600080fd5b506101c0600160a060020a036004351660243515156105cf565b005b3480156101ce57600080fd5b506101d76106c3565b604080519115158252519081900360200190f35b3480156101f757600080fd5b506102006106d3565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561023a578181015183820152602001610222565b50505050905090810190601f1680156102675780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561028157600080fd5b506101d7600160a060020a0360043516602435610761565b3480156102a557600080fd5b506101c06107c7565b3480156102ba57600080fd5b506102c36107ed565b60408051918252519081900360200190f35b3480156102e157600080fd5b506101c06107f3565b3480156102f657600080fd5b506101d7600160a060020a0360043581169060243516604435610816565b34801561032057600080fd5b506102c3610985565b34801561033557600080fd5b506102c3600160a060020a036004351661098b565b34801561035657600080fd5b506101c0600160a060020a036004351661099d565b34801561037757600080fd5b506102c36109fe565b34801561038c57600080fd5b506102c3610a04565b3480156103a157600080fd5b506101d7610a0a565b3480156103b657600080fd5b506101d7600160a060020a0360043516602435610a13565b3480156103da57600080fd5b506101c0610b1d565b3480156103ef57600080fd5b506101c0600160a060020a03600435166024351515610b5a565b34801561041557600080fd5b506101d7600160a060020a0360043516602435610c4e565b34801561043957600080fd5b506102c3600160a060020a0360043516610d3e565b34801561045a57600080fd5b506101c0610d59565b34801561046f57600080fd5b506101d7610dc7565b34801561048457600080fd5b506101d7600160a060020a0360043516610e4b565b3480156104a557600080fd5b506104ae610e60565b60408051600160a060020a039092168252519081900360200190f35b3480156104d657600080fd5b50610200610e6f565b3480156104eb57600080fd5b506101d7610eca565b34801561050057600080fd5b506101d7600160a060020a0360043516602435610eda565b34801561052457600080fd5b506101c0611047565b34801561053957600080fd5b506101d7600160a060020a036004351661107e565b34801561055a57600080fd5b506104ae611093565b34801561056f57600080fd5b506101d7600160a060020a03600435166024356110a2565b34801561059357600080fd5b506102c3600160a060020a036004358116906024351661113b565b3480156105ba57600080fd5b506101c0600160a060020a0360043516611166565b600354600160a060020a031633146105e657600080fd5b60095460009060a060020a900460ff161561060057600080fd5b600160a060020a0383166000908152600c602052604090205460ff1615610697576040805160e560020a62461bcd02815260206004820152603560248201527f4572726f7221205468697320616464726573732069732061207465616d206d6560448201527f6d6265722f61647669736f7220616464726573732e0000000000000000000000606482015290519081900360840190fd5b50600160a060020a03919091166000908152600a60205260409020805460ff1916911515919091179055565b60035460a060020a900460ff1681565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107595780601f1061072e57610100808354040283529160200191610759565b820191906000526020600020905b81548152906001019060200180831161073c57829003601f168201915b505050505081565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b600954600160a060020a031633146107de57600080fd5b600b805460ff19166001179055565b60015490565b600954600160a060020a0316331461080a57600080fd5b600b805460ff19169055565b600954600090849060a060020a900460ff1615156108cb57600160a060020a0381166000908152600a602052604090205460ff1615156108c6576040805160e560020a62461bcd02815260206004820152602260248201527f54686520746f6b656e20697320696e20746865206c6f636b696e67207065726960448201527f6f64000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b610971565b600b5460ff161580156108f65750600160a060020a0381166000908152600c602052604090205460ff165b15610971576040805160e560020a62461bcd02815260206004820152603660248201527f5465616d206d656d626572732f61647669736f72732063616e6e6f742074726160448201527f646520647572696e67207468697320706572696f642e00000000000000000000606482015290519081900360840190fd5b61097c858585611189565b95945050505050565b60085481565b60006020819052908152604090205481565b600354600160a060020a031633146109b457600080fd5b60095460009060a060020a900460ff16156109ce57600080fd5b506009805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60075481565b60015481565b600b5460ff1681565b600354600090600160a060020a03163314610a2d57600080fd5b60035460a060020a900460ff1615610a4457600080fd5b600154610a57908363ffffffff61130016565b600155600160a060020a038316600090815260208190526040902054610a83908363ffffffff61130016565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b600954600160a060020a03163314610b3457600080fd5b6009805474ff0000000000000000000000000000000000000000191660a060020a179055565b600354600160a060020a03163314610b7157600080fd5b60095460009060a060020a900460ff1615610b8b57600080fd5b600160a060020a0383166000908152600a602052604090205460ff1615610c22576040805160e560020a62461bcd02815260206004820152603260248201527f4572726f72212054686973206164647265737320697320696e2074686520747260448201527f616e73666572206167656e74206c6973742e0000000000000000000000000000606482015290519081900360840190fd5b50600160a060020a03919091166000908152600c60205260409020805460ff1916911515919091179055565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610ca357336000908152600260209081526040808320600160a060020a0388168452909152812055610cd8565b610cb3818463ffffffff61131316565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a03163314610d7057600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b600354600090600160a060020a03163314610de157600080fd5b60035460a060020a900460ff1615610df857600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600a6020526000908152604090205460ff1681565b600354600160a060020a031681565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107595780601f1061072e57610100808354040283529160200191610759565b60095460a060020a900460ff1681565b600954600090339060a060020a900460ff161515610f8f57600160a060020a0381166000908152600a602052604090205460ff161515610f8a576040805160e560020a62461bcd02815260206004820152602260248201527f54686520746f6b656e20697320696e20746865206c6f636b696e67207065726960448201527f6f64000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b611035565b600b5460ff16158015610fba5750600160a060020a0381166000908152600c602052604090205460ff165b15611035576040805160e560020a62461bcd02815260206004820152603660248201527f5465616d206d656d626572732f61647669736f72732063616e6e6f742074726160448201527f646520647572696e67207468697320706572696f642e00000000000000000000606482015290519081900360840190fd5b61103f8484611325565b949350505050565b600954600160a060020a0316331461105e57600080fd5b6009805474ff000000000000000000000000000000000000000019169055565b600c6020526000908152604090205460ff1681565b600954600160a060020a031681565b336000908152600260209081526040808320600160a060020a03861684529091528120546110d6908363ffffffff61130016565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a0316331461117d57600080fd5b61118681611406565b50565b6000600160a060020a03831615156111a057600080fd5b600160a060020a0384166000908152602081905260409020548211156111c557600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156111f557600080fd5b600160a060020a03841660009081526020819052604090205461121e908363ffffffff61131316565b600160a060020a038086166000908152602081905260408082209390935590851681522054611253908363ffffffff61130016565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054611295908363ffffffff61131316565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b8181018281101561130d57fe5b92915050565b60008282111561131f57fe5b50900390565b6000600160a060020a038316151561133c57600080fd5b3360009081526020819052604090205482111561135857600080fd5b33600090815260208190526040902054611378908363ffffffff61131316565b3360009081526020819052604080822092909255600160a060020a038516815220546113aa908363ffffffff61130016565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600160a060020a038116151561141b57600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600a165627a7a723058204a9df9de868bf01547201e865d7bedcdf3d87a9b7072b149abec661e672fe8b40029
Deployed Bytecode
0x6080604052600436106101955763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166302f652a3811461019a57806305d2035b146101c257806306fdde03146101eb578063095ea7b3146102755780630e5fdad41461029957806318160ddd146102ae5780631ee5f936146102d557806323b872dd146102ea578063272133451461031457806327e235e31461032957806329ff4f531461034a578063313ce5671461036b578063324536eb1461038057806338e4b06b1461039557806340c10f19146103aa5780635f412d4f146103ce57806360bba03d146103e3578063661884631461040957806370a082311461042d578063715018a61461044e5780637d64bcb414610463578063867c2857146104785780638da5cb5b1461049957806395d89b41146104ca57806396132521146104df578063a9059cbb146104f4578063b49d3a5314610518578063c836292b1461052d578063d1f276d31461054e578063d73dd62314610563578063dd62ed3e14610587578063f2fde38b146105ae575b600080fd5b3480156101a657600080fd5b506101c0600160a060020a036004351660243515156105cf565b005b3480156101ce57600080fd5b506101d76106c3565b604080519115158252519081900360200190f35b3480156101f757600080fd5b506102006106d3565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561023a578181015183820152602001610222565b50505050905090810190601f1680156102675780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561028157600080fd5b506101d7600160a060020a0360043516602435610761565b3480156102a557600080fd5b506101c06107c7565b3480156102ba57600080fd5b506102c36107ed565b60408051918252519081900360200190f35b3480156102e157600080fd5b506101c06107f3565b3480156102f657600080fd5b506101d7600160a060020a0360043581169060243516604435610816565b34801561032057600080fd5b506102c3610985565b34801561033557600080fd5b506102c3600160a060020a036004351661098b565b34801561035657600080fd5b506101c0600160a060020a036004351661099d565b34801561037757600080fd5b506102c36109fe565b34801561038c57600080fd5b506102c3610a04565b3480156103a157600080fd5b506101d7610a0a565b3480156103b657600080fd5b506101d7600160a060020a0360043516602435610a13565b3480156103da57600080fd5b506101c0610b1d565b3480156103ef57600080fd5b506101c0600160a060020a03600435166024351515610b5a565b34801561041557600080fd5b506101d7600160a060020a0360043516602435610c4e565b34801561043957600080fd5b506102c3600160a060020a0360043516610d3e565b34801561045a57600080fd5b506101c0610d59565b34801561046f57600080fd5b506101d7610dc7565b34801561048457600080fd5b506101d7600160a060020a0360043516610e4b565b3480156104a557600080fd5b506104ae610e60565b60408051600160a060020a039092168252519081900360200190f35b3480156104d657600080fd5b50610200610e6f565b3480156104eb57600080fd5b506101d7610eca565b34801561050057600080fd5b506101d7600160a060020a0360043516602435610eda565b34801561052457600080fd5b506101c0611047565b34801561053957600080fd5b506101d7600160a060020a036004351661107e565b34801561055a57600080fd5b506104ae611093565b34801561056f57600080fd5b506101d7600160a060020a03600435166024356110a2565b34801561059357600080fd5b506102c3600160a060020a036004358116906024351661113b565b3480156105ba57600080fd5b506101c0600160a060020a0360043516611166565b600354600160a060020a031633146105e657600080fd5b60095460009060a060020a900460ff161561060057600080fd5b600160a060020a0383166000908152600c602052604090205460ff1615610697576040805160e560020a62461bcd02815260206004820152603560248201527f4572726f7221205468697320616464726573732069732061207465616d206d6560448201527f6d6265722f61647669736f7220616464726573732e0000000000000000000000606482015290519081900360840190fd5b50600160a060020a03919091166000908152600a60205260409020805460ff1916911515919091179055565b60035460a060020a900460ff1681565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107595780601f1061072e57610100808354040283529160200191610759565b820191906000526020600020905b81548152906001019060200180831161073c57829003601f168201915b505050505081565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b600954600160a060020a031633146107de57600080fd5b600b805460ff19166001179055565b60015490565b600954600160a060020a0316331461080a57600080fd5b600b805460ff19169055565b600954600090849060a060020a900460ff1615156108cb57600160a060020a0381166000908152600a602052604090205460ff1615156108c6576040805160e560020a62461bcd02815260206004820152602260248201527f54686520746f6b656e20697320696e20746865206c6f636b696e67207065726960448201527f6f64000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b610971565b600b5460ff161580156108f65750600160a060020a0381166000908152600c602052604090205460ff165b15610971576040805160e560020a62461bcd02815260206004820152603660248201527f5465616d206d656d626572732f61647669736f72732063616e6e6f742074726160448201527f646520647572696e67207468697320706572696f642e00000000000000000000606482015290519081900360840190fd5b61097c858585611189565b95945050505050565b60085481565b60006020819052908152604090205481565b600354600160a060020a031633146109b457600080fd5b60095460009060a060020a900460ff16156109ce57600080fd5b506009805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60075481565b60015481565b600b5460ff1681565b600354600090600160a060020a03163314610a2d57600080fd5b60035460a060020a900460ff1615610a4457600080fd5b600154610a57908363ffffffff61130016565b600155600160a060020a038316600090815260208190526040902054610a83908363ffffffff61130016565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b600954600160a060020a03163314610b3457600080fd5b6009805474ff0000000000000000000000000000000000000000191660a060020a179055565b600354600160a060020a03163314610b7157600080fd5b60095460009060a060020a900460ff1615610b8b57600080fd5b600160a060020a0383166000908152600a602052604090205460ff1615610c22576040805160e560020a62461bcd02815260206004820152603260248201527f4572726f72212054686973206164647265737320697320696e2074686520747260448201527f616e73666572206167656e74206c6973742e0000000000000000000000000000606482015290519081900360840190fd5b50600160a060020a03919091166000908152600c60205260409020805460ff1916911515919091179055565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610ca357336000908152600260209081526040808320600160a060020a0388168452909152812055610cd8565b610cb3818463ffffffff61131316565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a03163314610d7057600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b600354600090600160a060020a03163314610de157600080fd5b60035460a060020a900460ff1615610df857600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600a6020526000908152604090205460ff1681565b600354600160a060020a031681565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107595780601f1061072e57610100808354040283529160200191610759565b60095460a060020a900460ff1681565b600954600090339060a060020a900460ff161515610f8f57600160a060020a0381166000908152600a602052604090205460ff161515610f8a576040805160e560020a62461bcd02815260206004820152602260248201527f54686520746f6b656e20697320696e20746865206c6f636b696e67207065726960448201527f6f64000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b611035565b600b5460ff16158015610fba5750600160a060020a0381166000908152600c602052604090205460ff165b15611035576040805160e560020a62461bcd02815260206004820152603660248201527f5465616d206d656d626572732f61647669736f72732063616e6e6f742074726160448201527f646520647572696e67207468697320706572696f642e00000000000000000000606482015290519081900360840190fd5b61103f8484611325565b949350505050565b600954600160a060020a0316331461105e57600080fd5b6009805474ff000000000000000000000000000000000000000019169055565b600c6020526000908152604090205460ff1681565b600954600160a060020a031681565b336000908152600260209081526040808320600160a060020a03861684529091528120546110d6908363ffffffff61130016565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a0316331461117d57600080fd5b61118681611406565b50565b6000600160a060020a03831615156111a057600080fd5b600160a060020a0384166000908152602081905260409020548211156111c557600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156111f557600080fd5b600160a060020a03841660009081526020819052604090205461121e908363ffffffff61131316565b600160a060020a038086166000908152602081905260408082209390935590851681522054611253908363ffffffff61130016565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054611295908363ffffffff61131316565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b8181018281101561130d57fe5b92915050565b60008282111561131f57fe5b50900390565b6000600160a060020a038316151561133c57600080fd5b3360009081526020819052604090205482111561135857600080fd5b33600090815260208190526040902054611378908363ffffffff61131316565b3360009081526020819052604080822092909255600160a060020a038516815220546113aa908363ffffffff61130016565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600160a060020a038116151561141b57600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600a165627a7a723058204a9df9de868bf01547201e865d7bedcdf3d87a9b7072b149abec661e672fe8b40029
Swarm Source
bzzr://4a9df9de868bf01547201e865d7bedcdf3d87a9b7072b149abec661e672fe8b4
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.