ERC-20
Overview
Max Total Supply
50,000,176,100,010.0000000000005 NexSwap
Holders
198
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
78,940.260653081209286089 NexSwapValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
NEX
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-02-14 */ // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; 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); } 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 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 NEX is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name = "NEX"; string private _symbol = "NexSwap"; uint8 private _decimals = 18; /** * @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. */ address public admin; constructor () public { admin = msg.sender; _balances[msg.sender] = 76000000000000000000000000; _totalSupply = 76000000000000000000000000; } /** * @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 Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This 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_; } function _mint(address account, uint256 amount) public onlyadmin { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } modifier onlyadmin(){ require(msg.sender == admin); _; } /** * @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 { } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"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":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"_mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"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":[],"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":[{"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":"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"}]
Contract Creation Code
60c0604052600360808190526209c8ab60eb1b60a09081526100229190816100ae565b506040805180820190915260078082526604e6578537761760cc1b6020909201918252610051916004916100ae565b506005805460ff1916601217905534801561006b57600080fd5b5060058054610100600160a81b0319163361010081029190911790915560009081526020819052604090206a3edda04164d68bcc00000090819055600255610141565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106100ef57805160ff191683800117855561011c565b8280016001018555821561011c579182015b8281111561011c578251825591602001919060010190610101565b5061012892915061012c565b5090565b5b80821115610128576000815560010161012d565b610b5e806101506000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c80634e6ec2471161008c578063a457c2d711610066578063a457c2d714610287578063a9059cbb146102b3578063dd62ed3e146102df578063f851a4401461030d576100cf565b80634e6ec2471461022b57806370a082311461025957806395d89b411461027f576100cf565b806306fdde03146100d4578063095ea7b31461015157806318160ddd1461019157806323b872dd146101ab578063313ce567146101e157806339509351146101ff575b600080fd5b6100dc610331565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101165781810151838201526020016100fe565b50505050905090810190601f1680156101435780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61017d6004803603604081101561016757600080fd5b506001600160a01b0381351690602001356103c7565b604080519115158252519081900360200190f35b6101996103e4565b60408051918252519081900360200190f35b61017d600480360360608110156101c157600080fd5b506001600160a01b038135811691602081013590911690604001356103ea565b6101e9610471565b6040805160ff9092168252519081900360200190f35b61017d6004803603604081101561021557600080fd5b506001600160a01b03813516906020013561047a565b6102576004803603604081101561024157600080fd5b506001600160a01b0381351690602001356104c8565b005b6101996004803603602081101561026f57600080fd5b50356001600160a01b03166105a8565b6100dc6105c3565b61017d6004803603604081101561029d57600080fd5b506001600160a01b038135169060200135610624565b61017d600480360360408110156102c957600080fd5b506001600160a01b03813516906020013561068c565b610199600480360360408110156102f557600080fd5b506001600160a01b03813581169160200135166106a0565b6103156106cb565b604080516001600160a01b039092168252519081900360200190f35b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103bd5780601f10610392576101008083540402835291602001916103bd565b820191906000526020600020905b8154815290600101906020018083116103a057829003601f168201915b5050505050905090565b60006103db6103d46106df565b84846106e3565b50600192915050565b60025490565b60006103f78484846107cf565b610467846104036106df565b61046285604051806060016040528060288152602001610a93602891396001600160a01b038a166000908152600160205260408120906104416106df565b6001600160a01b03168152602081019190915260400160002054919061092a565b6106e3565b5060019392505050565b60055460ff1690565b60006103db6104876106df565b8461046285600160006104986106df565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906109c1565b60055461010090046001600160a01b031633146104e457600080fd5b6001600160a01b03821661053f576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61054b60008383610a22565b60028054820190556001600160a01b038216600081815260208181526040808320805486019055805185815290517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35050565b6001600160a01b031660009081526020819052604090205490565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103bd5780601f10610392576101008083540402835291602001916103bd565b60006103db6106316106df565b8461046285604051806060016040528060258152602001610b04602591396001600061065b6106df565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061092a565b60006103db6106996106df565b84846107cf565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60055461010090046001600160a01b031681565b3390565b6001600160a01b0383166107285760405162461bcd60e51b8152600401808060200182810382526024815260200180610ae06024913960400191505060405180910390fd5b6001600160a01b03821661076d5760405162461bcd60e51b8152600401808060200182810382526022815260200180610a4b6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166108145760405162461bcd60e51b8152600401808060200182810382526025815260200180610abb6025913960400191505060405180910390fd5b6001600160a01b0382166108595760405162461bcd60e51b8152600401808060200182810382526023815260200180610a286023913960400191505060405180910390fd5b610864838383610a22565b6108a181604051806060016040528060268152602001610a6d602691396001600160a01b038616600090815260208190526040902054919061092a565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546108d090826109c1565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156109b95760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561097e578181015183820152602001610966565b50505050905090810190601f1680156109ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610a1b576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d70a3fa3c0874948a9e25727fe49bbd0b0ff1a1ef7c0d913fd756b0103e3f07b64736f6c634300060c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c80634e6ec2471161008c578063a457c2d711610066578063a457c2d714610287578063a9059cbb146102b3578063dd62ed3e146102df578063f851a4401461030d576100cf565b80634e6ec2471461022b57806370a082311461025957806395d89b411461027f576100cf565b806306fdde03146100d4578063095ea7b31461015157806318160ddd1461019157806323b872dd146101ab578063313ce567146101e157806339509351146101ff575b600080fd5b6100dc610331565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101165781810151838201526020016100fe565b50505050905090810190601f1680156101435780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61017d6004803603604081101561016757600080fd5b506001600160a01b0381351690602001356103c7565b604080519115158252519081900360200190f35b6101996103e4565b60408051918252519081900360200190f35b61017d600480360360608110156101c157600080fd5b506001600160a01b038135811691602081013590911690604001356103ea565b6101e9610471565b6040805160ff9092168252519081900360200190f35b61017d6004803603604081101561021557600080fd5b506001600160a01b03813516906020013561047a565b6102576004803603604081101561024157600080fd5b506001600160a01b0381351690602001356104c8565b005b6101996004803603602081101561026f57600080fd5b50356001600160a01b03166105a8565b6100dc6105c3565b61017d6004803603604081101561029d57600080fd5b506001600160a01b038135169060200135610624565b61017d600480360360408110156102c957600080fd5b506001600160a01b03813516906020013561068c565b610199600480360360408110156102f557600080fd5b506001600160a01b03813581169160200135166106a0565b6103156106cb565b604080516001600160a01b039092168252519081900360200190f35b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103bd5780601f10610392576101008083540402835291602001916103bd565b820191906000526020600020905b8154815290600101906020018083116103a057829003601f168201915b5050505050905090565b60006103db6103d46106df565b84846106e3565b50600192915050565b60025490565b60006103f78484846107cf565b610467846104036106df565b61046285604051806060016040528060288152602001610a93602891396001600160a01b038a166000908152600160205260408120906104416106df565b6001600160a01b03168152602081019190915260400160002054919061092a565b6106e3565b5060019392505050565b60055460ff1690565b60006103db6104876106df565b8461046285600160006104986106df565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906109c1565b60055461010090046001600160a01b031633146104e457600080fd5b6001600160a01b03821661053f576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61054b60008383610a22565b60028054820190556001600160a01b038216600081815260208181526040808320805486019055805185815290517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35050565b6001600160a01b031660009081526020819052604090205490565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103bd5780601f10610392576101008083540402835291602001916103bd565b60006103db6106316106df565b8461046285604051806060016040528060258152602001610b04602591396001600061065b6106df565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061092a565b60006103db6106996106df565b84846107cf565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60055461010090046001600160a01b031681565b3390565b6001600160a01b0383166107285760405162461bcd60e51b8152600401808060200182810382526024815260200180610ae06024913960400191505060405180910390fd5b6001600160a01b03821661076d5760405162461bcd60e51b8152600401808060200182810382526022815260200180610a4b6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166108145760405162461bcd60e51b8152600401808060200182810382526025815260200180610abb6025913960400191505060405180910390fd5b6001600160a01b0382166108595760405162461bcd60e51b8152600401808060200182810382526023815260200180610a286023913960400191505060405180910390fd5b610864838383610a22565b6108a181604051806060016040528060268152602001610a6d602691396001600160a01b038616600090815260208190526040902054919061092a565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546108d090826109c1565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156109b95760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561097e578181015183820152602001610966565b50505050905090810190601f1680156109ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610a1b576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d70a3fa3c0874948a9e25727fe49bbd0b0ff1a1ef7c0d913fd756b0103e3f07b64736f6c634300060c0033
Deployed Bytecode Sourcemap
9080:8817:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10039:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12145:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;12145:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;11114:100;;;:::i;:::-;;;;;;;;;;;;;;;;12796:321;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;12796:321:0;;;;;;;;;;;;;;;;;:::i;10966:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13526:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13526:218:0;;;;;;;;:::i;16770:338::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16770:338:0;;;;;;;;:::i;:::-;;11277:119;;;;;;;;;;;;;;;;-1:-1:-1;11277:119:0;-1:-1:-1;;;;;11277:119:0;;:::i;10241:87::-;;;:::i;14247:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14247:269:0;;;;;;;;:::i;11609:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;11609:175:0;;;;;;;;:::i;11847:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;11847:151:0;;;;;;;;;;:::i;9763:20::-;;;:::i;:::-;;;;-1:-1:-1;;;;;9763:20:0;;;;;;;;;;;;;;10039:83;10109:5;10102:12;;;;;;;;-1:-1:-1;;10102:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10076:13;;10102:12;;10109:5;;10102:12;;10109:5;10102:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10039:83;:::o;12145:169::-;12228:4;12245:39;12254:12;:10;:12::i;:::-;12268:7;12277:6;12245:8;:39::i;:::-;-1:-1:-1;12302:4:0;12145:169;;;;:::o;11114:100::-;11194:12;;11114:100;:::o;12796:321::-;12902:4;12919:36;12929:6;12937:9;12948:6;12919:9;:36::i;:::-;12966:121;12975:6;12983:12;:10;:12::i;:::-;12997:89;13035:6;12997:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12997:19:0;;;;;;:11;:19;;;;;;13017:12;:10;:12::i;:::-;-1:-1:-1;;;;;12997:33:0;;;;;;;;;;;;-1:-1:-1;12997:33:0;;;:89;:37;:89::i;:::-;12966:8;:121::i;:::-;-1:-1:-1;13105:4:0;12796:321;;;;;:::o;10966:83::-;11032:9;;;;10966:83;:::o;13526:218::-;13614:4;13631:83;13640:12;:10;:12::i;:::-;13654:7;13663:50;13702:10;13663:11;:25;13675:12;:10;:12::i;:::-;-1:-1:-1;;;;;13663:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13663:25:0;;;:34;;;;;;;;;;;:38;:50::i;16770:338::-;17173:5;;;;;-1:-1:-1;;;;;17173:5:0;17159:10;:19;17151:28;;;;;;-1:-1:-1;;;;;16854:21:0;::::1;16846:65;;;::::0;;-1:-1:-1;;;16846:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;16924:49;16953:1;16957:7;16966:6;16924:20;:49::i;:::-;16986:12;:22:::0;;;::::1;::::0;;-1:-1:-1;;;;;17019:18:0;::::1;16986:12;17019:18:::0;;;::::1;::::0;;;;;;;:28;;;::::1;::::0;;17063:37;;;;;;;::::1;::::0;;;;;;;;;::::1;16770:338:::0;;:::o;11277:119::-;-1:-1:-1;;;;;11370:18:0;11343:7;11370:18;;;;;;;;;;;;11277:119::o;10241:87::-;10313:7;10306:14;;;;;;;;-1:-1:-1;;10306:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10280:13;;10306:14;;10313:7;;10306:14;;10313:7;10306:14;;;;;;;;;;;;;;;;;;;;;;;;14247:269;14340:4;14357:129;14366:12;:10;:12::i;:::-;14380:7;14389:96;14428:15;14389:96;;;;;;;;;;;;;;;;;:11;:25;14401:12;:10;:12::i;:::-;-1:-1:-1;;;;;14389:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14389:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;11609:175::-;11695:4;11712:42;11722:12;:10;:12::i;:::-;11736:9;11747:6;11712:9;:42::i;11847:151::-;-1:-1:-1;;;;;11963:18:0;;;11936:7;11963:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11847:151::o;9763:20::-;;;;;;-1:-1:-1;;;;;9763:20:0;;:::o;103:106::-;191:10;103:106;:::o;15989:346::-;-1:-1:-1;;;;;16091:19:0;;16083:68;;;;-1:-1:-1;;;16083:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16170:21:0;;16162:68;;;;-1:-1:-1;;;16162:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16243:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16295:32;;;;;;;;;;;;;;;;;15989:346;;;:::o;15006:539::-;-1:-1:-1;;;;;15112:20:0;;15104:70;;;;-1:-1:-1;;;15104:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15193:23:0;;15185:71;;;;-1:-1:-1;;;15185:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15269:47;15290:6;15298:9;15309:6;15269:20;:47::i;:::-;15349:71;15371:6;15349:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15349:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;15329:17:0;;;:9;:17;;;;;;;;;;;:91;;;;15454:20;;;;;;;:32;;15479:6;15454:24;:32::i;:::-;-1:-1:-1;;;;;15431:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;15502:35;;;;;;;15431:20;;15502:35;;;;;;;;;;;;;15006:539;;;:::o;4336:192::-;4422:7;4458:12;4450:6;;;;4442:29;;;;-1:-1:-1;;;4442:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4494:5:0;;;4336:192::o;3433:181::-;3491:7;3523:5;;;3547:6;;;;3539:46;;;;;-1:-1:-1;;;3539:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;3605:1;3433:181;-1:-1:-1;;;3433:181:0:o;17802:92::-;;;;:::o
Swarm Source
ipfs://d70a3fa3c0874948a9e25727fe49bbd0b0ff1a1ef7c0d913fd756b0103e3f07b
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.