ERC-20
Overview
Max Total Supply
2,100,000,000 POLA
Holders
1,178
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.71115456612490963 POLAValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PolarChainToken
Compiler Version
v0.5.0+commit.1d4f565a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-10-15 */ pragma solidity 0.5.0; /** * @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. * * NOTE: This is a feature of the next version of OpenZeppelin Contracts. * @dev Get it via `npm install @openzeppelin/contracts@next`. */ 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. * NOTE: This is a feature of the next version of OpenZeppelin Contracts. * @dev Get it via `npm install @openzeppelin/contracts@next`. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 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. * * NOTE: This is a feature of the next version of OpenZeppelin Contracts. * @dev Get it via `npm install @openzeppelin/contracts@next`. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ 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); } /** * @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 */ contract PolarChainToken is IERC20{ using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowed; mapping (address => bool) private _blacklist; string public name = "Polar Chain"; string public symbol = "POLA"; uint public decimals = 18; uint private _totalSupply = 2100000000*10**18; address public owner; constructor (address _owner) public{ owner = _owner; _balances[_owner] = _totalSupply; } modifier onlyOwner() { require(msg.sender == owner); _; } function addBlacklist(address account) onlyOwner() public{ _blacklist[account] = true; } function removeBlacklist(address account) onlyOwner() public{ _blacklist[account] = false; } 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) { require(value <= _balances[msg.sender]); require(to != address(0)); require(_blacklist[msg.sender] != true && _blacklist[to] != true); _balances[msg.sender] = _balances[msg.sender].sub(value); _balances[to] = _balances[to].add(value); emit Transfer(msg.sender, to, value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * @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)); require(_blacklist[msg.sender] != true && _blacklist[spender] != true); require(value == 0 || _allowed[msg.sender][spender] == 0); _allowed[msg.sender][spender] = value; emit Approval(msg.sender, spender, value); return true; } /** * @dev Transfer tokens from one address to another * @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) { require(value <= _balances[from]); require(value <= _allowed[from][msg.sender]); require(to != address(0)); require(_blacklist[to] != true && _blacklist[from] != true); _balances[from] = _balances[from].sub(value); _balances[to] = _balances[to].add(value); _allowed[from][msg.sender] = _allowed[from][msg.sender].sub(value); emit Transfer(from, to, value); return true; } /** * @dev Increase the amount of tokens that an owner allowed to a spender. * @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)); require(_blacklist[msg.sender] != true && _blacklist[spender] != true); _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. * @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)); require(_blacklist[msg.sender] != true && _blacklist[spender] != true); _allowed[msg.sender][spender] = ( _allowed[msg.sender][spender].sub(subtractedValue)); emit Approval(msg.sender, spender, _allowed[msg.sender][spender]); 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":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"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":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":"account","type":"address"}],"name":"addBlacklist","outputs":[],"payable":false,"stateMutability":"nonpayable","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":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":"account","type":"address"}],"name":"removeBlacklist","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_owner","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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
60c0604052600b60808190527f506f6c617220436861696e00000000000000000000000000000000000000000060a090815261003e91600391906100fb565b506040805180820190915260048082527f504f4c4100000000000000000000000000000000000000000000000000000000602090920191825261008191816100fb565b5060126005556b06c9144c1c690d4cb40000006006553480156100a357600080fd5b50604051602080610e82833981018060405260208110156100c357600080fd5b505160078054600160a060020a031916600160a060020a03909216918217905560065460009182526020829052604090912055610196565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061013c57805160ff1916838001178555610169565b82800160010185558215610169579182015b8281111561016957825182559160200191906001019061014e565b50610175929150610179565b5090565b61019391905b80821115610175576000815560010161017f565b90565b610cdd806101a56000396000f3fe6080604052600436106100cf5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100d4578063095ea7b31461015e57806318160ddd146101ab57806323b872dd146101d2578063313ce56714610215578063395093511461022a57806370a08231146102635780638da5cb5b1461029657806395d89b41146102c75780639cfe42da146102dc578063a457c2d714610311578063a9059cbb1461034a578063dd62ed3e14610383578063eb91e651146103be575b600080fd5b3480156100e057600080fd5b506100e96103f1565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561012357818101518382015260200161010b565b50505050905090810190601f1680156101505780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561016a57600080fd5b506101976004803603604081101561018157600080fd5b50600160a060020a03813516906020013561047f565b604080519115158252519081900360200190f35b3480156101b757600080fd5b506101c0610584565b60408051918252519081900360200190f35b3480156101de57600080fd5b50610197600480360360608110156101f557600080fd5b50600160a060020a0381358116916020810135909116906040013561058a565b34801561022157600080fd5b506101c0610756565b34801561023657600080fd5b506101976004803603604081101561024d57600080fd5b50600160a060020a03813516906020013561075c565b34801561026f57600080fd5b506101c06004803603602081101561028657600080fd5b5035600160a060020a031661085a565b3480156102a257600080fd5b506102ab610875565b60408051600160a060020a039092168252519081900360200190f35b3480156102d357600080fd5b506100e9610884565b3480156102e857600080fd5b5061030f600480360360208110156102ff57600080fd5b5035600160a060020a03166108df565b005b34801561031d57600080fd5b506101976004803603604081101561033457600080fd5b50600160a060020a03813516906020013561091a565b34801561035657600080fd5b506101976004803603604081101561036d57600080fd5b50600160a060020a0381351690602001356109b3565b34801561038f57600080fd5b506101c0600480360360408110156103a657600080fd5b50600160a060020a0381358116916020013516610ae0565b3480156103ca57600080fd5b5061030f600480360360208110156103e157600080fd5b5035600160a060020a0316610b0b565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104775780601f1061044c57610100808354040283529160200191610477565b820191906000526020600020905b81548152906001019060200180831161045a57829003601f168201915b505050505081565b6000600160a060020a038316151561049657600080fd5b3360009081526002602052604090205460ff1615156001148015906104d95750600160a060020a03831660009081526002602052604090205460ff161515600114155b15156104e457600080fd5b8115806105125750336000908152600160209081526040808320600160a060020a0387168452909152902054155b151561051d57600080fd5b336000818152600160209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60065490565b600160a060020a0383166000908152602081905260408120548211156105af57600080fd5b600160a060020a03841660009081526001602090815260408083203384529091529020548211156105df57600080fd5b600160a060020a03831615156105f457600080fd5b600160a060020a03831660009081526002602052604090205460ff1615156001148015906106405750600160a060020a03841660009081526002602052604090205460ff161515600114155b151561064b57600080fd5b600160a060020a038416600090815260208190526040902054610674908363ffffffff610b4316565b600160a060020a0380861660009081526020819052604080822093909355908516815220546106a9908363ffffffff610b8c16565b600160a060020a038085166000908152602081815260408083209490945591871681526001825282812033825290915220546106eb908363ffffffff610b4316565b600160a060020a03808616600081815260016020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60055481565b6000600160a060020a038316151561077357600080fd5b3360009081526002602052604090205460ff1615156001148015906107b65750600160a060020a03831660009081526002602052604090205460ff161515600114155b15156107c157600080fd5b336000908152600160209081526040808320600160a060020a03871684529091529020546107f5908363ffffffff610b8c16565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a031660009081526020819052604090205490565b600754600160a060020a031681565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104775780601f1061044c57610100808354040283529160200191610477565b600754600160a060020a031633146108f657600080fd5b600160a060020a03166000908152600260205260409020805460ff19166001179055565b6000600160a060020a038316151561093157600080fd5b3360009081526002602052604090205460ff1615156001148015906109745750600160a060020a03831660009081526002602052604090205460ff161515600114155b151561097f57600080fd5b336000908152600160209081526040808320600160a060020a03871684529091529020546107f5908363ffffffff610b4316565b336000908152602081905260408120548211156109cf57600080fd5b600160a060020a03831615156109e457600080fd5b3360009081526002602052604090205460ff161515600114801590610a275750600160a060020a03831660009081526002602052604090205460ff161515600114155b1515610a3257600080fd5b33600090815260208190526040902054610a52908363ffffffff610b4316565b3360009081526020819052604080822092909255600160a060020a03851681522054610a84908363ffffffff610b8c16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600754600160a060020a03163314610b2257600080fd5b600160a060020a03166000908152600260205260409020805460ff19169055565b6000610b8583836040805190810160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c00565b9392505050565b600082820183811015610b8557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008184841115610ca9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610c6e578181015183820152602001610c56565b50505050905090810190601f168015610c9b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fea165627a7a7230582005ff082e0f97e7b6a505612e15e689b735d44b8c01ac4ed56b7db30b63ba3ed700290000000000000000000000009d958c84cb74a72f8fade4ba45bd4b6fd7b7f0bb
Deployed Bytecode
0x6080604052600436106100cf5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100d4578063095ea7b31461015e57806318160ddd146101ab57806323b872dd146101d2578063313ce56714610215578063395093511461022a57806370a08231146102635780638da5cb5b1461029657806395d89b41146102c75780639cfe42da146102dc578063a457c2d714610311578063a9059cbb1461034a578063dd62ed3e14610383578063eb91e651146103be575b600080fd5b3480156100e057600080fd5b506100e96103f1565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561012357818101518382015260200161010b565b50505050905090810190601f1680156101505780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561016a57600080fd5b506101976004803603604081101561018157600080fd5b50600160a060020a03813516906020013561047f565b604080519115158252519081900360200190f35b3480156101b757600080fd5b506101c0610584565b60408051918252519081900360200190f35b3480156101de57600080fd5b50610197600480360360608110156101f557600080fd5b50600160a060020a0381358116916020810135909116906040013561058a565b34801561022157600080fd5b506101c0610756565b34801561023657600080fd5b506101976004803603604081101561024d57600080fd5b50600160a060020a03813516906020013561075c565b34801561026f57600080fd5b506101c06004803603602081101561028657600080fd5b5035600160a060020a031661085a565b3480156102a257600080fd5b506102ab610875565b60408051600160a060020a039092168252519081900360200190f35b3480156102d357600080fd5b506100e9610884565b3480156102e857600080fd5b5061030f600480360360208110156102ff57600080fd5b5035600160a060020a03166108df565b005b34801561031d57600080fd5b506101976004803603604081101561033457600080fd5b50600160a060020a03813516906020013561091a565b34801561035657600080fd5b506101976004803603604081101561036d57600080fd5b50600160a060020a0381351690602001356109b3565b34801561038f57600080fd5b506101c0600480360360408110156103a657600080fd5b50600160a060020a0381358116916020013516610ae0565b3480156103ca57600080fd5b5061030f600480360360208110156103e157600080fd5b5035600160a060020a0316610b0b565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104775780601f1061044c57610100808354040283529160200191610477565b820191906000526020600020905b81548152906001019060200180831161045a57829003601f168201915b505050505081565b6000600160a060020a038316151561049657600080fd5b3360009081526002602052604090205460ff1615156001148015906104d95750600160a060020a03831660009081526002602052604090205460ff161515600114155b15156104e457600080fd5b8115806105125750336000908152600160209081526040808320600160a060020a0387168452909152902054155b151561051d57600080fd5b336000818152600160209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60065490565b600160a060020a0383166000908152602081905260408120548211156105af57600080fd5b600160a060020a03841660009081526001602090815260408083203384529091529020548211156105df57600080fd5b600160a060020a03831615156105f457600080fd5b600160a060020a03831660009081526002602052604090205460ff1615156001148015906106405750600160a060020a03841660009081526002602052604090205460ff161515600114155b151561064b57600080fd5b600160a060020a038416600090815260208190526040902054610674908363ffffffff610b4316565b600160a060020a0380861660009081526020819052604080822093909355908516815220546106a9908363ffffffff610b8c16565b600160a060020a038085166000908152602081815260408083209490945591871681526001825282812033825290915220546106eb908363ffffffff610b4316565b600160a060020a03808616600081815260016020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60055481565b6000600160a060020a038316151561077357600080fd5b3360009081526002602052604090205460ff1615156001148015906107b65750600160a060020a03831660009081526002602052604090205460ff161515600114155b15156107c157600080fd5b336000908152600160209081526040808320600160a060020a03871684529091529020546107f5908363ffffffff610b8c16565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a031660009081526020819052604090205490565b600754600160a060020a031681565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104775780601f1061044c57610100808354040283529160200191610477565b600754600160a060020a031633146108f657600080fd5b600160a060020a03166000908152600260205260409020805460ff19166001179055565b6000600160a060020a038316151561093157600080fd5b3360009081526002602052604090205460ff1615156001148015906109745750600160a060020a03831660009081526002602052604090205460ff161515600114155b151561097f57600080fd5b336000908152600160209081526040808320600160a060020a03871684529091529020546107f5908363ffffffff610b4316565b336000908152602081905260408120548211156109cf57600080fd5b600160a060020a03831615156109e457600080fd5b3360009081526002602052604090205460ff161515600114801590610a275750600160a060020a03831660009081526002602052604090205460ff161515600114155b1515610a3257600080fd5b33600090815260208190526040902054610a52908363ffffffff610b4316565b3360009081526020819052604080822092909255600160a060020a03851681522054610a84908363ffffffff610b8c16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600754600160a060020a03163314610b2257600080fd5b600160a060020a03166000908152600260205260409020805460ff19169055565b6000610b8583836040805190810160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c00565b9392505050565b600082820183811015610b8557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008184841115610ca9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610c6e578181015183820152602001610c56565b50505050905090810190601f168015610c9b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fea165627a7a7230582005ff082e0f97e7b6a505612e15e689b735d44b8c01ac4ed56b7db30b63ba3ed70029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000009d958c84cb74a72f8fade4ba45bd4b6fd7b7f0bb
-----Decoded View---------------
Arg [0] : _owner (address): 0x9d958c84Cb74A72F8faDE4BA45bD4b6FD7B7f0bB
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000009d958c84cb74a72f8fade4ba45bd4b6fd7b7f0bb
Deployed Bytecode Sourcemap
8872:5021:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9123:34;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9123:34: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;9123:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11379:367;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11379:367:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11379:367:0;;;;;;;;;;;;;;;;;;;;;;;;;;;9716:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9716:85:0;;;;;;;;;;;;;;;;;;;;12026:541;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12026:541:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12026:541:0;;;;;;;;;;;;;;;;;;9196:25;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9196:25:0;;;;12800:420;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12800:420:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12800:420:0;;;;;;;;;10003:100;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10003:100:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10003:100:0;-1:-1:-1;;;;;10003:100:0;;;9276:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9276:20:0;;;;;;;;-1:-1:-1;;;;;9276:20:0;;;;;;;;;;;;;;9162:29;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9162:29:0;;;;9500:98;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9500:98:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9500:98:0;-1:-1:-1;;;;;9500:98:0;;;;;13458:430;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13458:430:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13458:430:0;;;;;;;;;10746:396;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10746:396:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10746:396:0;;;;;;;;;10428:159;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10428:159:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10428:159:0;;;;;;;;;;;9606:102;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9606:102:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9606:102:0;-1:-1:-1;;;;;9606:102:0;;;9123:34;;;;;;;;;;;;;;;-1:-1:-1;;9123:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;11379:367::-;11444:4;-1:-1:-1;;;;;11465:21:0;;;;11457:30;;;;;;11513:10;11502:22;;;;:10;:22;;;;;;;;:30;;:22;:30;;;;:61;;-1:-1:-1;;;;;;11536:19:0;;;;;;:10;:19;;;;;;;;:27;;:19;:27;;11502:61;11494:70;;;;;;;;11579:10;;;:48;;-1:-1:-1;11602:10:0;11593:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;11593:29:0;;;;;;;;;;:34;11579:48;11571:57;;;;;;;;11646:10;11637:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;11637:29:0;;;;;;;;;;;;:37;;;11686:36;;;;;;;11637:29;;11646:10;11686:36;;;;;;;;;;;-1:-1:-1;11736:4:0;11379:367;;;;:::o;9716:85::-;9783:12;;9716:85;:::o;12026:541::-;-1:-1:-1;;;;;12168:15:0;;12135:4;12168:15;;;;;;;;;;;12159:24;;;12151:33;;;;;;-1:-1:-1;;;;;12208:14:0;;;;;;:8;:14;;;;;;;;12223:10;12208:26;;;;;;;;12199:35;;;12191:44;;;;;;-1:-1:-1;;;;;12250:16:0;;;;12242:25;;;;;;-1:-1:-1;;;;;12282:14:0;;;;;;:10;:14;;;;;;;;:22;;:14;:22;;;;:50;;-1:-1:-1;;;;;;12308:16:0;;;;;;:10;:16;;;;;;;;:24;;:16;:24;;12282:50;12274:59;;;;;;;;-1:-1:-1;;;;;12360:15:0;;:9;:15;;;;;;;;;;;:26;;12380:5;12360:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;12342:15:0;;;:9;:15;;;;;;;;;;;:44;;;;12409:13;;;;;;;:24;;12427:5;12409:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;12393:13:0;;;:9;:13;;;;;;;;;;;:40;;;;12469:14;;;;;:8;:14;;;;;12484:10;12469:26;;;;;;;:37;;12500:5;12469:37;:30;:37;:::i;:::-;-1:-1:-1;;;;;12440:14:0;;;;;;;:8;:14;;;;;;;;12455:10;12440:26;;;;;;;;:66;;;;12518:25;;;;;;;;;;;12440:14;;12518:25;;;;;;;;;;;-1:-1:-1;12557:4:0;12026:541;;;;;:::o;9196:25::-;;;;:::o;12800:420::-;12905:4;-1:-1:-1;;;;;12929:21:0;;;;12921:30;;;;;;12977:10;12966:22;;;;:10;:22;;;;;;;;:30;;:22;:30;;;;:61;;-1:-1:-1;;;;;;13000:19:0;;;;;;:10;:19;;;;;;;;:27;;:19;:27;;12966:61;12958:70;;;;;;;;13087:10;13078:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;13078:29:0;;;;;;;;;;:45;;13112:10;13078:45;:33;:45;:::i;:::-;13046:10;13037:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;13037:29:0;;;;;;;;;;;;:87;;;13136:60;;;;;;13037:29;;13136:60;;;;;;;;;;;-1:-1:-1;13210:4:0;12800:420;;;;:::o;10003:100::-;-1:-1:-1;;;;;10081:16:0;10058:7;10081:16;;;;;;;;;;;;10003:100::o;9276:20::-;;;-1:-1:-1;;;;;9276:20:0;;:::o;9162:29::-;;;;;;;;;;;;;;;-1:-1:-1;;9162:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9500:98;9470:5;;-1:-1:-1;;;;;9470:5:0;9456:10;:19;9448:28;;;;;;-1:-1:-1;;;;;9566:19:0;;;;;:10;:19;;;;;:26;;-1:-1:-1;;9566:26:0;9588:4;9566:26;;;9500:98::o;13458:430::-;13568:4;-1:-1:-1;;;;;13592:21:0;;;;13584:30;;;;;;13640:10;13629:22;;;;:10;:22;;;;;;;;:30;;:22;:30;;;;:61;;-1:-1:-1;;;;;;13663:19:0;;;;;;:10;:19;;;;;;;;:27;;:19;:27;;13629:61;13621:70;;;;;;;;13750:10;13741:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;13741:29:0;;;;;;;;;;:50;;13775:15;13741:50;:33;:50;:::i;10746:396::-;10847:10;10807:4;10837:21;;;;;;;;;;;10828:30;;;10820:39;;;;;;-1:-1:-1;;;;;10874:16:0;;;;10866:25;;;;;;10917:10;10906:22;;;;:10;:22;;;;;;;;:30;;:22;:30;;;;:56;;-1:-1:-1;;;;;;10940:14:0;;;;;;:10;:14;;;;;;;;:22;;:14;:22;;10906:56;10898:65;;;;;;;;11006:10;10996:9;:21;;;;;;;;;;;:32;;11022:5;10996:32;:25;:32;:::i;:::-;10982:10;10972:9;:21;;;;;;;;;;;:56;;;;-1:-1:-1;;;;;11051:13:0;;;;;;:24;;11069:5;11051:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;11035:13:0;;:9;:13;;;;;;;;;;;;:40;;;;11087:31;;;;;;;11035:13;;11096:10;;11087:31;;;;;;;;;;-1:-1:-1;11132:4:0;10746:396;;;;:::o;10428:159::-;-1:-1:-1;;;;;10557:15:0;;;10531:7;10557:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;10428:159::o;9606:102::-;9470:5;;-1:-1:-1;;;;;9470:5:0;9456:10;:19;9448:28;;;;;;-1:-1:-1;;;;;9675:19:0;9697:5;9675:19;;;:10;:19;;;;;:27;;-1:-1:-1;;9675:27:0;;;9606:102::o;1314:136::-;1372:7;1399:43;1403:1;1406;1399:43;;;;;;;;;;;;;;;;;;:3;:43::i;:::-;1392:50;1314:136;-1:-1:-1;;;1314:136:0:o;858:181::-;916:7;948:5;;;972:6;;;;964:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1900:192;1986:7;2022:12;2014:6;;;;2006: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;2006:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2058:5:0;;;1900:192::o
Swarm Source
bzzr://05ff082e0f97e7b6a505612e15e689b735d44b8c01ac4ed56b7db30b63ba3ed7
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.