BscScan - Sponsored slots available. Book your slot here!
Overview
Max Total Supply
999,946,974.222999TWT (CSupply: 965,027,874.724544)
Holders
242,377 ( 0.022%)
Market
Price
$1.16 @ 0.001662 BNB (-2.81%)
Onchain Market Cap
$1,158,115,865.88
Circulating Supply Market Cap
$482,554,447.53
Other Info
Token Contract (WITH 18 Decimals)
Balance
1 TWTValue
$1.16 ( ~0.00166463625225301 BNB) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
TrustWalletToken
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)Audit Report
/** *Submitted for verification at BscScan.com on 2020-10-03 */ /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * // importANT: 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 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @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; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [// importANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * // importANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), decreasedAllowance); _burn(account, amount); } } /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // import "@openzeppelin/contracts/GSN/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow, so we distribute return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2); } } pragma solidity ^0.6.12; pragma experimental ABIEncoderV2; contract TrustWalletToken is ERC20("Trust Wallet", "TWT"), ERC20Burnable, Ownable { using SafeERC20 for ERC20; constructor() public { _mint(_msgSender(), 1000000000 ether); } function getOwner() public view returns (address) { return owner(); } }
Contract Security Audit
- Callisto Network - December 6th, 2021 - Security Audit Report
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","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":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600c81526020016b151c9d5cdd0815d85b1b195d60a21b815250604051806040016040528060038152602001621515d560ea1b81525081600390805190602001906200006b9291906200023e565b508051620000819060049060208401906200023e565b50506005805460ff191660121790555060006200009d6200011a565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000114620001016200011a565b6b033b2e3c9fd0803ce80000006200011e565b62000351565b3390565b6001600160a01b038216620001505760405162461bcd60e51b8152600401620001479062000311565b60405180910390fd5b6200015e600083836200020a565b6200017a816002546200020f60201b620006f31790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620001ad918390620006f36200020f821b17901c565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001fe90859062000348565b60405180910390a35050565b505050565b600082820183811015620002375760405162461bcd60e51b81526004016200014790620002da565b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200028157805160ff1916838001178555620002b1565b82800160010185558215620002b1579182015b82811115620002b157825182559160200191906001019062000294565b50620002bf929150620002c3565b5090565b5b80821115620002bf5760008155600101620002c4565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b610eb280620003616000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a257806395d89b411161007157806395d89b41146101fe578063a457c2d714610206578063a9059cbb14610219578063dd62ed3e1461022c578063f2fde38b1461023f5761010b565b8063715018a6146101c657806379cc6790146101ce578063893d20e8146101e15780638da5cb5b146101f65761010b565b8063313ce567116100de578063313ce56714610176578063395093511461018b57806342966c681461019e57806370a08231146101b35761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461014e57806323b872dd14610163575b600080fd5b610118610252565b6040516101259190610b43565b60405180910390f35b61014161013c366004610ae2565b6102e8565b6040516101259190610b38565b610156610306565b6040516101259190610d97565b610141610171366004610aa2565b61030c565b61017e610393565b6040516101259190610da0565b610141610199366004610ae2565b61039c565b6101b16101ac366004610b0c565b6103ea565b005b6101566101c1366004610a53565b6103fe565b6101b1610419565b6101b16101dc366004610ae2565b6104ac565b6101e9610501565b6040516101259190610b24565b6101e9610510565b610118610524565b610141610214366004610ae2565b610585565b610141610227366004610ae2565b6105ed565b61015661023a366004610a6e565b610601565b6101b161024d366004610a53565b61062c565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156102de5780601f106102b3576101008083540402835291602001916102de565b820191906000526020600020905b8154815290600101906020018083116102c157829003601f168201915b5050505050905090565b60006102fc6102f561071f565b8484610723565b5060015b92915050565b60025490565b60006103198484846107d7565b6103898461032561071f565b61038485604051806060016040528060288152602001610e0c602891396001600160a01b038a1660009081526001602052604081209061036361071f565b6001600160a01b0316815260208101919091526040016000205491906108ec565b610723565b5060019392505050565b60055460ff1690565b60006102fc6103a961071f565b8461038485600160006103ba61071f565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906106f3565b6103fb6103f561071f565b82610918565b50565b6001600160a01b031660009081526020819052604090205490565b61042161071f565b60055461010090046001600160a01b0390811691161461045c5760405162461bcd60e51b815260040161045390610c98565b60405180910390fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60006104de82604051806060016040528060248152602001610e34602491396104d78661023a61071f565b91906108ec565b90506104f2836104ec61071f565b83610723565b6104fc8383610918565b505050565b600061050b610510565b905090565b60055461010090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156102de5780601f106102b3576101008083540402835291602001916102de565b60006102fc61059261071f565b8461038485604051806060016040528060258152602001610e5860259139600160006105bc61071f565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906108ec565b60006102fc6105fa61071f565b84846107d7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61063461071f565b60055461010090046001600160a01b039081169116146106665760405162461bcd60e51b815260040161045390610c98565b6001600160a01b03811661068c5760405162461bcd60e51b815260040161045390610bd9565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000828201838110156107185760405162461bcd60e51b815260040161045390610c61565b9392505050565b3390565b6001600160a01b0383166107495760405162461bcd60e51b815260040161045390610d53565b6001600160a01b03821661076f5760405162461bcd60e51b815260040161045390610c1f565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906107ca908590610d97565b60405180910390a3505050565b6001600160a01b0383166107fd5760405162461bcd60e51b815260040161045390610d0e565b6001600160a01b0382166108235760405162461bcd60e51b815260040161045390610b96565b61082e8383836104fc565b61086b81604051806060016040528060268152602001610de6602691396001600160a01b03861660009081526020819052604090205491906108ec565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461089a90826106f3565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107ca908590610d97565b600081848411156109105760405162461bcd60e51b81526004016104539190610b43565b505050900390565b6001600160a01b03821661093e5760405162461bcd60e51b815260040161045390610ccd565b61094a826000836104fc565b61098781604051806060016040528060228152602001610dc4602291396001600160a01b03851660009081526020819052604090205491906108ec565b6001600160a01b0383166000908152602081905260409020556002546109ad90826109fa565b6002556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109ee908590610d97565b60405180910390a35050565b600061071883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506108ec565b80356001600160a01b038116811461030057600080fd5b600060208284031215610a64578081fd5b6107188383610a3c565b60008060408385031215610a80578081fd5b610a8a8484610a3c565b9150610a998460208501610a3c565b90509250929050565b600080600060608486031215610ab6578081fd5b8335610ac181610dae565b92506020840135610ad181610dae565b929592945050506040919091013590565b60008060408385031215610af4578182fd5b610afe8484610a3c565b946020939093013593505050565b600060208284031215610b1d578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610b6f57858101830151858201604001528201610b53565b81811115610b805783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b90815260200190565b60ff91909116815260200190565b6001600160a01b03811681146103fb57600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122091ee8819418f1dcbc79c5baed227e3c9905df51c0a0d298a618adf3695e3937864736f6c634300060c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a257806395d89b411161007157806395d89b41146101fe578063a457c2d714610206578063a9059cbb14610219578063dd62ed3e1461022c578063f2fde38b1461023f5761010b565b8063715018a6146101c657806379cc6790146101ce578063893d20e8146101e15780638da5cb5b146101f65761010b565b8063313ce567116100de578063313ce56714610176578063395093511461018b57806342966c681461019e57806370a08231146101b35761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461014e57806323b872dd14610163575b600080fd5b610118610252565b6040516101259190610b43565b60405180910390f35b61014161013c366004610ae2565b6102e8565b6040516101259190610b38565b610156610306565b6040516101259190610d97565b610141610171366004610aa2565b61030c565b61017e610393565b6040516101259190610da0565b610141610199366004610ae2565b61039c565b6101b16101ac366004610b0c565b6103ea565b005b6101566101c1366004610a53565b6103fe565b6101b1610419565b6101b16101dc366004610ae2565b6104ac565b6101e9610501565b6040516101259190610b24565b6101e9610510565b610118610524565b610141610214366004610ae2565b610585565b610141610227366004610ae2565b6105ed565b61015661023a366004610a6e565b610601565b6101b161024d366004610a53565b61062c565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156102de5780601f106102b3576101008083540402835291602001916102de565b820191906000526020600020905b8154815290600101906020018083116102c157829003601f168201915b5050505050905090565b60006102fc6102f561071f565b8484610723565b5060015b92915050565b60025490565b60006103198484846107d7565b6103898461032561071f565b61038485604051806060016040528060288152602001610e0c602891396001600160a01b038a1660009081526001602052604081209061036361071f565b6001600160a01b0316815260208101919091526040016000205491906108ec565b610723565b5060019392505050565b60055460ff1690565b60006102fc6103a961071f565b8461038485600160006103ba61071f565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906106f3565b6103fb6103f561071f565b82610918565b50565b6001600160a01b031660009081526020819052604090205490565b61042161071f565b60055461010090046001600160a01b0390811691161461045c5760405162461bcd60e51b815260040161045390610c98565b60405180910390fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60006104de82604051806060016040528060248152602001610e34602491396104d78661023a61071f565b91906108ec565b90506104f2836104ec61071f565b83610723565b6104fc8383610918565b505050565b600061050b610510565b905090565b60055461010090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156102de5780601f106102b3576101008083540402835291602001916102de565b60006102fc61059261071f565b8461038485604051806060016040528060258152602001610e5860259139600160006105bc61071f565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906108ec565b60006102fc6105fa61071f565b84846107d7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61063461071f565b60055461010090046001600160a01b039081169116146106665760405162461bcd60e51b815260040161045390610c98565b6001600160a01b03811661068c5760405162461bcd60e51b815260040161045390610bd9565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000828201838110156107185760405162461bcd60e51b815260040161045390610c61565b9392505050565b3390565b6001600160a01b0383166107495760405162461bcd60e51b815260040161045390610d53565b6001600160a01b03821661076f5760405162461bcd60e51b815260040161045390610c1f565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906107ca908590610d97565b60405180910390a3505050565b6001600160a01b0383166107fd5760405162461bcd60e51b815260040161045390610d0e565b6001600160a01b0382166108235760405162461bcd60e51b815260040161045390610b96565b61082e8383836104fc565b61086b81604051806060016040528060268152602001610de6602691396001600160a01b03861660009081526020819052604090205491906108ec565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461089a90826106f3565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107ca908590610d97565b600081848411156109105760405162461bcd60e51b81526004016104539190610b43565b505050900390565b6001600160a01b03821661093e5760405162461bcd60e51b815260040161045390610ccd565b61094a826000836104fc565b61098781604051806060016040528060228152602001610dc4602291396001600160a01b03851660009081526020819052604090205491906108ec565b6001600160a01b0383166000908152602081905260409020556002546109ad90826109fa565b6002556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109ee908590610d97565b60405180910390a35050565b600061071883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506108ec565b80356001600160a01b038116811461030057600080fd5b600060208284031215610a64578081fd5b6107188383610a3c565b60008060408385031215610a80578081fd5b610a8a8484610a3c565b9150610a998460208501610a3c565b90509250929050565b600080600060608486031215610ab6578081fd5b8335610ac181610dae565b92506020840135610ad181610dae565b929592945050506040919091013590565b60008060408385031215610af4578182fd5b610afe8484610a3c565b946020939093013593505050565b600060208284031215610b1d578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610b6f57858101830151858201604001528201610b53565b81811115610b805783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b90815260200190565b60ff91909116815260200190565b6001600160a01b03811681146103fb57600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122091ee8819418f1dcbc79c5baed227e3c9905df51c0a0d298a618adf3695e3937864736f6c634300060c0033
Deployed Bytecode Sourcemap
33804:294:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17171:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19277:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;18246:100::-;;;:::i;:::-;;;;;;;:::i;19920:321::-;;;;;;:::i;:::-;;:::i;18098:83::-;;;:::i;:::-;;;;;;;:::i;20650:218::-;;;;;;:::i;:::-;;:::i;26367:91::-;;;;;;:::i;:::-;;:::i;:::-;;18409:119;;;;;;:::i;:::-;;:::i;32415:148::-;;;:::i;26777:295::-;;;;;;:::i;:::-;;:::i;34012:83::-;;;:::i;:::-;;;;;;;:::i;31773:79::-;;;:::i;17373:87::-;;;:::i;21371:269::-;;;;;;:::i;:::-;;:::i;18741:175::-;;;;;;:::i;:::-;;:::i;18979:151::-;;;;;;:::i;:::-;;:::i;32718:244::-;;;;;;:::i;:::-;;:::i;17171:83::-;17241:5;17234:12;;;;;;;;-1:-1:-1;;17234:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17208:13;;17234:12;;17241:5;;17234:12;;17241:5;17234:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17171:83;:::o;19277:169::-;19360:4;19377:39;19386:12;:10;:12::i;:::-;19400:7;19409:6;19377:8;:39::i;:::-;-1:-1:-1;19434:4:0;19277:169;;;;;:::o;18246:100::-;18326:12;;18246:100;:::o;19920:321::-;20026:4;20043:36;20053:6;20061:9;20072:6;20043:9;:36::i;:::-;20090:121;20099:6;20107:12;:10;:12::i;:::-;20121:89;20159:6;20121:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20121:19:0;;;;;;:11;:19;;;;;;20141:12;:10;:12::i;:::-;-1:-1:-1;;;;;20121:33:0;;;;;;;;;;;;-1:-1:-1;20121:33:0;;;:89;:37;:89::i;:::-;20090:8;:121::i;:::-;-1:-1:-1;20229:4:0;19920:321;;;;;:::o;18098:83::-;18164:9;;;;18098:83;:::o;20650:218::-;20738:4;20755:83;20764:12;:10;:12::i;:::-;20778:7;20787:50;20826:10;20787:11;:25;20799:12;:10;:12::i;:::-;-1:-1:-1;;;;;20787:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;20787:25:0;;;:34;;;;;;;;;;;:38;:50::i;26367:91::-;26423:27;26429:12;:10;:12::i;:::-;26443:6;26423:5;:27::i;:::-;26367:91;:::o;18409:119::-;-1:-1:-1;;;;;18502:18:0;18475:7;18502:18;;;;;;;;;;;;18409:119::o;32415:148::-;31995:12;:10;:12::i;:::-;31985:6;;;;;-1:-1:-1;;;;;31985:6:0;;;:22;;;31977:67;;;;-1:-1:-1;;;31977:67:0;;;;;;;:::i;:::-;;;;;;;;;32506:6:::1;::::0;32485:40:::1;::::0;32522:1:::1;::::0;32506:6:::1;::::0;::::1;-1:-1:-1::0;;;;;32506:6:0::1;::::0;32485:40:::1;::::0;32522:1;;32485:40:::1;32536:6;:19:::0;;-1:-1:-1;;;;;;32536:19:0::1;::::0;;32415:148::o;26777:295::-;26854:26;26883:84;26920:6;26883:84;;;;;;;;;;;;;;;;;:32;26893:7;26902:12;:10;:12::i;26883:32::-;:36;:84;:36;:84::i;:::-;26854:113;;26980:51;26989:7;26998:12;:10;:12::i;:::-;27012:18;26980:8;:51::i;:::-;27042:22;27048:7;27057:6;27042:5;:22::i;:::-;26777:295;;;:::o;34012:83::-;34053:7;34080;:5;:7::i;:::-;34073:14;;34012:83;:::o;31773:79::-;31838:6;;;;;-1:-1:-1;;;;;31838:6:0;;31773:79::o;17373:87::-;17445:7;17438:14;;;;;;;;-1:-1:-1;;17438:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17412:13;;17438:14;;17445:7;;17438:14;;17445:7;17438:14;;;;;;;;;;;;;;;;;;;;;;;;21371:269;21464:4;21481:129;21490:12;:10;:12::i;:::-;21504:7;21513:96;21552:15;21513:96;;;;;;;;;;;;;;;;;:11;:25;21525:12;:10;:12::i;:::-;-1:-1:-1;;;;;21513:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21513:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;18741:175::-;18827:4;18844:42;18854:12;:10;:12::i;:::-;18868:9;18879:6;18844:9;:42::i;18979:151::-;-1:-1:-1;;;;;19095:18:0;;;19068:7;19095:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18979:151::o;32718:244::-;31995:12;:10;:12::i;:::-;31985:6;;;;;-1:-1:-1;;;;;31985:6:0;;;:22;;;31977:67;;;;-1:-1:-1;;;31977:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32807:22:0;::::1;32799:73;;;;-1:-1:-1::0;;;32799:73:0::1;;;;;;;:::i;:::-;32909:6;::::0;32888:38:::1;::::0;-1:-1:-1;;;;;32888:38:0;;::::1;::::0;32909:6:::1;::::0;::::1;;::::0;32888:38:::1;::::0;;;::::1;32937:6;:17:::0;;-1:-1:-1;;;;;32937:17:0;;::::1;;;-1:-1:-1::0;;;;;;32937:17:0;;::::1;::::0;;;::::1;::::0;;32718:244::o;4453:181::-;4511:7;4543:5;;;4567:6;;;;4559:46;;;;-1:-1:-1;;;4559:46:0;;;;;;;:::i;:::-;4625:1;4453:181;-1:-1:-1;;;4453:181:0:o;543:106::-;631:10;543:106;:::o;24518:346::-;-1:-1:-1;;;;;24620:19:0;;24612:68;;;;-1:-1:-1;;;24612:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24699:21:0;;24691:68;;;;-1:-1:-1;;;24691:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24772:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;24824:32;;;;;24802:6;;24824:32;:::i;:::-;;;;;;;;24518:346;;;:::o;22130:539::-;-1:-1:-1;;;;;22236:20:0;;22228:70;;;;-1:-1:-1;;;22228:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22317:23:0;;22309:71;;;;-1:-1:-1;;;22309:71:0;;;;;;;:::i;:::-;22393:47;22414:6;22422:9;22433:6;22393:20;:47::i;:::-;22473:71;22495:6;22473:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22473:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;22453:17:0;;;:9;:17;;;;;;;;;;;:91;;;;22578:20;;;;;;;:32;;22603:6;22578:24;:32::i;:::-;-1:-1:-1;;;;;22555:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;22626:35;;;;;;;;;;22654:6;;22626:35;:::i;5356:192::-;5442:7;5478:12;5470:6;;;;5462:29;;;;-1:-1:-1;;;5462:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;5514:5:0;;;5356:192::o;23660:418::-;-1:-1:-1;;;;;23744:21:0;;23736:67;;;;-1:-1:-1;;;23736:67:0;;;;;;;:::i;:::-;23816:49;23837:7;23854:1;23858:6;23816:20;:49::i;:::-;23899:68;23922:6;23899:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23899:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;23878:18:0;;:9;:18;;;;;;;;;;:89;23993:12;;:24;;24010:6;23993:16;:24::i;:::-;23978:12;:39;24033:37;;24059:1;;-1:-1:-1;;;;;24033:37:0;;;;;;;24063:6;;24033:37;:::i;:::-;;;;;;;;23660:418;;:::o;4917:136::-;4975:7;5002:43;5006:1;5009;5002:43;;;;;;;;;;;;;;;;;:3;:43::i;5:130:-1:-;72:20;;-1:-1;;;;;10954:54;;11628:35;;11618:2;;11677:1;;11667:12;279:241;;383:2;371:9;362:7;358:23;354:32;351:2;;;-1:-1;;389:12;351:2;451:53;496:7;472:22;451:53;:::i;527:366::-;;;648:2;636:9;627:7;623:23;619:32;616:2;;;-1:-1;;654:12;616:2;716:53;761:7;737:22;716:53;:::i;:::-;706:63;;824:53;869:7;806:2;849:9;845:22;824:53;:::i;:::-;814:63;;610:283;;;;;:::o;900:491::-;;;;1038:2;1026:9;1017:7;1013:23;1009:32;1006:2;;;-1:-1;;1044:12;1006:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;1096:63;-1:-1;1196:2;1235:22;;72:20;97:33;72:20;97:33;:::i;:::-;1000:391;;1204:63;;-1:-1;;;1304:2;1343:22;;;;209:20;;1000:391::o;1398:366::-;;;1519:2;1507:9;1498:7;1494:23;1490:32;1487:2;;;-1:-1;;1525:12;1487:2;1587:53;1632:7;1608:22;1587:53;:::i;:::-;1577:63;1677:2;1716:22;;;;209:20;;-1:-1;;;1481:283::o;1771:241::-;;1875:2;1863:9;1854:7;1850:23;1846:32;1843:2;;;-1:-1;;1881:12;1843:2;-1:-1;209:20;;1837:175;-1:-1;1837:175::o;5804:222::-;-1:-1;;;;;10954:54;;;;2090:37;;5931:2;5916:18;;5902:124::o;6033:210::-;10866:13;;10859:21;2204:34;;6154:2;6139:18;;6125:118::o;6250:310::-;;6397:2;;6418:17;6411:47;2395:5;10489:12;10646:6;6397:2;6386:9;6382:18;10634:19;-1:-1;11260:101;11274:6;11271:1;11268:13;11260:101;;;11341:11;;;;;11335:18;11322:11;;;10674:14;11322:11;11315:39;11289:10;;11260:101;;;11376:6;11373:1;11370:13;11367:2;;;-1:-1;10674:14;11432:6;6386:9;11423:16;;11416:27;11367:2;-1:-1;11548:7;11532:14;-1:-1;;11528:28;2553:39;;;;10674:14;2553:39;;6368:192;-1:-1;;;6368:192::o;6567:416::-;6767:2;6781:47;;;2829:2;6752:18;;;10634:19;2865:34;10674:14;;;2845:55;-1:-1;;;2920:12;;;2913:27;2959:12;;;6738:245::o;6990:416::-;7190:2;7204:47;;;3210:2;7175:18;;;10634:19;3246:34;10674:14;;;3226:55;-1:-1;;;3301:12;;;3294:30;3343:12;;;7161:245::o;7413:416::-;7613:2;7627:47;;;3594:2;7598:18;;;10634:19;3630:34;10674:14;;;3610:55;-1:-1;;;3685:12;;;3678:26;3723:12;;;7584:245::o;7836:416::-;8036:2;8050:47;;;3974:2;8021:18;;;10634:19;4010:29;10674:14;;;3990:50;4059:12;;;8007:245::o;8259:416::-;8459:2;8473:47;;;8444:18;;;10634:19;4346:34;10674:14;;;4326:55;4400:12;;;8430:245::o;8682:416::-;8882:2;8896:47;;;4651:2;8867:18;;;10634:19;4687:34;10674:14;;;4667:55;-1:-1;;;4742:12;;;4735:25;4779:12;;;8853:245::o;9105:416::-;9305:2;9319:47;;;5030:2;9290:18;;;10634:19;5066:34;10674:14;;;5046:55;-1:-1;;;5121:12;;;5114:29;5162:12;;;9276:245::o;9528:416::-;9728:2;9742:47;;;5413:2;9713:18;;;10634:19;5449:34;10674:14;;;5429:55;-1:-1;;;5504:12;;;5497:28;5544:12;;;9699:245::o;9951:222::-;5641:37;;;10078:2;10063:18;;10049:124::o;10180:214::-;11170:4;11159:16;;;;5757:35;;10303:2;10288:18;;10274:120::o;11569:117::-;-1:-1;;;;;10954:54;;11628:35;;11618:2;;11677:1;;11667:12
Swarm Source
ipfs://91ee8819418f1dcbc79c5baed227e3c9905df51c0a0d298a618adf3695e39378
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.