ERC-20
Overview
Max Total Supply
4,079,000,000 DICK
Holders
4,609
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DickToken
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; /** * @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: * 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 `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); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ 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); } interface IERC7660 { // Events /** * @dev Event emitted when a message is sent. * @param sender The sender will add account into pair. * @param account The address of the account will be added into pair or not. * @param flag The flag whether the account address will be added into the pair or not. */ event AddPair(address sender,address account, bool flag); /** * @dev Event emitted when a message is sent. * @param sender The sender will add account into router. * @param account The address of the account will be added into router or not. * @param flag The flag whether the account address will be added into the router or not. */ event AddRouter(address sender,address account, bool flag); // Functions /** * @dev Function to get a user's Linear Release token info. * @param account The address of the user. * @return total The total token will be released in the period. * @return canRelease The current will be released token in the period. * @return released The token has be released in the period. * @return locked The token has be locked in the period. */ function getCanReleaseInfo(address account) external view returns (uint256 total, uint256 canRelease, uint256 released,uint256 locked); /** * @dev Function to set the account for linear Release. * @param _pair The address of the uniswap pair which will be released linearly. * @param flag The flag whether the pair address will be released linearly. */ function addPair(address _pair,bool flag) external; /** * @dev Function to set the uniswap Router address which will receive token without vesting. * @param _router The address of the uniswap router. * @param flag The flag whether the router address will be added to the swap router. */ function addRouter(address _router,bool flag) external; } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @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; } } 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() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @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(_owner == _msgSender(), 'Ownable: caller is not the 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; } } contract ERC7660 is IERC20, IERC20Metadata,IERC7660,Ownable { mapping(address => uint256) private _balances; struct VestInfo { uint256 total; uint256 released; uint128 startTime; uint128 updateTime; } mapping(address => VestInfo[7]) public userVestInfo; mapping(address => uint256) public vestCursor; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) internal _pairs; mapping(address => bool) internal _routers; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimal = 18; uint256 public durationTime = 5*24*3600; uint256 private period = durationTime/7; uint256 private duration = 7*period; event Trade(address from,address to,uint256 side,uint256 amount); constructor(string memory name_, string memory symbol_, uint256 totalSupply_) { _name = name_; _symbol = symbol_; _totalSupply = totalSupply_; _balances[_msgSender()] = _totalSupply; emit Transfer(address(0), _msgSender(), _totalSupply); } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return _decimal; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { (, uint256 canRelease,,) = getCanReleaseInfo(account); return _balances[account] + canRelease; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance( address owner, address spender ) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve( address spender, uint256 amount ) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, 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 virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + 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 virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); _handleTokenTransfer(from, to, amount); _afterTokenTransfer(from, to, amount); emit Transfer(from, to, amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This 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 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require( currentAllowance >= amount, "ERC20: insufficient allowance" ); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } function getCanReleaseInfo(address account) public view returns (uint256 total, uint256 canRelease, uint256 released,uint256 locked) { for (uint i = 0; i < 7; i++) { VestInfo memory info = userVestInfo[account][i]; if (info.startTime == 0) { continue; } released += info.released; total += info.total; if (block.timestamp <= info.updateTime) { canRelease += (info.total - info.released); } else if (uint128(block.timestamp) >= info.startTime + duration) { canRelease += info.total - info.released; } else { uint temp = info.total * (block.timestamp - info.startTime) / duration; canRelease += temp - info.released; } } locked = (total > canRelease + released) ? (total-canRelease-released) : 0; } function claimRelease(address account) private { uint canReleaseTotal; for (uint i = 0; i < 7; i++) { VestInfo storage info = userVestInfo[account][i]; if (info.startTime == 0 || block.timestamp <= info.startTime || info.total == info.released) { continue; } uint canRelease; if (uint128(block.timestamp) >= info.startTime + duration) { canRelease = info.total - info.released; } else { uint temp = info.total * (block.timestamp - info.startTime) / duration; canRelease = temp - info.released; } canReleaseTotal += canRelease; info.released += canRelease; } if (canReleaseTotal > 0) { _balances[account] += canReleaseTotal; } } function _handleTokenTransfer(address from, address to, uint256 amount) internal virtual { claimRelease(from); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } uint side = 0; if (isPair(from) && !isRouter(to)){ claimRelease(to); side = 1 ; //buy uint startTime = block.timestamp / period * period; uint pos = vestCursor[to]; VestInfo storage toInfo = userVestInfo[to][pos]; if (toInfo.startTime != startTime) { if (pos == 6) { pos = 0; } else { ++pos; } toInfo = userVestInfo[to][pos]; toInfo.total = amount; toInfo.released = 0; toInfo.startTime = uint128(startTime); vestCursor[to] = pos; } else { toInfo.total += amount; } toInfo.updateTime = uint128(block.timestamp); } else { if(isPair(to)){ side = 2; //sell } _balances[to] += amount; } emit Trade(from,to,side,amount); } function addPair(address _pair,bool flag) public onlyOwner { require(_pair != address(0), "pair is zero address"); _pairs[_pair] = flag; emit AddPair(msg.sender,_pair,flag); } function addRouter(address _router,bool flag) public onlyOwner { require(_router != address(0), "router is zero address"); _routers[_router] = flag; emit AddRouter(msg.sender,_router,flag); } function isPair(address _pair) public view returns (bool) { return _pairs[_pair]; } function isRouter(address _router) public view returns (bool) { return _routers[_router]; } function getDurationAndPeriod() public view returns(uint256,uint256){ return (duration,period); } /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } contract DickToken is ERC7660{ constructor(string memory name_, string memory symbol_, uint256 totalSupply_) ERC7660(name_,symbol_,totalSupply_){ } }
{ "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"flag","type":"bool"}],"name":"AddPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"flag","type":"bool"}],"name":"AddRouter","type":"event"},{"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":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"side","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Trade","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":"_pair","type":"address"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"addPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_router","type":"address"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"addRouter","outputs":[],"stateMutability":"nonpayable","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":"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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":[],"name":"durationTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCanReleaseInfo","outputs":[{"internalType":"uint256","name":"total","type":"uint256"},{"internalType":"uint256","name":"canRelease","type":"uint256"},{"internalType":"uint256","name":"released","type":"uint256"},{"internalType":"uint256","name":"locked","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDurationAndPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"_pair","type":"address"}],"name":"isPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_router","type":"address"}],"name":"isRouter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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":"amount","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":"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"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"userVestInfo","outputs":[{"internalType":"uint256","name":"total","type":"uint256"},{"internalType":"uint256","name":"released","type":"uint256"},{"internalType":"uint128","name":"startTime","type":"uint128"},{"internalType":"uint128","name":"updateTime","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"vestCursor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6080604052600a805460ff1916601217905562069780600b819055620000289060079062000127565b600c8190556200003a9060076200014a565b600d553480156200004a57600080fd5b50604051620018a3380380620018a38339810160408190526200006d916200023b565b600080546001600160a01b031916339081178255604051859285928592909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506008620000c284826200033d565b506009620000d183826200033d565b506007819055336000818152600160209081526040808320859055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050505062000409565b6000826200014557634e487b7160e01b600052601260045260246000fd5b500490565b80820281158282048414176200017057634e487b7160e01b600052601160045260246000fd5b92915050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200019e57600080fd5b81516001600160401b0380821115620001bb57620001bb62000176565b604051601f8301601f19908116603f01168101908282118183101715620001e657620001e662000176565b816040528381526020925086838588010111156200020357600080fd5b600091505b8382101562000227578582018301518183018401529082019062000208565b600093810190920192909252949350505050565b6000806000606084860312156200025157600080fd5b83516001600160401b03808211156200026957600080fd5b62000277878388016200018c565b945060208601519150808211156200028e57600080fd5b506200029d868287016200018c565b925050604084015190509250925092565b600181811c90821680620002c357607f821691505b602082108103620002e457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200033857600081815260208120601f850160051c81016020861015620003135750805b601f850160051c820191505b8181101562000334578281556001016200031f565b5050505b505050565b81516001600160401b0381111562000359576200035962000176565b62000371816200036a8454620002ae565b84620002ea565b602080601f831160018114620003a95760008415620003905750858301515b600019600386901b1c1916600185901b17855562000334565b600085815260208120601f198616915b82811015620003da57888601518255948401946001909101908401620003b9565b5085821015620003f95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61148a80620004196000396000f3fe608060405234801561001057600080fd5b506004361061014c5760003560e01c80637e26cafa116100c3578063ba6f991c1161007c578063ba6f991c146102e8578063dd62ed3e1461031b578063e5e31b131461032e578063f2fde38b1461035a578063f3d7d2821461036d578063f8b75fb51461039957600080fd5b80637e26cafa1461024a5780638da5cb5b1461025d57806395d89b4114610278578063a457c2d714610280578063a9059cbb14610293578063af2cbcba146102a657600080fd5b806323b872dd1161011557806323b872dd146101d9578063313ce567146101ec578063395093511461020157806341d72fb31461021457806370a082311461022f578063715018a61461024257600080fd5b80621868531461015157806306fdde0314610184578063095ea7b3146101995780630aed36d0146101bc57806318160ddd146101d1575b600080fd5b61017161015f366004611203565b60036020526000908152604090205481565b6040519081526020015b60405180910390f35b61018c6103a2565b60405161017b919061121e565b6101ac6101a736600461126c565b610434565b604051901515815260200161017b565b6101cf6101ca366004611296565b61044e565b005b600754610171565b6101ac6101e73660046112d2565b610540565b600a5460405160ff909116815260200161017b565b6101ac61020f36600461126c565b610564565b600d54600c546040805192835260208301919091520161017b565b61017161023d366004611203565b610586565b6101cf6105c3565b6101cf610258366004611296565b610637565b6000546040516001600160a01b03909116815260200161017b565b61018c610716565b6101ac61028e36600461126c565b610725565b6101ac6102a136600461126c565b6107a0565b6102b96102b436600461126c565b6107ae565b6040805194855260208501939093526001600160801b039182169284019290925216606082015260800161017b565b6102fb6102f6366004611203565b6107f8565b60408051948552602085019390935291830152606082015260800161017b565b61017161032936600461130e565b6109b6565b6101ac61033c366004611203565b6001600160a01b031660009081526005602052604090205460ff1690565b6101cf610368366004611203565b6109e1565b6101ac61037b366004611203565b6001600160a01b031660009081526006602052604090205460ff1690565b610171600b5481565b6060600880546103b190611341565b80601f01602080910402602001604051908101604052809291908181526020018280546103dd90611341565b801561042a5780601f106103ff5761010080835404028352916020019161042a565b820191906000526020600020905b81548152906001019060200180831161040d57829003601f168201915b5050505050905090565b600033610442818585610a17565b60019150505b92915050565b6000546001600160a01b031633146104815760405162461bcd60e51b81526004016104789061137b565b60405180910390fd5b6001600160a01b0382166104d05760405162461bcd60e51b8152602060048201526016602482015275726f75746572206973207a65726f206164647265737360501b6044820152606401610478565b6001600160a01b038216600081815260066020908152604091829020805460ff1916851515908117909155825133815291820193909352908101919091527ff127d37db6375f95783c479a87bdd9e4d8023c5a9322e0d6b4cd3134e1a224ba906060015b60405180910390a15050565b60003361054e858285610b3c565b610559858585610bb6565b506001949350505050565b60003361044281858561057783836109b6565b61058191906113c6565b610a17565b600080610592836107f8565b50506001600160a01b0385166000908152600160205260409020549092506105bc915082906113c6565b9392505050565b6000546001600160a01b031633146105ed5760405162461bcd60e51b81526004016104789061137b565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146106615760405162461bcd60e51b81526004016104789061137b565b6001600160a01b0382166106ae5760405162461bcd60e51b815260206004820152601460248201527370616972206973207a65726f206164647265737360601b6044820152606401610478565b6001600160a01b038216600081815260056020908152604091829020805460ff1916851515908117909155825133815291820193909352908101919091527fb2f62fdc62901b6be3b27736aabc933e26353353d0a0abcd6443b4f3e80f55b890606001610534565b6060600980546103b190611341565b6000338161073382866109b6565b9050838110156107935760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610478565b6105598286868403610a17565b600033610442818585610bb6565b600260205281600052604060002081600781106107ca57600080fd5b60030201805460018201546002909201549093509091506001600160801b0380821691600160801b90041684565b60008060008060005b6007811015610980576001600160a01b03861660009081526002602052604081208260078110610833576108336113d9565b60408051608081018252600392909202929092018054825260018101546020830152600201546001600160801b03808216938301849052600160801b9091041660608201529150600003610887575061096e565b602081015161089690856113c6565b81519094506108a590876113c6565b955080606001516001600160801b031642116108dd57602081015181516108cc91906113ef565b6108d690866113c6565b945061096c565b600d5481604001516001600160801b03166108f891906113c6565b426001600160801b03161061091857602081015181516108cc91906113ef565b6000600d5482604001516001600160801b03164261093691906113ef565b83516109429190611402565b61094c9190611419565b905081602001518161095e91906113ef565b61096890876113c6565b9550505b505b806109788161143b565b915050610801565b5061098b82846113c6565b84116109985760006109ad565b816109a384866113ef565b6109ad91906113ef565b90509193509193565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6000546001600160a01b03163314610a0b5760405162461bcd60e51b81526004016104789061137b565b610a1481610ccc565b50565b6001600160a01b038316610a795760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610478565b6001600160a01b038216610ada5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610478565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610b4884846109b6565b90506000198114610bb05781811015610ba35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610478565b610bb08484848403610a17565b50505050565b6001600160a01b038316610c1a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610478565b6001600160a01b038216610c7c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610478565b610c87838383610d8c565b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b2f91815260200190565b6001600160a01b038116610d315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610478565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610d9583611067565b6001600160a01b03831660009081526001602052604090205481811015610e0d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610478565b6001600160a01b03841660009081526001602090815260408083208585039055600590915281205460ff168015610e5d57506001600160a01b03841660009081526006602052604090205460ff16155b15610fbb57610e6b84611067565b50600c54600190600090610e7f8142611419565b610e899190611402565b6001600160a01b03861660009081526003602090815260408083205460029092528220929350918260078110610ec157610ec16113d9565b6003020160028101549091506001600160801b03168314610f7e5781600603610eed5760009150610ef9565b610ef68261143b565b91505b6001600160a01b03871660009081526002602052604090208260078110610f2257610f226113d9565b6003908102919091018781556000600182018190556002820180546fffffffffffffffffffffffffffffffff19166001600160801b0388161790556001600160a01b038a16815260209290925260409091208390559050610f98565b85816000016000828254610f9291906113c6565b90915550505b60020180546001600160801b03428116600160801b0291161790555061100e9050565b6001600160a01b03841660009081526005602052604090205460ff1615610fe0575060025b6001600160a01b038416600090815260016020526040812080548592906110089084906113c6565b90915550505b604080516001600160a01b03808816825286166020820152908101829052606081018490527f4b5796113f074ebf8f11d5bcdeb6349b2fbe47abed78419cdcdbbc15c6fcf8459060800160405180910390a15050505050565b6000805b60078110156111ae576001600160a01b0383166000908152600260205260408120826007811061109d5761109d6113d9565b6003020160028101549091506001600160801b031615806110cb575060028101546001600160801b03164211155b806110da575060018101548154145b156110e5575061119c565b600d546002820154600091611102916001600160801b03166113c6565b426001600160801b031610611129576001820154825461112291906113ef565b9050611174565b600d54600283015460009190611148906001600160801b0316426113ef565b84546111549190611402565b61115e9190611419565b905082600101548161117091906113ef565b9150505b61117e81856113c6565b93508082600101600082825461119491906113c6565b909155505050505b806111a68161143b565b91505061106b565b5080156111e3576001600160a01b038216600090815260016020526040812080548392906111dd9084906113c6565b90915550505b5050565b80356001600160a01b03811681146111fe57600080fd5b919050565b60006020828403121561121557600080fd5b6105bc826111e7565b600060208083528351808285015260005b8181101561124b5785810183015185820160400152820161122f565b506000604082860101526040601f19601f8301168501019250505092915050565b6000806040838503121561127f57600080fd5b611288836111e7565b946020939093013593505050565b600080604083850312156112a957600080fd5b6112b2836111e7565b9150602083013580151581146112c757600080fd5b809150509250929050565b6000806000606084860312156112e757600080fd5b6112f0846111e7565b92506112fe602085016111e7565b9150604084013590509250925092565b6000806040838503121561132157600080fd5b61132a836111e7565b9150611338602084016111e7565b90509250929050565b600181811c9082168061135557607f821691505b60208210810361137557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610448576104486113b0565b634e487b7160e01b600052603260045260246000fd5b81810381811115610448576104486113b0565b8082028115828204841417610448576104486113b0565b60008261143657634e487b7160e01b600052601260045260246000fd5b500490565b60006001820161144d5761144d6113b0565b506001019056fea26469706673582212201a8b5229f437303485010b9c0f21179c3fe44b17616a4bca2e0a2f2e8a43236d64736f6c63430008140033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000d2e11d914133e484f000000000000000000000000000000000000000000000000000000000000000000000f4449434be281b54045524337363630000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044449434b00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061014c5760003560e01c80637e26cafa116100c3578063ba6f991c1161007c578063ba6f991c146102e8578063dd62ed3e1461031b578063e5e31b131461032e578063f2fde38b1461035a578063f3d7d2821461036d578063f8b75fb51461039957600080fd5b80637e26cafa1461024a5780638da5cb5b1461025d57806395d89b4114610278578063a457c2d714610280578063a9059cbb14610293578063af2cbcba146102a657600080fd5b806323b872dd1161011557806323b872dd146101d9578063313ce567146101ec578063395093511461020157806341d72fb31461021457806370a082311461022f578063715018a61461024257600080fd5b80621868531461015157806306fdde0314610184578063095ea7b3146101995780630aed36d0146101bc57806318160ddd146101d1575b600080fd5b61017161015f366004611203565b60036020526000908152604090205481565b6040519081526020015b60405180910390f35b61018c6103a2565b60405161017b919061121e565b6101ac6101a736600461126c565b610434565b604051901515815260200161017b565b6101cf6101ca366004611296565b61044e565b005b600754610171565b6101ac6101e73660046112d2565b610540565b600a5460405160ff909116815260200161017b565b6101ac61020f36600461126c565b610564565b600d54600c546040805192835260208301919091520161017b565b61017161023d366004611203565b610586565b6101cf6105c3565b6101cf610258366004611296565b610637565b6000546040516001600160a01b03909116815260200161017b565b61018c610716565b6101ac61028e36600461126c565b610725565b6101ac6102a136600461126c565b6107a0565b6102b96102b436600461126c565b6107ae565b6040805194855260208501939093526001600160801b039182169284019290925216606082015260800161017b565b6102fb6102f6366004611203565b6107f8565b60408051948552602085019390935291830152606082015260800161017b565b61017161032936600461130e565b6109b6565b6101ac61033c366004611203565b6001600160a01b031660009081526005602052604090205460ff1690565b6101cf610368366004611203565b6109e1565b6101ac61037b366004611203565b6001600160a01b031660009081526006602052604090205460ff1690565b610171600b5481565b6060600880546103b190611341565b80601f01602080910402602001604051908101604052809291908181526020018280546103dd90611341565b801561042a5780601f106103ff5761010080835404028352916020019161042a565b820191906000526020600020905b81548152906001019060200180831161040d57829003601f168201915b5050505050905090565b600033610442818585610a17565b60019150505b92915050565b6000546001600160a01b031633146104815760405162461bcd60e51b81526004016104789061137b565b60405180910390fd5b6001600160a01b0382166104d05760405162461bcd60e51b8152602060048201526016602482015275726f75746572206973207a65726f206164647265737360501b6044820152606401610478565b6001600160a01b038216600081815260066020908152604091829020805460ff1916851515908117909155825133815291820193909352908101919091527ff127d37db6375f95783c479a87bdd9e4d8023c5a9322e0d6b4cd3134e1a224ba906060015b60405180910390a15050565b60003361054e858285610b3c565b610559858585610bb6565b506001949350505050565b60003361044281858561057783836109b6565b61058191906113c6565b610a17565b600080610592836107f8565b50506001600160a01b0385166000908152600160205260409020549092506105bc915082906113c6565b9392505050565b6000546001600160a01b031633146105ed5760405162461bcd60e51b81526004016104789061137b565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146106615760405162461bcd60e51b81526004016104789061137b565b6001600160a01b0382166106ae5760405162461bcd60e51b815260206004820152601460248201527370616972206973207a65726f206164647265737360601b6044820152606401610478565b6001600160a01b038216600081815260056020908152604091829020805460ff1916851515908117909155825133815291820193909352908101919091527fb2f62fdc62901b6be3b27736aabc933e26353353d0a0abcd6443b4f3e80f55b890606001610534565b6060600980546103b190611341565b6000338161073382866109b6565b9050838110156107935760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610478565b6105598286868403610a17565b600033610442818585610bb6565b600260205281600052604060002081600781106107ca57600080fd5b60030201805460018201546002909201549093509091506001600160801b0380821691600160801b90041684565b60008060008060005b6007811015610980576001600160a01b03861660009081526002602052604081208260078110610833576108336113d9565b60408051608081018252600392909202929092018054825260018101546020830152600201546001600160801b03808216938301849052600160801b9091041660608201529150600003610887575061096e565b602081015161089690856113c6565b81519094506108a590876113c6565b955080606001516001600160801b031642116108dd57602081015181516108cc91906113ef565b6108d690866113c6565b945061096c565b600d5481604001516001600160801b03166108f891906113c6565b426001600160801b03161061091857602081015181516108cc91906113ef565b6000600d5482604001516001600160801b03164261093691906113ef565b83516109429190611402565b61094c9190611419565b905081602001518161095e91906113ef565b61096890876113c6565b9550505b505b806109788161143b565b915050610801565b5061098b82846113c6565b84116109985760006109ad565b816109a384866113ef565b6109ad91906113ef565b90509193509193565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6000546001600160a01b03163314610a0b5760405162461bcd60e51b81526004016104789061137b565b610a1481610ccc565b50565b6001600160a01b038316610a795760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610478565b6001600160a01b038216610ada5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610478565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610b4884846109b6565b90506000198114610bb05781811015610ba35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610478565b610bb08484848403610a17565b50505050565b6001600160a01b038316610c1a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610478565b6001600160a01b038216610c7c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610478565b610c87838383610d8c565b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b2f91815260200190565b6001600160a01b038116610d315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610478565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610d9583611067565b6001600160a01b03831660009081526001602052604090205481811015610e0d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610478565b6001600160a01b03841660009081526001602090815260408083208585039055600590915281205460ff168015610e5d57506001600160a01b03841660009081526006602052604090205460ff16155b15610fbb57610e6b84611067565b50600c54600190600090610e7f8142611419565b610e899190611402565b6001600160a01b03861660009081526003602090815260408083205460029092528220929350918260078110610ec157610ec16113d9565b6003020160028101549091506001600160801b03168314610f7e5781600603610eed5760009150610ef9565b610ef68261143b565b91505b6001600160a01b03871660009081526002602052604090208260078110610f2257610f226113d9565b6003908102919091018781556000600182018190556002820180546fffffffffffffffffffffffffffffffff19166001600160801b0388161790556001600160a01b038a16815260209290925260409091208390559050610f98565b85816000016000828254610f9291906113c6565b90915550505b60020180546001600160801b03428116600160801b0291161790555061100e9050565b6001600160a01b03841660009081526005602052604090205460ff1615610fe0575060025b6001600160a01b038416600090815260016020526040812080548592906110089084906113c6565b90915550505b604080516001600160a01b03808816825286166020820152908101829052606081018490527f4b5796113f074ebf8f11d5bcdeb6349b2fbe47abed78419cdcdbbc15c6fcf8459060800160405180910390a15050505050565b6000805b60078110156111ae576001600160a01b0383166000908152600260205260408120826007811061109d5761109d6113d9565b6003020160028101549091506001600160801b031615806110cb575060028101546001600160801b03164211155b806110da575060018101548154145b156110e5575061119c565b600d546002820154600091611102916001600160801b03166113c6565b426001600160801b031610611129576001820154825461112291906113ef565b9050611174565b600d54600283015460009190611148906001600160801b0316426113ef565b84546111549190611402565b61115e9190611419565b905082600101548161117091906113ef565b9150505b61117e81856113c6565b93508082600101600082825461119491906113c6565b909155505050505b806111a68161143b565b91505061106b565b5080156111e3576001600160a01b038216600090815260016020526040812080548392906111dd9084906113c6565b90915550505b5050565b80356001600160a01b03811681146111fe57600080fd5b919050565b60006020828403121561121557600080fd5b6105bc826111e7565b600060208083528351808285015260005b8181101561124b5785810183015185820160400152820161122f565b506000604082860101526040601f19601f8301168501019250505092915050565b6000806040838503121561127f57600080fd5b611288836111e7565b946020939093013593505050565b600080604083850312156112a957600080fd5b6112b2836111e7565b9150602083013580151581146112c757600080fd5b809150509250929050565b6000806000606084860312156112e757600080fd5b6112f0846111e7565b92506112fe602085016111e7565b9150604084013590509250925092565b6000806040838503121561132157600080fd5b61132a836111e7565b9150611338602084016111e7565b90509250929050565b600181811c9082168061135557607f821691505b60208210810361137557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610448576104486113b0565b634e487b7160e01b600052603260045260246000fd5b81810381811115610448576104486113b0565b8082028115828204841417610448576104486113b0565b60008261143657634e487b7160e01b600052601260045260246000fd5b500490565b60006001820161144d5761144d6113b0565b506001019056fea26469706673582212201a8b5229f437303485010b9c0f21179c3fe44b17616a4bca2e0a2f2e8a43236d64736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000d2e11d914133e484f000000000000000000000000000000000000000000000000000000000000000000000f4449434be281b54045524337363630000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044449434b00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): DICK⁵@ERC7660
Arg [1] : symbol_ (string): DICK
Arg [2] : totalSupply_ (uint256): 4079000000000000000000000000
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000d2e11d914133e484f000000
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [4] : 4449434be281b540455243373636300000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4449434b00000000000000000000000000000000000000000000000000000000
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.