ERC-20
Overview
Max Total Supply
500 AIDOC-AISI
Holders
216
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AIAISIToken
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-28 */ pragma solidity ^0.4.0; /** * @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); event Burn(address indexed from, uint256 value); } library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(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; } } 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) public onlyOwner { require(newOwner != address(0)); emit OwnershipTransferred(owner, newOwner); owner = newOwner; } } contract BasicToken is ERC20Basic, Ownable { using SafeMath for uint256; mapping (address => uint256) balances; bool public transfersEnabledFlag; /** * @dev Throws if transfersEnabledFlag is false and not owner. */ modifier transfersEnabled() { require(transfersEnabledFlag); _; } function enableTransfers() public onlyOwner { transfersEnabledFlag = true; } /** * @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)); require(_value <= balances[msg.sender]); // 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]; } } 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)) internal 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)); 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; } /** * @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) { 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) { 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) { 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; } } /** * @title Mintable token * @dev Simple ERC20 Token example, with mintable token creation * @dev Issue: * https://github.com/OpenZeppelin/zeppelin-solidity/issues/120 * Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol */ contract MintableToken is StandardToken { event Mint(address indexed to, uint256 amount); event MintFinished(); bool public mintingFinished = false; mapping(address => bool) public minters; modifier canMint() { require(!mintingFinished); _; } modifier onlyMinters() { require(minters[msg.sender] || msg.sender == owner); _; } function addMinter(address _addr) public onlyOwner { minters[_addr] = true; } function deleteMinter(address _addr) public onlyOwner { delete minters[_addr]; } /** * @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) onlyMinters 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; } /** * @dev 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; } } /** * @title Capped token * @dev Mintable token with a token cap. */ contract CappedToken is MintableToken { uint256 public cap; constructor(uint256 _cap) public { require(_cap > 0); cap = _cap; } /** * @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) onlyMinters canMint public returns (bool) { require(totalSupply.add(_amount) <= cap); return super.mint(_to, _amount); } } contract TokenParam { /** * 小数点位数 */ uint256 public constant decimals = 18; /** * 总量 */ uint256 public totalSupply = 500 * 10 ** decimals; } contract AIAISIToken is CappedToken,TokenParam { string public constant name = "AIDOC-AISI"; string public constant symbol = "AIDOC-AISI"; constructor() public CappedToken(totalSupply) { balances[msg.sender] = totalSupply; } function burn(uint256 _value) onlyOwner public returns (bool success) { require(balances[msg.sender] >= _value); // Check if the sender has enough balances[msg.sender] = balances[msg.sender].sub(_value); // Subtract from the sender totalSupply = totalSupply.sub(_value); // Updates totalSupply emit Burn(msg.sender, _value); return true; } function burnFrom(address _from, uint256 _value) onlyOwner public returns (bool success) { require(_from!=address(0)); require(balances[_from] >= _value); // Check if the targeted balance is enough balances[_from] = balances[_from].sub(_value); // Subtract from the targeted balance totalSupply = totalSupply.sub(_value); // Update totalSupply emit Burn(_from, _value); return true; } function mintToken(address _target, uint256 _value) onlyOwner public returns (bool success) { require(_target!=address(0)); balances[_target] = balances[_target].add(_value); totalSupply = totalSupply.add(_value); emit Transfer(address(0), owner, _value); emit Transfer(owner, _target, _value); return true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"transfersEnabledFlag","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":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"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":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"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":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_target","type":"address"},{"name":"_value","type":"uint256"}],"name":"mintToken","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"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":"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":false,"inputs":[{"name":"_addr","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"enableTransfers","outputs":[],"payable":false,"stateMutability":"nonpayable","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":false,"inputs":[{"name":"_addr","type":"address"}],"name":"deleteMinter","outputs":[],"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"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"minters","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","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"},{"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"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]
Contract Creation Code
60806040526005805460ff19169055681b1ae4d6e2ef50000060085534801561002757600080fd5b5060085460018054600160a060020a031916331790556000811161004a57600080fd5b60075560085433600090815260026020526040902055610fde8061006f6000396000f3006080604052600436106101485763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461014d57806305f9bb6b1461017657806306fdde031461018b578063095ea7b31461021557806318160ddd1461023957806323b872dd14610260578063313ce5671461028a578063355274ea1461029f57806340c10f19146102b457806342966c68146102d857806366188463146102f057806370a082311461031457806379c650681461033557806379cc6790146103595780637d64bcb41461037d5780638da5cb5b1461039257806395d89b411461018b578063983b2d56146103c3578063a9059cbb146103e6578063af35c6c71461040a578063d73dd6231461041f578063d82f94a314610443578063dd62ed3e14610464578063f2fde38b1461048b578063f46eccc4146104ac575b600080fd5b34801561015957600080fd5b506101626104cd565b604080519115158252519081900360200190f35b34801561018257600080fd5b506101626104d6565b34801561019757600080fd5b506101a06104df565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101da5781810151838201526020016101c2565b50505050905090810190601f1680156102075780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561022157600080fd5b50610162600160a060020a0360043516602435610516565b34801561024557600080fd5b5061024e61057c565b60408051918252519081900360200190f35b34801561026c57600080fd5b50610162600160a060020a0360043581169060243516604435610582565b34801561029657600080fd5b5061024e6106e9565b3480156102ab57600080fd5b5061024e6106ee565b3480156102c057600080fd5b50610162600160a060020a03600435166024356106f4565b3480156102e457600080fd5b50610162600435610769565b3480156102fc57600080fd5b50610162600160a060020a0360043516602435610823565b34801561032057600080fd5b5061024e600160a060020a0360043516610913565b34801561034157600080fd5b50610162600160a060020a036004351660243561092e565b34801561036557600080fd5b50610162600160a060020a0360043516602435610a25565b34801561038957600080fd5b50610162610b19565b34801561039e57600080fd5b506103a7610b7f565b60408051600160a060020a039092168252519081900360200190f35b3480156103cf57600080fd5b506103e4600160a060020a0360043516610b8e565b005b3480156103f257600080fd5b50610162600160a060020a0360043516602435610bc9565b34801561041657600080fd5b506103e4610c9a565b34801561042b57600080fd5b50610162600160a060020a0360043516602435610cc0565b34801561044f57600080fd5b506103e4600160a060020a0360043516610d59565b34801561047057600080fd5b5061024e600160a060020a0360043581169060243516610d91565b34801561049757600080fd5b506103e4600160a060020a0360043516610dbc565b3480156104b857600080fd5b50610162600160a060020a0360043516610e51565b60055460ff1681565b60035460ff1681565b60408051808201909152600a81527f4149444f432d4149534900000000000000000000000000000000000000000000602082015281565b336000818152600460209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60085481565b6000600160a060020a038316151561059957600080fd5b600160a060020a0384166000908152600260205260409020548211156105be57600080fd5b600160a060020a03841660009081526004602090815260408083203384529091529020548211156105ee57600080fd5b600160a060020a038416600090815260026020526040902054610617908363ffffffff610e6616565b600160a060020a03808616600090815260026020526040808220939093559085168152205461064c908363ffffffff610e7816565b600160a060020a038085166000908152600260209081526040808320949094559187168152600482528281203382529091522054610690908363ffffffff610e6616565b600160a060020a0380861660008181526004602090815260408083203384528252918290209490945580518681529051928716939192600080516020610f93833981519152929181900390910190a35060019392505050565b601281565b60075481565b3360009081526006602052604081205460ff168061071c5750600154600160a060020a031633145b151561072757600080fd5b60055460ff161561073757600080fd5b60075460005461074d908463ffffffff610e7816565b111561075857600080fd5b6107628383610e87565b9392505050565b600154600090600160a060020a0316331461078357600080fd5b3360009081526002602052604090205482111561079f57600080fd5b336000908152600260205260409020546107bf908363ffffffff610e6616565b336000908152600260205260409020556008546107e2908363ffffffff610e6616565b60085560408051838152905133917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2506001919050565b336000908152600460209081526040808320600160a060020a03861684529091528120548083111561087857336000908152600460209081526040808320600160a060020a03881684529091528120556108ad565b610888818463ffffffff610e6616565b336000908152600460209081526040808320600160a060020a03891684529091529020555b336000818152600460209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526002602052604090205490565b600154600090600160a060020a0316331461094857600080fd5b600160a060020a038316151561095d57600080fd5b600160a060020a038316600090815260026020526040902054610986908363ffffffff610e7816565b600160a060020a0384166000908152600260205260409020556008546109b2908363ffffffff610e7816565b600855600154604080518481529051600160a060020a0390921691600091600080516020610f93833981519152919081900360200190a3600154604080518481529051600160a060020a03808716931691600080516020610f93833981519152919081900360200190a350600192915050565b600154600090600160a060020a03163314610a3f57600080fd5b600160a060020a0383161515610a5457600080fd5b600160a060020a038316600090815260026020526040902054821115610a7957600080fd5b600160a060020a038316600090815260026020526040902054610aa2908363ffffffff610e6616565b600160a060020a038416600090815260026020526040902055600854610ace908363ffffffff610e6616565b600855604080518381529051600160a060020a038516917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a250600192915050565b600154600090600160a060020a03163314610b3357600080fd5b60055460ff1615610b4357600080fd5b6005805460ff191660011790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600154600160a060020a031681565b600154600160a060020a03163314610ba557600080fd5b600160a060020a03166000908152600660205260409020805460ff19166001179055565b6000600160a060020a0383161515610be057600080fd5b33600090815260026020526040902054821115610bfc57600080fd5b33600090815260026020526040902054610c1c908363ffffffff610e6616565b3360009081526002602052604080822092909255600160a060020a03851681522054610c4e908363ffffffff610e7816565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191923392600080516020610f938339815191529281900390910190a350600192915050565b600154600160a060020a03163314610cb157600080fd5b6003805460ff19166001179055565b336000908152600460209081526040808320600160a060020a0386168452909152812054610cf4908363ffffffff610e7816565b336000818152600460209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600154600160a060020a03163314610d7057600080fd5b600160a060020a03166000908152600660205260409020805460ff19169055565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b600154600160a060020a03163314610dd357600080fd5b600160a060020a0381161515610de857600080fd5b600154604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60066020526000908152604090205460ff1681565b600082821115610e7257fe5b50900390565b60008282018381101561076257fe5b3360009081526006602052604081205460ff1680610eaf5750600154600160a060020a031633145b1515610eba57600080fd5b60055460ff1615610eca57600080fd5b600054610edd908363ffffffff610e7816565b6000908155600160a060020a038416815260026020526040902054610f08908363ffffffff610e7816565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a03851691600091600080516020610f938339815191529181900360200190a3506001929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820aa8b662ff19b67acab2adcdfd62055a3a1f5e02a39541d9b39c71f9b9f0e7e870029
Deployed Bytecode
0x6080604052600436106101485763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461014d57806305f9bb6b1461017657806306fdde031461018b578063095ea7b31461021557806318160ddd1461023957806323b872dd14610260578063313ce5671461028a578063355274ea1461029f57806340c10f19146102b457806342966c68146102d857806366188463146102f057806370a082311461031457806379c650681461033557806379cc6790146103595780637d64bcb41461037d5780638da5cb5b1461039257806395d89b411461018b578063983b2d56146103c3578063a9059cbb146103e6578063af35c6c71461040a578063d73dd6231461041f578063d82f94a314610443578063dd62ed3e14610464578063f2fde38b1461048b578063f46eccc4146104ac575b600080fd5b34801561015957600080fd5b506101626104cd565b604080519115158252519081900360200190f35b34801561018257600080fd5b506101626104d6565b34801561019757600080fd5b506101a06104df565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101da5781810151838201526020016101c2565b50505050905090810190601f1680156102075780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561022157600080fd5b50610162600160a060020a0360043516602435610516565b34801561024557600080fd5b5061024e61057c565b60408051918252519081900360200190f35b34801561026c57600080fd5b50610162600160a060020a0360043581169060243516604435610582565b34801561029657600080fd5b5061024e6106e9565b3480156102ab57600080fd5b5061024e6106ee565b3480156102c057600080fd5b50610162600160a060020a03600435166024356106f4565b3480156102e457600080fd5b50610162600435610769565b3480156102fc57600080fd5b50610162600160a060020a0360043516602435610823565b34801561032057600080fd5b5061024e600160a060020a0360043516610913565b34801561034157600080fd5b50610162600160a060020a036004351660243561092e565b34801561036557600080fd5b50610162600160a060020a0360043516602435610a25565b34801561038957600080fd5b50610162610b19565b34801561039e57600080fd5b506103a7610b7f565b60408051600160a060020a039092168252519081900360200190f35b3480156103cf57600080fd5b506103e4600160a060020a0360043516610b8e565b005b3480156103f257600080fd5b50610162600160a060020a0360043516602435610bc9565b34801561041657600080fd5b506103e4610c9a565b34801561042b57600080fd5b50610162600160a060020a0360043516602435610cc0565b34801561044f57600080fd5b506103e4600160a060020a0360043516610d59565b34801561047057600080fd5b5061024e600160a060020a0360043581169060243516610d91565b34801561049757600080fd5b506103e4600160a060020a0360043516610dbc565b3480156104b857600080fd5b50610162600160a060020a0360043516610e51565b60055460ff1681565b60035460ff1681565b60408051808201909152600a81527f4149444f432d4149534900000000000000000000000000000000000000000000602082015281565b336000818152600460209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60085481565b6000600160a060020a038316151561059957600080fd5b600160a060020a0384166000908152600260205260409020548211156105be57600080fd5b600160a060020a03841660009081526004602090815260408083203384529091529020548211156105ee57600080fd5b600160a060020a038416600090815260026020526040902054610617908363ffffffff610e6616565b600160a060020a03808616600090815260026020526040808220939093559085168152205461064c908363ffffffff610e7816565b600160a060020a038085166000908152600260209081526040808320949094559187168152600482528281203382529091522054610690908363ffffffff610e6616565b600160a060020a0380861660008181526004602090815260408083203384528252918290209490945580518681529051928716939192600080516020610f93833981519152929181900390910190a35060019392505050565b601281565b60075481565b3360009081526006602052604081205460ff168061071c5750600154600160a060020a031633145b151561072757600080fd5b60055460ff161561073757600080fd5b60075460005461074d908463ffffffff610e7816565b111561075857600080fd5b6107628383610e87565b9392505050565b600154600090600160a060020a0316331461078357600080fd5b3360009081526002602052604090205482111561079f57600080fd5b336000908152600260205260409020546107bf908363ffffffff610e6616565b336000908152600260205260409020556008546107e2908363ffffffff610e6616565b60085560408051838152905133917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2506001919050565b336000908152600460209081526040808320600160a060020a03861684529091528120548083111561087857336000908152600460209081526040808320600160a060020a03881684529091528120556108ad565b610888818463ffffffff610e6616565b336000908152600460209081526040808320600160a060020a03891684529091529020555b336000818152600460209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526002602052604090205490565b600154600090600160a060020a0316331461094857600080fd5b600160a060020a038316151561095d57600080fd5b600160a060020a038316600090815260026020526040902054610986908363ffffffff610e7816565b600160a060020a0384166000908152600260205260409020556008546109b2908363ffffffff610e7816565b600855600154604080518481529051600160a060020a0390921691600091600080516020610f93833981519152919081900360200190a3600154604080518481529051600160a060020a03808716931691600080516020610f93833981519152919081900360200190a350600192915050565b600154600090600160a060020a03163314610a3f57600080fd5b600160a060020a0383161515610a5457600080fd5b600160a060020a038316600090815260026020526040902054821115610a7957600080fd5b600160a060020a038316600090815260026020526040902054610aa2908363ffffffff610e6616565b600160a060020a038416600090815260026020526040902055600854610ace908363ffffffff610e6616565b600855604080518381529051600160a060020a038516917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a250600192915050565b600154600090600160a060020a03163314610b3357600080fd5b60055460ff1615610b4357600080fd5b6005805460ff191660011790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600154600160a060020a031681565b600154600160a060020a03163314610ba557600080fd5b600160a060020a03166000908152600660205260409020805460ff19166001179055565b6000600160a060020a0383161515610be057600080fd5b33600090815260026020526040902054821115610bfc57600080fd5b33600090815260026020526040902054610c1c908363ffffffff610e6616565b3360009081526002602052604080822092909255600160a060020a03851681522054610c4e908363ffffffff610e7816565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191923392600080516020610f938339815191529281900390910190a350600192915050565b600154600160a060020a03163314610cb157600080fd5b6003805460ff19166001179055565b336000908152600460209081526040808320600160a060020a0386168452909152812054610cf4908363ffffffff610e7816565b336000818152600460209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600154600160a060020a03163314610d7057600080fd5b600160a060020a03166000908152600660205260409020805460ff19169055565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b600154600160a060020a03163314610dd357600080fd5b600160a060020a0381161515610de857600080fd5b600154604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60066020526000908152604090205460ff1681565b600082821115610e7257fe5b50900390565b60008282018381101561076257fe5b3360009081526006602052604081205460ff1680610eaf5750600154600160a060020a031633145b1515610eba57600080fd5b60055460ff1615610eca57600080fd5b600054610edd908363ffffffff610e7816565b6000908155600160a060020a038416815260026020526040902054610f08908363ffffffff610e7816565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a03851691600091600080516020610f938339815191529181900360200190a3506001929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820aa8b662ff19b67acab2adcdfd62055a3a1f5e02a39541d9b39c71f9b9f0e7e870029
Swarm Source
bzzr://aa8b662ff19b67acab2adcdfd62055a3a1f5e02a39541d9b39c71f9b9f0e7e87
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.