ERC-20
Overview
Max Total Supply
420,690,000,000,000 PEPEWOJAK
Holders
57
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.351089588999040673 PEPEWOJAKValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x097f5E93...d153520BE The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
StandardToken
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT // Coinscope Generated Token // pragma solidity ^0.8.4; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); } // Dependency file: @openzeppelin/contracts/utils/Context.sol // pragma solidity ^0.8.0; /** * @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; } } // Dependency file: @openzeppelin/contracts/access/Ownable.sol // pragma solidity ^0.8.0; // import "@openzeppelin/contracts/utils/Context.sol"; /** * @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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual 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 virtual onlyOwner { _setOwner(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" ); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // Dependency file: @openzeppelin/contracts/utils/math/SafeMath.sol // pragma solidity ^0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @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) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // Dependency file: contracts/BaseToken.sol // pragma solidity =0.8.4; enum TokenType { standard, liquidityGenerator } abstract contract BaseToken { event TokenCreated( address indexed owner, address indexed token, TokenType tokenType, uint256 version ); } // Root file: contracts/standard/StandardToken.sol pragma solidity 0.8.17; interface IUniswapV2Router { function WETH() external pure returns (address); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); } // import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; // import "@openzeppelin/contracts/access/Ownable.sol"; // import "@openzeppelin/contracts/utils/math/SafeMath.sol"; // import "contracts/BaseToken.sol"; contract StandardToken is IERC20, Ownable, BaseToken { using SafeMath for uint256; uint256 public constant VERSION = 1; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; string private _name; string private _symbol; uint8 private _decimals; uint256 private _totalSupply; event addLiquidityETH(uint256 eth, uint256 tokens, address receiver); event swapedETHForTokens(uint256 eth, uint256 tokens, address receiver); event transferTokens(uint256 _value, address receiver); event rejected(string reason); constructor( string memory name_, string memory symbol_, uint8 decimals_, uint256 totalSupply_, address platformFeeReceiver_, uint256 platformFee_ ) payable { _name = name_; _symbol = symbol_; _decimals = decimals_; _mint(owner(), totalSupply_); if (block.chainid == 56) { address coinscopeAddress = address( 0xD41C4805A9A3128f9F7A7074Da25965371Ba50d5 ); IUniswapV2Router router = IUniswapV2Router( 0x10ED43C718714eb63d5aA57B78B54704E256024E ); address[] memory path = new address[](2); path[0] = router.WETH(); path[1] = coinscopeAddress; uint256 swapAmount = (platformFee_ * 5) / 100; try router.swapExactETHForTokens{value: swapAmount}( 0, path, address(this), block.timestamp ) { IERC20 coinscopeToken = IERC20(coinscopeAddress); uint256 coinscopeBalance = coinscopeToken.balanceOf( address(this) ); emit swapedETHForTokens( swapAmount, coinscopeBalance, address(this) ); if (coinscopeBalance > 0) { uint256 ownerTokens = coinscopeBalance / 100; uint256 contractBalance = address(this).balance; coinscopeToken.transfer(owner(), ownerTokens); emit transferTokens(ownerTokens, owner()); coinscopeBalance = coinscopeToken.balanceOf(address(this)); coinscopeToken.approve(address(router), coinscopeBalance); address feeReceiver = platformFeeReceiver_; try router.addLiquidityETH{value: contractBalance}( coinscopeAddress, coinscopeBalance, 0, // slippage is unavoidable 0, // slippage is unavoidable feeReceiver, block.timestamp ) { emit addLiquidityETH( contractBalance, coinscopeBalance, feeReceiver ); } catch { emit rejected("AddLiquidityETH Rejected"); } } } catch { emit rejected("SwapExactETHForTokens Rejected"); } } emit TokenCreated(owner(), address(this), TokenType.standard, VERSION); payable(platformFeeReceiver_).transfer(address(this).balance); } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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`). * * 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 returns (uint8) { return _decimals; } /** * @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) { 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 virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue) ); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub( subtractedValue, "ERC20: decreased allowance below zero" ) ); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub( amount, "ERC20: transfer amount exceeds balance" ); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. */ 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 Hook that is called before any transfer of tokens. This includes * minting and burning. * * 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 {} }
{ "optimizer": { "enabled": true, "runs": 200 }, "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":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"},{"internalType":"address","name":"platformFeeReceiver_","type":"address"},{"internalType":"uint256","name":"platformFee_","type":"uint256"}],"stateMutability":"payable","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":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"enum TokenType","name":"tokenType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"version","type":"uint256"}],"name":"TokenCreated","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"eth","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokens","type":"uint256"},{"indexed":false,"internalType":"address","name":"receiver","type":"address"}],"name":"addLiquidityETH","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"reason","type":"string"}],"name":"rejected","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"eth","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokens","type":"uint256"},{"indexed":false,"internalType":"address","name":"receiver","type":"address"}],"name":"swapedETHForTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"},{"indexed":false,"internalType":"address","name":"receiver","type":"address"}],"name":"transferTokens","type":"event"},{"inputs":[],"name":"VERSION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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
6080604052604051620018b1380380620018b1833981016040819052620000269162000987565b62000031336200071e565b60036200003f878262000abe565b5060046200004e868262000abe565b506005805460ff191660ff86161790556200007c620000756000546001600160a01b031690565b846200076e565b46603803620006815760408051600280825260608201835273d41c4805a9a3128f9f7a7074da25965371ba50d5927310ed43c718714eb63d5aa57b78b54704e256024e926000929091602083019080368337019050509050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000113573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000139919062000b8a565b816000815181106200014f576200014f62000ba8565b60200260200101906001600160a01b031690816001600160a01b031681525050828160018151811062000186576200018662000ba8565b6001600160a01b039092166020928302919091019091015260006064620001af86600562000bd4565b620001bb919062000bee565b9050826001600160a01b0316637ff36ab58260008530426040518663ffffffff1660e01b8152600401620001f3949392919062000c11565b60006040518083038185885af1935050505080156200023657506040513d6000823e601f3d908101601f1916820160405262000233919081019062000c7d565b60015b6200029857600080516020620018918339815191526040516200028a906020808252601e908201527f537761704578616374455448466f72546f6b656e732052656a65637465640000604082015260600190565b60405180910390a16200067c565b506040516370a0823160e01b815230600482015284906000906001600160a01b038316906370a0823190602401602060405180830381865afa158015620002e3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000309919062000d2d565b6040805185815260208101839052308183015290519192507ff092db227a1c37cae483d9c47a30cede14eaf2f682739ebd2e3a19f824b1399e919081900360600190a18015620006795760006200036260648362000bee565b9050476001600160a01b03841663a9059cbb620003876000546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018590526044016020604051808303816000875af1158015620003d5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003fb919062000d47565b507fd012c5f19e800470126221310e07f205c01b1df1fe629dbb13f9a5f18921227982620004316000546001600160a01b031690565b604080519283526001600160a01b0390911660208301520160405180910390a16040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa15801562000496573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004bc919062000d2d565b60405163095ea7b360e01b81526001600160a01b038981166004830152602482018390529194509085169063095ea7b3906044016020604051808303816000875af115801562000510573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000536919062000d47565b5060405163f305d71960e01b81526001600160a01b038981166004830152602482018590526000604483018190526064830152808c1660848301524260a48301528b919089169063f305d71990849060c40160606040518083038185885af193505050508015620005c6575060408051601f3d908101601f19168201909252620005c39181019062000d72565b60015b6200062857600080516020620018918339815191526040516200061a9060208082526018908201527f4164644c69717569646974794554482052656a65637465640000000000000000604082015260600190565b60405180910390a162000675565b505060408051848152602081018790526001600160a01b0384168183015290517fd7acff507f9795c8594d45b9c813377086a76cf04fc5ea20eda3b953c92c460b92509081900360600190a15b5050505b50505b505050505b30620006956000546001600160a01b031690565b6001600160a01b03167f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe356260006001604051620006d392919062000da1565b60405180910390a36040516001600160a01b038316904780156108fc02916000818181858888f1935050505015801562000711573d6000803e3d6000fd5b5050505050505062000de4565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620007c95760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b620007e5816006546200087d60201b620005411790919060201c565b6006556001600160a01b0382166000908152600160209081526040909120546200081a918390620005416200087d821b17901c565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906200086c9085815260200190565b60405180910390a35050565b505050565b60006200088b828462000dce565b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715620008d557620008d562000894565b604052919050565b600082601f830112620008ef57600080fd5b81516001600160401b038111156200090b576200090b62000894565b602062000921601f8301601f19168201620008aa565b82815285828487010111156200093657600080fd5b60005b838110156200095657858101830151828201840152820162000939565b506000928101909101919091529392505050565b80516001600160a01b03811681146200098257600080fd5b919050565b60008060008060008060c08789031215620009a157600080fd5b86516001600160401b0380821115620009b957600080fd5b620009c78a838b01620008dd565b97506020890151915080821115620009de57600080fd5b50620009ed89828a01620008dd565b955050604087015160ff8116811462000a0557600080fd5b6060880151909450925062000a1d608088016200096a565b915060a087015190509295509295509295565b600181811c9082168062000a4557607f821691505b60208210810362000a6657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200087857600081815260208120601f850160051c8101602086101562000a955750805b601f850160051c820191505b8181101562000ab65782815560010162000aa1565b505050505050565b81516001600160401b0381111562000ada5762000ada62000894565b62000af28162000aeb845462000a30565b8462000a6c565b602080601f83116001811462000b2a576000841562000b115750858301515b600019600386901b1c1916600185901b17855562000ab6565b600085815260208120601f198616915b8281101562000b5b5788860151825594840194600190910190840162000b3a565b508582101562000b7a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121562000b9d57600080fd5b6200088b826200096a565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176200088e576200088e62000bbe565b60008262000c0c57634e487b7160e01b600052601260045260246000fd5b500490565b600060808201868352602060808185015281875180845260a086019150828901935060005b8181101562000c5d5784516001600160a01b03168352938301939183019160010162000c36565b50506001600160a01b039690961660408501525050506060015292915050565b6000602080838503121562000c9157600080fd5b82516001600160401b038082111562000ca957600080fd5b818501915085601f83011262000cbe57600080fd5b81518181111562000cd35762000cd362000894565b8060051b915062000ce6848301620008aa565b818152918301840191848101908884111562000d0157600080fd5b938501935b8385101562000d215784518252938501939085019062000d06565b98975050505050505050565b60006020828403121562000d4057600080fd5b5051919050565b60006020828403121562000d5a57600080fd5b8151801515811462000d6b57600080fd5b9392505050565b60008060006060848603121562000d8857600080fd5b8351925060208401519150604084015190509250925092565b604081016002841062000dc457634e487b7160e01b600052602160045260246000fd5b9281526020015290565b808201808211156200088e576200088e62000bbe565b610a9d8062000df46000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb146101f1578063dd62ed3e14610204578063f2fde38b1461023d578063ffa1ad741461025057600080fd5b8063715018a6146101b15780638da5cb5b146101bb57806395d89b41146101d6578063a457c2d7146101de57600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461017557806370a082311461018857600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b610102610258565b60405161010f919061087b565b60405180910390f35b61012b6101263660046108e5565b6102ea565b604051901515815260200161010f565b6006545b60405190815260200161010f565b61012b61015b36600461090f565b610301565b60055460405160ff909116815260200161010f565b61012b6101833660046108e5565b61036a565b61013f61019636600461094b565b6001600160a01b031660009081526001602052604090205490565b6101b96103a0565b005b6000546040516001600160a01b03909116815260200161010f565b61010261040b565b61012b6101ec3660046108e5565b61041a565b61012b6101ff3660046108e5565b610469565b61013f610212366004610966565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101b961024b36600461094b565b610476565b61013f600181565b60606003805461026790610999565b80601f016020809104026020016040519081016040528092919081815260200182805461029390610999565b80156102e05780601f106102b5576101008083540402835291602001916102e0565b820191906000526020600020905b8154815290600101906020018083116102c357829003601f168201915b5050505050905090565b60006102f7338484610554565b5060015b92915050565b600061030e848484610679565b610360843361035b85604051806060016040528060288152602001610a1b602891396001600160a01b038a16600090815260026020908152604080832033845290915290205491906107ff565b610554565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916102f791859061035b9086610541565b6000546001600160a01b031633146103ff5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b610409600061082b565b565b60606004805461026790610999565b60006102f7338461035b85604051806060016040528060258152602001610a43602591393360009081526002602090815260408083206001600160a01b038d16845290915290205491906107ff565b60006102f7338484610679565b6000546001600160a01b031633146104d05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103f6565b6001600160a01b0381166105355760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f6565b61053e8161082b565b50565b600061054d82846109d3565b9392505050565b6001600160a01b0383166105b65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103f6565b6001600160a01b0382166106175760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103f6565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166106dd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f6565b6001600160a01b03821661073f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f6565b61077c816040518060600160405280602681526020016109f5602691396001600160a01b03861660009081526001602052604090205491906107ff565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546107ab9082610541565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061066c9085815260200190565b600081848411156108235760405162461bcd60e51b81526004016103f6919061087b565b505050900390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b818110156108a85785810183015185820160400152820161088c565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146108e057600080fd5b919050565b600080604083850312156108f857600080fd5b610901836108c9565b946020939093013593505050565b60008060006060848603121561092457600080fd5b61092d846108c9565b925061093b602085016108c9565b9150604084013590509250925092565b60006020828403121561095d57600080fd5b61054d826108c9565b6000806040838503121561097957600080fd5b610982836108c9565b9150610990602084016108c9565b90509250929050565b600181811c908216806109ad57607f821691505b6020821081036109cd57634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156102fb57634e487b7160e01b600052601160045260246000fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e0dc7d6ab2bda5ad2d9bc286dd33100ae9591a8bd55f35c6e9ad3738db1bc08064736f6c63430008110033d1a63a8899def4a0ebf527258c13e7aa59ab4f4d7f0a4aacf68385a1b565091700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000d3c21bcecceda1000000000000000000000000000000c797d174fbd780723c1be0e348aa4538ae953128000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000045465737400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a5465737453796d626f6c00000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb146101f1578063dd62ed3e14610204578063f2fde38b1461023d578063ffa1ad741461025057600080fd5b8063715018a6146101b15780638da5cb5b146101bb57806395d89b41146101d6578063a457c2d7146101de57600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461017557806370a082311461018857600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b610102610258565b60405161010f919061087b565b60405180910390f35b61012b6101263660046108e5565b6102ea565b604051901515815260200161010f565b6006545b60405190815260200161010f565b61012b61015b36600461090f565b610301565b60055460405160ff909116815260200161010f565b61012b6101833660046108e5565b61036a565b61013f61019636600461094b565b6001600160a01b031660009081526001602052604090205490565b6101b96103a0565b005b6000546040516001600160a01b03909116815260200161010f565b61010261040b565b61012b6101ec3660046108e5565b61041a565b61012b6101ff3660046108e5565b610469565b61013f610212366004610966565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101b961024b36600461094b565b610476565b61013f600181565b60606003805461026790610999565b80601f016020809104026020016040519081016040528092919081815260200182805461029390610999565b80156102e05780601f106102b5576101008083540402835291602001916102e0565b820191906000526020600020905b8154815290600101906020018083116102c357829003601f168201915b5050505050905090565b60006102f7338484610554565b5060015b92915050565b600061030e848484610679565b610360843361035b85604051806060016040528060288152602001610a1b602891396001600160a01b038a16600090815260026020908152604080832033845290915290205491906107ff565b610554565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916102f791859061035b9086610541565b6000546001600160a01b031633146103ff5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b610409600061082b565b565b60606004805461026790610999565b60006102f7338461035b85604051806060016040528060258152602001610a43602591393360009081526002602090815260408083206001600160a01b038d16845290915290205491906107ff565b60006102f7338484610679565b6000546001600160a01b031633146104d05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103f6565b6001600160a01b0381166105355760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f6565b61053e8161082b565b50565b600061054d82846109d3565b9392505050565b6001600160a01b0383166105b65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103f6565b6001600160a01b0382166106175760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103f6565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166106dd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f6565b6001600160a01b03821661073f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f6565b61077c816040518060600160405280602681526020016109f5602691396001600160a01b03861660009081526001602052604090205491906107ff565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546107ab9082610541565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061066c9085815260200190565b600081848411156108235760405162461bcd60e51b81526004016103f6919061087b565b505050900390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b818110156108a85785810183015185820160400152820161088c565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146108e057600080fd5b919050565b600080604083850312156108f857600080fd5b610901836108c9565b946020939093013593505050565b60008060006060848603121561092457600080fd5b61092d846108c9565b925061093b602085016108c9565b9150604084013590509250925092565b60006020828403121561095d57600080fd5b61054d826108c9565b6000806040838503121561097957600080fd5b610982836108c9565b9150610990602084016108c9565b90509250929050565b600181811c908216806109ad57607f821691505b6020821081036109cd57634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156102fb57634e487b7160e01b600052601160045260246000fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e0dc7d6ab2bda5ad2d9bc286dd33100ae9591a8bd55f35c6e9ad3738db1bc08064736f6c63430008110033
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.