ERC-20
Overview
Max Total Supply
270,000,000,000 $DUM
Holders
348
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
684,981.006403130352084481 $DUMValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FreedumFighters
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 1 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` 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 from, address to, uint256 amount) external returns (bool); } interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @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. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), 'Ownable: caller is not the owner'); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(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 virtual onlyOwner { require(newOwner != address(0), 'Ownable: new owner is the zero address'); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } contract FreedumFighters is Context, IERC20Metadata, Ownable { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private constant _decimals = 18; uint256 public constant presaleReserve = 108_000_000_000 * (10 ** _decimals); uint256 public constant stakingReserve = 54_000_000_000 * (10 ** _decimals); uint256 public constant liquidityReserve = 54_000_000_000 * (10 ** _decimals); uint256 public constant debateRewardsReserve = 27_000_000_000 * (10 ** _decimals); uint256 public constant restReserve = 27_000_000_000 * (10 ** _decimals); /** * @dev Contract constructor. */ constructor() { _name = 'Freedum Fighters'; _symbol = '$DUM'; _mint(0xD6e0eC5F2D2e4Cdf98119821Cb9526c61EAE6e33, presaleReserve); _mint(0xafB8C494201E4DD53573d56d6B3041F98F98B021, stakingReserve); _mint(0xaB7628D9225D7049621c8b42FD3e4F8ab867E7C4, liquidityReserve); _mint(0xb03389572B08e8De50E3dfC4bdE17f2e2Cc2a7b8, debateRewardsReserve); _mint(0x7A67E50E96AdD28fd4Df4E7eF9ca9bf1c443Ce72, restReserve); } /** * @dev Returns the name of the token. * @return The name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token. * @return The symbol of the token. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used for token display. * @return The number of decimals. */ function decimals() public view virtual override returns (uint8) { return _decimals; } /** * @dev Returns the total supply of the token. * @return The total supply. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev Returns the balance of the specified account. * @param account The address to check the balance for. * @return The balance of the account. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev Transfers tokens from the caller to a specified recipient. * @param recipient The address to transfer tokens to. * @param amount The amount of tokens to transfer. * @return A boolean value indicating whether the transfer was successful. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev Returns the amount of tokens that the spender is allowed to spend on behalf of the owner. * @param from The address that approves the spending. * @param to The address that is allowed to spend. * @return The remaining allowance for the spender. */ function allowance(address from, address to) public view virtual override returns (uint256) { return _allowances[from][to]; } /** * @dev Approves the specified address to spend the specified amount of tokens on behalf of the caller. * @param to The address to approve the spending for. * @param amount The amount of tokens to approve. * @return A boolean value indicating whether the approval was successful. */ function approve(address to, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), to, amount); return true; } /** * @dev Transfers tokens from one address to another. * @param sender The address to transfer tokens from. * @param recipient The address to transfer tokens to. * @param amount The amount of tokens to transfer. * @return A boolean value indicating whether the transfer was successful. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, 'ERC20: transfer amount exceeds allowance'); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Increases the allowance of the specified address to spend tokens on behalf of the caller. * @param to The address to increase the allowance for. * @param addedValue The amount of tokens to increase the allowance by. * @return A boolean value indicating whether the increase was successful. */ function increaseAllowance(address to, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), to, _allowances[_msgSender()][to] + addedValue); return true; } /** * @dev Decreases the allowance granted by the owner of the tokens to `to` account. * @param to The account allowed to spend the tokens. * @param subtractedValue The amount of tokens to decrease the allowance by. * @return A boolean value indicating whether the operation succeeded. */ function decreaseAllowance(address to, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][to]; require(currentAllowance >= subtractedValue, 'ERC20: decreased allowance below zero'); unchecked { _approve(_msgSender(), to, currentAllowance - subtractedValue); } return true; } /** * @dev Transfers `amount` tokens from `sender` to `recipient`. * @param sender The account to transfer tokens from. * @param recipient The account to transfer tokens to. * @param amount The amount of tokens to transfer. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(amount > 0, 'ERC20: transfer amount zero'); require(sender != address(0), 'ERC20: transfer from the zero address'); require(recipient != address(0), 'ERC20: transfer to the zero address'); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, 'ERC20: transfer amount exceeds balance'); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } /** * @dev Creates `amount` tokens and assigns them to `account`. * @param account The account to assign the newly created tokens to. * @param amount The amount of tokens to create. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), 'ERC20: mint to the zero address'); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the total supply. * @param account The account to burn tokens from. * @param amount The amount of tokens to burn. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), 'ERC20: burn from the zero address'); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, 'ERC20: burn amount exceeds balance'); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); } /** * @dev Destroys `amount` tokens from the caller's account, reducing the total supply. * @param amount The amount of tokens to burn. */ function burn(uint256 amount) external { _burn(_msgSender(), amount); } /** * @dev Sets `amount` as the allowance of `to` over the caller's tokens. * @param from The account granting the allowance. * @param to The account allowed to spend the tokens. * @param amount The amount of tokens to allow. */ function _approve(address from, address to, uint256 amount) internal virtual { require(from != address(0), 'ERC20: approve from the zero address'); require(to != address(0), 'ERC20: approve to the zero address'); _allowances[from][to] = amount; emit Approval(from, to, amount); } }
{ "optimizer": { "enabled": true, "runs": 1 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
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":"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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"debateRewardsReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidityReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"presaleReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"restReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"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"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506200001d3362000187565b6040805180820190915260108082526f4672656564756d20466967687465727360801b60209092019182526200005691600491620002bf565b50604080518082019091526004808252632444554d60e01b60209092019182526200008491600591620002bf565b50620000c373d6e0ec5f2d2e4cdf98119821cb9526c61eae6e33620000ac6012600a620003c9565b620000bd906419254d380062000497565b620001d7565b620000fb73afb8c494201e4dd53573d56d6b3041f98f98b021620000ea6012600a620003c9565b620000bd90640c92a69c0062000497565b6200012273ab7628d9225d7049621c8b42fd3e4f8ab867e7c4620000ea6012600a620003c9565b6200015a73b03389572b08e8de50e3dfc4bde17f2e2cc2a7b8620001496012600a620003c9565b620000bd90640649534e0062000497565b62000181737a67e50e96add28fd4df4e7ef9ca9bf1c443ce72620001496012600a620003c9565b6200050c565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620002325760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806003600082825462000246919062000365565b90915550506001600160a01b038216600090815260016020526040812080548392906200027590849062000365565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620002cd90620004b9565b90600052602060002090601f016020900481019282620002f157600085556200033c565b82601f106200030c57805160ff19168380011785556200033c565b828001600101855582156200033c579182015b828111156200033c5782518255916020019190600101906200031f565b506200034a9291506200034e565b5090565b5b808211156200034a57600081556001016200034f565b600082198211156200037b576200037b620004f6565b500190565b600181815b80851115620003c1578160001904821115620003a557620003a5620004f6565b80851615620003b357918102915b93841c939080029062000385565b509250929050565b6000620003da60ff841683620003e1565b9392505050565b600082620003f25750600162000491565b81620004015750600062000491565b81600181146200041a5760028114620004255762000445565b600191505062000491565b60ff841115620004395762000439620004f6565b50506001821b62000491565b5060208310610133831016604e8410600b84101617156200046a575081810a62000491565b62000476838362000380565b80600019048211156200048d576200048d620004f6565b0290505b92915050565b6000816000190483118215151615620004b457620004b4620004f6565b500290565b600181811c90821680620004ce57607f821691505b60208210811415620004f057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b610dfc806200051c6000396000f3fe608060405234801561001057600080fd5b50600436106100fc5760003560e01c806306fdde0314610101578063095ea7b31461011f5780630c900e901461014257806316d411f41461015857806318160ddd1461016057806323b872dd14610168578063313ce5671461017b578063395093511461018a57806342966c681461019d57806370a08231146101b2578063715018a6146101db5780638da5cb5b146101e357806394bcb29b1461015857806395d89b4114610203578063a457c2d71461020b578063a9059cbb1461021e578063b61d43b114610231578063b753bfe914610231578063dd62ed3e14610239578063f2fde38b14610272575b600080fd5b610109610285565b6040516101169190610bc6565b60405180910390f35b61013261012d366004610b85565b610317565b6040519015158152602001610116565b61014a61032e565b604051908152602001610116565b61014a61034c565b60035461014a565b610132610176366004610b4a565b610367565b60405160128152602001610116565b610132610198366004610b85565b610416565b6101b06101ab366004610bae565b610452565b005b61014a6101c0366004610af7565b6001600160a01b031660009081526001602052604090205490565b6101b061045f565b6101eb610473565b6040516001600160a01b039091168152602001610116565b610109610482565b610132610219366004610b85565b610491565b61013261022c366004610b85565b61052a565b61014a610537565b61014a610247366004610b18565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101b0610280366004610af7565b610552565b60606004805461029490610d55565b80601f01602080910402602001604051908101604052809291908181526020018280546102c090610d55565b801561030d5780601f106102e25761010080835404028352916020019161030d565b820191906000526020600020905b8154815290600101906020018083116102f057829003601f168201915b5050505050905090565b60006103243384846105c8565b5060015b92915050565b61033a6012600a610c74565b610349906419254d3800610d1f565b81565b6103586012600a610c74565b61034990640649534e00610d1f565b60006103748484846106ed565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156103fe5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61040b85338584036105c8565b506001949350505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161032491859061044d908690610c19565b6105c8565b61045c33826108f8565b50565b610467610a2c565b6104716000610a8b565b565b6000546001600160a01b031690565b60606005805461029490610d55565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156105135760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103f5565b61052033858584036105c8565b5060019392505050565b60006103243384846106ed565b6105436012600a610c74565b61034990640c92a69c00610d1f565b61055a610a2c565b6001600160a01b0381166105bf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f5565b61045c81610a8b565b6001600160a01b03831661062a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103f5565b6001600160a01b03821661068b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103f5565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000811161073b5760405162461bcd60e51b815260206004820152601b60248201527a45524332303a207472616e7366657220616d6f756e74207a65726f60281b60448201526064016103f5565b6001600160a01b03831661079f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f5565b6001600160a01b0382166108015760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f5565b6001600160a01b038316600090815260016020526040902054818110156108795760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103f5565b6001600160a01b038085166000908152600160205260408082208585039055918516815290812080548492906108b0908490610c19565b92505081905550826001600160a01b0316846001600160a01b0316600080516020610da7833981519152846040516108ea91815260200190565b60405180910390a350505050565b6001600160a01b0382166109585760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103f5565b6001600160a01b038216600090815260016020526040902054818110156109cc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103f5565b6001600160a01b03831660009081526001602052604081208383039055600380548492906109fb908490610d3e565b90915550506040518281526000906001600160a01b03851690600080516020610da7833981519152906020016106e0565b33610a35610473565b6001600160a01b0316146104715760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103f5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80356001600160a01b0381168114610af257600080fd5b919050565b600060208284031215610b08578081fd5b610b1182610adb565b9392505050565b60008060408385031215610b2a578081fd5b610b3383610adb565b9150610b4160208401610adb565b90509250929050565b600080600060608486031215610b5e578081fd5b610b6784610adb565b9250610b7560208501610adb565b9150604084013590509250925092565b60008060408385031215610b97578182fd5b610ba083610adb565b946020939093013593505050565b600060208284031215610bbf578081fd5b5035919050565b6000602080835283518082850152825b81811015610bf257858101830151858201604001528201610bd6565b81811115610c035783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610c2c57610c2c610d90565b500190565b600181815b80851115610c6c578160001904821115610c5257610c52610d90565b80851615610c5f57918102915b93841c9390800290610c36565b509250929050565b6000610b1160ff841683600082610c8d57506001610328565b81610c9a57506000610328565b8160018114610cb05760028114610cba57610cd6565b6001915050610328565b60ff841115610ccb57610ccb610d90565b50506001821b610328565b5060208310610133831016604e8410600b8410161715610cf9575081810a610328565b610d038383610c31565b8060001904821115610d1757610d17610d90565b029392505050565b6000816000190483118215151615610d3957610d39610d90565b500290565b600082821015610d5057610d50610d90565b500390565b600181811c90821680610d6957607f821691505b60208210811415610d8a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122028e50299ff7fd4aa198ea45d92a984f4e349f45de5a396cbdd0c1da5c19212b764736f6c63430008040033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100fc5760003560e01c806306fdde0314610101578063095ea7b31461011f5780630c900e901461014257806316d411f41461015857806318160ddd1461016057806323b872dd14610168578063313ce5671461017b578063395093511461018a57806342966c681461019d57806370a08231146101b2578063715018a6146101db5780638da5cb5b146101e357806394bcb29b1461015857806395d89b4114610203578063a457c2d71461020b578063a9059cbb1461021e578063b61d43b114610231578063b753bfe914610231578063dd62ed3e14610239578063f2fde38b14610272575b600080fd5b610109610285565b6040516101169190610bc6565b60405180910390f35b61013261012d366004610b85565b610317565b6040519015158152602001610116565b61014a61032e565b604051908152602001610116565b61014a61034c565b60035461014a565b610132610176366004610b4a565b610367565b60405160128152602001610116565b610132610198366004610b85565b610416565b6101b06101ab366004610bae565b610452565b005b61014a6101c0366004610af7565b6001600160a01b031660009081526001602052604090205490565b6101b061045f565b6101eb610473565b6040516001600160a01b039091168152602001610116565b610109610482565b610132610219366004610b85565b610491565b61013261022c366004610b85565b61052a565b61014a610537565b61014a610247366004610b18565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101b0610280366004610af7565b610552565b60606004805461029490610d55565b80601f01602080910402602001604051908101604052809291908181526020018280546102c090610d55565b801561030d5780601f106102e25761010080835404028352916020019161030d565b820191906000526020600020905b8154815290600101906020018083116102f057829003601f168201915b5050505050905090565b60006103243384846105c8565b5060015b92915050565b61033a6012600a610c74565b610349906419254d3800610d1f565b81565b6103586012600a610c74565b61034990640649534e00610d1f565b60006103748484846106ed565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156103fe5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61040b85338584036105c8565b506001949350505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161032491859061044d908690610c19565b6105c8565b61045c33826108f8565b50565b610467610a2c565b6104716000610a8b565b565b6000546001600160a01b031690565b60606005805461029490610d55565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156105135760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103f5565b61052033858584036105c8565b5060019392505050565b60006103243384846106ed565b6105436012600a610c74565b61034990640c92a69c00610d1f565b61055a610a2c565b6001600160a01b0381166105bf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f5565b61045c81610a8b565b6001600160a01b03831661062a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103f5565b6001600160a01b03821661068b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103f5565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000811161073b5760405162461bcd60e51b815260206004820152601b60248201527a45524332303a207472616e7366657220616d6f756e74207a65726f60281b60448201526064016103f5565b6001600160a01b03831661079f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f5565b6001600160a01b0382166108015760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f5565b6001600160a01b038316600090815260016020526040902054818110156108795760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103f5565b6001600160a01b038085166000908152600160205260408082208585039055918516815290812080548492906108b0908490610c19565b92505081905550826001600160a01b0316846001600160a01b0316600080516020610da7833981519152846040516108ea91815260200190565b60405180910390a350505050565b6001600160a01b0382166109585760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103f5565b6001600160a01b038216600090815260016020526040902054818110156109cc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103f5565b6001600160a01b03831660009081526001602052604081208383039055600380548492906109fb908490610d3e565b90915550506040518281526000906001600160a01b03851690600080516020610da7833981519152906020016106e0565b33610a35610473565b6001600160a01b0316146104715760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103f5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80356001600160a01b0381168114610af257600080fd5b919050565b600060208284031215610b08578081fd5b610b1182610adb565b9392505050565b60008060408385031215610b2a578081fd5b610b3383610adb565b9150610b4160208401610adb565b90509250929050565b600080600060608486031215610b5e578081fd5b610b6784610adb565b9250610b7560208501610adb565b9150604084013590509250925092565b60008060408385031215610b97578182fd5b610ba083610adb565b946020939093013593505050565b600060208284031215610bbf578081fd5b5035919050565b6000602080835283518082850152825b81811015610bf257858101830151858201604001528201610bd6565b81811115610c035783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610c2c57610c2c610d90565b500190565b600181815b80851115610c6c578160001904821115610c5257610c52610d90565b80851615610c5f57918102915b93841c9390800290610c36565b509250929050565b6000610b1160ff841683600082610c8d57506001610328565b81610c9a57506000610328565b8160018114610cb05760028114610cba57610cd6565b6001915050610328565b60ff841115610ccb57610ccb610d90565b50506001821b610328565b5060208310610133831016604e8410600b8410161715610cf9575081810a610328565b610d038383610c31565b8060001904821115610d1757610d17610d90565b029392505050565b6000816000190483118215151615610d3957610d39610d90565b500290565b600082821015610d5057610d50610d90565b500390565b600181811c90821680610d6957607f821691505b60208210811415610d8a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122028e50299ff7fd4aa198ea45d92a984f4e349f45de5a396cbdd0c1da5c19212b764736f6c63430008040033
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.