Overview
Max Total Supply
1,000,000,000 HMT
Holders
3,577 ( 0.056%)
Market
Price
$0.02 @ 0.000009 ETH (-0.43%)
Onchain Market Cap
$20,817,390.00
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
HMToken
Compiler Version
v0.6.2+commit.bacdbe57
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-06-16 */ // SPDX-License-Identifier: MIT pragma solidity ^0.6.2; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } interface HMTokenInterface { event Transfer(address indexed _from, address indexed _to, uint256 _value); event Approval(address indexed _owner, address indexed _spender, uint256 _value); /// @param _owner The address from which the balance will be retrieved /// @return balance The balance function balanceOf(address _owner) external view returns (uint256 balance); /// @notice send `_value` token to `_to` from `msg.sender` /// @param _to The address of the recipient /// @param _value The amount of token to be transferred /// @return success Whether the transfer was successful or not function transfer(address _to, uint256 _value) external returns (bool success); /// @notice send `_value` token to `_to` from `_from` on the condition it is approved by `_from` /// @param _from The address of the sender /// @param _to The address of the recipient /// @param _value The amount of token to be transferred /// @return success Whether the transfer was successful or not function transferFrom(address _from, address _to, uint256 _value) external returns (bool success); function transferBulk(address[] calldata _tos, uint256[] calldata _values, uint256 _txId) external returns (uint256 _bulkCount); /// @notice `msg.sender` approves `_spender` to spend `_value` tokens /// @param _spender The address of the account able to transfer the tokens /// @param _value The amount of tokens to be approved for transfer /// @return success Whether the approval was successful or not function approve(address _spender, uint256 _value) external returns (bool success); /// @param _owner The address of the account owning tokens /// @param _spender The address of the account able to transfer the tokens /// @return remaining Amount of remaining tokens allowed to spent function allowance(address _owner, address _spender) external view returns (uint256 remaining); } contract HMToken is HMTokenInterface { using SafeMath for uint256; /* This is a slight change to the ERC20 base standard. function totalSupply() constant returns (uint256 supply); is replaced with: uint256 public totalSupply; This automatically creates a getter function for the totalSupply. This is moved to the base contract since public getter functions are not currently recognised as an implementation of the matching abstract function by the compiler. */ /// total amount of tokens uint256 public totalSupply; uint256 private constant MAX_UINT256 = ~uint256(0); uint256 private constant BULK_MAX_VALUE = 1000000000 * (10 ** 18); uint32 private constant BULK_MAX_COUNT = 100; event BulkTransfer(uint256 indexed _txId, uint256 _bulkCount); event BulkApproval(uint256 indexed _txId, uint256 _bulkCount); mapping (address => uint256) private balances; mapping (address => mapping (address => uint256)) private allowed; string public name; uint8 public decimals; string public symbol; constructor(uint256 _totalSupply, string memory _name, uint8 _decimals, string memory _symbol) public { totalSupply = _totalSupply * (10 ** uint256(_decimals)); name = _name; decimals = _decimals; symbol = _symbol; balances[msg.sender] = totalSupply; } function transfer(address _to, uint256 _value) public override returns (bool success) { success = transferQuiet(_to, _value); require(success, "Transfer didn't succeed"); return success; } function transferFrom(address _spender, address _to, uint256 _value) public override returns (bool success) { uint256 _allowance = allowed[_spender][msg.sender]; require(_allowance >= _value, "Spender allowance too low"); require(_to != address(0), "Can't send tokens to uninitialized address"); balances[_spender] = balances[_spender].sub(_value, "Spender balance too low"); balances[_to] = balances[_to].add(_value); if (_allowance != MAX_UINT256) { // Special case to approve unlimited transfers allowed[_spender][msg.sender] = allowed[_spender][msg.sender].sub(_value); } emit Transfer(_spender, _to, _value); return true; } function balanceOf(address _owner) public view override returns (uint256 balance) { return balances[_owner]; } function approve(address _spender, uint256 _value) public override returns (bool success) { require(_spender != address(0), "Token spender is an uninitialized address"); allowed[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); //solhint-disable-line indent, no-unused-vars return true; } function increaseApproval(address _spender, uint _delta) public returns (bool success) { require(_spender != address(0), "Token spender is an uninitialized address"); uint _oldValue = allowed[msg.sender][_spender]; if (_oldValue.add(_delta) < _oldValue || _oldValue.add(_delta) >= MAX_UINT256) { // Truncate upon overflow. allowed[msg.sender][_spender] = MAX_UINT256.sub(1); } else { allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_delta); } emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } function decreaseApproval(address _spender, uint _delta) public returns (bool success) { require(_spender != address(0), "Token spender is an uninitialized address"); uint _oldValue = allowed[msg.sender][_spender]; if (_delta > _oldValue) { // Truncate upon overflow. allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = allowed[msg.sender][_spender].sub(_delta); } emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } function allowance(address _owner, address _spender) public view override returns (uint256 remaining) { return allowed[_owner][_spender]; } function transferBulk(address[] memory _tos, uint256[] memory _values, uint256 _txId) public override returns (uint256 _bulkCount) { require(_tos.length == _values.length, "Amount of recipients and values don't match"); require(_tos.length < BULK_MAX_COUNT, "Too many recipients"); uint256 _bulkValue = 0; for (uint j = 0; j < _tos.length; ++j) { _bulkValue = _bulkValue.add(_values[j]); } require(_bulkValue < BULK_MAX_VALUE, "Bulk value too high"); bool _success; for (uint i = 0; i < _tos.length; ++i) { _success = transferQuiet(_tos[i], _values[i]); if (_success) { _bulkCount = _bulkCount.add(1); } } emit BulkTransfer(_txId, _bulkCount); return _bulkCount; } function approveBulk(address[] memory _spenders, uint256[] memory _values, uint256 _txId) public returns (uint256 _bulkCount) { require(_spenders.length == _values.length, "Amount of spenders and values don't match"); require(_spenders.length < BULK_MAX_COUNT, "Too many spenders"); uint256 _bulkValue = 0; for (uint j = 0; j < _spenders.length; ++j) { _bulkValue = _bulkValue.add(_values[j]); } require(_bulkValue < BULK_MAX_VALUE, "Bulk value too high"); bool _success; for (uint i = 0; i < _spenders.length; ++i) { _success = increaseApproval(_spenders[i], _values[i]); if (_success) { _bulkCount = _bulkCount.add(1); } } emit BulkApproval(_txId, _bulkCount); return _bulkCount; } // Like transfer, but fails quietly. function transferQuiet(address _to, uint256 _value) internal returns (bool success) { if (_to == address(0)) return false; // Preclude burning tokens to uninitialized address. if (_to == address(this)) return false; // Preclude sending tokens to the contract. if (balances[msg.sender] < _value) return false; balances[msg.sender] = balances[msg.sender] - _value; balances[_to] = balances[_to].add(_value); emit Transfer(msg.sender, _to, _value); return true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"uint8","name":"_decimals","type":"uint8"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"address","name":"_spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_txId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_bulkCount","type":"uint256"}],"name":"BulkApproval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_txId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_bulkCount","type":"uint256"}],"name":"BulkTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"remaining","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_spenders","type":"address[]"},{"internalType":"uint256[]","name":"_values","type":"uint256[]"},{"internalType":"uint256","name":"_txId","type":"uint256"}],"name":"approveBulk","outputs":[{"internalType":"uint256","name":"_bulkCount","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_delta","type":"uint256"}],"name":"decreaseApproval","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_delta","type":"uint256"}],"name":"increaseApproval","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_tos","type":"address[]"},{"internalType":"uint256[]","name":"_values","type":"uint256[]"},{"internalType":"uint256","name":"_txId","type":"uint256"}],"name":"transferBulk","outputs":[{"internalType":"uint256","name":"_bulkCount","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200153038038062001530833981810160405260808110156200003757600080fd5b8151602083018051604051929492938301929190846401000000008211156200005f57600080fd5b9083019060208201858111156200007557600080fd5b82516401000000008111828201881017156200009057600080fd5b82525081516020918201929091019080838360005b83811015620000bf578181015183820152602001620000a5565b50505050905090810190601f168015620000ed5780820380516001836020036101000a031916815260200191505b506040818152602083015192018051929491939192846401000000008211156200011657600080fd5b9083019060208201858111156200012c57600080fd5b82516401000000008111828201881017156200014757600080fd5b82525081516020918201929091019080838360005b83811015620001765781810151838201526020016200015c565b50505050905090810190601f168015620001a45780820380516001836020036101000a031916815260200191505b5060405250505060ff8216600a0a84026000558251620001cc9060039060208601906200020f565b506004805460ff191660ff84161790558051620001f19060059060208401906200020f565b505060008054338252600160205260409091205550620002b4915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200025257805160ff191683800117855562000282565b8280016001018555821562000282579182015b828111156200028257825182559160200191906001019062000265565b506200029092915062000294565b5090565b620002b191905b808211156200029057600081556001016200029b565b90565b61126c80620002c46000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c578063d73dd62311610066578063d73dd62314610285578063dd62ed3e146102b1578063e816d8d8146102df578063e8f71d1b14610404576100cf565b806370a082311461022b57806395d89b4114610251578063a9059cbb14610259576100cf565b806306fdde03146100d4578063095ea7b31461015157806318160ddd1461019157806323b872dd146101ab578063313ce567146101e157806366188463146101ff575b600080fd5b6100dc610529565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101165781810151838201526020016100fe565b50505050905090810190601f1680156101435780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61017d6004803603604081101561016757600080fd5b506001600160a01b0381351690602001356105b7565b604080519115158252519081900360200190f35b610199610666565b60408051918252519081900360200190f35b61017d600480360360608110156101c157600080fd5b506001600160a01b0381358116916020810135909116906040013561066c565b6101e9610891565b6040805160ff9092168252519081900360200190f35b61017d6004803603604081101561021557600080fd5b506001600160a01b03813516906020013561089a565b6101996004803603602081101561024157600080fd5b50356001600160a01b03166109f5565b6100dc610a10565b61017d6004803603604081101561026f57600080fd5b506001600160a01b038135169060200135610a6b565b61017d6004803603604081101561029b57600080fd5b506001600160a01b038135169060200135610acb565b610199600480360360408110156102c757600080fd5b506001600160a01b0381358116916020013516610bd9565b610199600480360360608110156102f557600080fd5b810190602081018135600160201b81111561030f57600080fd5b82018360208201111561032157600080fd5b803590602001918460208302840111600160201b8311171561034257600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561039157600080fd5b8201836020820111156103a357600080fd5b803590602001918460208302840111600160201b831117156103c457600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295505091359250610c04915050565b6101996004803603606081101561041a57600080fd5b810190602081018135600160201b81111561043457600080fd5b82018360208201111561044657600080fd5b803590602001918460208302840111600160201b8311171561046757600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156104b657600080fd5b8201836020820111156104c857600080fd5b803590602001918460208302840111600160201b831117156104e957600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295505091359250610dc7915050565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105af5780601f10610584576101008083540402835291602001916105af565b820191906000526020600020905b81548152906001019060200180831161059257829003601f168201915b505050505081565b60006001600160a01b0383166105fe5760405162461bcd60e51b81526004018080602001828103825260298152602001806111bb6029913960400191505060405180910390fd5b3360008181526002602090815260408083206001600160a01b03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60005481565b6001600160a01b0383166000908152600260209081526040808320338452909152812054828110156106e5576040805162461bcd60e51b815260206004820152601960248201527f5370656e64657220616c6c6f77616e636520746f6f206c6f7700000000000000604482015290519081900360640190fd5b6001600160a01b03841661072a5760405162461bcd60e51b815260040180806020018281038252602a8152602001806111e4602a913960400191505060405180910390fd5b604080518082018252601781527f5370656e6465722062616c616e636520746f6f206c6f770000000000000000006020808301919091526001600160a01b03881660009081526001909152919091205461078b91859063ffffffff610f7116565b6001600160a01b0380871660009081526001602052604080822093909355908616815220546107c0908463ffffffff61100816565b6001600160a01b038516600090815260016020526040902055600019811461083b576001600160a01b0385166000908152600260209081526040808320338452909152902054610816908463ffffffff61106916565b6001600160a01b03861660009081526002602090815260408083203384529091529020555b836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3506001949350505050565b60045460ff1681565b60006001600160a01b0383166108e15760405162461bcd60e51b81526004018080602001828103825260298152602001806111bb6029913960400191505060405180910390fd5b3360009081526002602090815260408083206001600160a01b038716845290915290205480831115610936573360009081526002602090815260408083206001600160a01b038816845290915281205561098f565b3360009081526002602090815260408083206001600160a01b038816845290915290205461096a908463ffffffff61106916565b3360009081526002602090815260408083206001600160a01b03891684529091529020555b3360008181526002602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6001600160a01b031660009081526001602052604090205490565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105af5780601f10610584576101008083540402835291602001916105af565b6000610a7783836110ab565b905080610660576040805162461bcd60e51b815260206004820152601760248201527f5472616e73666572206469646e27742073756363656564000000000000000000604482015290519081900360640190fd5b60006001600160a01b038316610b125760405162461bcd60e51b81526004018080602001828103825260298152602001806111bb6029913960400191505060405180910390fd5b3360009081526002602090815260408083206001600160a01b038716845290915290205480610b47818563ffffffff61100816565b1080610b645750600019610b61828563ffffffff61100816565b10155b15610ba557610b7c600019600163ffffffff61106916565b3360009081526002602090815260408083206001600160a01b038916845290915290205561098f565b3360009081526002602090815260408083206001600160a01b038816845290915290205461096a908463ffffffff61100816565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60008251845114610c465760405162461bcd60e51b815260040180806020018281038252602b815260200180611190602b913960400191505060405180910390fd5b8351606411610c92576040805162461bcd60e51b8152602060048201526013602482015272546f6f206d616e7920726563697069656e747360681b604482015290519081900360640190fd5b6000805b8551811015610ccf57610cc5858281518110610cae57fe5b60200260200101518361100890919063ffffffff16565b9150600101610c96565b506b033b2e3c9fd0803ce80000008110610d26576040805162461bcd60e51b8152602060048201526013602482015272084ead8d640ecc2d8eaca40e8dede40d0d2ced606b1b604482015290519081900360640190fd5b6000805b8651811015610d8757610d63878281518110610d4257fe5b6020026020010151878381518110610d5657fe5b60200260200101516110ab565b91508115610d7f57610d7c84600163ffffffff61100816565b93505b600101610d2a565b5060408051848152905185917f8ed71c3a6fb899bfe96968ade5a4119b380c0d642a775106eb80aa795450777e919081900360200190a250509392505050565b60008251845114610e095760405162461bcd60e51b815260040180806020018281038252602981526020018061120e6029913960400191505060405180910390fd5b8351606411610e53576040805162461bcd60e51b8152602060048201526011602482015270546f6f206d616e79207370656e6465727360781b604482015290519081900360640190fd5b6000805b8551811015610e7957610e6f858281518110610cae57fe5b9150600101610e57565b506b033b2e3c9fd0803ce80000008110610ed0576040805162461bcd60e51b8152602060048201526013602482015272084ead8d640ecc2d8eaca40e8dede40d0d2ced606b1b604482015290519081900360640190fd5b6000805b8651811015610f3157610f0d878281518110610eec57fe5b6020026020010151878381518110610f0057fe5b6020026020010151610acb565b91508115610f2957610f2684600163ffffffff61100816565b93505b600101610ed4565b5060408051848152905185917fca78741c6b48402cfa7be577db6559c46abb0f8ba9ce1468cf71297349370d9c919081900360200190a250509392505050565b600081848411156110005760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610fc5578181015183820152602001610fad565b50505050905090810190601f168015610ff25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015611062576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600061106283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610f71565b60006001600160a01b0383166110c357506000610660565b6001600160a01b0383163014156110dc57506000610660565b336000908152600160205260409020548211156110fb57506000610660565b33600090815260016020526040808220805485900390556001600160a01b0385168252902054611131908363ffffffff61100816565b6001600160a01b0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35060019291505056fe416d6f756e74206f6620726563697069656e747320616e642076616c75657320646f6e2774206d61746368546f6b656e207370656e64657220697320616e20756e696e697469616c697a6564206164647265737343616e27742073656e6420746f6b656e7320746f20756e696e697469616c697a65642061646472657373416d6f756e74206f66207370656e6465727320616e642076616c75657320646f6e2774206d61746368a2646970667358221220a5765278a7b6b44ac0e994b2d0984c1728c8c65a52d209d4cf00fc7095121ad564736f6c63430006020033000000000000000000000000000000000000000000000000000000003b9aca000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000b48756d616e20546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003484d540000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c578063d73dd62311610066578063d73dd62314610285578063dd62ed3e146102b1578063e816d8d8146102df578063e8f71d1b14610404576100cf565b806370a082311461022b57806395d89b4114610251578063a9059cbb14610259576100cf565b806306fdde03146100d4578063095ea7b31461015157806318160ddd1461019157806323b872dd146101ab578063313ce567146101e157806366188463146101ff575b600080fd5b6100dc610529565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101165781810151838201526020016100fe565b50505050905090810190601f1680156101435780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61017d6004803603604081101561016757600080fd5b506001600160a01b0381351690602001356105b7565b604080519115158252519081900360200190f35b610199610666565b60408051918252519081900360200190f35b61017d600480360360608110156101c157600080fd5b506001600160a01b0381358116916020810135909116906040013561066c565b6101e9610891565b6040805160ff9092168252519081900360200190f35b61017d6004803603604081101561021557600080fd5b506001600160a01b03813516906020013561089a565b6101996004803603602081101561024157600080fd5b50356001600160a01b03166109f5565b6100dc610a10565b61017d6004803603604081101561026f57600080fd5b506001600160a01b038135169060200135610a6b565b61017d6004803603604081101561029b57600080fd5b506001600160a01b038135169060200135610acb565b610199600480360360408110156102c757600080fd5b506001600160a01b0381358116916020013516610bd9565b610199600480360360608110156102f557600080fd5b810190602081018135600160201b81111561030f57600080fd5b82018360208201111561032157600080fd5b803590602001918460208302840111600160201b8311171561034257600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561039157600080fd5b8201836020820111156103a357600080fd5b803590602001918460208302840111600160201b831117156103c457600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295505091359250610c04915050565b6101996004803603606081101561041a57600080fd5b810190602081018135600160201b81111561043457600080fd5b82018360208201111561044657600080fd5b803590602001918460208302840111600160201b8311171561046757600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156104b657600080fd5b8201836020820111156104c857600080fd5b803590602001918460208302840111600160201b831117156104e957600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295505091359250610dc7915050565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105af5780601f10610584576101008083540402835291602001916105af565b820191906000526020600020905b81548152906001019060200180831161059257829003601f168201915b505050505081565b60006001600160a01b0383166105fe5760405162461bcd60e51b81526004018080602001828103825260298152602001806111bb6029913960400191505060405180910390fd5b3360008181526002602090815260408083206001600160a01b03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60005481565b6001600160a01b0383166000908152600260209081526040808320338452909152812054828110156106e5576040805162461bcd60e51b815260206004820152601960248201527f5370656e64657220616c6c6f77616e636520746f6f206c6f7700000000000000604482015290519081900360640190fd5b6001600160a01b03841661072a5760405162461bcd60e51b815260040180806020018281038252602a8152602001806111e4602a913960400191505060405180910390fd5b604080518082018252601781527f5370656e6465722062616c616e636520746f6f206c6f770000000000000000006020808301919091526001600160a01b03881660009081526001909152919091205461078b91859063ffffffff610f7116565b6001600160a01b0380871660009081526001602052604080822093909355908616815220546107c0908463ffffffff61100816565b6001600160a01b038516600090815260016020526040902055600019811461083b576001600160a01b0385166000908152600260209081526040808320338452909152902054610816908463ffffffff61106916565b6001600160a01b03861660009081526002602090815260408083203384529091529020555b836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3506001949350505050565b60045460ff1681565b60006001600160a01b0383166108e15760405162461bcd60e51b81526004018080602001828103825260298152602001806111bb6029913960400191505060405180910390fd5b3360009081526002602090815260408083206001600160a01b038716845290915290205480831115610936573360009081526002602090815260408083206001600160a01b038816845290915281205561098f565b3360009081526002602090815260408083206001600160a01b038816845290915290205461096a908463ffffffff61106916565b3360009081526002602090815260408083206001600160a01b03891684529091529020555b3360008181526002602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6001600160a01b031660009081526001602052604090205490565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105af5780601f10610584576101008083540402835291602001916105af565b6000610a7783836110ab565b905080610660576040805162461bcd60e51b815260206004820152601760248201527f5472616e73666572206469646e27742073756363656564000000000000000000604482015290519081900360640190fd5b60006001600160a01b038316610b125760405162461bcd60e51b81526004018080602001828103825260298152602001806111bb6029913960400191505060405180910390fd5b3360009081526002602090815260408083206001600160a01b038716845290915290205480610b47818563ffffffff61100816565b1080610b645750600019610b61828563ffffffff61100816565b10155b15610ba557610b7c600019600163ffffffff61106916565b3360009081526002602090815260408083206001600160a01b038916845290915290205561098f565b3360009081526002602090815260408083206001600160a01b038816845290915290205461096a908463ffffffff61100816565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60008251845114610c465760405162461bcd60e51b815260040180806020018281038252602b815260200180611190602b913960400191505060405180910390fd5b8351606411610c92576040805162461bcd60e51b8152602060048201526013602482015272546f6f206d616e7920726563697069656e747360681b604482015290519081900360640190fd5b6000805b8551811015610ccf57610cc5858281518110610cae57fe5b60200260200101518361100890919063ffffffff16565b9150600101610c96565b506b033b2e3c9fd0803ce80000008110610d26576040805162461bcd60e51b8152602060048201526013602482015272084ead8d640ecc2d8eaca40e8dede40d0d2ced606b1b604482015290519081900360640190fd5b6000805b8651811015610d8757610d63878281518110610d4257fe5b6020026020010151878381518110610d5657fe5b60200260200101516110ab565b91508115610d7f57610d7c84600163ffffffff61100816565b93505b600101610d2a565b5060408051848152905185917f8ed71c3a6fb899bfe96968ade5a4119b380c0d642a775106eb80aa795450777e919081900360200190a250509392505050565b60008251845114610e095760405162461bcd60e51b815260040180806020018281038252602981526020018061120e6029913960400191505060405180910390fd5b8351606411610e53576040805162461bcd60e51b8152602060048201526011602482015270546f6f206d616e79207370656e6465727360781b604482015290519081900360640190fd5b6000805b8551811015610e7957610e6f858281518110610cae57fe5b9150600101610e57565b506b033b2e3c9fd0803ce80000008110610ed0576040805162461bcd60e51b8152602060048201526013602482015272084ead8d640ecc2d8eaca40e8dede40d0d2ced606b1b604482015290519081900360640190fd5b6000805b8651811015610f3157610f0d878281518110610eec57fe5b6020026020010151878381518110610f0057fe5b6020026020010151610acb565b91508115610f2957610f2684600163ffffffff61100816565b93505b600101610ed4565b5060408051848152905185917fca78741c6b48402cfa7be577db6559c46abb0f8ba9ce1468cf71297349370d9c919081900360200190a250509392505050565b600081848411156110005760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610fc5578181015183820152602001610fad565b50505050905090810190601f168015610ff25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015611062576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600061106283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610f71565b60006001600160a01b0383166110c357506000610660565b6001600160a01b0383163014156110dc57506000610660565b336000908152600160205260409020548211156110fb57506000610660565b33600090815260016020526040808220805485900390556001600160a01b0385168252902054611131908363ffffffff61100816565b6001600160a01b0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35060019291505056fe416d6f756e74206f6620726563697069656e747320616e642076616c75657320646f6e2774206d61746368546f6b656e207370656e64657220697320616e20756e696e697469616c697a6564206164647265737343616e27742073656e6420746f6b656e7320746f20756e696e697469616c697a65642061646472657373416d6f756e74206f66207370656e6465727320616e642076616c75657320646f6e2774206d61746368a2646970667358221220a5765278a7b6b44ac0e994b2d0984c1728c8c65a52d209d4cf00fc7095121ad564736f6c63430006020033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000003b9aca000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000b48756d616e20546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003484d540000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 1000000000
Arg [1] : _name (string): Human Token
Arg [2] : _decimals (uint8): 18
Arg [3] : _symbol (string): HMT
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 48756d616e20546f6b656e000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 484d540000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
7366:6568:0:-:0;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7366:6568:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8398:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;8398:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9891:358;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9891:358:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;7916:26;;;:::i;:::-;;;;;;;;;;;;;;;;9018:733;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9018:733:0;;;;;;;;;;;;;;;;;:::i;8423:21::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;10904:567;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10904:567:0;;;;;;;;:::i;9759:124::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9759:124:0;-1:-1:-1;;;;;9759:124:0;;:::i;8451:20::-;;;:::i;8790:220::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8790:220:0;;;;;;;;:::i;10257:639::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10257:639:0;;;;;;;;:::i;11479:153::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11479:153:0;;;;;;;;;;:::i;11640:841::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11640:841:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;11640:841:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;11640:841:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;11640:841:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;11640:841:0;;;;;;;;-1:-1:-1;11640:841:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;11640:841:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;11640:841:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;11640:841:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;11640:841:0;;-1:-1:-1;;11640:841:0;;;-1:-1:-1;11640:841:0;;-1:-1:-1;;11640:841:0:i;12489:860::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12489:860:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;12489:860:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;12489:860:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;12489:860:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;12489:860:0;;;;;;;;-1:-1:-1;12489:860:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;12489:860:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;12489:860:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;12489:860:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;12489:860:0;;-1:-1:-1;;12489:860:0;;;-1:-1:-1;12489:860:0;;-1:-1:-1;;12489:860:0:i;8398:18::-;;;;;;;;;;;;;;;-1:-1:-1;;8398:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;9891:358::-;9967:12;-1:-1:-1;;;;;10000:22:0;;9992:76;;;;-1:-1:-1;;;9992:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10089:10;10081:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;10081:29:0;;;;;;;;;;;;:38;;;10135;;;;;;;10081:29;;10089:10;10135:38;;;;;;;;;;;-1:-1:-1;10237:4:0;9891:358;;;;;:::o;7916:26::-;;;;:::o;9018:733::-;-1:-1:-1;;;;;9158:17:0;;9112:12;9158:17;;;:7;:17;;;;;;;;9176:10;9158:29;;;;;;;;9206:20;;;;9198:58;;;;;-1:-1:-1;;;9198:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9275:17:0;;9267:72;;;;-1:-1:-1;;;9267:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9373:57;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9373:18:0;;-1:-1:-1;9373:18:0;;;:8;:18;;;;;;;;:57;;9396:6;;9373:57;:22;:57;:::i;:::-;-1:-1:-1;;;;;9352:18:0;;;;;;;:8;:18;;;;;;:78;;;;9457:13;;;;;;;:25;;9475:6;9457:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;9441:13:0;;;;;;:8;:13;;;;;:41;-1:-1:-1;;9499:25:0;;9495:178;;-1:-1:-1;;;;;9620:17:0;;;;;;:7;:17;;;;;;;;9638:10;9620:29;;;;;;;;:41;;9654:6;9620:41;:33;:41;:::i;:::-;-1:-1:-1;;;;;9588:17:0;;;;;;:7;:17;;;;;;;;9606:10;9588:29;;;;;;;:73;9495:178;9709:3;-1:-1:-1;;;;;9690:31:0;9699:8;-1:-1:-1;;;;;9690:31:0;;9714:6;9690:31;;;;;;;;;;;;;;;;;;-1:-1:-1;9739:4:0;;9018:733;-1:-1:-1;;;;9018:733:0:o;8423:21::-;;;;;;:::o;10904:567::-;10977:12;-1:-1:-1;;;;;11010:22:0;;11002:76;;;;-1:-1:-1;;;11002:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11116:10;11091:14;11108:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;11108:29:0;;;;;;;;;;11152:18;;;11148:217;;;11222:10;11246:1;11214:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;11214:29:0;;;;;;;;;:33;11148:217;;;11320:10;11312:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;11312:29:0;;;;;;;;;;:41;;11346:6;11312:41;:33;:41;:::i;:::-;11288:10;11280:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;11280:29:0;;;;;;;;;:73;11148:217;11389:10;11411:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;11380:61:0;;11411:29;;;;;;;;;;;11380:61;;;;;;;;;11389:10;11380:61;;;;;;;;;;;-1:-1:-1;11459:4:0;;10904:567;-1:-1:-1;;;10904:567:0:o;9759:124::-;-1:-1:-1;;;;;9859:16:0;9824:15;9859:16;;;:8;:16;;;;;;;9759:124::o;8451:20::-;;;;;;;;;;;;;;;-1:-1:-1;;8451:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8790:220;8862:12;8897:26;8911:3;8916:6;8897:13;:26::i;:::-;8887:36;;8942:7;8934:43;;;;;-1:-1:-1;;;8934:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;10257:639;10330:12;-1:-1:-1;;;;;10363:22:0;;10355:76;;;;-1:-1:-1;;;10355:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10469:10;10444:14;10461:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;10461:29:0;;;;;;;;;;;10505:21;10461:29;10519:6;10505:21;:13;:21;:::i;:::-;:33;:73;;;-1:-1:-1;;;10542:21:0;:9;10556:6;10542:21;:13;:21;:::i;:::-;:36;;10505:73;10501:289;;;10654:18;-1:-1:-1;;10670:1:0;10654:18;:15;:18;:::i;:::-;10630:10;10622:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;10622:29:0;;;;;;;;;:50;10501:289;;;10745:10;10737:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;10737:29:0;;;;;;;;;;:41;;10771:6;10737:41;:33;:41;:::i;11479:153::-;-1:-1:-1;;;;;11599:15:0;;;11562:17;11599:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;11479:153::o;11640:841::-;11751:18;11805:7;:14;11790:4;:11;:29;11782:85;;;;-1:-1:-1;;;11782:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11886:11;;8122:3;-1:-1:-1;11878:60:0;;;;;-1:-1:-1;;;11878:60:0;;;;;;;;;;;;-1:-1:-1;;;11878:60:0;;;;;;;;;;;;;;;11951:18;;11984:105;12005:4;:11;12001:1;:15;11984:105;;;12051:26;12066:7;12074:1;12066:10;;;;;;;;;;;;;;12051;:14;;:26;;;;:::i;:::-;12038:39;-1:-1:-1;12018:3:0;;11984:105;;;;8050:23;12107:10;:27;12099:59;;;;;-1:-1:-1;;;12099:59:0;;;;;;;;;;;;-1:-1:-1;;;12099:59:0;;;;;;;;;;;;;;;12171:13;;12195:204;12216:4;:11;12212:1;:15;12195:204;;;12260:34;12274:4;12279:1;12274:7;;;;;;;;;;;;;;12283;12291:1;12283:10;;;;;;;;;;;;;;12260:13;:34::i;:::-;12249:45;;12313:8;12309:79;;;12355:17;:10;12370:1;12355:17;:14;:17;:::i;:::-;12342:30;;12309:79;12229:3;;12195:204;;;-1:-1:-1;12414:31:0;;;;;;;;12427:5;;12414:31;;;;;;;;;;-1:-1:-1;;11640:841:0;;;;;:::o;12489:860::-;12595:18;12654:7;:14;12634:9;:16;:34;12626:88;;;;-1:-1:-1;;;12626:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12733:16;;8122:3;-1:-1:-1;12725:63:0;;;;;-1:-1:-1;;;12725:63:0;;;;;;;;;;;;-1:-1:-1;;;12725:63:0;;;;;;;;;;;;;;;12801:18;;12834:110;12855:9;:16;12851:1;:20;12834:110;;;12906:26;12921:7;12929:1;12921:10;;;;;;;12906:26;12893:39;-1:-1:-1;12873:3:0;;12834:110;;;;8050:23;12962:10;:27;12954:59;;;;;-1:-1:-1;;;12954:59:0;;;;;;;;;;;;-1:-1:-1;;;12954:59:0;;;;;;;;;;;;;;;13026:13;;13050:217;13071:9;:16;13067:1;:20;13050:217;;;13120:42;13137:9;13147:1;13137:12;;;;;;;;;;;;;;13151:7;13159:1;13151:10;;;;;;;;;;;;;;13120:16;:42::i;:::-;13109:53;;13181:8;13177:79;;;13223:17;:10;13238:1;13223:17;:14;:17;:::i;:::-;13210:30;;13177:79;13089:3;;13050:217;;;-1:-1:-1;13282:31:0;;;;;;;;13295:5;;13282:31;;;;;;;;;;-1:-1:-1;;12489:860:0;;;;;:::o;1805:192::-;1891:7;1927:12;1919:6;;;;1911:29;;;;-1:-1:-1;;;1911:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;1911:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1963:5:0;;;1805:192::o;902:181::-;960:7;992:5;;;1016:6;;;;1008:46;;;;;-1:-1:-1;;;1008:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;1074:1;902:181;-1:-1:-1;;;902:181:0:o;1366:136::-;1424:7;1451:43;1455:1;1458;1451:43;;;;;;;;;;;;;;;;;:3;:43::i;13399:532::-;13469:12;-1:-1:-1;;;;;13498:17:0;;13494:35;;-1:-1:-1;13524:5:0;13517:12;;13494:35;-1:-1:-1;;;;;13597:20:0;;13612:4;13597:20;13593:38;;;-1:-1:-1;13626:5:0;13619:12;;13593:38;13699:10;13690:20;;;;:8;:20;;;;;;:29;-1:-1:-1;13686:47:0;;;-1:-1:-1;13728:5:0;13721:12;;13686:47;13778:10;13769:20;;;;:8;:20;;;;;;;;:29;;;13746:52;;-1:-1:-1;;;;;13825:13:0;;;;;;;:25;;13792:6;13825:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;13809:13:0;;;;;;:8;:13;;;;;;;;;:41;;;;13868:33;;;;;;;13809:13;;13877:10;;13868:33;;;;;;;;;;-1:-1:-1;13919:4:0;13399:532;;;;:::o
Swarm Source
ipfs://a5765278a7b6b44ac0e994b2d0984c1728c8c65a52d209d4cf00fc7095121ad5
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.