Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
69,000,000 Turtule
Holders
11
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
249,453.068983565024228834 TurtuleValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Turtule
Compiler Version
v0.8.25+commit.b61c2a91
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-04-03 */ // SPDX-License-Identifier: MIT /* Website https://turtulecoin.com Telegram https://t.me/turtulecoin ████████╗██╗ ██╗██████╗ ████████╗██╗ ██╗██╗ ███████╗ ╚══██╔══╝██║ ██║██╔══██╗╚══██╔══╝██║ ██║██║ ██╔════╝ ██║ ██║ ██║██████╔╝ ██║ ██║ ██║██║ █████╗ ██║ ██║ ██║██╔══██╗ ██║ ██║ ██║██║ ██╔══╝ ██║ ╚██████╔╝██║ ██║ ██║ ╚██████╔╝███████╗███████╗ ╚═╝ ╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚══════╝╚══════╝ */ pragma solidity ^0.8.25; /** * @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); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/utils/[email protected] // 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/[email protected] // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor (address initOwner) { _owner = initOwner; emit OwnershipTransferred(address(0), _owner); } function owner() public view returns (address) {return _owner;} modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol) /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract Turtule is Context, IERC20, IERC20Metadata, Ownable { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint8 private _decimals; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_, uint8 decimals_, uint256 totalSupply_, address _owner) Ownable(_owner) { _name = name_; _symbol = symbol_; _decimals = decimals_; _totalSupply = totalSupply_ * 10 ** _decimals; _balances[_owner] = _totalSupply; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return _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}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ 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); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
Contract 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":"_owner","type":"address"}],"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":"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"}]
Contract Creation Code
608060405234801561000f575f80fd5b50604051610dfc380380610dfc83398101604081905261002e9161017b565b5f80546001600160a01b0319166001600160a01b03831690811782556040518392907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506005610082868261029e565b50600661008f858261029e565b506003805460ff191660ff85169081179091556100ad90600a610453565b6100b79083610468565b60048190556001600160a01b039091165f908152600160205260409020555061047f92505050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112610102575f80fd5b81516001600160401b038082111561011c5761011c6100df565b604051601f8301601f19908116603f01168101908282118183101715610144576101446100df565b8160405283815286602085880101111561015c575f80fd5b8360208701602083015e5f602085830101528094505050505092915050565b5f805f805f60a0868803121561018f575f80fd5b85516001600160401b03808211156101a5575f80fd5b6101b189838a016100f3565b965060208801519150808211156101c6575f80fd5b506101d3888289016100f3565b945050604086015160ff811681146101e9575f80fd5b6060870151608088015191945092506001600160a01b038116811461020c575f80fd5b809150509295509295909350565b600181811c9082168061022e57607f821691505b60208210810361024c57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561029957805f5260205f20601f840160051c810160208510156102775750805b601f840160051c820191505b81811015610296575f8155600101610283565b50505b505050565b81516001600160401b038111156102b7576102b76100df565b6102cb816102c5845461021a565b84610252565b602080601f8311600181146102fe575f84156102e75750858301515b5f19600386901b1c1916600185901b178555610355565b5f85815260208120601f198616915b8281101561032c5788860151825594840194600190910190840161030d565b508582101561034957878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156103ab57815f19048211156103915761039161035d565b8085161561039e57918102915b93841c9390800290610376565b509250929050565b5f826103c15750600161044d565b816103cd57505f61044d565b81600181146103e357600281146103ed57610409565b600191505061044d565b60ff8411156103fe576103fe61035d565b50506001821b61044d565b5060208310610133831016604e8410600b841016171561042c575081810a61044d565b6104368383610371565b805f19048211156104495761044961035d565b0290505b92915050565b5f61046160ff8416836103b3565b9392505050565b808202811582820484141761044d5761044d61035d565b6109708061048c5f395ff3fe608060405234801561000f575f80fd5b50600436106100cb575f3560e01c806370a082311161008857806395d89b411161006357806395d89b41146101a9578063a457c2d7146101b1578063a9059cbb146101c4578063dd62ed3e146101d7575f80fd5b806370a082311461015d578063715018a6146101855780638da5cb5b1461018f575f80fd5b806306fdde03146100cf578063095ea7b3146100ed57806318160ddd1461011057806323b872dd14610122578063313ce56714610135578063395093511461014a575b5f80fd5b6100d761020f565b6040516100e491906107e1565b60405180910390f35b6101006100fb366004610831565b61029f565b60405190151581526020016100e4565b6004545b6040519081526020016100e4565b610100610130366004610859565b6102b5565b60035460405160ff90911681526020016100e4565b610100610158366004610831565b610362565b61011461016b366004610892565b6001600160a01b03165f9081526001602052604090205490565b61018d61039d565b005b5f546040516001600160a01b0390911681526020016100e4565b6100d761043e565b6101006101bf366004610831565b61044d565b6101006101d2366004610831565b6104e5565b6101146101e53660046108b2565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b60606005805461021e906108e3565b80601f016020809104026020016040519081016040528092919081815260200182805461024a906108e3565b80156102955780601f1061026c57610100808354040283529160200191610295565b820191905f5260205f20905b81548152906001019060200180831161027857829003601f168201915b5050505050905090565b5f6102ab3384846104f1565b5060015b92915050565b5f6102c1848484610614565b6001600160a01b0384165f9081526002602090815260408083203384529091529020548281101561034a5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61035785338584036104f1565b506001949350505050565b335f8181526002602090815260408083206001600160a01b038716845290915281205490916102ab91859061039890869061091b565b6104f1565b5f546001600160a01b031633146103f65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610341565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b60606006805461021e906108e3565b335f9081526002602090815260408083206001600160a01b0386168452909152812054828110156104ce5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610341565b6104db33858584036104f1565b5060019392505050565b5f6102ab338484610614565b6001600160a01b0383166105535760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610341565b6001600160a01b0382166105b45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610341565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166106785760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610341565b6001600160a01b0382166106da5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610341565b6001600160a01b0383165f90815260016020526040902054818110156107515760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610341565b6001600160a01b038085165f9081526001602052604080822085850390559185168152908120805484929061078790849061091b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107d391815260200190565b60405180910390a350505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b038116811461082c575f80fd5b919050565b5f8060408385031215610842575f80fd5b61084b83610816565b946020939093013593505050565b5f805f6060848603121561086b575f80fd5b61087484610816565b925061088260208501610816565b9150604084013590509250925092565b5f602082840312156108a2575f80fd5b6108ab82610816565b9392505050565b5f80604083850312156108c3575f80fd5b6108cc83610816565b91506108da60208401610816565b90509250929050565b600181811c908216806108f757607f821691505b60208210810361091557634e487b7160e01b5f52602260045260245ffd5b50919050565b808201808211156102af57634e487b7160e01b5f52601160045260245ffdfea264697066735822122061514189cb9f8a4f368d0a52955bd57e8c1d184128dc4b01196fd211a7ded15c64736f6c6343000819003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000041cdb4000000000000000000000000064f2d469e420228b3bf6bc53e5597e757c3bb263000000000000000000000000000000000000000000000000000000000000001054757274756c6520414920546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000754757274756c6500000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100cb575f3560e01c806370a082311161008857806395d89b411161006357806395d89b41146101a9578063a457c2d7146101b1578063a9059cbb146101c4578063dd62ed3e146101d7575f80fd5b806370a082311461015d578063715018a6146101855780638da5cb5b1461018f575f80fd5b806306fdde03146100cf578063095ea7b3146100ed57806318160ddd1461011057806323b872dd14610122578063313ce56714610135578063395093511461014a575b5f80fd5b6100d761020f565b6040516100e491906107e1565b60405180910390f35b6101006100fb366004610831565b61029f565b60405190151581526020016100e4565b6004545b6040519081526020016100e4565b610100610130366004610859565b6102b5565b60035460405160ff90911681526020016100e4565b610100610158366004610831565b610362565b61011461016b366004610892565b6001600160a01b03165f9081526001602052604090205490565b61018d61039d565b005b5f546040516001600160a01b0390911681526020016100e4565b6100d761043e565b6101006101bf366004610831565b61044d565b6101006101d2366004610831565b6104e5565b6101146101e53660046108b2565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b60606005805461021e906108e3565b80601f016020809104026020016040519081016040528092919081815260200182805461024a906108e3565b80156102955780601f1061026c57610100808354040283529160200191610295565b820191905f5260205f20905b81548152906001019060200180831161027857829003601f168201915b5050505050905090565b5f6102ab3384846104f1565b5060015b92915050565b5f6102c1848484610614565b6001600160a01b0384165f9081526002602090815260408083203384529091529020548281101561034a5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61035785338584036104f1565b506001949350505050565b335f8181526002602090815260408083206001600160a01b038716845290915281205490916102ab91859061039890869061091b565b6104f1565b5f546001600160a01b031633146103f65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610341565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b60606006805461021e906108e3565b335f9081526002602090815260408083206001600160a01b0386168452909152812054828110156104ce5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610341565b6104db33858584036104f1565b5060019392505050565b5f6102ab338484610614565b6001600160a01b0383166105535760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610341565b6001600160a01b0382166105b45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610341565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166106785760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610341565b6001600160a01b0382166106da5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610341565b6001600160a01b0383165f90815260016020526040902054818110156107515760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610341565b6001600160a01b038085165f9081526001602052604080822085850390559185168152908120805484929061078790849061091b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107d391815260200190565b60405180910390a350505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b038116811461082c575f80fd5b919050565b5f8060408385031215610842575f80fd5b61084b83610816565b946020939093013593505050565b5f805f6060848603121561086b575f80fd5b61087484610816565b925061088260208501610816565b9150604084013590509250925092565b5f602082840312156108a2575f80fd5b6108ab82610816565b9392505050565b5f80604083850312156108c3575f80fd5b6108cc83610816565b91506108da60208401610816565b90509250929050565b600181811c908216806108f757607f821691505b60208210810361091557634e487b7160e01b5f52602260045260245ffd5b50919050565b808201808211156102af57634e487b7160e01b5f52601160045260245ffdfea264697066735822122061514189cb9f8a4f368d0a52955bd57e8c1d184128dc4b01196fd211a7ded15c64736f6c63430008190033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000041cdb4000000000000000000000000064f2d469e420228b3bf6bc53e5597e757c3bb263000000000000000000000000000000000000000000000000000000000000001054757274756c6520414920546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000754757274756c6500000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Turtule AI Token
Arg [1] : symbol_ (string): Turtule
Arg [2] : decimals_ (uint8): 18
Arg [3] : totalSupply_ (uint256): 69000000
Arg [4] : _owner (address): 0x64f2d469E420228b3Bf6bc53e5597E757C3BB263
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 00000000000000000000000000000000000000000000000000000000041cdb40
Arg [4] : 00000000000000000000000064f2d469e420228b3bf6bc53e5597e757c3bb263
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [6] : 54757274756c6520414920546f6b656e00000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [8] : 54757274756c6500000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
7474:10301:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8497:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10671:169;;;;;;:::i;:::-;;:::i;:::-;;;1039:14:1;;1032:22;1014:41;;1002:2;987:18;10671:169:0;874:187:1;9624:108:0;9712:12;;9624:108;;;1212:25:1;;;1200:2;1185:18;9624:108:0;1066:177:1;11322:492:0;;;;;;:::i;:::-;;:::i;9459:100::-;9542:9;;9459:100;;9542:9;;;;1723:36:1;;1711:2;1696:18;9459:100:0;1581:184:1;12223:215:0;;;;;;:::i;:::-;;:::i;9795:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;9896:18:0;9869:7;9896:18;;;:9;:18;;;;;;;9795:127;5997:148;;;:::i;:::-;;5803:63;5841:7;5858:6;5803:63;;-1:-1:-1;;;;;5858:6:0;;;2107:51:1;;2095:2;2080:18;5803:63:0;1961:203:1;8716:104:0;;;:::i;12941:413::-;;;;;;:::i;:::-;;:::i;10135:175::-;;;;;;:::i;:::-;;:::i;10373:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10489:18:0;;;10462:7;10489:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10373:151;8497:100;8551:13;8584:5;8577:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8497:100;:::o;10671:169::-;10754:4;10771:39;5266:10;10794:7;10803:6;10771:8;:39::i;:::-;-1:-1:-1;10828:4:0;10671:169;;;;;:::o;11322:492::-;11462:4;11479:36;11489:6;11497:9;11508:6;11479:9;:36::i;:::-;-1:-1:-1;;;;;11555:19:0;;11528:24;11555:19;;;:11;:19;;;;;;;;5266:10;11555:33;;;;;;;;11607:26;;;;11599:79;;;;-1:-1:-1;;;11599:79:0;;3021:2:1;11599:79:0;;;3003:21:1;3060:2;3040:18;;;3033:30;3099:34;3079:18;;;3072:62;-1:-1:-1;;;3150:18:1;;;3143:38;3198:19;;11599:79:0;;;;;;;;;11714:57;11723:6;5266:10;11764:6;11745:16;:25;11714:8;:57::i;:::-;-1:-1:-1;11802:4:0;;11322:492;-1:-1:-1;;;;11322:492:0:o;12223:215::-;5266:10;12311:4;12360:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12360:34:0;;;;;;;;;;12311:4;;12328:80;;12351:7;;12360:47;;12397:10;;12360:47;:::i;:::-;12328:8;:80::i;5997:148::-;5912:6;;-1:-1:-1;;;;;5912:6:0;5266:10;5912:22;5904:67;;;;-1:-1:-1;;;5904:67:0;;3657:2:1;5904:67:0;;;3639:21:1;;;3676:18;;;3669:30;3735:34;3715:18;;;3708:62;3787:18;;5904:67:0;3455:356:1;5904:67:0;6104:1:::1;6088:6:::0;;6067:40:::1;::::0;-1:-1:-1;;;;;6088:6:0;;::::1;::::0;6067:40:::1;::::0;6104:1;;6067:40:::1;6135:1;6118:19:::0;;-1:-1:-1;;;;;;6118:19:0::1;::::0;;5997:148::o;8716:104::-;8772:13;8805:7;8798:14;;;;;:::i;12941:413::-;5266:10;13034:4;13078:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13078:34:0;;;;;;;;;;13131:35;;;;13123:85;;;;-1:-1:-1;;;13123:85:0;;4018:2:1;13123:85:0;;;4000:21:1;4057:2;4037:18;;;4030:30;4096:34;4076:18;;;4069:62;-1:-1:-1;;;4147:18:1;;;4140:35;4192:19;;13123:85:0;3816:401:1;13123:85:0;13244:67;5266:10;13267:7;13295:15;13276:16;:34;13244:8;:67::i;:::-;-1:-1:-1;13342:4:0;;12941:413;-1:-1:-1;;;12941:413:0:o;10135:175::-;10221:4;10238:42;5266:10;10262:9;10273:6;10238:9;:42::i;15939:380::-;-1:-1:-1;;;;;16075:19:0;;16067:68;;;;-1:-1:-1;;;16067:68:0;;4424:2:1;16067:68:0;;;4406:21:1;4463:2;4443:18;;;4436:30;4502:34;4482:18;;;4475:62;-1:-1:-1;;;4553:18:1;;;4546:34;4597:19;;16067:68:0;4222:400:1;16067:68:0;-1:-1:-1;;;;;16154:21:0;;16146:68;;;;-1:-1:-1;;;16146:68:0;;4829:2:1;16146:68:0;;;4811:21:1;4868:2;4848:18;;;4841:30;4907:34;4887:18;;;4880:62;-1:-1:-1;;;4958:18:1;;;4951:32;5000:19;;16146:68:0;4627:398:1;16146:68:0;-1:-1:-1;;;;;16227:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16279:32;;1212:25:1;;;16279:32:0;;1185:18:1;16279:32:0;;;;;;;15939:380;;;:::o;13844:733::-;-1:-1:-1;;;;;13984:20:0;;13976:70;;;;-1:-1:-1;;;13976:70:0;;5232:2:1;13976:70:0;;;5214:21:1;5271:2;5251:18;;;5244:30;5310:34;5290:18;;;5283:62;-1:-1:-1;;;5361:18:1;;;5354:35;5406:19;;13976:70:0;5030:401:1;13976:70:0;-1:-1:-1;;;;;14065:23:0;;14057:71;;;;-1:-1:-1;;;14057:71:0;;5638:2:1;14057:71:0;;;5620:21:1;5677:2;5657:18;;;5650:30;5716:34;5696:18;;;5689:62;-1:-1:-1;;;5767:18:1;;;5760:33;5810:19;;14057:71:0;5436:399:1;14057:71:0;-1:-1:-1;;;;;14225:17:0;;14201:21;14225:17;;;:9;:17;;;;;;14261:23;;;;14253:74;;;;-1:-1:-1;;;14253:74:0;;6042:2:1;14253:74:0;;;6024:21:1;6081:2;6061:18;;;6054:30;6120:34;6100:18;;;6093:62;-1:-1:-1;;;6171:18:1;;;6164:36;6217:19;;14253:74:0;5840:402:1;14253:74:0;-1:-1:-1;;;;;14363:17:0;;;;;;;:9;:17;;;;;;14383:22;;;14363:42;;14427:20;;;;;;;;:30;;14399:6;;14363:17;14427:30;;14399:6;;14427:30;:::i;:::-;;;;;;;;14492:9;-1:-1:-1;;;;;14475:35:0;14484:6;-1:-1:-1;;;;;14475:35:0;;14503:6;14475:35;;;;1212:25:1;;1200:2;1185:18;;1066:177;14475:35:0;;;;;;;;13965:612;13844:733;;;:::o;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:173::-;505:20;;-1:-1:-1;;;;;554:31:1;;544:42;;534:70;;600:1;597;590:12;534:70;437:173;;;:::o;615:254::-;683:6;691;744:2;732:9;723:7;719:23;715:32;712:52;;;760:1;757;750:12;712:52;783:29;802:9;783:29;:::i;:::-;773:39;859:2;844:18;;;;831:32;;-1:-1:-1;;;615:254:1:o;1248:328::-;1325:6;1333;1341;1394:2;1382:9;1373:7;1369:23;1365:32;1362:52;;;1410:1;1407;1400:12;1362:52;1433:29;1452:9;1433:29;:::i;:::-;1423:39;;1481:38;1515:2;1504:9;1500:18;1481:38;:::i;:::-;1471:48;;1566:2;1555:9;1551:18;1538:32;1528:42;;1248:328;;;;;:::o;1770:186::-;1829:6;1882:2;1870:9;1861:7;1857:23;1853:32;1850:52;;;1898:1;1895;1888:12;1850:52;1921:29;1940:9;1921:29;:::i;:::-;1911:39;1770:186;-1:-1:-1;;;1770:186:1:o;2169:260::-;2237:6;2245;2298:2;2286:9;2277:7;2273:23;2269:32;2266:52;;;2314:1;2311;2304:12;2266:52;2337:29;2356:9;2337:29;:::i;:::-;2327:39;;2385:38;2419:2;2408:9;2404:18;2385:38;:::i;:::-;2375:48;;2169:260;;;;;:::o;2434:380::-;2513:1;2509:12;;;;2556;;;2577:61;;2631:4;2623:6;2619:17;2609:27;;2577:61;2684:2;2676:6;2673:14;2653:18;2650:38;2647:161;;2730:10;2725:3;2721:20;2718:1;2711:31;2765:4;2762:1;2755:15;2793:4;2790:1;2783:15;2647:161;;2434:380;;;:::o;3228:222::-;3293:9;;;3314:10;;;3311:133;;;3366:10;3361:3;3357:20;3354:1;3347:31;3401:4;3398:1;3391:15;3429:4;3426:1;3419:15
Swarm Source
ipfs://61514189cb9f8a4f368d0a52955bd57e8c1d184128dc4b01196fd211a7ded15c
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.