ERC-20
Gaming
Overview
Max Total Supply
991,743,389.569900999009899999 WNS
Holders
103 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
4,680,000 WNSValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WNS
Compiler Version
v0.5.7+commit.6da8b019
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-07-06 */ /** *Submitted for verification at Etherscan.io on 2019-04-13 */ pragma solidity 0.5.7; /** * @title SafeMath * @dev Unsigned math operations with safety checks that revert on error */ library SafeMath { /** * @dev Multiplies two unsigned integers, reverts on 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-solidity/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b); return c; } /** * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a); uint256 c = a - b; return c; } /** * @dev Adds two unsigned integers, reverts on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a); return c; } /** * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo), * reverts when dividing by zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0); return a % b; } } /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ constructor () internal { _owner; emit OwnershipTransferred(address(0), _owner); } /** * @return the address of the owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner()); _; } /** * @return true if `msg.sender` is the owner of the contract. */ function isOwner() public view returns (bool) { return msg.sender == _owner; } /** * @dev Allows the current owner to relinquish control of the contract. * It will not be possible to call the functions with the `onlyOwner` * modifier anymore. * @notice Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0)); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @title ERC20 interface * @dev see https://eips.ethereum.org/EIPS/eip-20 */ interface IERC20 { function transfer(address to, uint256 value) external returns (bool); function approve(address spender, uint256 value) external returns (bool); function transferFrom(address from, address to, uint256 value) external returns (bool); function totalSupply() external view returns (uint256); function balanceOf(address who) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * https://eips.ethereum.org/EIPS/eip-20 * Originally based on code by FirstBlood: * https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol * * This implementation emits additional Approval events, allowing applications to reconstruct the allowance status for * all accounts just by listening to said events. Note that this isn't required by the specification, and other * compliant implementations may not do it. */ contract ERC20 is IERC20, Ownable { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowed; uint256 private _totalSupply; /** * @dev Total number of tokens in existence */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev Gets the balance of the specified address. * @param owner The address to query the balance of. * @return A uint256 representing the amount owned by the passed address. */ function balanceOf(address owner) public view returns (uint256) { return _balances[owner]; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param owner address The address which owns the funds. * @param spender address The address which will spend the funds. * @return A uint256 specifying the amount of tokens still available for the spender. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowed[owner][spender]; } /** * @dev Transfer token to a specified address * @param to The address to transfer to. * @param value The amount to be transferred. */ function transfer(address to, uint256 value) public returns (bool) { _transfer(msg.sender, to, value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * Beware that changing an allowance with this method brings the risk that someone may use both the old * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * @param spender The address which will spend the funds. * @param value The amount of tokens to be spent. */ function approve(address spender, uint256 value) public returns (bool) { _approve(msg.sender, spender, value); return true; } /** * @dev Transfer tokens from one address to another. * Note that while this function emits an Approval event, this is not required as per the specification, * and other compliant implementations may not emit the event. * @param from address The address which you want to send tokens from * @param to address The address which you want to transfer to * @param value uint256 the amount of tokens to be transferred */ function transferFrom(address from, address to, uint256 value) public returns (bool) { _transfer(from, to, value); _approve(from, msg.sender, _allowed[from][msg.sender]-value); return true; } /** * @dev Increase the amount of tokens that an owner allowed to a spender. * approve should be called when _allowed[msg.sender][spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * Emits an Approval event. * @param spender The address which will spend the funds. * @param addedValue The amount of tokens to increase the allowance by. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(msg.sender, spender, _allowed[msg.sender][spender]+addedValue); return true; } /** * @dev Decrease the amount of tokens that an owner allowed to a spender. * approve should be called when _allowed[msg.sender][spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * Emits an Approval event. * @param spender The address which will spend the funds. * @param subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(msg.sender, spender, _allowed[msg.sender][spender]-subtractedValue); return true; } /** * @dev Transfer token for a specified addresses * @param from The address to transfer from. * @param to The address to transfer to. * @param value The amount to be transferred. */ function _transfer(address from, address to, uint256 value) internal { require(to != address(0)); _balances[from] = _balances[from]-value; _balances[to] = _balances[to]+value; emit Transfer(from, to, value); } /** * @dev Internal function that mints an amount of the token and assigns it to * an account. This encapsulates the modification of balances such that the * proper events are emitted. * @param account The account that will receive the created tokens. * @param value The amount that will be created. */ function _mint(address account, uint256 value) internal { require(account != address(0)); _totalSupply = _totalSupply+value; _balances[account] = _balances[account]+value; emit Transfer(address(0), account, value); } /** * @dev Internal function that burns an amount of the token of a given * account. * @param account The account whose tokens will be burnt. * @param value The amount that will be burnt. */ function _burn(address account, uint256 value) internal { require(account != address(0)); _totalSupply = _totalSupply-value; _balances[account] = _balances[account]-value; emit Transfer(account, address(0), value); } /** * @dev Approve an address to spend another addresses' tokens. * @param owner The address that owns the tokens. * @param spender The address that will spend the tokens. * @param value The number of tokens that can be spent. */ function _approve(address owner, address spender, uint256 value) internal { require(spender != address(0)); require(owner != address(0)); _allowed[owner][spender] = value; emit Approval(owner, spender, value); } /** * @dev Internal function that burns an amount of the token of a given * account, deducting from the sender's allowance for said account. Uses the * internal burn function. * Emits an Approval event (reflecting the reduced allowance). * @param account The account whose tokens will be burnt. * @param value The amount that will be burnt. */ function _burnFrom(address account, uint256 value) internal { _burn(account, value); _approve(account, msg.sender, _allowed[account][msg.sender]-value); } } /** * @title Burnable Token * @dev Token that can be irreversibly burned (destroyed). */ contract ERC20Burnable is ERC20 { /** * @dev Burns a specific amount of tokens. * @param value The amount of token to be burned. */ function burn(uint256 value) public { _burn(msg.sender, value); } /** * @dev Burns a specific amount of tokens from the target address and decrements allowance * @param from address The account whose tokens will be burned. * @param value uint256 The amount of token to be burned. */ function burnFrom(address from, uint256 value) public { _burnFrom(from, value); } } /** * @title ERC20Mintable * @dev ERC20 minting logic */ contract ERC20Mintable is ERC20 { /** * @dev Function to mint tokens * @param to The address that will receive the minted tokens. * @param value The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint(address to, uint256 value) public onlyOwner returns (bool) { _mint(to, value); return true; } } interface tokenRecipient { function receiveApproval(address _from, uint256 _value, bytes calldata _extraData) external; } contract WNS is ERC20Mintable, ERC20Burnable { string public constant name = "WINSSHI"; string public constant symbol = "WNS"; uint256 public constant decimals = 18; // there is no problem in using * here instead of .mul() uint256 public initialSupply = 1000000000000000000000000000; constructor () public { _mint(msg.sender, initialSupply); } function approveAndCall(address _spender, uint256 _value, bytes calldata _extraData) external returns (bool success) { tokenRecipient spender = tokenRecipient(_spender); if (approve(_spender, _value)) { spender.receiveApproval(msg.sender, _value, _extraData); return true; } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"initialSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]
Contract Creation Code
60806040526b033b2e3c9fd0803ce800000060045534801561002057600080fd5b50600080546040516001600160a01b0390911691907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a361006c3360045461007160201b60201c565b6100e3565b6001600160a01b03821661008457600080fd5b60038054820190556001600160a01b0382166000818152600160209081526040808320805486019055805185815290517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35050565b610a53806100f26000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063a457c2d711610071578063a457c2d714610353578063a9059cbb1461037f578063cae9ca51146103ab578063dd62ed3e14610430578063f2fde38b1461045e5761012c565b8063715018a6146102eb57806379cc6790146102f35780638da5cb5b1461031f5780638f32d59b1461034357806395d89b411461034b5761012c565b8063378dc3dc116100f4578063378dc3dc14610246578063395093511461024e57806340c10f191461027a57806342966c68146102a657806370a08231146102c55761012c565b806306fdde0314610131578063095ea7b3146101ae57806318160ddd146101ee57806323b872dd14610208578063313ce5671461023e575b600080fd5b610139610484565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017357818101518382015260200161015b565b50505050905090810190601f1680156101a05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101da600480360360408110156101c457600080fd5b506001600160a01b0381351690602001356104aa565b604080519115158252519081900360200190f35b6101f66104c0565b60408051918252519081900360200190f35b6101da6004803603606081101561021e57600080fd5b506001600160a01b038135811691602081013590911690604001356104c6565b6101f6610510565b6101f6610515565b6101da6004803603604081101561026457600080fd5b506001600160a01b03813516906020013561051b565b6101da6004803603604081101561029057600080fd5b506001600160a01b03813516906020013561054e565b6102c3600480360360208110156102bc57600080fd5b503561056b565b005b6101f6600480360360208110156102db57600080fd5b50356001600160a01b0316610578565b6102c3610593565b6102c36004803603604081101561030957600080fd5b506001600160a01b0381351690602001356105ee565b6103276105fc565b604080516001600160a01b039092168252519081900360200190f35b6101da61060b565b61013961061c565b6101da6004803603604081101561036957600080fd5b506001600160a01b03813516906020013561063e565b6101da6004803603604081101561039557600080fd5b506001600160a01b038135169060200135610672565b6101da600480360360608110156103c157600080fd5b6001600160a01b03823516916020810135918101906060810160408201356401000000008111156103f157600080fd5b82018360208201111561040357600080fd5b8035906020019184600183028401116401000000008311171561042557600080fd5b50909250905061067f565b6101f66004803603604081101561044657600080fd5b506001600160a01b0381358116916020013516610747565b6102c36004803603602081101561047457600080fd5b50356001600160a01b0316610772565b604051806040016040528060078152602001600160c81b6657494e535348490281525081565b60006104b733848461078c565b50600192915050565b60035490565b60006104d3848484610814565b6001600160a01b03841660009081526002602090815260408083203380855292529091205461050691869185900361078c565b5060019392505050565b601281565b60045481565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104b7918590850161078c565b600061055861060b565b61056157600080fd5b6104b78383610893565b6105753382610905565b50565b6001600160a01b031660009081526001602052604090205490565b61059b61060b565b6105a457600080fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6105f8828261097c565b5050565b6000546001600160a01b031690565b6000546001600160a01b0316331490565b604051806040016040528060038152602001600160e81b62574e530281525081565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104b791859085900361078c565b60006104b7338484610814565b60008461068c81866104aa565b1561073d57604051600160e01b63a2d57853028152336004820181815260248301889052606060448401908152606484018790526001600160a01b0385169363a2d5785393928a928a928a929190608401848480828437600081840152601f19601f82011690508083019250505095505050505050600060405180830381600087803b15801561071b57600080fd5b505af115801561072f573d6000803e3d6000fd5b50505050600191505061073f565b505b949350505050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61077a61060b565b61078357600080fd5b610575816109b9565b6001600160a01b03821661079f57600080fd5b6001600160a01b0383166107b257600080fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03821661082757600080fd5b6001600160a01b03808416600081815260016020908152604080832080548790039055938616808352918490208054860190558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a3505050565b6001600160a01b0382166108a657600080fd5b60038054820190556001600160a01b0382166000818152600160209081526040808320805486019055805185815290517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35050565b6001600160a01b03821661091857600080fd5b6003805482900390556001600160a01b038216600081815260016020908152604080832080548690039055805185815290519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35050565b6109868282610905565b6001600160a01b0382166000908152600260209081526040808320338085529252909120546105f891849184900361078c565b6001600160a01b0381166109cc57600080fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b039290921691909117905556fea165627a7a7230582040a28b8f2744d2972ffaf4cb45c878f6e62793eee719e009e47feca2b86090790029
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063a457c2d711610071578063a457c2d714610353578063a9059cbb1461037f578063cae9ca51146103ab578063dd62ed3e14610430578063f2fde38b1461045e5761012c565b8063715018a6146102eb57806379cc6790146102f35780638da5cb5b1461031f5780638f32d59b1461034357806395d89b411461034b5761012c565b8063378dc3dc116100f4578063378dc3dc14610246578063395093511461024e57806340c10f191461027a57806342966c68146102a657806370a08231146102c55761012c565b806306fdde0314610131578063095ea7b3146101ae57806318160ddd146101ee57806323b872dd14610208578063313ce5671461023e575b600080fd5b610139610484565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017357818101518382015260200161015b565b50505050905090810190601f1680156101a05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101da600480360360408110156101c457600080fd5b506001600160a01b0381351690602001356104aa565b604080519115158252519081900360200190f35b6101f66104c0565b60408051918252519081900360200190f35b6101da6004803603606081101561021e57600080fd5b506001600160a01b038135811691602081013590911690604001356104c6565b6101f6610510565b6101f6610515565b6101da6004803603604081101561026457600080fd5b506001600160a01b03813516906020013561051b565b6101da6004803603604081101561029057600080fd5b506001600160a01b03813516906020013561054e565b6102c3600480360360208110156102bc57600080fd5b503561056b565b005b6101f6600480360360208110156102db57600080fd5b50356001600160a01b0316610578565b6102c3610593565b6102c36004803603604081101561030957600080fd5b506001600160a01b0381351690602001356105ee565b6103276105fc565b604080516001600160a01b039092168252519081900360200190f35b6101da61060b565b61013961061c565b6101da6004803603604081101561036957600080fd5b506001600160a01b03813516906020013561063e565b6101da6004803603604081101561039557600080fd5b506001600160a01b038135169060200135610672565b6101da600480360360608110156103c157600080fd5b6001600160a01b03823516916020810135918101906060810160408201356401000000008111156103f157600080fd5b82018360208201111561040357600080fd5b8035906020019184600183028401116401000000008311171561042557600080fd5b50909250905061067f565b6101f66004803603604081101561044657600080fd5b506001600160a01b0381358116916020013516610747565b6102c36004803603602081101561047457600080fd5b50356001600160a01b0316610772565b604051806040016040528060078152602001600160c81b6657494e535348490281525081565b60006104b733848461078c565b50600192915050565b60035490565b60006104d3848484610814565b6001600160a01b03841660009081526002602090815260408083203380855292529091205461050691869185900361078c565b5060019392505050565b601281565b60045481565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104b7918590850161078c565b600061055861060b565b61056157600080fd5b6104b78383610893565b6105753382610905565b50565b6001600160a01b031660009081526001602052604090205490565b61059b61060b565b6105a457600080fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6105f8828261097c565b5050565b6000546001600160a01b031690565b6000546001600160a01b0316331490565b604051806040016040528060038152602001600160e81b62574e530281525081565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104b791859085900361078c565b60006104b7338484610814565b60008461068c81866104aa565b1561073d57604051600160e01b63a2d57853028152336004820181815260248301889052606060448401908152606484018790526001600160a01b0385169363a2d5785393928a928a928a929190608401848480828437600081840152601f19601f82011690508083019250505095505050505050600060405180830381600087803b15801561071b57600080fd5b505af115801561072f573d6000803e3d6000fd5b50505050600191505061073f565b505b949350505050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61077a61060b565b61078357600080fd5b610575816109b9565b6001600160a01b03821661079f57600080fd5b6001600160a01b0383166107b257600080fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03821661082757600080fd5b6001600160a01b03808416600081815260016020908152604080832080548790039055938616808352918490208054860190558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a3505050565b6001600160a01b0382166108a657600080fd5b60038054820190556001600160a01b0382166000818152600160209081526040808320805486019055805185815290517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35050565b6001600160a01b03821661091857600080fd5b6003805482900390556001600160a01b038216600081815260016020908152604080832080548690039055805185815290519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35050565b6109868282610905565b6001600160a01b0382166000908152600260209081526040808320338085529252909120546105f891849184900361078c565b6001600160a01b0381166109cc57600080fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b039290921691909117905556fea165627a7a7230582040a28b8f2744d2972ffaf4cb45c878f6e62793eee719e009e47feca2b86090790029
Deployed Bytecode Sourcemap
13981:759:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13981:759:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14033:39;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;14033:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7672:148;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;7672:148:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;5825:91;;;:::i;:::-;;;;;;;;;;;;;;;;8293:223;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8293:223:0;;;;;;;;;;;;;;;;;:::i;14123:37::-;;;:::i;14231:59::-;;;:::i;9042:198::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9042:198:0;;;;;;;;:::i;13713:130::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13713:130:0;;;;;;;;:::i;12928:79::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12928:79:0;;:::i;:::-;;6135:106;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;6135:106:0;-1:-1:-1;;;;;6135:106:0;;:::i;3435:140::-;;;:::i;13261:95::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13261:95:0;;;;;;;;:::i;2645:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;2645:79:0;;;;;;;;;;;;;;2980:92;;;:::i;14079:37::-;;;:::i;9771:208::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9771:208:0;;;;;;;;:::i;6885:140::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6885:140:0;;;;;;;;:::i;14380:357::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;14380:357:0;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;14380:357:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;14380:357:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;14380:357:0;;-1:-1:-1;14380:357:0;-1:-1:-1;14380:357:0;:::i;6580:131::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6580:131:0;;;;;;;;;;:::i;3752:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3752:109:0;-1:-1:-1;;;;;3752:109:0;;:::i;14033:39::-;;;;;;;;;;;;;;-1:-1:-1;;;;;14033:39:0;;;;:::o;7672:148::-;7737:4;7754:36;7763:10;7775:7;7784:5;7754:8;:36::i;:::-;-1:-1:-1;7808:4:0;7672:148;;;;:::o;5825:91::-;5896:12;;5825:91;:::o;8293:223::-;8372:4;8389:26;8399:4;8405:2;8409:5;8389:9;:26::i;:::-;-1:-1:-1;;;;;8453:14:0;;;;;;:8;:14;;;;;;;;8441:10;8453:26;;;;;;;;;8426:60;;8435:4;;8453:32;;;8426:8;:60::i;:::-;-1:-1:-1;8504:4:0;8293:223;;;;;:::o;14123:37::-;14158:2;14123:37;:::o;14231:59::-;;;;:::o;9042:198::-;9148:10;9122:4;9169:20;;;:8;:20;;;;;;;;-1:-1:-1;;;;;9169:29:0;;;;;;;;;;9122:4;;9139:71;;9160:7;;9169:40;;9139:8;:71::i;13713:130::-;13780:4;2857:9;:7;:9::i;:::-;2849:18;;;;;;13797:16;13803:2;13807:5;13797;:16::i;12928:79::-;12975:24;12981:10;12993:5;12975;:24::i;:::-;12928:79;:::o;6135:106::-;-1:-1:-1;;;;;6217:16:0;6190:7;6217:16;;;:9;:16;;;;;;;6135:106::o;3435:140::-;2857:9;:7;:9::i;:::-;2849:18;;;;;;3534:1;3518:6;;3497:40;;-1:-1:-1;;;;;3518:6:0;;;;3497:40;;3534:1;;3497:40;3565:1;3548:19;;-1:-1:-1;;;;;;3548:19:0;;;3435:140::o;13261:95::-;13326:22;13336:4;13342:5;13326:9;:22::i;:::-;13261:95;;:::o;2645:79::-;2683:7;2710:6;-1:-1:-1;;;;;2710:6:0;2645:79;:::o;2980:92::-;3020:4;3058:6;-1:-1:-1;;;;;3058:6:0;3044:10;:20;;2980:92::o;14079:37::-;;;;;;;;;;;;;;-1:-1:-1;;;;;14079:37:0;;;;:::o;9771:208::-;9882:10;9856:4;9903:20;;;:8;:20;;;;;;;;-1:-1:-1;;;;;9903:29:0;;;;;;;;;;9856:4;;9873:76;;9894:7;;9903:45;;;9873:8;:76::i;6885:140::-;6946:4;6963:32;6973:10;6985:2;6989:5;6963:9;:32::i;14380:357::-;14501:12;14571:8;14595:25;14571:8;14613:6;14595:7;:25::i;:::-;14591:139;;;14637:55;;-1:-1:-1;;;;;14637:55:0;;14661:10;14637:55;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14637:23:0;;;;;14661:10;14673:6;;14681:10;;;;14637:55;;;;14681:10;;;;14637:55;1:33:-1;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;14637:55:0;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14637:55:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;14637:55:0;;;;14714:4;14707:11;;;;;14591:139;14380:357;;;;;;;;:::o;6580:131::-;-1:-1:-1;;;;;6679:15:0;;;6652:7;6679:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;6580:131::o;3752:109::-;2857:9;:7;:9::i;:::-;2849:18;;;;;;3825:28;3844:8;3825:18;:28::i;11835:254::-;-1:-1:-1;;;;;11928:21:0;;11920:30;;;;;;-1:-1:-1;;;;;11969:19:0;;11961:28;;;;;;-1:-1:-1;;;;;12002:15:0;;;;;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;:32;;;12050:31;;;;;;;;;;;;;;;;;11835:254;;;:::o;10206:252::-;-1:-1:-1;;;;;10294:16:0;;10286:25;;;;;;-1:-1:-1;;;;;10342:15:0;;;;;;;:9;:15;;;;;;;;;;:21;;;10324:39;;10390:13;;;;;;;;;;;;:19;;10374:35;;10425:25;;;;;;;10390:13;;10425:25;;;;;;;;;;;10206:252;;;:::o;10810:259::-;-1:-1:-1;;;;;10885:21:0;;10877:30;;;;;;10935:12;;;:18;;10920:33;;-1:-1:-1;;;;;10985:18:0;;-1:-1:-1;10985:18:0;;;-1:-1:-1;10985:18:0;;;;;;;;;;:24;;10964:45;;11025:36;;;;;;;;;;;;;;;;;;10810:259;;:::o;11303:::-;-1:-1:-1;;;;;11378:21:0;;11370:30;;;;;;11428:12;;;:18;;;11413:33;;-1:-1:-1;;;;;11478:18:0;;-1:-1:-1;11478:18:0;;;-1:-1:-1;11478:18:0;;;;;;;;;;:24;;;11457:45;;11518:36;;;;;;;-1:-1:-1;;11478:18:0;11518:36;;;;;;;;;;;11303:259;;:::o;12488:177::-;12559:21;12565:7;12574:5;12559;:21::i;:::-;-1:-1:-1;;;;;12621:17:0;;;;;;:8;:17;;;;;;;;12609:10;12621:29;;;;;;;;;12591:66;;12600:7;;12621:35;;;12591:8;:66::i;4011:187::-;-1:-1:-1;;;;;4085:22:0;;4077:31;;;;;;4145:6;;;4124:38;;-1:-1:-1;;;;;4124:38:0;;;;4145:6;;;4124:38;;;4173:6;:17;;-1:-1:-1;;;;;;4173:17:0;-1:-1:-1;;;;;4173:17:0;;;;;;;;;;4011:187::o
Swarm Source
bzzr://40a28b8f2744d2972ffaf4cb45c878f6e62793eee719e009e47feca2b8609079
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.