ERC-20
Artificial Intelligence
Overview
Max Total Supply
500,000,000 JINKO
Holders
1,007 (0.00%)
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$522,330.00
Circulating Supply Market Cap
$244,527.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
2,080 JINKOValue
$2.17 ( ~0.00055827696968488 Eth) [0.0004%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
StandardToken
Compiler Version
v0.8.21+commit.d9974bed
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-10-19 */ // File: @openzeppelin/[email protected]/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File: @openzeppelin/[email protected]/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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/[email protected]/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; /** * @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. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/[email protected]/utils/Pausable.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/Pausable.sol) pragma solidity ^0.8.20; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { bool private _paused; /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); /** * @dev The operation failed because the contract is paused. */ error EnforcedPause(); /** * @dev The operation failed because the contract is not paused. */ error ExpectedPause(); /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { if (paused()) { revert EnforcedPause(); } } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { if (!paused()) { revert ExpectedPause(); } } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: @openzeppelin/[email protected]/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); } // File: @openzeppelin/[email protected]/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ 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/[email protected]/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @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}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * 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 returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * 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. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } // File: @openzeppelin/[email protected]/token/ERC20/extensions/ERC20Pausable.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Pausable.sol) pragma solidity ^0.8.20; /** * @dev ERC20 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. * * IMPORTANT: This contract does not include public pause and unpause functions. In * addition to inheriting this contract, you must define both functions, invoking the * {Pausable-_pause} and {Pausable-_unpause} internal functions, with appropriate * access control, e.g. using {AccessControl} or {Ownable}. Not doing so will * make the contract pause mechanism of the contract unreachable, and thus unusable. */ abstract contract ERC20Pausable is ERC20, Pausable { /** * @dev See {ERC20-_update}. * * Requirements: * * - the contract must not be paused. */ function _update(address from, address to, uint256 value) internal virtual override whenNotPaused { super._update(from, to, value); } } // File: @openzeppelin/[email protected]/token/ERC20/extensions/ERC20Burnable.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.20; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys a `value` amount of tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 value) public virtual { _burn(_msgSender(), value); } /** * @dev Destroys a `value` amount of tokens from `account`, deducting from * the caller's allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `value`. */ function burnFrom(address account, uint256 value) public virtual { _spendAllowance(account, _msgSender(), value); _burn(account, value); } } // File: token/StandardToken.sol pragma solidity ^0.8.20; contract StandardToken is ERC20, ERC20Burnable, ERC20Pausable, Ownable { enum distributionTitle { PrivateSale1, // 0 PrivateSale2, // 1 Listing, // 2 CommunitiesReward, // 3 FutureDevelopment, // 4 Marketing, // 5 DAO, // 6 Team // 7 } struct distributionData { uint256 percentage; uint256 totalSupply; uint256 remainingSupply; } mapping(uint8 => distributionData) public distributions; mapping(address => bool) public antiWhaleList; mapping(address => bool) public minter; uint256 public totalPercentage; uint256 public maxSupply; // maximum limit of per transaction // (!) input value precision follow "decimals" uint256 public rateMaxTransfer; event Mint(address to, uint256 amount, uint8 distributionIndex); event UpdateMinter(address account, bool status); event UpdateAntiWhaleList(address account, bool status); event UpdateRateMaxTransfer(uint256 rate); modifier checkAvailability(uint256 _quantity, uint8 distributionIndex) { require( _quantity <= distributions[distributionIndex].remainingSupply, "mint exceed supply" ); _; } modifier onlyMinter() { require(minter[msg.sender], "only minter can mint"); _; } modifier antiWhale( address from, address to, uint256 amount ) { if (maxTransferAmount() > 0) { if (antiWhaleList[from] || antiWhaleList[to]) { require( amount <= maxTransferAmount(), "antiWhale: Transfer amount exceeds the maxTransferAmount" ); } } _; } constructor(address initialOwner, uint256[] memory _percentage, uint256 _maxSupply) ERC20("Jinko", "JINKO") Ownable(initialOwner) { minter[_msgSender()] = true; rateMaxTransfer = 10000; totalPercentage = 10000; // 100% * 2 decimal places maxSupply = _maxSupply; uint256 _currentPercentage = 0; for (uint8 i = 0; i < uint256(type(distributionTitle).max) + 1; i++) { _currentPercentage += _percentage[i]; if (_currentPercentage > totalPercentage) { revert("Total percentage must be 100"); } distributions[i].percentage = _percentage[i]; distributions[i].totalSupply = (_percentage[i] * maxSupply) / totalPercentage; distributions[i].remainingSupply = (_percentage[i] * maxSupply) / totalPercentage; } if (_currentPercentage < totalPercentage) { revert("Total percentage must be 100"); } } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } // get circulating supply (total supply - burn) function circulateSupply() public view returns (uint256) { return totalSupply() - (balanceOf(address(0))); } // get max transfer amount function maxTransferAmount() public view returns (uint256) { return (circulateSupply() * rateMaxTransfer) / totalPercentage; } // get distribution data by distribution index function getTokenDistribution(uint8 _distributionIndex) public view returns (uint256 percentage, uint256 totalSupply, uint256 remainingSupply) { distributionData memory _d = distributions[_distributionIndex]; percentage = _d.percentage; totalSupply = _d.totalSupply; remainingSupply = _d.remainingSupply; } // mint token to address with distribution index function mint( address to, uint256 amount, uint8 distributionIndex ) public onlyMinter checkAvailability(amount, distributionIndex) { distributions[distributionIndex].remainingSupply -= amount; _mint(to, amount); emit Mint(to, amount, distributionIndex); } // override transfer function function transfer(address to, uint256 value) public virtual override antiWhale(msg.sender, to, value) returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } // override transferFrom function function transferFrom(address from, address to, uint256 value) public virtual override antiWhale(from, to, value) returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } // update minter status by owner only function updateMinter(address _address, bool isMinter) public virtual onlyOwner returns (bool) { minter[_address] = isMinter; emit UpdateMinter(_address, isMinter); return true; } // update anti whale list by owner only function updateAntiWhaleList(address _address, bool _isAntiWhaleList) public onlyOwner returns (bool) { antiWhaleList[_address] = _isAntiWhaleList; emit UpdateAntiWhaleList(_address, _isAntiWhaleList); return true; } // update rate max transfer in 2 decimal places by owner only function updateRateMaxTransfer(uint256 _rate) external onlyOwner returns (bool) { rateMaxTransfer = _rate; emit UpdateRateMaxTransfer(rateMaxTransfer); return true; } // The following functions are overrides required by Solidity. function _update(address from, address to, uint256 value) internal override(ERC20, ERC20Pausable) { super._update(from, to, value); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"},{"internalType":"uint256[]","name":"_percentage","type":"uint256[]"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"distributionIndex","type":"uint8"}],"name":"Mint","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"UpdateAntiWhaleList","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"UpdateMinter","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"rate","type":"uint256"}],"name":"UpdateRateMaxTransfer","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":"","type":"address"}],"name":"antiWhaleList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"circulateSupply","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":"uint8","name":"","type":"uint8"}],"name":"distributions","outputs":[{"internalType":"uint256","name":"percentage","type":"uint256"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"uint256","name":"remainingSupply","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_distributionIndex","type":"uint8"}],"name":"getTokenDistribution","outputs":[{"internalType":"uint256","name":"percentage","type":"uint256"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"uint256","name":"remainingSupply","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransferAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint8","name":"distributionIndex","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rateMaxTransfer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"totalPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"value","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":"value","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"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isAntiWhaleList","type":"bool"}],"name":"updateAntiWhaleList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"isMinter","type":"bool"}],"name":"updateMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rate","type":"uint256"}],"name":"updateRateMaxTransfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801562000010575f80fd5b50604051620017f9380380620017f9833981016040819052620000339162000368565b82604051806040016040528060058152602001644a696e6b6f60d81b815250604051806040016040528060058152602001644a494e4b4f60d81b8152508160039081620000819190620004e3565b506004620000908282620004e3565b50506005805460ff19169055506001600160a01b038116620000cc57604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b620000d781620002fb565b50335f908152600860205260408120805460ff19166001179055612710600b819055600955600a829055805b6200011160076001620005bf565b8160ff1610156200029c57838160ff1681518110620001345762000134620005db565b602002602001015182620001499190620005bf565b91506009548211156200019f5760405162461bcd60e51b815260206004820152601c60248201527f546f74616c2070657263656e74616765206d75737420626520313030000000006044820152606401620000c3565b838160ff1681518110620001b757620001b7620005db565b602002602001015160065f8360ff1660ff1681526020019081526020015f205f0181905550600954600a54858360ff1681518110620001fa57620001fa620005db565b60200260200101516200020e9190620005ef565b6200021a919062000609565b60ff82165f81815260066020526040902060010191909155600954600a548651919290918791908110620002525762000252620005db565b6020026020010151620002669190620005ef565b62000272919062000609565b60ff82165f9081526006602052604090206002015580620002938162000629565b91505062000103565b50600954811015620002f15760405162461bcd60e51b815260206004820152601c60248201527f546f74616c2070657263656e74616765206d75737420626520313030000000006044820152606401620000c3565b505050506200064a565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b634e487b7160e01b5f52604160045260245ffd5b5f805f606084860312156200037b575f80fd5b83516001600160a01b038116811462000392575f80fd5b602085810151919450906001600160401b0380821115620003b1575f80fd5b818701915087601f830112620003c5575f80fd5b815181811115620003da57620003da62000354565b8060051b604051601f19603f8301168101818110858211171562000402576200040262000354565b60405291825284820192508381018501918a83111562000420575f80fd5b938501935b82851015620004405784518452938501939285019262000425565b809750505050505050604084015190509250925092565b600181811c908216806200046c57607f821691505b6020821081036200048b57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620004de575f81815260208120601f850160051c81016020861015620004b95750805b601f850160051c820191505b81811015620004da57828155600101620004c5565b5050505b505050565b81516001600160401b03811115620004ff57620004ff62000354565b620005178162000510845462000457565b8462000491565b602080601f8311600181146200054d575f8415620005355750858301515b5f19600386901b1c1916600185901b178555620004da565b5f85815260208120601f198616915b828110156200057d578886015182559484019460019091019084016200055c565b50858210156200059b57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b80820180821115620005d557620005d5620005ab565b92915050565b634e487b7160e01b5f52603260045260245ffd5b8082028115828204841417620005d557620005d5620005ab565b5f826200062457634e487b7160e01b5f52601260045260245ffd5b500490565b5f60ff821660ff8103620006415762000641620005ab565b60010192915050565b6111a180620006585f395ff3fe608060405234801561000f575f80fd5b50600436106101d1575f3560e01c8063715018a6116100fe578063b615c62b1161009e578063dd62ed3e1161006e578063dd62ed3e14610425578063ee1c09301461045d578063f248b1391461047f578063f2fde38b14610488575f80fd5b8063b615c62b146103b5578063cf5a3b2414610400578063d44a0e6114610413578063d5abeb011461041c575f80fd5b80638da5cb5b116100d95780638da5cb5b1461036957806395d89b4114610392578063a9059cbb1461039a578063a9e75723146103ad575f80fd5b8063715018a61461034657806379cc67901461034e5780638456cb5914610361575f80fd5b806336d5cb391161017457806343620e711161014457806343620e71146102ed5780635c975abb146103005780636112e8ac1461030b57806370a082311461031e575f80fd5b806336d5cb39146102a65780633dd08c38146102ae5780633f4ba83a146102d057806342966c68146102da575f80fd5b806318689599116101af57806318689599146102285780631d873fb51461027157806323b872dd14610284578063313ce56714610297575f80fd5b806306fdde03146101d5578063095ea7b3146101f357806318160ddd14610216575b5f80fd5b6101dd61049b565b6040516101ea9190610ea1565b60405180910390f35b610206610201366004610f02565b61052b565b60405190151581526020016101ea565b6002545b6040519081526020016101ea565b610256610236366004610f3a565b60066020525f908152604090208054600182015460029092015490919083565b604080519384526020840192909252908201526060016101ea565b61020661027f366004610f5a565b610544565b610206610292366004610f93565b6105b5565b604051601281526020016101ea565b61021a61065f565b6102066102bc366004610fcc565b60086020525f908152604090205460ff1681565b6102d861069c565b005b6102d86102e8366004610fe5565b6106ae565b6102066102fb366004610f5a565b6106bb565b60055460ff16610206565b6102d8610319366004610ffc565b61071f565b61021a61032c366004610fcc565b6001600160a01b03165f9081526020819052604090205490565b6102d8610857565b6102d861035c366004610f02565b610868565b6102d8610881565b60055461010090046001600160a01b03166040516001600160a01b0390911681526020016101ea565b6101dd610891565b6102066103a8366004610f02565b6108a0565b61021a610935565b6102566103c3366004610f3a565b60ff165f90815260066020908152604091829020825160608101845281548082526001830154938201849052600290920154930183905292909190565b61020661040e366004610fe5565b610958565b61021a60095481565b61021a600a5481565b61021a610433366004611035565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61020661046b366004610fcc565b60076020525f908152604090205460ff1681565b61021a600b5481565b6102d8610496366004610fcc565b6109a2565b6060600380546104aa90611066565b80601f01602080910402602001604051908101604052809291908181526020018280546104d690611066565b80156105215780601f106104f857610100808354040283529160200191610521565b820191905f5260205f20905b81548152906001019060200180831161050457829003601f168201915b5050505050905090565b5f336105388185856109dc565b60019150505b92915050565b5f61054d6109ee565b6001600160a01b0383165f81815260076020908152604091829020805460ff19168615159081179091558251938452908301527fd9163d263b72c77f67e127c98b0f1b11d10d97bc514384fa2b7e7f3687e643ed91015b60405180910390a150600192915050565b5f8383835f6105c2610935565b111561063a576001600160a01b0383165f9081526007602052604090205460ff168061060557506001600160a01b0382165f9081526007602052604090205460ff165b1561063a57610612610935565b81111561063a5760405162461bcd60e51b81526004016106319061109e565b60405180910390fd5b33610646888288610a21565b610651888888610a9c565b506001979650505050505050565b5f80805260208190527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb554600254610697919061110f565b905090565b6106a46109ee565b6106ac610af9565b565b6106b83382610b4b565b50565b5f6106c46109ee565b6001600160a01b0383165f81815260086020908152604091829020805460ff19168615159081179091558251938452908301527fc6a23a0a2412457bc174b0b04538a04d162131389a2e6bafcb3c90d104004e1691016105a4565b335f9081526008602052604090205460ff166107745760405162461bcd60e51b81526020600482015260146024820152731bdb9b1e481b5a5b9d195c8818d85b881b5a5b9d60621b6044820152606401610631565b60ff81165f90815260066020526040902060020154829082908211156107d15760405162461bcd60e51b81526020600482015260126024820152716d696e742065786365656420737570706c7960701b6044820152606401610631565b60ff83165f90815260066020526040812060020180548692906107f590849061110f565b9091555061080590508585610b7f565b604080516001600160a01b03871681526020810186905260ff85168183015290517f29600984795369456176b31dad545cb35585021faea93dcc568a467a737ad4259181900360600190a15050505050565b61085f6109ee565b6106ac5f610bb3565b610873823383610a21565b61087d8282610b4b565b5050565b6108896109ee565b6106ac610c0c565b6060600480546104aa90611066565b5f3383835f6108ad610935565b111561091c576001600160a01b0383165f9081526007602052604090205460ff16806108f057506001600160a01b0382165f9081526007602052604090205460ff165b1561091c576108fd610935565b81111561091c5760405162461bcd60e51b81526004016106319061109e565b33610928818888610a9c565b5060019695505050505050565b5f600954600b5461094461065f565b61094e9190611122565b6106979190611139565b5f6109616109ee565b600b8290556040518281527f398c295a64ea79ec915946998aecf7c57010708c4b773df545ce105d6bba343c9060200160405180910390a15060015b919050565b6109aa6109ee565b6001600160a01b0381166109d357604051631e4fbdf760e01b81525f6004820152602401610631565b6106b881610bb3565b6109e98383836001610c49565b505050565b6005546001600160a01b036101009091041633146106ac5760405163118cdaa760e01b8152336004820152602401610631565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610a965781811015610a8857604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610631565b610a9684848484035f610c49565b50505050565b6001600160a01b038316610ac557604051634b637e8f60e11b81525f6004820152602401610631565b6001600160a01b038216610aee5760405163ec442f0560e01b81525f6004820152602401610631565b6109e9838383610d1b565b610b01610d26565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216610b7457604051634b637e8f60e11b81525f6004820152602401610631565b61087d825f83610d1b565b6001600160a01b038216610ba85760405163ec442f0560e01b81525f6004820152602401610631565b61087d5f8383610d1b565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b610c14610d49565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610b2e3390565b6001600160a01b038416610c725760405163e602df0560e01b81525f6004820152602401610631565b6001600160a01b038316610c9b57604051634a1406b160e11b81525f6004820152602401610631565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610a9657826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610d0d91815260200190565b60405180910390a350505050565b6109e9838383610d6d565b60055460ff166106ac57604051638dfc202b60e01b815260040160405180910390fd5b60055460ff16156106ac5760405163d93c066560e01b815260040160405180910390fd5b610d75610d49565b6109e98383836001600160a01b038316610da5578060025f828254610d9a9190611158565b90915550610e159050565b6001600160a01b0383165f9081526020819052604090205481811015610df75760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610631565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610e3157600280548290039055610e4f565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e9491815260200190565b60405180910390a3505050565b5f6020808352835180828501525f5b81811015610ecc57858101830151858201604001528201610eb0565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461099d575f80fd5b5f8060408385031215610f13575f80fd5b610f1c83610eec565b946020939093013593505050565b803560ff8116811461099d575f80fd5b5f60208284031215610f4a575f80fd5b610f5382610f2a565b9392505050565b5f8060408385031215610f6b575f80fd5b610f7483610eec565b915060208301358015158114610f88575f80fd5b809150509250929050565b5f805f60608486031215610fa5575f80fd5b610fae84610eec565b9250610fbc60208501610eec565b9150604084013590509250925092565b5f60208284031215610fdc575f80fd5b610f5382610eec565b5f60208284031215610ff5575f80fd5b5035919050565b5f805f6060848603121561100e575f80fd5b61101784610eec565b92506020840135915061102c60408501610f2a565b90509250925092565b5f8060408385031215611046575f80fd5b61104f83610eec565b915061105d60208401610eec565b90509250929050565b600181811c9082168061107a57607f821691505b60208210810361109857634e487b7160e01b5f52602260045260245ffd5b50919050565b60208082526038908201527f616e74695768616c653a205472616e7366657220616d6f756e7420657863656560408201527f647320746865206d61785472616e73666572416d6f756e740000000000000000606082015260800190565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561053e5761053e6110fb565b808202811582820484141761053e5761053e6110fb565b5f8261115357634e487b7160e01b5f52601260045260245ffd5b500490565b8082018082111561053e5761053e6110fb56fea26469706673582212209b95aee5ede44402de017aac509391caa483f740e52e92d3a8d47e23465a445764736f6c63430008150033000000000000000000000000ca5a0d3095fab0ac65c5f8bce7e40350d1e481fa00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000019d971e4fe8401e740000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000009600000000000000000000000000000000000000000000000000000000000001a900000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000000000000097900000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000003e8
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106101d1575f3560e01c8063715018a6116100fe578063b615c62b1161009e578063dd62ed3e1161006e578063dd62ed3e14610425578063ee1c09301461045d578063f248b1391461047f578063f2fde38b14610488575f80fd5b8063b615c62b146103b5578063cf5a3b2414610400578063d44a0e6114610413578063d5abeb011461041c575f80fd5b80638da5cb5b116100d95780638da5cb5b1461036957806395d89b4114610392578063a9059cbb1461039a578063a9e75723146103ad575f80fd5b8063715018a61461034657806379cc67901461034e5780638456cb5914610361575f80fd5b806336d5cb391161017457806343620e711161014457806343620e71146102ed5780635c975abb146103005780636112e8ac1461030b57806370a082311461031e575f80fd5b806336d5cb39146102a65780633dd08c38146102ae5780633f4ba83a146102d057806342966c68146102da575f80fd5b806318689599116101af57806318689599146102285780631d873fb51461027157806323b872dd14610284578063313ce56714610297575f80fd5b806306fdde03146101d5578063095ea7b3146101f357806318160ddd14610216575b5f80fd5b6101dd61049b565b6040516101ea9190610ea1565b60405180910390f35b610206610201366004610f02565b61052b565b60405190151581526020016101ea565b6002545b6040519081526020016101ea565b610256610236366004610f3a565b60066020525f908152604090208054600182015460029092015490919083565b604080519384526020840192909252908201526060016101ea565b61020661027f366004610f5a565b610544565b610206610292366004610f93565b6105b5565b604051601281526020016101ea565b61021a61065f565b6102066102bc366004610fcc565b60086020525f908152604090205460ff1681565b6102d861069c565b005b6102d86102e8366004610fe5565b6106ae565b6102066102fb366004610f5a565b6106bb565b60055460ff16610206565b6102d8610319366004610ffc565b61071f565b61021a61032c366004610fcc565b6001600160a01b03165f9081526020819052604090205490565b6102d8610857565b6102d861035c366004610f02565b610868565b6102d8610881565b60055461010090046001600160a01b03166040516001600160a01b0390911681526020016101ea565b6101dd610891565b6102066103a8366004610f02565b6108a0565b61021a610935565b6102566103c3366004610f3a565b60ff165f90815260066020908152604091829020825160608101845281548082526001830154938201849052600290920154930183905292909190565b61020661040e366004610fe5565b610958565b61021a60095481565b61021a600a5481565b61021a610433366004611035565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61020661046b366004610fcc565b60076020525f908152604090205460ff1681565b61021a600b5481565b6102d8610496366004610fcc565b6109a2565b6060600380546104aa90611066565b80601f01602080910402602001604051908101604052809291908181526020018280546104d690611066565b80156105215780601f106104f857610100808354040283529160200191610521565b820191905f5260205f20905b81548152906001019060200180831161050457829003601f168201915b5050505050905090565b5f336105388185856109dc565b60019150505b92915050565b5f61054d6109ee565b6001600160a01b0383165f81815260076020908152604091829020805460ff19168615159081179091558251938452908301527fd9163d263b72c77f67e127c98b0f1b11d10d97bc514384fa2b7e7f3687e643ed91015b60405180910390a150600192915050565b5f8383835f6105c2610935565b111561063a576001600160a01b0383165f9081526007602052604090205460ff168061060557506001600160a01b0382165f9081526007602052604090205460ff165b1561063a57610612610935565b81111561063a5760405162461bcd60e51b81526004016106319061109e565b60405180910390fd5b33610646888288610a21565b610651888888610a9c565b506001979650505050505050565b5f80805260208190527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb554600254610697919061110f565b905090565b6106a46109ee565b6106ac610af9565b565b6106b83382610b4b565b50565b5f6106c46109ee565b6001600160a01b0383165f81815260086020908152604091829020805460ff19168615159081179091558251938452908301527fc6a23a0a2412457bc174b0b04538a04d162131389a2e6bafcb3c90d104004e1691016105a4565b335f9081526008602052604090205460ff166107745760405162461bcd60e51b81526020600482015260146024820152731bdb9b1e481b5a5b9d195c8818d85b881b5a5b9d60621b6044820152606401610631565b60ff81165f90815260066020526040902060020154829082908211156107d15760405162461bcd60e51b81526020600482015260126024820152716d696e742065786365656420737570706c7960701b6044820152606401610631565b60ff83165f90815260066020526040812060020180548692906107f590849061110f565b9091555061080590508585610b7f565b604080516001600160a01b03871681526020810186905260ff85168183015290517f29600984795369456176b31dad545cb35585021faea93dcc568a467a737ad4259181900360600190a15050505050565b61085f6109ee565b6106ac5f610bb3565b610873823383610a21565b61087d8282610b4b565b5050565b6108896109ee565b6106ac610c0c565b6060600480546104aa90611066565b5f3383835f6108ad610935565b111561091c576001600160a01b0383165f9081526007602052604090205460ff16806108f057506001600160a01b0382165f9081526007602052604090205460ff165b1561091c576108fd610935565b81111561091c5760405162461bcd60e51b81526004016106319061109e565b33610928818888610a9c565b5060019695505050505050565b5f600954600b5461094461065f565b61094e9190611122565b6106979190611139565b5f6109616109ee565b600b8290556040518281527f398c295a64ea79ec915946998aecf7c57010708c4b773df545ce105d6bba343c9060200160405180910390a15060015b919050565b6109aa6109ee565b6001600160a01b0381166109d357604051631e4fbdf760e01b81525f6004820152602401610631565b6106b881610bb3565b6109e98383836001610c49565b505050565b6005546001600160a01b036101009091041633146106ac5760405163118cdaa760e01b8152336004820152602401610631565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610a965781811015610a8857604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610631565b610a9684848484035f610c49565b50505050565b6001600160a01b038316610ac557604051634b637e8f60e11b81525f6004820152602401610631565b6001600160a01b038216610aee5760405163ec442f0560e01b81525f6004820152602401610631565b6109e9838383610d1b565b610b01610d26565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216610b7457604051634b637e8f60e11b81525f6004820152602401610631565b61087d825f83610d1b565b6001600160a01b038216610ba85760405163ec442f0560e01b81525f6004820152602401610631565b61087d5f8383610d1b565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b610c14610d49565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610b2e3390565b6001600160a01b038416610c725760405163e602df0560e01b81525f6004820152602401610631565b6001600160a01b038316610c9b57604051634a1406b160e11b81525f6004820152602401610631565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610a9657826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610d0d91815260200190565b60405180910390a350505050565b6109e9838383610d6d565b60055460ff166106ac57604051638dfc202b60e01b815260040160405180910390fd5b60055460ff16156106ac5760405163d93c066560e01b815260040160405180910390fd5b610d75610d49565b6109e98383836001600160a01b038316610da5578060025f828254610d9a9190611158565b90915550610e159050565b6001600160a01b0383165f9081526020819052604090205481811015610df75760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610631565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610e3157600280548290039055610e4f565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e9491815260200190565b60405180910390a3505050565b5f6020808352835180828501525f5b81811015610ecc57858101830151858201604001528201610eb0565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461099d575f80fd5b5f8060408385031215610f13575f80fd5b610f1c83610eec565b946020939093013593505050565b803560ff8116811461099d575f80fd5b5f60208284031215610f4a575f80fd5b610f5382610f2a565b9392505050565b5f8060408385031215610f6b575f80fd5b610f7483610eec565b915060208301358015158114610f88575f80fd5b809150509250929050565b5f805f60608486031215610fa5575f80fd5b610fae84610eec565b9250610fbc60208501610eec565b9150604084013590509250925092565b5f60208284031215610fdc575f80fd5b610f5382610eec565b5f60208284031215610ff5575f80fd5b5035919050565b5f805f6060848603121561100e575f80fd5b61101784610eec565b92506020840135915061102c60408501610f2a565b90509250925092565b5f8060408385031215611046575f80fd5b61104f83610eec565b915061105d60208401610eec565b90509250929050565b600181811c9082168061107a57607f821691505b60208210810361109857634e487b7160e01b5f52602260045260245ffd5b50919050565b60208082526038908201527f616e74695768616c653a205472616e7366657220616d6f756e7420657863656560408201527f647320746865206d61785472616e73666572416d6f756e740000000000000000606082015260800190565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561053e5761053e6110fb565b808202811582820484141761053e5761053e6110fb565b5f8261115357634e487b7160e01b5f52601260045260245ffd5b500490565b8082018082111561053e5761053e6110fb56fea26469706673582212209b95aee5ede44402de017aac509391caa483f740e52e92d3a8d47e23465a445764736f6c63430008150033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000ca5a0d3095fab0ac65c5f8bce7e40350d1e481fa00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000019d971e4fe8401e740000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000009600000000000000000000000000000000000000000000000000000000000001a900000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000000000000097900000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000003e8
-----Decoded View---------------
Arg [0] : initialOwner (address): 0xCa5A0d3095faB0aC65C5f8bcE7e40350d1e481fA
Arg [1] : _percentage (uint256[]): 150,425,1000,3000,2425,1000,1000,1000
Arg [2] : _maxSupply (uint256): 500000000000000000000000000
-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 000000000000000000000000ca5a0d3095fab0ac65c5f8bce7e40350d1e481fa
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 0000000000000000000000000000000000000000019d971e4fe8401e74000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000096
Arg [5] : 00000000000000000000000000000000000000000000000000000000000001a9
Arg [6] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000bb8
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000979
Arg [9] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [10] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [11] : 00000000000000000000000000000000000000000000000000000000000003e8
Deployed Bytecode Sourcemap
31189:6199:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19341:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21634:190;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;21634:190:0;1004:187:1;20443:99:0;20522:12;;20443:99;;;1342:25:1;;;1330:2;1315:18;20443:99:0;1196:177:1;31703:55:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1928:25:1;;;1984:2;1969:18;;1962:34;;;;2012:18;;;2005:34;1916:2;1901:18;31703:55:0;1726:319:1;36554:280:0;;;;;;:::i;:::-;;:::i;35857:341::-;;;;;;:::i;:::-;;:::i;20294:84::-;;;20368:2;2877:36:1;;2865:2;2850:18;20294:84:0;2735:184:1;34361:122:0;;;:::i;31817:38::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;34235:65;;;:::i;:::-;;30529:89;;;;;;:::i;:::-;;:::i;36249:252::-;;;;;;:::i;:::-;;:::i;12744:86::-;12815:7;;;;12744:86;;35173:320;;;;;;:::i;:::-;;:::i;20605:118::-;;;;;;:::i;:::-;-1:-1:-1;;;;;20697:18:0;20670:7;20697:18;;;;;;;;;;;;20605:118;10002:103;;;:::i;30947:161::-;;;;;;:::i;:::-;;:::i;34166:61::-;;;:::i;9327:87::-;9400:6;;;;;-1:-1:-1;;;;;9400:6:0;9327:87;;-1:-1:-1;;;;;3793:32:1;;;3775:51;;3763:2;3748:18;9327:87:0;3629:203:1;19551:95:0;;;:::i;35536:274::-;;;;;;:::i;:::-;;:::i;34523:140::-;;;:::i;34723:388::-;;;;;;:::i;:::-;34938:33;;34827:18;34938:33;;;:13;:33;;;;;;;;;34909:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34723:388;36909:230;;;;;;:::i;:::-;;:::i;31864:30::-;;;;;;31901:24;;;;;;21173:142;;;;;;:::i;:::-;-1:-1:-1;;;;;21280:18:0;;;21253:7;21280:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;21173:142;31765:45;;;;;;:::i;:::-;;;;;;;;;;;;;;;;32027:30;;;;;;10260:220;;;;;;:::i;:::-;;:::i;19341:91::-;19386:13;19419:5;19412:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19341:91;:::o;21634:190::-;21707:4;7517:10;21763:31;7517:10;21779:7;21788:5;21763:8;:31::i;:::-;21812:4;21805:11;;;21634:190;;;;;:::o;36554:280::-;36677:4;9213:13;:11;:13::i;:::-;-1:-1:-1;;;;;36699:23:0;::::1;;::::0;;;:13:::1;:23;::::0;;;;;;;;:42;;-1:-1:-1;;36699:42:0::1;::::0;::::1;;::::0;;::::1;::::0;;;36757:47;;4655:51:1;;;4722:18;;;4715:50;36757:47:0::1;::::0;4628:18:1;36757:47:0::1;;;;;;;;-1:-1:-1::0;36822:4:0::1;36554:280:::0;;;;:::o;35857:341::-;36030:4;35994;36000:2;36004:5;32786:1;32764:19;:17;:19::i;:::-;:23;32760:295;;;-1:-1:-1;;;;;32808:19:0;;;;;;:13;:19;;;;;;;;;:40;;-1:-1:-1;;;;;;32831:17:0;;;;;;:13;:17;;;;;;;;32808:40;32804:240;;;32909:19;:17;:19::i;:::-;32899:6;:29;;32869:159;;;;-1:-1:-1;;;32869:159:0;;;;;;;:::i;:::-;;;;;;;;;7517:10;36094:37:::1;36110:4:::0;7517:10;36125:5;36094:15:::1;:37::i;:::-;36142:26;36152:4;36158:2;36162:5;36142:9;:26::i;:::-;-1:-1:-1::0;36186:4:0::1;::::0;35857:341;-1:-1:-1;;;;;;;35857:341:0:o;34361:122::-;34409:7;20697:18;;;;;;;;;20522:12;;34436:39;;;;:::i;:::-;34429:46;;34361:122;:::o;34235:65::-;9213:13;:11;:13::i;:::-;34282:10:::1;:8;:10::i;:::-;34235:65::o:0;30529:89::-;30584:26;7517:10;30604:5;30584;:26::i;:::-;30529:89;:::o;36249:252::-;36374:4;9213:13;:11;:13::i;:::-;-1:-1:-1;;;;;36396:16:0;::::1;;::::0;;;:6:::1;:16;::::0;;;;;;;;:27;;-1:-1:-1;;36396:27:0::1;::::0;::::1;;::::0;;::::1;::::0;;;36439:32;;4655:51:1;;;4722:18;;;4715:50;36439:32:0::1;::::0;4628:18:1;36439:32:0::1;4487:284:1::0;35173:320:0;32590:10;32583:18;;;;:6;:18;;;;;;;;32575:51;;;;-1:-1:-1;;;32575:51:0;;5668:2:1;32575:51:0;;;5650:21:1;5707:2;5687:18;;;5680:30;-1:-1:-1;;;5726:18:1;;;5719:50;5786:18;;32575:51:0;5466:344:1;32575:51:0;32420:32:::1;::::0;::::1;;::::0;;;:13:::1;:32;::::0;;;;:48:::1;;::::0;35310:6;;35318:17;;32407:61;::::1;;32385:129;;;::::0;-1:-1:-1;;;32385:129:0;;6017:2:1;32385:129:0::1;::::0;::::1;5999:21:1::0;6056:2;6036:18;;;6029:30;-1:-1:-1;;;6075:18:1;;;6068:48;6133:18;;32385:129:0::1;5815:342:1::0;32385:129:0::1;35348:32:::2;::::0;::::2;;::::0;;;:13:::2;:32;::::0;;;;:48:::2;;:58:::0;;35400:6;;35348:32;:58:::2;::::0;35400:6;;35348:58:::2;:::i;:::-;::::0;;;-1:-1:-1;35417:17:0::2;::::0;-1:-1:-1;35423:2:0;35427:6;35417:5:::2;:17::i;:::-;35450:35;::::0;;-1:-1:-1;;;;;6378:32:1;;6360:51;;6442:2;6427:18;;6420:34;;;6502:4;6490:17;;6470:18;;;6463:45;35450:35:0;;::::2;::::0;;;;6348:2:1;35450:35:0;;::::2;32637:1:::1;;35173:320:::0;;;:::o;10002:103::-;9213:13;:11;:13::i;:::-;10067:30:::1;10094:1;10067:18;:30::i;30947:161::-:0;31023:45;31039:7;7517:10;31062:5;31023:15;:45::i;:::-;31079:21;31085:7;31094:5;31079;:21::i;:::-;30947:161;;:::o;34166:61::-;9213:13;:11;:13::i;:::-;34211:8:::1;:6;:8::i;19551:95::-:0;19598:13;19631:7;19624:14;;;;;:::i;35536:274::-;35692:4;35651:10;35663:2;35667:5;32786:1;32764:19;:17;:19::i;:::-;:23;32760:295;;;-1:-1:-1;;;;;32808:19:0;;;;;;:13;:19;;;;;;;;;:40;;-1:-1:-1;;;;;;32831:17:0;;;;;;:13;:17;;;;;;;;32808:40;32804:240;;;32909:19;:17;:19::i;:::-;32899:6;:29;;32869:159;;;;-1:-1:-1;;;32869:159:0;;;;;;;:::i;:::-;7517:10;35753:27:::1;7517:10:::0;35770:2;35774:5;35753:9:::1;:27::i;:::-;-1:-1:-1::0;35798:4:0::1;::::0;35536:274;-1:-1:-1;;;;;;35536:274:0:o;34523:140::-;34573:7;34640:15;;34621;;34601:17;:15;:17::i;:::-;:35;;;;:::i;:::-;34600:55;;;;:::i;36909:230::-;37010:4;9213:13;:11;:13::i;:::-;37032:15:::1;:23:::0;;;37071:38:::1;::::0;1342:25:1;;;37071:38:0::1;::::0;1330:2:1;1315:18;37071:38:0::1;;;;;;;-1:-1:-1::0;37127:4:0::1;9237:1;36909:230:::0;;;:::o;10260:220::-;9213:13;:11;:13::i;:::-;-1:-1:-1;;;;;10345:22:0;::::1;10341:93;;10391:31;::::0;-1:-1:-1;;;10391:31:0;;10419:1:::1;10391:31;::::0;::::1;3775:51:1::0;3748:18;;10391:31:0::1;3629:203:1::0;10341:93:0::1;10444:28;10463:8;10444:18;:28::i;26461:130::-:0;26546:37;26555:5;26562:7;26571:5;26578:4;26546:8;:37::i;:::-;26461:130;;;:::o;9492:166::-;9400:6;;-1:-1:-1;;;;;9400:6:0;;;;;7517:10;9552:23;9548:103;;9599:40;;-1:-1:-1;;;9599:40:0;;7517:10;9599:40;;;3775:51:1;3748:18;;9599:40:0;3629:203:1;28177:487:0;-1:-1:-1;;;;;21280:18:0;;;28277:24;21280:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;28344:37:0;;28340:317;;28421:5;28402:16;:24;28398:132;;;28454:60;;-1:-1:-1;;;28454:60:0;;-1:-1:-1;;;;;7134:32:1;;28454:60:0;;;7116:51:1;7183:18;;;7176:34;;;7226:18;;;7219:34;;;7089:18;;28454:60:0;6914:345:1;28398:132:0;28573:57;28582:5;28589:7;28617:5;28598:16;:24;28624:5;28573:8;:57::i;:::-;28266:398;28177:487;;;:::o;23036:308::-;-1:-1:-1;;;;;23120:18:0;;23116:88;;23162:30;;-1:-1:-1;;;23162:30:0;;23189:1;23162:30;;;3775:51:1;3748:18;;23162:30:0;3629:203:1;23116:88:0;-1:-1:-1;;;;;23218:16:0;;23214:88;;23258:32;;-1:-1:-1;;;23258:32:0;;23287:1;23258:32;;;3775:51:1;3748:18;;23258:32:0;3629:203:1;23214:88:0;23312:24;23320:4;23326:2;23330:5;23312:7;:24::i;13645:120::-;12608:16;:14;:16::i;:::-;13704:7:::1;:15:::0;;-1:-1:-1;;13704:15:0::1;::::0;;13735:22:::1;7517:10:::0;13744:12:::1;13735:22;::::0;-1:-1:-1;;;;;3793:32:1;;;3775:51;;3763:2;3748:18;13735:22:0::1;;;;;;;13645:120::o:0;25697:211::-;-1:-1:-1;;;;;25768:21:0;;25764:91;;25813:30;;-1:-1:-1;;;25813:30:0;;25840:1;25813:30;;;3775:51:1;3748:18;;25813:30:0;3629:203:1;25764:91:0;25865:35;25873:7;25890:1;25894:5;25865:7;:35::i;25156:213::-;-1:-1:-1;;;;;25227:21:0;;25223:93;;25272:32;;-1:-1:-1;;;25272:32:0;;25301:1;25272:32;;;3775:51:1;3748:18;;25272:32:0;3629:203:1;25223:93:0;25326:35;25342:1;25346:7;25355:5;25326:7;:35::i;10640:191::-;10733:6;;;-1:-1:-1;;;;;10750:17:0;;;10733:6;10750:17;;;-1:-1:-1;;;;;;10750:17:0;;;;;;10783:40;;10733:6;;;;;;;;10783:40;;10714:16;;10783:40;10703:128;10640:191;:::o;13386:118::-;12349:19;:17;:19::i;:::-;13446:7:::1;:14:::0;;-1:-1:-1;;13446:14:0::1;13456:4;13446:14;::::0;;13476:20:::1;13483:12;7517:10:::0;;7437:98;27442:443;-1:-1:-1;;;;;27555:19:0;;27551:91;;27598:32;;-1:-1:-1;;;27598:32:0;;27627:1;27598:32;;;3775:51:1;3748:18;;27598:32:0;3629:203:1;27551:91:0;-1:-1:-1;;;;;27656:21:0;;27652:92;;27701:31;;-1:-1:-1;;;27701:31:0;;27729:1;27701:31;;;3775:51:1;3748:18;;27701:31:0;3629:203:1;27652:92:0;-1:-1:-1;;;;;27754:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;27800:78;;;;27851:7;-1:-1:-1;;;;;27835:31:0;27844:5;-1:-1:-1;;;;;27835:31:0;;27860:5;27835:31;;;;1342:25:1;;1330:2;1315:18;;1196:177;27835:31:0;;;;;;;;27442:443;;;;:::o;37215:170::-;37347:30;37361:4;37367:2;37371:5;37347:13;:30::i;13112:130::-;12815:7;;;;13171:64;;13208:15;;-1:-1:-1;;;13208:15:0;;;;;;;;;;;12903:132;12815:7;;;;12965:63;;;13001:15;;-1:-1:-1;;;13001:15:0;;;;;;;;;;;29774:147;12349:19;:17;:19::i;:::-;29883:30:::1;29897:4;29903:2;29907:5;-1:-1:-1::0;;;;;23758:18:0;;23754:552;;23912:5;23896:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;23754:552:0;;-1:-1:-1;23754:552:0;;-1:-1:-1;;;;;23972:15:0;;23950:19;23972:15;;;;;;;;;;;24006:19;;;24002:117;;;24053:50;;-1:-1:-1;;;24053:50:0;;-1:-1:-1;;;;;7134:32:1;;24053:50:0;;;7116:51:1;7183:18;;;7176:34;;;7226:18;;;7219:34;;;7089:18;;24053:50:0;6914:345:1;24002:117:0;-1:-1:-1;;;;;24242:15:0;;:9;:15;;;;;;;;;;24260:19;;;;24242:37;;23754:552;-1:-1:-1;;;;;24322:16:0;;24318:435;;24488:12;:21;;;;;;;24318:435;;;-1:-1:-1;;;;;24704:13:0;;:9;:13;;;;;;;;;;:22;;;;;;24318:435;24785:2;-1:-1:-1;;;;;24770:25:0;24779:4;-1:-1:-1;;;;;24770:25:0;;24789:5;24770:25;;;;1342::1;;1330:2;1315:18;;1196:177;24770:25:0;;;;;;;;23668:1135;;;:::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;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:156::-;1444:20;;1504:4;1493:16;;1483:27;;1473:55;;1524:1;1521;1514:12;1539:182;1596:6;1649:2;1637:9;1628:7;1624:23;1620:32;1617:52;;;1665:1;1662;1655:12;1617:52;1688:27;1705:9;1688:27;:::i;:::-;1678:37;1539:182;-1:-1:-1;;;1539:182:1:o;2050:347::-;2115:6;2123;2176:2;2164:9;2155:7;2151:23;2147:32;2144:52;;;2192:1;2189;2182:12;2144:52;2215:29;2234:9;2215:29;:::i;:::-;2205:39;;2294:2;2283:9;2279:18;2266:32;2341:5;2334:13;2327:21;2320:5;2317:32;2307:60;;2363:1;2360;2353:12;2307:60;2386:5;2376:15;;;2050:347;;;;;:::o;2402:328::-;2479:6;2487;2495;2548:2;2536:9;2527:7;2523:23;2519:32;2516:52;;;2564:1;2561;2554:12;2516:52;2587:29;2606:9;2587:29;:::i;:::-;2577:39;;2635:38;2669:2;2658:9;2654:18;2635:38;:::i;:::-;2625:48;;2720:2;2709:9;2705:18;2692:32;2682:42;;2402:328;;;;;:::o;2924:186::-;2983:6;3036:2;3024:9;3015:7;3011:23;3007:32;3004:52;;;3052:1;3049;3042:12;3004:52;3075:29;3094:9;3075:29;:::i;3115:180::-;3174:6;3227:2;3215:9;3206:7;3202:23;3198:32;3195:52;;;3243:1;3240;3233:12;3195:52;-1:-1:-1;3266:23:1;;3115:180;-1:-1:-1;3115:180:1:o;3300:324::-;3375:6;3383;3391;3444:2;3432:9;3423:7;3419:23;3415:32;3412:52;;;3460:1;3457;3450:12;3412:52;3483:29;3502:9;3483:29;:::i;:::-;3473:39;;3559:2;3548:9;3544:18;3531:32;3521:42;;3582:36;3614:2;3603:9;3599:18;3582:36;:::i;:::-;3572:46;;3300:324;;;;;:::o;3837:260::-;3905:6;3913;3966:2;3954:9;3945:7;3941:23;3937:32;3934:52;;;3982:1;3979;3972:12;3934:52;4005:29;4024:9;4005:29;:::i;:::-;3995:39;;4053:38;4087:2;4076:9;4072:18;4053:38;:::i;:::-;4043:48;;3837:260;;;;;:::o;4102:380::-;4181:1;4177:12;;;;4224;;;4245:61;;4299:4;4291:6;4287:17;4277:27;;4245:61;4352:2;4344:6;4341:14;4321:18;4318:38;4315:161;;4398:10;4393:3;4389:20;4386:1;4379:31;4433:4;4430:1;4423:15;4461:4;4458:1;4451:15;4315:161;;4102:380;;;:::o;4776:420::-;4978:2;4960:21;;;5017:2;4997:18;;;4990:30;5056:34;5051:2;5036:18;;5029:62;5127:26;5122:2;5107:18;;5100:54;5186:3;5171:19;;4776:420::o;5201:127::-;5262:10;5257:3;5253:20;5250:1;5243:31;5293:4;5290:1;5283:15;5317:4;5314:1;5307:15;5333:128;5400:9;;;5421:11;;;5418:37;;;5435:18;;:::i;6519:168::-;6592:9;;;6623;;6640:15;;;6634:22;;6620:37;6610:71;;6661:18;;:::i;6692:217::-;6732:1;6758;6748:132;;6802:10;6797:3;6793:20;6790:1;6783:31;6837:4;6834:1;6827:15;6865:4;6862:1;6855:15;6748:132;-1:-1:-1;6894:9:1;;6692:217::o;7264:125::-;7329:9;;;7350:10;;;7347:36;;;7363:18;;:::i
Swarm Source
ipfs://9b95aee5ede44402de017aac509391caa483f740e52e92d3a8d47e23465a4457
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.