ERC-20
DeFi
Overview
Max Total Supply
2,000,000,000 ACE
Holders
2,607 (0.00%)
Market
Price
$0.00 @ 0.000001 ETH (-0.47%)
Onchain Market Cap
$5,269,700.00
Circulating Supply Market Cap
$314,922.00
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|---|---|---|---|---|
1 | KuCoin | ACE-USDT | $0.0026 0.0000008 Eth | $76,674.00 29,295,103.180 ACE | 98.9275% |
2 | Gate.io | ACENT-USDT | $0.0025 0.0000008 Eth | $724.88 287,641.450 ACENT | 0.9713% |
3 | Uniswap V3 (Ethereum) | 0XEC5483804E637D45CDE22FA0869656B64B5AB1AB-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2 | $0.003 0.0000009 Eth | $89.85 29,966.675 0XEC5483804E637D45CDE22FA0869656B64B5AB1AB | 0.1012% |
Contract Name:
ACENTToken
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-01-04 */ 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) { require(b <= a, "SafeMath: subtraction overflow"); 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) { // Solidity only automatically asserts when dividing by 0 require(b > 0, "SafeMath: division by zero"); 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) { require(b != 0, "SafeMath: modulo by zero"); return a % b; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be aplied to your functions to restrict their use to * the owner. */ contract Ownable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { _owner = msg.sender; emit OwnershipTransferred(address(0), _owner); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner(), "Ownable: caller is not the owner"); _; } /** * @dev Returns true if the caller is the current owner. */ function isOwner() public view returns (bool) { return msg.sender == _owner; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * > Note: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @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. * * > 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); } /** * @dev Implementation of the `IERC20` interface. * * *For a detailed writeup see our guide [How to implement supply * mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).* * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an `Approval` event is emitted on calls to `transferFrom`. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard `decreaseAllowance` and `increaseAllowance` * functions have been added to mitigate the well-known issues around setting * allowances. See `IERC20.approve`. */ contract ERC20 is IERC20, Ownable{ using SafeMath for uint256; mapping (address => uint256) internal _balances; mapping (address => mapping (address => uint256)) internal _allowances; uint256 internal _totalSupply; /** * @dev See `IERC20.totalSupply`. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev See `IERC20.balanceOf`. */ function balanceOf(address account) public view returns (uint256) { return _balances[account]; } /** * @dev See `IERC20.transfer`. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public returns (bool) { _transfer(msg.sender, recipient, amount); return true; } /** * @dev See `IERC20.allowance`. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See `IERC20.approve`. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public returns (bool) { _approve(msg.sender, spender, value); return true; } /** * @dev See `IERC20.transferFrom`. * * Emits an `Approval` event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of `ERC20`; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `value`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) { _transfer(sender, recipient, amount); _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount)); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to `approve` that can be used as a mitigation for * problems described in `IERC20.approve`. * * Emits an `Approval` event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to `approve` that can be used as a mitigation for * problems described in `IERC20.approve`. * * Emits an `Approval` event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue)); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to `transfer`, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a `Transfer` event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** * @dev Destoys `amount` tokens from `account`, reducing the * total supply. * * Emits a `Transfer` event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 value) internal { require(account != address(0), "ERC20: burn from the zero address"); _totalSupply = _totalSupply.sub(value); _balances[account] = _balances[account].sub(value); emit Transfer(account, address(0), value); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an `Approval` event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 value) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = value; emit Approval(owner, spender, value); } } /** * @dev Extension of `ERC20` that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ contract ERC20Burnable is ERC20 { /** * @dev Destoys `amount` tokens from the caller. * * See `ERC20._burn`. */ function burn(uint256 amount) public onlyOwner { _burn(msg.sender, amount); } } /** * @dev ACENT Token implementation. */ contract ACENTToken is ERC20Burnable { using SafeMath for uint256; string public constant name = "ACENT"; string public constant symbol = "ACE"; uint8 public constant decimals = 18; uint256 internal constant INITIAL_SUPPLY = 2 * (10**9) * (10 ** uint256(decimals)); // 2 billions tokens /** * @dev Constructor that gives msg.sender all of existing tokens. */ constructor() public { _totalSupply = INITIAL_SUPPLY; _balances[msg.sender] = INITIAL_SUPPLY; emit Transfer(address(0), msg.sender, INITIAL_SUPPLY); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50600080546001600160a01b03191633178082556040516001600160a01b039190911691907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a36b06765c793fa10079d00000006003819055336000818152600160209081526040808320859055805194855251929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3610c0a806100c46000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d7146102dd578063a9059cbb14610309578063dd62ed3e14610335578063f2fde38b1461036357610100565b8063715018a6146102a15780638da5cb5b146102a95780638f32d59b146102cd57806395d89b41146102d557610100565b8063313ce567116100d3578063313ce56714610212578063395093511461023057806342966c681461025c57806370a082311461027b57610100565b806306fdde0314610105578063095ea7b31461018257806318160ddd146101c257806323b872dd146101dc575b600080fd5b61010d610389565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014757818101518382015260200161012f565b50505050905090810190601f1680156101745780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101ae6004803603604081101561019857600080fd5b506001600160a01b0381351690602001356103aa565b604080519115158252519081900360200190f35b6101ca6103c0565b60408051918252519081900360200190f35b6101ae600480360360608110156101f257600080fd5b506001600160a01b038135811691602081013590911690604001356103c6565b61021a61041d565b6040805160ff9092168252519081900360200190f35b6101ae6004803603604081101561024657600080fd5b506001600160a01b038135169060200135610422565b6102796004803603602081101561027257600080fd5b503561045e565b005b6101ca6004803603602081101561029157600080fd5b50356001600160a01b03166104c4565b6102796104df565b6102b1610582565b604080516001600160a01b039092168252519081900360200190f35b6101ae610591565b61010d6105a2565b6101ae600480360360408110156102f357600080fd5b506001600160a01b0381351690602001356105c1565b6101ae6004803603604081101561031f57600080fd5b506001600160a01b0381351690602001356105fd565b6101ca6004803603604081101561034b57600080fd5b506001600160a01b038135811691602001351661060a565b6102796004803603602081101561037957600080fd5b50356001600160a01b0316610635565b604051806040016040528060058152602001641050d1539560da1b81525081565b60006103b7338484610697565b50600192915050565b60035490565b60006103d3848484610783565b6001600160a01b03841660009081526002602090815260408083203380855292529091205461041391869161040e908663ffffffff6108c716565b610697565b5060019392505050565b601281565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103b791859061040e908663ffffffff61092416565b610466610591565b6104b7576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6104c13382610985565b50565b6001600160a01b031660009081526001602052604090205490565b6104e7610591565b610538576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b6000546001600160a01b0316331490565b6040518060400160405280600381526020016241434560e81b81525081565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103b791859061040e908663ffffffff6108c716565b60006103b7338484610783565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61063d610591565b61068e576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6104c181610a60565b6001600160a01b0383166106dc5760405162461bcd60e51b8152600401808060200182810382526024815260200180610bb26024913960400191505060405180910390fd5b6001600160a01b0382166107215760405162461bcd60e51b8152600401808060200182810382526022815260200180610b4a6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166107c85760405162461bcd60e51b8152600401808060200182810382526025815260200180610b8d6025913960400191505060405180910390fd5b6001600160a01b03821661080d5760405162461bcd60e51b8152600401808060200182810382526023815260200180610b016023913960400191505060405180910390fd5b6001600160a01b038316600090815260016020526040902054610836908263ffffffff6108c716565b6001600160a01b03808516600090815260016020526040808220939093559084168152205461086b908263ffffffff61092416565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008282111561091e576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60008282018381101561097e576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b0382166109ca5760405162461bcd60e51b8152600401808060200182810382526021815260200180610b6c6021913960400191505060405180910390fd5b6003546109dd908263ffffffff6108c716565b6003556001600160a01b038216600090815260016020526040902054610a09908263ffffffff6108c716565b6001600160a01b0383166000818152600160209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b6001600160a01b038116610aa55760405162461bcd60e51b8152600401808060200182810382526026815260200180610b246026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b039290921691909117905556fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a723158209bd471be329714259fcc00cbbed0979ad6039f58f8ea6a6a5dfbb9d6cab7f97964736f6c63430005100032
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d7146102dd578063a9059cbb14610309578063dd62ed3e14610335578063f2fde38b1461036357610100565b8063715018a6146102a15780638da5cb5b146102a95780638f32d59b146102cd57806395d89b41146102d557610100565b8063313ce567116100d3578063313ce56714610212578063395093511461023057806342966c681461025c57806370a082311461027b57610100565b806306fdde0314610105578063095ea7b31461018257806318160ddd146101c257806323b872dd146101dc575b600080fd5b61010d610389565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014757818101518382015260200161012f565b50505050905090810190601f1680156101745780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101ae6004803603604081101561019857600080fd5b506001600160a01b0381351690602001356103aa565b604080519115158252519081900360200190f35b6101ca6103c0565b60408051918252519081900360200190f35b6101ae600480360360608110156101f257600080fd5b506001600160a01b038135811691602081013590911690604001356103c6565b61021a61041d565b6040805160ff9092168252519081900360200190f35b6101ae6004803603604081101561024657600080fd5b506001600160a01b038135169060200135610422565b6102796004803603602081101561027257600080fd5b503561045e565b005b6101ca6004803603602081101561029157600080fd5b50356001600160a01b03166104c4565b6102796104df565b6102b1610582565b604080516001600160a01b039092168252519081900360200190f35b6101ae610591565b61010d6105a2565b6101ae600480360360408110156102f357600080fd5b506001600160a01b0381351690602001356105c1565b6101ae6004803603604081101561031f57600080fd5b506001600160a01b0381351690602001356105fd565b6101ca6004803603604081101561034b57600080fd5b506001600160a01b038135811691602001351661060a565b6102796004803603602081101561037957600080fd5b50356001600160a01b0316610635565b604051806040016040528060058152602001641050d1539560da1b81525081565b60006103b7338484610697565b50600192915050565b60035490565b60006103d3848484610783565b6001600160a01b03841660009081526002602090815260408083203380855292529091205461041391869161040e908663ffffffff6108c716565b610697565b5060019392505050565b601281565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103b791859061040e908663ffffffff61092416565b610466610591565b6104b7576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6104c13382610985565b50565b6001600160a01b031660009081526001602052604090205490565b6104e7610591565b610538576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b6000546001600160a01b0316331490565b6040518060400160405280600381526020016241434560e81b81525081565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103b791859061040e908663ffffffff6108c716565b60006103b7338484610783565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61063d610591565b61068e576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6104c181610a60565b6001600160a01b0383166106dc5760405162461bcd60e51b8152600401808060200182810382526024815260200180610bb26024913960400191505060405180910390fd5b6001600160a01b0382166107215760405162461bcd60e51b8152600401808060200182810382526022815260200180610b4a6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166107c85760405162461bcd60e51b8152600401808060200182810382526025815260200180610b8d6025913960400191505060405180910390fd5b6001600160a01b03821661080d5760405162461bcd60e51b8152600401808060200182810382526023815260200180610b016023913960400191505060405180910390fd5b6001600160a01b038316600090815260016020526040902054610836908263ffffffff6108c716565b6001600160a01b03808516600090815260016020526040808220939093559084168152205461086b908263ffffffff61092416565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008282111561091e576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60008282018381101561097e576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b0382166109ca5760405162461bcd60e51b8152600401808060200182810382526021815260200180610b6c6021913960400191505060405180910390fd5b6003546109dd908263ffffffff6108c716565b6003556001600160a01b038216600090815260016020526040902054610a09908263ffffffff6108c716565b6001600160a01b0383166000818152600160209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b6001600160a01b038116610aa55760405162461bcd60e51b8152600401808060200182810382526026815260200180610b246026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b039290921691909117905556fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a723158209bd471be329714259fcc00cbbed0979ad6039f58f8ea6a6a5dfbb9d6cab7f97964736f6c63430005100032
Deployed Bytecode Sourcemap
16103:596:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16103:596:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16183:37;;;:::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;16183:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11040:148;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11040:148:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;10063:91;;;:::i;:::-;;;;;;;;;;;;;;;;11659:256;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11659:256:0;;;;;;;;;;;;;;;;;:::i;16271:35::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12324:206;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12324:206:0;;;;;;;;:::i;15956:91::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15956:91:0;;:::i;:::-;;10217:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10217:110:0;-1:-1:-1;;;;;10217:110:0;;:::i;5265:140::-;;;:::i;4454:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;4454:79:0;;;;;;;;;;;;;;4820:92;;;:::i;16227:37::-;;;:::i;13033:216::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13033:216:0;;;;;;;;:::i;10540:156::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10540:156:0;;;;;;;;:::i;10759:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10759:134:0;;;;;;;;;;:::i;5560:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;5560:109:0;-1:-1:-1;;;;;5560:109:0;;:::i;16183:37::-;;;;;;;;;;;;;;-1:-1:-1;;;16183:37:0;;;;:::o;11040:148::-;11105:4;11122:36;11131:10;11143:7;11152:5;11122:8;:36::i;:::-;-1:-1:-1;11176:4:0;11040:148;;;;:::o;10063:91::-;10134:12;;10063:91;:::o;11659:256::-;11748:4;11765:36;11775:6;11783:9;11794:6;11765:9;:36::i;:::-;-1:-1:-1;;;;;11841:19:0;;;;;;:11;:19;;;;;;;;11829:10;11841:31;;;;;;;;;11812:73;;11821:6;;11841:43;;11877:6;11841:43;:35;:43;:::i;:::-;11812:8;:73::i;:::-;-1:-1:-1;11903:4:0;11659:256;;;;;:::o;16271:35::-;16304:2;16271:35;:::o;12324:206::-;12430:10;12404:4;12451:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;12451:32:0;;;;;;;;;;12404:4;;12421:79;;12442:7;;12451:48;;12488:10;12451:48;:36;:48;:::i;15956:91::-;4666:9;:7;:9::i;:::-;4658:54;;;;;-1:-1:-1;;;4658:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16014:25;16020:10;16032:6;16014:5;:25::i;:::-;15956:91;:::o;10217:110::-;-1:-1:-1;;;;;10301:18:0;10274:7;10301:18;;;:9;:18;;;;;;;10217:110::o;5265:140::-;4666:9;:7;:9::i;:::-;4658:54;;;;;-1:-1:-1;;;4658:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5364:1;5348:6;;5327:40;;-1:-1:-1;;;;;5348:6:0;;;;5327:40;;5364:1;;5327:40;5395:1;5378:19;;-1:-1:-1;;;;;;5378:19:0;;;5265:140::o;4454:79::-;4492:7;4519:6;-1:-1:-1;;;;;4519:6:0;4454:79;:::o;4820:92::-;4860:4;4898:6;-1:-1:-1;;;;;4898:6:0;4884:10;:20;;4820:92::o;16227:37::-;;;;;;;;;;;;;;-1:-1:-1;;;16227:37:0;;;;:::o;13033:216::-;13144:10;13118:4;13165:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;13165:32:0;;;;;;;;;;13118:4;;13135:84;;13156:7;;13165:53;;13202:15;13165:53;:36;:53;:::i;10540:156::-;10609:4;10626:40;10636:10;10648:9;10659:6;10626:9;:40::i;10759:134::-;-1:-1:-1;;;;;10858:18:0;;;10831:7;10858:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10759:134::o;5560:109::-;4666:9;:7;:9::i;:::-;4658:54;;;;;-1:-1:-1;;;4658:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5633:28;5652:8;5633:18;:28::i;15246:335::-;-1:-1:-1;;;;;15339:19:0;;15331:68;;;;-1:-1:-1;;;15331:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15418:21:0;;15410:68;;;;-1:-1:-1;;;15410:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15491:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;15542:31;;;;;;;;;;;;;;;;;15246:335;;;:::o;13739:429::-;-1:-1:-1;;;;;13837:20:0;;13829:70;;;;-1:-1:-1;;;13829:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13918:23:0;;13910:71;;;;-1:-1:-1;;;13910:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14014:17:0;;;;;;:9;:17;;;;;;:29;;14036:6;14014:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;13994:17:0;;;;;;;:9;:17;;;;;;:49;;;;14077:20;;;;;;;:32;;14102:6;14077:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;14054:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;14125:35;;;;;;;14054:20;;14125:35;;;;;;;;;;;;;13739:429;;;:::o;1315:184::-;1373:7;1406:1;1401;:6;;1393:49;;;;;-1:-1:-1;;;1393:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1465:5:0;;;1315:184::o;859:181::-;917:7;949:5;;;973:6;;;;965:46;;;;;-1:-1:-1;;;965:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;1031:1;859:181;-1:-1:-1;;;859:181:0:o;14500:306::-;-1:-1:-1;;;;;14575:21:0;;14567:67;;;;-1:-1:-1;;;14567:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14662:12;;:23;;14679:5;14662:23;:16;:23;:::i;:::-;14647:12;:38;-1:-1:-1;;;;;14717:18:0;;;;;;:9;:18;;;;;;:29;;14740:5;14717:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;14696:18:0;;;;;;:9;:18;;;;;;;;:50;;;;14762:36;;;;;;;14696:18;;14762:36;;;;;;;;;;;14500:306;;:::o;5775:229::-;-1:-1:-1;;;;;5849:22:0;;5841:73;;;;-1:-1:-1;;;5841:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5951:6;;;5930:38;;-1:-1:-1;;;;;5930:38:0;;;;5951:6;;;5930:38;;;5979:6;:17;;-1:-1:-1;;;;;;5979:17:0;-1:-1:-1;;;;;5979:17:0;;;;;;;;;;5775:229::o
Swarm Source
bzzr://9bd471be329714259fcc00cbbed0979ad6039f58f8ea6a6a5dfbb9d6cab7f979
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.