Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
500,000,000 FNX
Holders
1,712
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
7,404.308460624744501498 FNXValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FnxToken
Compiler Version
v0.4.24+commit.e67f0147
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-07-27 */ pragma solidity 0.4.24; /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/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); } /** * @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; } } /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md * 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 { 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 An 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 for a specified address * @param to The address to transfer to. * @param value The amount to be transferred. */ function transfer(address to, uint256 value) public returns (bool) { _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) { require(spender != address(0)); _allowed[msg.sender][spender] = value; emit Approval(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) { _allowed[from][msg.sender] = _allowed[from][msg.sender].sub(value); _transfer(from, to, value); emit Approval(from, msg.sender, _allowed[from][msg.sender]); return true; } /** * @dev Increase the amount of tokens that an owner allowed to a spender. * approve should be called when allowed_[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * 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) { require(spender != address(0)); _allowed[msg.sender][spender] = _allowed[msg.sender][spender].add(addedValue); emit Approval(msg.sender, spender, _allowed[msg.sender][spender]); return true; } /** * @dev Decrease the amount of tokens that an owner allowed to a spender. * approve should be called when allowed_[_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) { require(spender != address(0)); _allowed[msg.sender][spender] = _allowed[msg.sender][spender].sub(subtractedValue); emit Approval(msg.sender, spender, _allowed[msg.sender][spender]); 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].sub(value); _balances[to] = _balances[to].add(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.add(value); _balances[account] = _balances[account].add(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.sub(value); _balances[account] = _balances[account].sub(value); emit Transfer(account, address(0), 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 { _allowed[account][msg.sender] = _allowed[account][msg.sender].sub(value); _burn(account, value); emit Approval(account, msg.sender, _allowed[account][msg.sender]); } } /// @dev `Owned` is a base level contract that assigns an `owner` that can be /// later changed contract Owned { /// @dev `owner` is the only address that can call a function with this /// modifier modifier onlyOwner() { require(msg.sender == owner); _; } address public owner; /// @notice The Constructor assigns the message sender to be `owner` constructor () public { owner = msg.sender; } address public newOwner; /// @notice `owner` can step down and assign some other address to this role /// @param _newOwner The address of the new owner. 0x0 can be used to create /// an unowned neutral vault, however that cannot be undone function changeOwner(address _newOwner) public onlyOwner { newOwner = _newOwner; } function acceptOwnership() public { if (msg.sender == newOwner) { owner = newOwner; } } } /** * @dev Example of the ERC20 Token. */ contract FnxToken is Owned, ERC20{ using SafeMath for uint; string private _name = "FinNexus"; string private _symbol = "FNX"; uint8 private _decimals = 18; /// FinNexus total tokens supply uint public MAX_TOTAL_TOKEN_AMOUNT = 500000000 ether; modifier maxWanTokenAmountNotReached (uint amount){ assert(totalSupply().add(amount) <= MAX_TOTAL_TOKEN_AMOUNT); _; } /** * @return the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @return the symbol of the token. */ function symbol() public view returns (string memory) { return _symbol; } /** * @return the number of decimals of the token. */ function decimals() public view returns (uint8) { return _decimals; } /** * EXTERNAL FUNCTION * * @dev change token name * @param name token name * @param symbol token symbol * */ function changeTokenName(string memory name, string memory symbol) public onlyOwner { //check parameter in ico minter contract _name = name; _symbol = symbol; } /** @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) public onlyOwner maxWanTokenAmountNotReached(amount) { _mint(account,amount); } }
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":"uint8"}],"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":"account","type":"address"},{"name":"amount","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"name","type":"string"},{"name":"symbol","type":"string"}],"name":"changeTokenName","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":"acceptOwnership","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":"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":"_newOwner","type":"address"}],"name":"changeOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"MAX_TOTAL_TOKEN_AMOUNT","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":true,"inputs":[],"name":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","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"},{"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
60c0604052600860808190527f46696e4e6578757300000000000000000000000000000000000000000000000060a090815261003e91600591906100b8565b506040805180820190915260038082527f464e5800000000000000000000000000000000000000000000000000000000006020909201918252610083916006916100b8565b506007805460ff191660121790556b019d971e4fe8401e7400000060085560008054600160a060020a03191633179055610153565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106100f957805160ff1916838001178555610126565b82800160010185558215610126579182015b8281111561012657825182559160200191906001019061010b565b50610132929150610136565b5090565b61015091905b80821115610132576000815560010161013c565b90565b610ce1806101626000396000f3006080604052600436106100fb5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610100578063095ea7b31461018a57806318160ddd146101c257806323b872dd146101e9578063313ce56714610213578063395093511461023e57806340c10f1914610262578063453920cb1461028857806370a082311461031f57806379ba5097146103405780638da5cb5b1461035557806395d89b4114610386578063a457c2d71461039b578063a6f9dae1146103bf578063a89c5be0146103e0578063a9059cbb146103f5578063d4ee1d9014610419578063dd62ed3e1461042e575b600080fd5b34801561010c57600080fd5b50610115610455565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014f578181015183820152602001610137565b50505050905090810190601f16801561017c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561019657600080fd5b506101ae600160a060020a03600435166024356104ec565b604080519115158252519081900360200190f35b3480156101ce57600080fd5b506101d761056a565b60408051918252519081900360200190f35b3480156101f557600080fd5b506101ae600160a060020a0360043581169060243516604435610570565b34801561021f57600080fd5b50610228610639565b6040805160ff9092168252519081900360200190f35b34801561024a57600080fd5b506101ae600160a060020a0360043516602435610642565b34801561026e57600080fd5b50610286600160a060020a03600435166024356106f2565b005b34801561029457600080fd5b506040805160206004803580820135601f810184900484028501840190955284845261028694369492936024939284019190819084018382808284375050604080516020601f89358b018035918201839004830284018301909452808352979a99988101979196509182019450925082915084018382808284375094975061073c9650505050505050565b34801561032b57600080fd5b506101d7600160a060020a036004351661077a565b34801561034c57600080fd5b50610286610795565b34801561036157600080fd5b5061036a6107da565b60408051600160a060020a039092168252519081900360200190f35b34801561039257600080fd5b506101156107e9565b3480156103a757600080fd5b506101ae600160a060020a036004351660243561084a565b3480156103cb57600080fd5b50610286600160a060020a0360043516610895565b3480156103ec57600080fd5b506101d76108db565b34801561040157600080fd5b506101ae600160a060020a03600435166024356108e1565b34801561042557600080fd5b5061036a6108f7565b34801561043a57600080fd5b506101d7600160a060020a0360043581169060243516610906565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104e15780601f106104b6576101008083540402835291602001916104e1565b820191906000526020600020905b8154815290600101906020018083116104c457829003601f168201915b505050505090505b90565b6000600160a060020a038316151561050357600080fd5b336000818152600360209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60045490565b600160a060020a03831660009081526003602090815260408083203384529091528120546105a4908363ffffffff61093116565b600160a060020a03851660009081526003602090815260408083203384529091529020556105d384848461097a565b600160a060020a0384166000818152600360209081526040808320338085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60075460ff1690565b6000600160a060020a038316151561065957600080fd5b336000908152600360209081526040808320600160a060020a038716845290915290205461068d908363ffffffff610a4916565b336000818152600360209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600054600160a060020a0316331461070957600080fd5b806008546107258261071961056a565b9063ffffffff610a4916565b111561072d57fe5b6107378383610abd565b505050565b600054600160a060020a0316331461075357600080fd5b8151610766906005906020850190610c1d565b508051610737906006906020840190610c1d565b600160a060020a031660009081526002602052604090205490565b600154600160a060020a03163314156107d8576001546000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a039092169190911790555b565b600054600160a060020a031681565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104e15780601f106104b6576101008083540402835291602001916104e1565b6000600160a060020a038316151561086157600080fd5b336000908152600360209081526040808320600160a060020a038716845290915290205461068d908363ffffffff61093116565b600054600160a060020a031633146108ac57600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60085481565b60006108ee33848461097a565b50600192915050565b600154600160a060020a031681565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b600061097383836040805190810160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610b69565b9392505050565b600160a060020a038216151561098f57600080fd5b600160a060020a0383166000908152600260205260409020546109b8908263ffffffff61093116565b600160a060020a0380851660009081526002602052604080822093909355908416815220546109ed908263ffffffff610a4916565b600160a060020a0380841660008181526002602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008282018381101561097357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600160a060020a0382161515610ad257600080fd5b600454610ae5908263ffffffff610a4916565b600455600160a060020a038216600090815260026020526040902054610b11908263ffffffff610a4916565b600160a060020a03831660008181526002602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000808285851115610c13576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610bd8578181015183820152602001610bc0565b50505050905090810190601f168015610c055780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5050509103919050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10610c5e57805160ff1916838001178555610c8b565b82800160010185558215610c8b579182015b82811115610c8b578251825591602001919060010190610c70565b50610c97929150610c9b565b5090565b6104e991905b80821115610c975760008155600101610ca15600a165627a7a723058207f35c4001020c3f0e9e4bc54f854bc1b65280f348b632b54d331f13c91e1c2db0029
Deployed Bytecode
0x6080604052600436106100fb5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610100578063095ea7b31461018a57806318160ddd146101c257806323b872dd146101e9578063313ce56714610213578063395093511461023e57806340c10f1914610262578063453920cb1461028857806370a082311461031f57806379ba5097146103405780638da5cb5b1461035557806395d89b4114610386578063a457c2d71461039b578063a6f9dae1146103bf578063a89c5be0146103e0578063a9059cbb146103f5578063d4ee1d9014610419578063dd62ed3e1461042e575b600080fd5b34801561010c57600080fd5b50610115610455565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014f578181015183820152602001610137565b50505050905090810190601f16801561017c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561019657600080fd5b506101ae600160a060020a03600435166024356104ec565b604080519115158252519081900360200190f35b3480156101ce57600080fd5b506101d761056a565b60408051918252519081900360200190f35b3480156101f557600080fd5b506101ae600160a060020a0360043581169060243516604435610570565b34801561021f57600080fd5b50610228610639565b6040805160ff9092168252519081900360200190f35b34801561024a57600080fd5b506101ae600160a060020a0360043516602435610642565b34801561026e57600080fd5b50610286600160a060020a03600435166024356106f2565b005b34801561029457600080fd5b506040805160206004803580820135601f810184900484028501840190955284845261028694369492936024939284019190819084018382808284375050604080516020601f89358b018035918201839004830284018301909452808352979a99988101979196509182019450925082915084018382808284375094975061073c9650505050505050565b34801561032b57600080fd5b506101d7600160a060020a036004351661077a565b34801561034c57600080fd5b50610286610795565b34801561036157600080fd5b5061036a6107da565b60408051600160a060020a039092168252519081900360200190f35b34801561039257600080fd5b506101156107e9565b3480156103a757600080fd5b506101ae600160a060020a036004351660243561084a565b3480156103cb57600080fd5b50610286600160a060020a0360043516610895565b3480156103ec57600080fd5b506101d76108db565b34801561040157600080fd5b506101ae600160a060020a03600435166024356108e1565b34801561042557600080fd5b5061036a6108f7565b34801561043a57600080fd5b506101d7600160a060020a0360043581169060243516610906565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104e15780601f106104b6576101008083540402835291602001916104e1565b820191906000526020600020905b8154815290600101906020018083116104c457829003601f168201915b505050505090505b90565b6000600160a060020a038316151561050357600080fd5b336000818152600360209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60045490565b600160a060020a03831660009081526003602090815260408083203384529091528120546105a4908363ffffffff61093116565b600160a060020a03851660009081526003602090815260408083203384529091529020556105d384848461097a565b600160a060020a0384166000818152600360209081526040808320338085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60075460ff1690565b6000600160a060020a038316151561065957600080fd5b336000908152600360209081526040808320600160a060020a038716845290915290205461068d908363ffffffff610a4916565b336000818152600360209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600054600160a060020a0316331461070957600080fd5b806008546107258261071961056a565b9063ffffffff610a4916565b111561072d57fe5b6107378383610abd565b505050565b600054600160a060020a0316331461075357600080fd5b8151610766906005906020850190610c1d565b508051610737906006906020840190610c1d565b600160a060020a031660009081526002602052604090205490565b600154600160a060020a03163314156107d8576001546000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a039092169190911790555b565b600054600160a060020a031681565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104e15780601f106104b6576101008083540402835291602001916104e1565b6000600160a060020a038316151561086157600080fd5b336000908152600360209081526040808320600160a060020a038716845290915290205461068d908363ffffffff61093116565b600054600160a060020a031633146108ac57600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60085481565b60006108ee33848461097a565b50600192915050565b600154600160a060020a031681565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b600061097383836040805190810160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610b69565b9392505050565b600160a060020a038216151561098f57600080fd5b600160a060020a0383166000908152600260205260409020546109b8908263ffffffff61093116565b600160a060020a0380851660009081526002602052604080822093909355908416815220546109ed908263ffffffff610a4916565b600160a060020a0380841660008181526002602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008282018381101561097357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600160a060020a0382161515610ad257600080fd5b600454610ae5908263ffffffff610a4916565b600455600160a060020a038216600090815260026020526040902054610b11908263ffffffff610a4916565b600160a060020a03831660008181526002602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000808285851115610c13576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610bd8578181015183820152602001610bc0565b50505050905090810190601f168015610c055780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5050509103919050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10610c5e57805160ff1916838001178555610c8b565b82800160010185558215610c8b579182015b82811115610c8b578251825591602001919060010190610c70565b50610c97929150610c9b565b5090565b6104e991905b80821115610c975760008155600101610ca15600a165627a7a723058207f35c4001020c3f0e9e4bc54f854bc1b65280f348b632b54d331f13c91e1c2db0029
Deployed Bytecode Sourcemap
14815:1727:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15305:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15305:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;15305:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8808:244;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8808:244:0;-1:-1:-1;;;;;8808:244:0;;;;;;;;;;;;;;;;;;;;;;;;;6967:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6967:91:0;;;;;;;;;;;;;;;;;;;;9525:299;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9525:299:0;-1:-1:-1;;;;;9525:299:0;;;;;;;;;;;;15621:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15621:83:0;;;;;;;;;;;;;;;;;;;;;;;10339:323;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10339:323:0;-1:-1:-1;;;;;10339:323:0;;;;;;;16363:172;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;16363:172:0;-1:-1:-1;;;;;16363:172:0;;;;;;;;;15867:215;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;15867:215:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;15867:215:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15867:215:0;;;;-1:-1:-1;15867:215:0;-1:-1:-1;15867:215:0;;-1:-1:-1;15867:215:0;;;;;;;;-1:-1:-1;15867:215:0;;-1:-1:-1;15867:215:0;;-1:-1:-1;;;;;;;15867:215:0;7274:106;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7274:106:0;-1:-1:-1;;;;;7274:106:0;;;;;14638:123;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14638:123:0;;;;14100:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14100:20:0;;;;;;;;-1:-1:-1;;;;;14100:20:0;;;;;;;;;;;;;;15455:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15455:87:0;;;;11182:333;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11182:333:0;-1:-1:-1;;;;;11182:333:0;;;;;;;14532:96;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;14532:96:0;-1:-1:-1;;;;;14532:96:0;;;;;15041:52;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15041:52:0;;;;8021:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8021:140:0;-1:-1:-1;;;;;8021:140:0;;;;;;;14270:23;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14270:23:0;;;;7719:131;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7719:131:0;-1:-1:-1;;;;;7719:131:0;;;;;;;;;;15305:83;15375:5;15368:12;;;;;;;;-1:-1:-1;;15368:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15342:6;;15368:12;;15375:5;;15368:12;;15375:5;15368:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15305:83;;:::o;8808:244::-;8873:4;-1:-1:-1;;;;;8898:21:0;;;;8890:30;;;;;;8942:10;8933:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;8933:29:0;;;;;;;;;;;;:37;;;8986:36;;;;;;;8933:29;;8942:10;8986:36;;;;;;;;;;;-1:-1:-1;9040:4:0;8808:244;;;;:::o;6967:91::-;7038:12;;6967:91;:::o;9525:299::-;-1:-1:-1;;;;;9650:14:0;;9604:4;9650:14;;;:8;:14;;;;;;;;9665:10;9650:26;;;;;;;;:37;;9681:5;9650:37;:30;:37;:::i;:::-;-1:-1:-1;;;;;9621:14:0;;;;;;:8;:14;;;;;;;;9636:10;9621:26;;;;;;;:66;9698:26;9630:4;9714:2;9718:5;9698:9;:26::i;:::-;-1:-1:-1;;;;;9740:54:0;;9767:14;;;;:8;:14;;;;;;;;9755:10;9767:26;;;;;;;;;;;9740:54;;;;;;;9755:10;;9740:54;;;;;;;;;;;;-1:-1:-1;9812:4:0;9525:299;;;;;:::o;15621:83::-;15687:9;;;;15621:83;:::o;10339:323::-;10419:4;-1:-1:-1;;;;;10444:21:0;;;;10436:30;;;;;;10520:10;10511:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;10511:29:0;;;;;;;;;;:45;;10545:10;10511:45;:33;:45;:::i;:::-;10488:10;10479:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;10479:29:0;;;;;;;;;;;;:77;;;10572:60;;;;;;10479:29;;10572:60;;;;;;;;;;;-1:-1:-1;10650:4:0;10339:323;;;;:::o;16363:172::-;14066:5;;-1:-1:-1;;;;;14066:5:0;14052:10;:19;14044:28;;;;;;16482:6;15198:22;;15169:25;15187:6;15169:13;:11;:13::i;:::-;:17;:25;:17;:25;:::i;:::-;:51;;15162:59;;;;16506:21;16512:7;16520:6;16506:5;:21::i;:::-;14083:1;16363:172;;:::o;15867:215::-;14066:5;;-1:-1:-1;;;;;14066:5:0;14052:10;:19;14044:28;;;;;;16035:12;;;;:5;;:12;;;;;:::i;:::-;-1:-1:-1;16058:16:0;;;;:7;;:16;;;;;:::i;7274:106::-;-1:-1:-1;;;;;7356:16:0;7329:7;7356:16;;;:9;:16;;;;;;;7274:106::o;14638:123::-;14701:8;;-1:-1:-1;;;;;14701:8:0;14687:10;:22;14683:71;;;14734:8;;;14726:16;;-1:-1:-1;;14726:16:0;-1:-1:-1;;;;;14734:8:0;;;14726:16;;;;;;14683:71;14638:123::o;14100:20::-;;;-1:-1:-1;;;;;14100:20:0;;:::o;15455:87::-;15527:7;15520:14;;;;;;;;-1:-1:-1;;15520:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15494:6;;15520:14;;15527:7;;15520:14;;15527:7;15520:14;;;;;;;;;;;;;;;;;;;;;;;;11182:333;11267:4;-1:-1:-1;;;;;11292:21:0;;;;11284:30;;;;;;11368:10;11359:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;11359:29:0;;;;;;;;;;:50;;11393:15;11359:50;:33;:50;:::i;14532:96::-;14066:5;;-1:-1:-1;;;;;14066:5:0;14052:10;:19;14044:28;;;;;;14600:8;:20;;-1:-1:-1;;14600:20:0;-1:-1:-1;;;;;14600:20:0;;;;;;;;;;14532:96::o;15041:52::-;;;;:::o;8021:140::-;8082:4;8099:32;8109:10;8121:2;8125:5;8099:9;:32::i;:::-;-1:-1:-1;8149:4:0;8021:140;;;;:::o;14270:23::-;;;-1:-1:-1;;;;;14270:23:0;;:::o;7719:131::-;-1:-1:-1;;;;;7818:15:0;;;7791:7;7818:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;7719:131::o;2092:136::-;2150:7;2177:43;2181:1;2184;2177:43;;;;;;;;;;;;;;;;;;:3;:43::i;:::-;2170:50;2092:136;-1:-1:-1;;;2092:136:0:o;11737:262::-;-1:-1:-1;;;;;11825:16:0;;;;11817:25;;;;;;-1:-1:-1;;;;;11873:15:0;;;;;;:9;:15;;;;;;:26;;11893:5;11873:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;11855:15:0;;;;;;;:9;:15;;;;;;:44;;;;11926:13;;;;;;;:24;;11944:5;11926:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;11910:13:0;;;;;;;:9;:13;;;;;;;;;:40;;;;11966:25;;;;;;;11910:13;;11966:25;;;;;;;;;;;;;11737:262;;;:::o;1628:181::-;1686:7;1718:5;;;1742:6;;;;1734:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12351:269;-1:-1:-1;;;;;12426:21:0;;;;12418:30;;;;;;12476:12;;:23;;12493:5;12476:23;:16;:23;:::i;:::-;12461:12;:38;-1:-1:-1;;;;;12531:18:0;;;;;;:9;:18;;;;;;:29;;12554:5;12531:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;12510:18:0;;;;;;:9;:18;;;;;;;;:50;;;;12576:36;;;;;;;12510:18;;;;12576:36;;;;;;;;;;12351:269;;:::o;2531:192::-;2617:7;;2653:12;2645:6;;;;2637:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;2637:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2689:5:0;;;2531:192;-1:-1:-1;2531:192:0:o;14815:1727::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14815:1727:0;;;-1:-1:-1;14815:1727:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;
Swarm Source
bzzr://7f35c4001020c3f0e9e4bc54f854bc1b65280f348b632b54d331f13c91e1c2db
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.