ERC-20
Overview
Max Total Supply
1,000,000,000,000,000 EDICE 🎲
Holders
10
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
24,350,445,442,069.270312390965550928 EDICE 🎲Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
EthereumDiceGame
Compiler Version
v0.6.0+commit.26b70077
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-06-07 */ //SPDX-License-Identifier: Unlicense // ---------------------------------------------------------------------------- // 'EthereumDiceGame' token contract // // Symbol : EDICE // Name : Ethereum Dice Game // Total supply: 100000000000000 // Decimals : 18 // // TOTAL SUPPLY 1,000,000,000,000,000 // 50% Burned // ---------------------------------------------------------------------------- pragma solidity 0.6.0; library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; return c; } function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } contract Ownable { address public _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor () public { _owner = msg.sender; emit OwnershipTransferred(address(0), msg.sender); } function owner() public view returns (address) { return _owner; } modifier onlyOwner() { require(_owner == msg.sender, "Ownable: caller is not the owner"); _; } function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } contract EthereumDiceGame is Ownable { using SafeMath for uint256; event LogRebase(uint256 indexed epoch, uint256 totalSupply); modifier validRecipient(address to) { require(to != address(this)); _; } event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); string public constant name = "Ethereum Dice Game"; string public constant symbol = "EDICE 🎲"; uint256 public constant decimals = 18; uint256 private constant DECIMALS = 18; uint256 private constant MAX_UINT256 = ~uint256(0); uint256 private constant INITIAL_FRAGMENTS_SUPPLY = 1000000000000000 * 10**DECIMALS; uint256 private constant TOTAL_GONS = MAX_UINT256 - (MAX_UINT256 % INITIAL_FRAGMENTS_SUPPLY); uint256 private constant MAX_SUPPLY = ~uint128(0); uint256 private _totalSupply; uint256 private _gonsPerFragment; mapping(address => uint256) private _gonBalances; mapping (address => mapping (address => uint256)) private _allowedFragments; constructor() public override { _owner = msg.sender; _totalSupply = INITIAL_FRAGMENTS_SUPPLY; _gonBalances[_owner] = TOTAL_GONS; _gonsPerFragment = TOTAL_GONS.div(_totalSupply); emit Transfer(address(0x0), _owner, _totalSupply); } function totalSupply() public view returns (uint256) { return _totalSupply; } function balanceOf(address who) public view returns (uint256) { return _gonBalances[who].div(_gonsPerFragment); } function transfer(address to, uint256 value) public validRecipient(to) returns (bool) { uint256 gonValue = value.mul(_gonsPerFragment); _gonBalances[msg.sender] = _gonBalances[msg.sender].sub(gonValue); _gonBalances[to] = _gonBalances[to].add(gonValue); emit Transfer(msg.sender, to, value); return true; } function allowance(address owner_, address spender) public view returns (uint256) { return _allowedFragments[owner_][spender]; } function transferFrom(address from, address to, uint256 value) public validRecipient(to) returns (bool) { _allowedFragments[from][msg.sender] = _allowedFragments[from][msg.sender].sub(value); uint256 gonValue = value.mul(_gonsPerFragment); _gonBalances[from] = _gonBalances[from].sub(gonValue); _gonBalances[to] = _gonBalances[to].add(gonValue); emit Transfer(from, to, value); return true; } function approve(address spender, uint256 value) public returns (bool) { _allowedFragments[msg.sender][spender] = value; emit Approval(msg.sender, spender, value); return true; } function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _allowedFragments[msg.sender][spender] = _allowedFragments[msg.sender][spender].add(addedValue); emit Approval(msg.sender, spender, _allowedFragments[msg.sender][spender]); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { uint256 oldValue = _allowedFragments[msg.sender][spender]; if (subtractedValue >= oldValue) { _allowedFragments[msg.sender][spender] = 0; } else { _allowedFragments[msg.sender][spender] = oldValue.sub(subtractedValue); } emit Approval(msg.sender, spender, _allowedFragments[msg.sender][spender]); return true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"epoch","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalSupply","type":"uint256"}],"name":"LogRebase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50600080546001600160a01b0319163390811782556040519091907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3600080546001600160a01b03191633178082556d314dc6448d9338c15b0a0000000060019081556001600160a01b0390911682526003602090815260409092206d20d190a98096d294893fffffffff199081905590546100b792610105811b610ae517901c565b6002556000805460015460408051918252516001600160a01b0390921692917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a36101f6565b600061014d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061015460201b60201c565b9392505050565b600081836101e05760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156101a557818101518382015260200161018d565b50505050905090810190601f1680156101d25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816101ec57fe5b0495945050505050565b610ca0806102056000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb146102c3578063b2bdfa7b146102ef578063dd62ed3e146102f7578063f2fde38b14610325576100f5565b8063715018a6146102615780638da5cb5b1461026b57806395d89b411461028f578063a457c2d714610297576100f5565b806323b872dd116100d357806323b872dd146101d1578063313ce56714610207578063395093511461020f57806370a082311461023b576100f5565b806306fdde03146100fa578063095ea7b31461017757806318160ddd146101b7575b600080fd5b61010261034b565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561013c578181015183820152602001610124565b50505050905090810190601f1680156101695780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101a36004803603604081101561018d57600080fd5b506001600160a01b038135169060200135610379565b604080519115158252519081900360200190f35b6101bf6103e0565b60408051918252519081900360200190f35b6101a3600480360360608110156101e757600080fd5b506001600160a01b038135811691602081013590911690604001356103e6565b6101bf610532565b6101a36004803603604081101561022557600080fd5b506001600160a01b038135169060200135610537565b6101bf6004803603602081101561025157600080fd5b50356001600160a01b03166105d0565b6102696105fe565b005b6102736106a7565b604080516001600160a01b039092168252519081900360200190f35b6101026106b6565b6101a3600480360360408110156102ad57600080fd5b506001600160a01b0381351690602001356106dc565b6101a3600480360360408110156102d957600080fd5b506001600160a01b0381351690602001356107cb565b6102736108b0565b6101bf6004803603604081101561030d57600080fd5b506001600160a01b03813581169160200135166108bf565b6102696004803603602081101561033b57600080fd5b50356001600160a01b03166108ea565b60405180604001604052806012815260200171457468657265756d20446963652047616d6560701b81525081565b3360008181526004602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b60015490565b6000826001600160a01b0381163014156103ff57600080fd5b6001600160a01b0385166000908152600460209081526040808320338452909152902054610433908463ffffffff6109e916565b6001600160a01b038616600090815260046020908152604080832033845290915281209190915560025461046e90859063ffffffff610a3216565b6001600160a01b03871660009081526003602052604090205490915061049a908263ffffffff6109e916565b6001600160a01b0380881660009081526003602052604080822093909355908716815220546104cf908263ffffffff610a8b16565b6001600160a01b0380871660008181526003602090815260409182902094909455805188815290519193928a16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350600195945050505050565b601281565b3360009081526004602090815260408083206001600160a01b038616845290915281205461056b908363ffffffff610a8b16565b3360008181526004602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6002546001600160a01b03821660009081526003602052604081205490916103da919063ffffffff610ae516565b6000546001600160a01b0316331461065d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b6040518060400160405280600a81526020016922a224a1a290784fc75960b11b81525081565b3360009081526004602090815260408083206001600160a01b0386168452909152812054808310610730573360009081526004602090815260408083206001600160a01b0388168452909152812055610765565b610740818463ffffffff6109e916565b3360009081526004602090815260408083206001600160a01b03891684529091529020555b3360008181526004602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000826001600160a01b0381163014156107e457600080fd5b60006107fb60025485610a3290919063ffffffff16565b3360009081526003602052604090205490915061081e908263ffffffff6109e916565b33600090815260036020526040808220929092556001600160a01b03871681522054610850908263ffffffff610a8b16565b6001600160a01b0386166000818152600360209081526040918290209390935580518781529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3506001949350505050565b6000546001600160a01b031681565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6000546001600160a01b03163314610949576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811661098e5760405162461bcd60e51b8152600401808060200182810382526026815260200180610c246026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000610a2b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610b27565b9392505050565b600082610a41575060006103da565b82820282848281610a4e57fe5b0414610a2b5760405162461bcd60e51b8152600401808060200182810382526021815260200180610c4a6021913960400191505060405180910390fd5b600082820183811015610a2b576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000610a2b83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610bbe565b60008184841115610bb65760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610b7b578181015183820152602001610b63565b50505050905090810190601f168015610ba85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008183610c0d5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610b7b578181015183820152602001610b63565b506000838581610c1957fe5b049594505050505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77a2646970667358221220dc9072adce5d6ecc5817f0b03c9b76dd160d8dd5eeef7922d646309066f4845f64736f6c63430006000033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb146102c3578063b2bdfa7b146102ef578063dd62ed3e146102f7578063f2fde38b14610325576100f5565b8063715018a6146102615780638da5cb5b1461026b57806395d89b411461028f578063a457c2d714610297576100f5565b806323b872dd116100d357806323b872dd146101d1578063313ce56714610207578063395093511461020f57806370a082311461023b576100f5565b806306fdde03146100fa578063095ea7b31461017757806318160ddd146101b7575b600080fd5b61010261034b565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561013c578181015183820152602001610124565b50505050905090810190601f1680156101695780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101a36004803603604081101561018d57600080fd5b506001600160a01b038135169060200135610379565b604080519115158252519081900360200190f35b6101bf6103e0565b60408051918252519081900360200190f35b6101a3600480360360608110156101e757600080fd5b506001600160a01b038135811691602081013590911690604001356103e6565b6101bf610532565b6101a36004803603604081101561022557600080fd5b506001600160a01b038135169060200135610537565b6101bf6004803603602081101561025157600080fd5b50356001600160a01b03166105d0565b6102696105fe565b005b6102736106a7565b604080516001600160a01b039092168252519081900360200190f35b6101026106b6565b6101a3600480360360408110156102ad57600080fd5b506001600160a01b0381351690602001356106dc565b6101a3600480360360408110156102d957600080fd5b506001600160a01b0381351690602001356107cb565b6102736108b0565b6101bf6004803603604081101561030d57600080fd5b506001600160a01b03813581169160200135166108bf565b6102696004803603602081101561033b57600080fd5b50356001600160a01b03166108ea565b60405180604001604052806012815260200171457468657265756d20446963652047616d6560701b81525081565b3360008181526004602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b60015490565b6000826001600160a01b0381163014156103ff57600080fd5b6001600160a01b0385166000908152600460209081526040808320338452909152902054610433908463ffffffff6109e916565b6001600160a01b038616600090815260046020908152604080832033845290915281209190915560025461046e90859063ffffffff610a3216565b6001600160a01b03871660009081526003602052604090205490915061049a908263ffffffff6109e916565b6001600160a01b0380881660009081526003602052604080822093909355908716815220546104cf908263ffffffff610a8b16565b6001600160a01b0380871660008181526003602090815260409182902094909455805188815290519193928a16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350600195945050505050565b601281565b3360009081526004602090815260408083206001600160a01b038616845290915281205461056b908363ffffffff610a8b16565b3360008181526004602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6002546001600160a01b03821660009081526003602052604081205490916103da919063ffffffff610ae516565b6000546001600160a01b0316331461065d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b6040518060400160405280600a81526020016922a224a1a290784fc75960b11b81525081565b3360009081526004602090815260408083206001600160a01b0386168452909152812054808310610730573360009081526004602090815260408083206001600160a01b0388168452909152812055610765565b610740818463ffffffff6109e916565b3360009081526004602090815260408083206001600160a01b03891684529091529020555b3360008181526004602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000826001600160a01b0381163014156107e457600080fd5b60006107fb60025485610a3290919063ffffffff16565b3360009081526003602052604090205490915061081e908263ffffffff6109e916565b33600090815260036020526040808220929092556001600160a01b03871681522054610850908263ffffffff610a8b16565b6001600160a01b0386166000818152600360209081526040918290209390935580518781529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3506001949350505050565b6000546001600160a01b031681565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6000546001600160a01b03163314610949576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811661098e5760405162461bcd60e51b8152600401808060200182810382526026815260200180610c246026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000610a2b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610b27565b9392505050565b600082610a41575060006103da565b82820282848281610a4e57fe5b0414610a2b5760405162461bcd60e51b8152600401808060200182810382526021815260200180610c4a6021913960400191505060405180910390fd5b600082820183811015610a2b576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000610a2b83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610bbe565b60008184841115610bb65760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610b7b578181015183820152602001610b63565b50505050905090810190601f168015610ba85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008183610c0d5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610b7b578181015183820152602001610b63565b506000838581610c1957fe5b049594505050505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77a2646970667358221220dc9072adce5d6ecc5817f0b03c9b76dd160d8dd5eeef7922d646309066f4845f64736f6c63430006000033
Deployed Bytecode Sourcemap
2782:3910:0:-:0;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2782:3910:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3202:50;;;:::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;3202:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5589:233;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5589:233:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;4228:123;;;:::i;:::-;;;;;;;;;;;;;;;;5096:487;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5096:487:0;;;;;;;;;;;;;;;;;:::i;3310:37::-;;;:::i;5828:343::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5828:343:0;;;;;;;;:::i;4357:159::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4357:159:0;-1:-1:-1;;;;;4357:159:0;;:::i;2377:148::-;;;:::i;:::-;;2169:79;;;:::i;:::-;;;;-1:-1:-1;;;;;2169:79:0;;;;;;;;;;;;;;3259:44;;;:::i;6177:512::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6177:512:0;;;;;;;;:::i;4522:388::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4522:388:0;;;;;;;;:::i;1921:21::-;;;:::i;4916:174::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4916:174:0;;;;;;;;;;:::i;2531:244::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2531:244:0;-1:-1:-1;;;;;2531:244:0;;:::i;3202:50::-;;;;;;;;;;;;;;-1:-1:-1;;;3202:50:0;;;;:::o;5589:233::-;5712:10;5672:4;5694:29;;;:17;:29;;;;;;;;-1:-1:-1;;;;;5694:38:0;;;;;;;;;;;:46;;;5756:36;;;;;;;5672:4;;5694:38;;5712:10;;5756:36;;;;;;;;-1:-1:-1;5810:4:0;5589:233;;;;;:::o;4228:123::-;4331:12;;4228:123;:::o;5096:487::-;5221:4;5199:2;-1:-1:-1;;;;;2986:19:0;;3000:4;2986:19;;2978:28;;;;;;-1:-1:-1;;;;;5281:23:0;::::1;;::::0;;;:17:::1;:23;::::0;;;;;;;5305:10:::1;5281:35:::0;;;;;;;;:46:::1;::::0;5321:5;5281:46:::1;:39;:46;:::i;:::-;-1:-1:-1::0;;;;;5243:23:0;::::1;;::::0;;;:17:::1;:23;::::0;;;;;;;5267:10:::1;5243:35:::0;;;;;;;:84;;;;5369:16:::1;::::0;5359:27:::1;::::0;:5;;:27:::1;:9;:27;:::i;:::-;-1:-1:-1::0;;;;;5418:18:0;::::1;;::::0;;;:12:::1;:18;::::0;;;;;5340:46;;-1:-1:-1;5418:32:0::1;::::0;5340:46;5418:32:::1;:22;:32;:::i;:::-;-1:-1:-1::0;;;;;5397:18:0;;::::1;;::::0;;;:12:::1;:18;::::0;;;;;:53;;;;5480:16;;::::1;::::0;;;;:30:::1;::::0;5501:8;5480:30:::1;:20;:30;:::i;:::-;-1:-1:-1::0;;;;;5461:16:0;;::::1;;::::0;;;:12:::1;:16;::::0;;;;;;;;:49;;;;5526:25;;;;;;;5461:16;;5526:25;;::::1;::::0;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;5571:4:0::1;::::0;5096:487;-1:-1:-1;;;;;5096:487:0:o;3310:37::-;3345:2;3310:37;:::o;5828:343::-;6020:10;5926:4;6002:29;;;:17;:29;;;;;;;;-1:-1:-1;;;;;6002:38:0;;;;;;;;;;:54;;6045:10;6002:54;:42;:54;:::i;:::-;5966:10;5948:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;5948:38:0;;;;;;;;;;;;:108;;;6072:69;;;;;;5948:38;;6072:69;;;;;;;;;;;-1:-1:-1;6159:4:0;5828:343;;;;:::o;4357:159::-;4491:16;;-1:-1:-1;;;;;4469:17:0;;4437:7;4469:17;;;:12;:17;;;;;;4437:7;;4469:39;;:17;:39;:21;:39;:::i;2377:148::-;2294:6;;-1:-1:-1;;;;;2294:6:0;2304:10;2294:20;2286:65;;;;;-1:-1:-1;;;2286:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2484:1:::1;2468:6:::0;;2447:40:::1;::::0;-1:-1:-1;;;;;2468:6:0;;::::1;::::0;2447:40:::1;::::0;2484:1;;2447:40:::1;2515:1;2498:19:::0;;-1:-1:-1;;;;;;2498:19:0::1;::::0;;2377:148::o;2169:79::-;2207:7;2234:6;-1:-1:-1;;;;;2234:6:0;2169:79;:::o;3259:44::-;;;;;;;;;;;;;;-1:-1:-1;;;3259:44:0;;;;:::o;6177:512::-;6339:10;6280:4;6321:29;;;:17;:29;;;;;;;;-1:-1:-1;;;;;6321:38:0;;;;;;;;;;6374:27;;;6370:205;;6436:10;6459:1;6418:29;;;:17;:29;;;;;;;;-1:-1:-1;;;;;6418:38:0;;;;;;;;;:42;6370:205;;;6534:29;:8;6547:15;6534:29;:12;:29;:::i;:::-;6511:10;6493:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;6493:38:0;;;;;;;;;:70;6370:205;6599:10;6620:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;6590:69:0;;6620:38;;;;;;;;;;;6590:69;;;;;;;;;6599:10;6590:69;;;;;;;;;;;-1:-1:-1;6677:4:0;;6177:512;-1:-1:-1;;;6177:512:0:o;4522:388::-;4629:4;4607:2;-1:-1:-1;;;;;2986:19:0;;3000:4;2986:19;;2978:28;;;;;;4651:16:::1;4670:27;4680:16;;4670:5;:9;;:27;;;;:::i;:::-;4748:10;4735:24;::::0;;;:12:::1;:24;::::0;;;;;4651:46;;-1:-1:-1;4735:38:0::1;::::0;4651:46;4735:38:::1;:28;:38;:::i;:::-;4721:10;4708:24;::::0;;;:12:::1;:24;::::0;;;;;:65;;;;-1:-1:-1;;;;;4803:16:0;::::1;::::0;;;;:30:::1;::::0;4824:8;4803:30:::1;:20;:30;:::i;:::-;-1:-1:-1::0;;;;;4784:16:0;::::1;;::::0;;;:12:::1;:16;::::0;;;;;;;;:49;;;;4849:31;;;;;;;4784:16;;4858:10:::1;::::0;4849:31:::1;::::0;;;;;;;;::::1;-1:-1:-1::0;4898:4:0::1;::::0;4522:388;-1:-1:-1;;;;4522:388:0:o;1921:21::-;;;-1:-1:-1;;;;;1921:21:0;;:::o;4916:174::-;-1:-1:-1;;;;;5048:25:0;;;5016:7;5048:25;;;:17;:25;;;;;;;;:34;;;;;;;;;;;;;4916:174::o;2531:244::-;2294:6;;-1:-1:-1;;;;;2294:6:0;2304:10;2294:20;2286:65;;;;;-1:-1:-1;;;2286:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2620:22:0;::::1;2612:73;;;;-1:-1:-1::0;;;2612:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2722:6;::::0;;2701:38:::1;::::0;-1:-1:-1;;;;;2701:38:0;;::::1;::::0;2722:6;::::1;::::0;2701:38:::1;::::0;::::1;2750:6;:17:::0;;-1:-1:-1;;;;;;2750:17:0::1;-1:-1:-1::0;;;;;2750:17:0;;;::::1;::::0;;;::::1;::::0;;2531:244::o;657:136::-;715:7;742:43;746:1;749;742:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;735:50;657:136;-1:-1:-1;;;657:136:0:o;997:250::-;1055:7;1079:6;1075:47;;-1:-1:-1;1109:1:0;1102:8;;1075:47;1146:5;;;1150:1;1146;:5;:1;1170:5;;;;;:10;1162:56;;;;-1:-1:-1;;;1162:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;470:181;528:7;560:5;;;584:6;;;;576:46;;;;;-1:-1:-1;;;576:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;1253:132;1311:7;1338:39;1342:1;1345;1338:39;;;;;;;;;;;;;;;;;:3;:39::i;799:192::-;885:7;921:12;913:6;;;;905:29;;;;-1:-1:-1;;;905:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;905:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;957:5:0;;;799:192::o;1391:191::-;1477:7;1512:12;1505:5;1497:28;;;;-1:-1:-1;;;1497:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;1497:28:0;;1536:9;1552:1;1548;:5;;;;;;;1391:191;-1:-1:-1;;;;;1391:191:0:o
Swarm Source
ipfs://dc9072adce5d6ecc5817f0b03c9b76dd160d8dd5eeef7922d646309066f4845f
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.