ERC-20
Overview
Max Total Supply
444,400,000,000,000 YASS
Holders
83
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
YASSCoin
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-12-01 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC-20 standard as defined in the ERC. */ 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/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @dev Interface for the optional metadata functions from the ERC-20 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/contracts/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.1) (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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC-20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 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 ERC-721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-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 ERC-1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 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/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v5.1.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 ERC-20 * applications. */ 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}. * * Skips emitting an {Approval} event indicating an allowance update. This is not * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. * * 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: * * ```solidity * 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/contracts/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/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == _ENTERED; } } // File: contracts/yasscoin.sol pragma solidity ^0.8.20; contract YASSCoin is ERC20, Ownable, ReentrancyGuard { uint256 private constant TOTAL_SUPPLY = 444400000000000 * 10**18; uint256 public maxTransactionAmount; uint256 public maxWallet; bool public tradingEnabled; mapping(address => bool) private _isExcludedFromLimit; mapping(address => bool) public isBlacklisted; event ExcludeFromLimit(address indexed account, bool isExcluded); event BlacklistUpdated(address indexed account, bool value); event MaxTransactionAmountUpdated(uint256 amount); event MaxWalletUpdated(uint256 amount); event TradingEnabled(bool enabled); constructor() ERC20("YASS Coin", "YASS") Ownable(msg.sender) { _isExcludedFromLimit[msg.sender] = true; _isExcludedFromLimit[address(this)] = true; maxTransactionAmount = TOTAL_SUPPLY / 50; maxWallet = TOTAL_SUPPLY / 20; _mint(msg.sender, TOTAL_SUPPLY); tradingEnabled = false; } function _update( address from, address to, uint256 amount ) internal virtual override { require(tradingEnabled || from == owner() || to == owner(), "Trading not yet enabled bestie"); require(!isBlacklisted[from] && !isBlacklisted[to], "Serving zero looks today bestie"); if (!_isExcludedFromLimit[from] && !_isExcludedFromLimit[to]) { require(amount <= maxTransactionAmount, "This trade is not giving what it needs to give"); if (to != address(0) && from != address(0)) { uint256 recipientBalance = balanceOf(to); require(recipientBalance + amount <= maxWallet, "Miss thing, your bag would be too heavy"); } } super._update(from, to, amount); } function enableTrading() external onlyOwner nonReentrant { tradingEnabled = true; emit TradingEnabled(true); } function setMaxTransactionAmount(uint256 amount) external onlyOwner { maxTransactionAmount = amount; emit MaxTransactionAmountUpdated(amount); } function setMaxWallet(uint256 amount) external onlyOwner { maxWallet = amount; emit MaxWalletUpdated(amount); } function excludeFromLimit(address account, bool excluded) external onlyOwner { _isExcludedFromLimit[account] = excluded; emit ExcludeFromLimit(account, excluded); } function blacklist(address account, bool value) external onlyOwner { isBlacklisted[account] = value; emit BlacklistUpdated(account, value); } function setLimitsToZero() external onlyOwner { maxTransactionAmount = TOTAL_SUPPLY; maxWallet = TOTAL_SUPPLY; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":[{"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":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"BlacklistUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MaxTransactionAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MaxWalletUpdated","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":"bool","name":"enabled","type":"bool"}],"name":"TradingEnabled","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":"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":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setLimitsToZero","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxTransactionAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxWallet","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":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"}]
Contract Creation Code
608060405234801561000f575f80fd5b50336040518060400160405280600981526020017f5941535320436f696e00000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f5941535300000000000000000000000000000000000000000000000000000000815250816003908161008c9190610bd8565b50806004908161009c9190610bd8565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361010f575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016101069190610ce6565b60405180910390fd5b61011e8161024f60201b60201c565b5060016006819055506001600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600a5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555060326d15e91dd837f3e8950171800000006101ec9190610d59565b60078190555060146d15e91dd837f3e89501718000000061020d9190610d59565b600881905550610231336d15e91dd837f3e89501718000000061031260201b60201c565b5f60095f6101000a81548160ff021916908315150217905550611015565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610382575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016103799190610ce6565b60405180910390fd5b6103935f838361039760201b60201c565b5050565b60095f9054906101000a900460ff16806103e957506103ba61071860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8061042c57506103fd61071860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b61046b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161046290610de3565b60405180910390fd5b600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156105095750600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b610548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053f90610e4b565b60405180910390fd5b600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156105e65750600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561070257600754811115610630576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062790610ed9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561069857505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15610701575f6106ad8361074060201b60201c565b905060085482826106be9190610ef7565b11156106ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f690610f9a565b60405180910390fd5b505b5b61071383838361078560201b60201c565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107d5578060025f8282546107c99190610ef7565b925050819055506108a3565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561085e578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161085593929190610fc7565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108ea578060025f8282540392505081905550610934565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516109919190610ffc565b60405180910390a3505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610a1957607f821691505b602082108103610a2c57610a2b6109d5565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302610a8e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610a53565b610a988683610a53565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f610adc610ad7610ad284610ab0565b610ab9565b610ab0565b9050919050565b5f819050919050565b610af583610ac2565b610b09610b0182610ae3565b848454610a5f565b825550505050565b5f90565b610b1d610b11565b610b28818484610aec565b505050565b5b81811015610b4b57610b405f82610b15565b600181019050610b2e565b5050565b601f821115610b9057610b6181610a32565b610b6a84610a44565b81016020851015610b79578190505b610b8d610b8585610a44565b830182610b2d565b50505b505050565b5f82821c905092915050565b5f610bb05f1984600802610b95565b1980831691505092915050565b5f610bc88383610ba1565b9150826002028217905092915050565b610be18261099e565b67ffffffffffffffff811115610bfa57610bf96109a8565b5b610c048254610a02565b610c0f828285610b4f565b5f60209050601f831160018114610c40575f8415610c2e578287015190505b610c388582610bbd565b865550610c9f565b601f198416610c4e86610a32565b5f5b82811015610c7557848901518255600182019150602085019450602081019050610c50565b86831015610c925784890151610c8e601f891682610ba1565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610cd082610ca7565b9050919050565b610ce081610cc6565b82525050565b5f602082019050610cf95f830184610cd7565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610d6382610ab0565b9150610d6e83610ab0565b925082610d7e57610d7d610cff565b5b828204905092915050565b5f82825260208201905092915050565b7f54726164696e67206e6f742079657420656e61626c65642062657374696500005f82015250565b5f610dcd601e83610d89565b9150610dd882610d99565b602082019050919050565b5f6020820190508181035f830152610dfa81610dc1565b9050919050565b7f53657276696e67207a65726f206c6f6f6b7320746f64617920626573746965005f82015250565b5f610e35601f83610d89565b9150610e4082610e01565b602082019050919050565b5f6020820190508181035f830152610e6281610e29565b9050919050565b7f54686973207472616465206973206e6f7420676976696e6720776861742069745f8201527f206e6565647320746f2067697665000000000000000000000000000000000000602082015250565b5f610ec3602e83610d89565b9150610ece82610e69565b604082019050919050565b5f6020820190508181035f830152610ef081610eb7565b9050919050565b5f610f0182610ab0565b9150610f0c83610ab0565b9250828201905080821115610f2457610f23610d2c565b5b92915050565b7f4d697373207468696e672c20796f75722062616720776f756c6420626520746f5f8201527f6f20686561767900000000000000000000000000000000000000000000000000602082015250565b5f610f84602783610d89565b9150610f8f82610f2a565b604082019050919050565b5f6020820190508181035f830152610fb181610f78565b9050919050565b610fc181610ab0565b82525050565b5f606082019050610fda5f830186610cd7565b610fe76020830185610fb8565b610ff46040830184610fb8565b949350505050565b5f60208201905061100f5f830184610fb8565b92915050565b611b5d806110225f395ff3fe608060405234801561000f575f80fd5b5060043610610140575f3560e01c8063715018a6116100b6578063a9059cbb1161007a578063a9059cbb14610316578063c8c8ebe414610346578063dd62ed3e14610364578063f2fde38b14610394578063f8b45b05146103b0578063fe575a87146103ce57610140565b8063715018a6146102aa57806381905bf8146102b45780638a8c523c146102d05780638da5cb5b146102da57806395d89b41146102f857610140565b8063313ce56711610108578063313ce567146101fc578063404e51291461021a5780634ada218b146102365780635d0044ca146102545780636fcded6c1461027057806370a082311461027a57610140565b806306fdde0314610144578063095ea7b31461016257806318160ddd146101925780631e293c10146101b057806323b872dd146101cc575b5f80fd5b61014c6103fe565b60405161015991906114ef565b60405180910390f35b61017c600480360381019061017791906115a0565b61048e565b60405161018991906115f8565b60405180910390f35b61019a6104b0565b6040516101a79190611620565b60405180910390f35b6101ca60048036038101906101c59190611639565b6104b9565b005b6101e660048036038101906101e19190611664565b610502565b6040516101f391906115f8565b60405180910390f35b610204610530565b60405161021191906116cf565b60405180910390f35b610234600480360381019061022f9190611712565b610538565b005b61023e6105e6565b60405161024b91906115f8565b60405180910390f35b61026e60048036038101906102699190611639565b6105f8565b005b610278610641565b005b610294600480360381019061028f9190611750565b610675565b6040516102a19190611620565b60405180910390f35b6102b26106ba565b005b6102ce60048036038101906102c99190611712565b6106cd565b005b6102d861077b565b005b6102e26107e7565b6040516102ef919061178a565b60405180910390f35b61030061080f565b60405161030d91906114ef565b60405180910390f35b610330600480360381019061032b91906115a0565b61089f565b60405161033d91906115f8565b60405180910390f35b61034e6108c1565b60405161035b9190611620565b60405180910390f35b61037e600480360381019061037991906117a3565b6108c7565b60405161038b9190611620565b60405180910390f35b6103ae60048036038101906103a99190611750565b610949565b005b6103b86109cd565b6040516103c59190611620565b60405180910390f35b6103e860048036038101906103e39190611750565b6109d3565b6040516103f591906115f8565b60405180910390f35b60606003805461040d9061180e565b80601f01602080910402602001604051908101604052809291908181526020018280546104399061180e565b80156104845780601f1061045b57610100808354040283529160200191610484565b820191905f5260205f20905b81548152906001019060200180831161046757829003601f168201915b5050505050905090565b5f806104986109f0565b90506104a58185856109f7565b600191505092915050565b5f600254905090565b6104c1610a09565b806007819055507f7c1cb3702d8e1fa6d24b12dd90670ab69c6d66d58233103d37da8b07d6b850ac816040516104f79190611620565b60405180910390a150565b5f8061050c6109f0565b9050610519858285610a90565b610524858585610b22565b60019150509392505050565b5f6012905090565b610540610a09565b80600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f6a12b3df6cba4203bd7fd06b816789f87de8c594299aed5717ae070fac781bac826040516105da91906115f8565b60405180910390a25050565b60095f9054906101000a900460ff1681565b610600610a09565b806008819055507f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace816040516106369190611620565b60405180910390a150565b610649610a09565b6d15e91dd837f3e8950171800000006007819055506d15e91dd837f3e895017180000000600881905550565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6106c2610a09565b6106cb5f610c12565b565b6106d5610a09565b80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fadd085b087b1d15ae1222b8338431f2fa2f4c45cf49c5bda3c726f8d13c9659f8260405161076f91906115f8565b60405180910390a25050565b610783610a09565b61078b610cd5565b600160095f6101000a81548160ff0219169083151502179055507fbeda7dca7bc1b3e80b871f4818129ec73b771581f803d553aeb3484098e5f65a60016040516107d591906115f8565b60405180910390a16107e5610d24565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461081e9061180e565b80601f016020809104026020016040519081016040528092919081815260200182805461084a9061180e565b80156108955780601f1061086c57610100808354040283529160200191610895565b820191905f5260205f20905b81548152906001019060200180831161087857829003601f168201915b5050505050905090565b5f806108a96109f0565b90506108b6818585610b22565b600191505092915050565b60075481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610951610a09565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109c1575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016109b8919061178a565b60405180910390fd5b6109ca81610c12565b50565b60085481565b600b602052805f5260405f205f915054906101000a900460ff1681565b5f33905090565b610a048383836001610d2e565b505050565b610a116109f0565b73ffffffffffffffffffffffffffffffffffffffff16610a2f6107e7565b73ffffffffffffffffffffffffffffffffffffffff1614610a8e57610a526109f0565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610a85919061178a565b60405180910390fd5b565b5f610a9b84846108c7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b1c5781811015610b0d578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610b049392919061183e565b60405180910390fd5b610b1b84848484035f610d2e565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b92575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610b89919061178a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c02575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610bf9919061178a565b60405180910390fd5b610c0d838383610efd565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600260065403610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d11906118bd565b60405180910390fd5b6002600681905550565b6001600681905550565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610d9e575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610d95919061178a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e0e575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610e05919061178a565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610ef7578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610eee9190611620565b60405180910390a35b50505050565b60095f9054906101000a900460ff1680610f495750610f1a6107e7565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80610f865750610f576107e7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc90611925565b60405180910390fd5b600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156110635750600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b6110a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110999061198d565b60405180910390fd5b600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156111405750600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156112565760075481111561118a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118190611a1b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156111f257505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611255575f61120183610675565b905060085482826112129190611a66565b1115611253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124a90611b09565b60405180910390fd5b505b5b611261838383611266565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112b6578060025f8282546112aa9190611a66565b92505081905550611384565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561133f578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016113369392919061183e565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113cb578060025f8282540392505081905550611415565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114729190611620565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6114c18261147f565b6114cb8185611489565b93506114db818560208601611499565b6114e4816114a7565b840191505092915050565b5f6020820190508181035f83015261150781846114b7565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61153c82611513565b9050919050565b61154c81611532565b8114611556575f80fd5b50565b5f8135905061156781611543565b92915050565b5f819050919050565b61157f8161156d565b8114611589575f80fd5b50565b5f8135905061159a81611576565b92915050565b5f80604083850312156115b6576115b561150f565b5b5f6115c385828601611559565b92505060206115d48582860161158c565b9150509250929050565b5f8115159050919050565b6115f2816115de565b82525050565b5f60208201905061160b5f8301846115e9565b92915050565b61161a8161156d565b82525050565b5f6020820190506116335f830184611611565b92915050565b5f6020828403121561164e5761164d61150f565b5b5f61165b8482850161158c565b91505092915050565b5f805f6060848603121561167b5761167a61150f565b5b5f61168886828701611559565b935050602061169986828701611559565b92505060406116aa8682870161158c565b9150509250925092565b5f60ff82169050919050565b6116c9816116b4565b82525050565b5f6020820190506116e25f8301846116c0565b92915050565b6116f1816115de565b81146116fb575f80fd5b50565b5f8135905061170c816116e8565b92915050565b5f80604083850312156117285761172761150f565b5b5f61173585828601611559565b9250506020611746858286016116fe565b9150509250929050565b5f602082840312156117655761176461150f565b5b5f61177284828501611559565b91505092915050565b61178481611532565b82525050565b5f60208201905061179d5f83018461177b565b92915050565b5f80604083850312156117b9576117b861150f565b5b5f6117c685828601611559565b92505060206117d785828601611559565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061182557607f821691505b602082108103611838576118376117e1565b5b50919050565b5f6060820190506118515f83018661177b565b61185e6020830185611611565b61186b6040830184611611565b949350505050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f6118a7601f83611489565b91506118b282611873565b602082019050919050565b5f6020820190508181035f8301526118d48161189b565b9050919050565b7f54726164696e67206e6f742079657420656e61626c65642062657374696500005f82015250565b5f61190f601e83611489565b915061191a826118db565b602082019050919050565b5f6020820190508181035f83015261193c81611903565b9050919050565b7f53657276696e67207a65726f206c6f6f6b7320746f64617920626573746965005f82015250565b5f611977601f83611489565b915061198282611943565b602082019050919050565b5f6020820190508181035f8301526119a48161196b565b9050919050565b7f54686973207472616465206973206e6f7420676976696e6720776861742069745f8201527f206e6565647320746f2067697665000000000000000000000000000000000000602082015250565b5f611a05602e83611489565b9150611a10826119ab565b604082019050919050565b5f6020820190508181035f830152611a32816119f9565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611a708261156d565b9150611a7b8361156d565b9250828201905080821115611a9357611a92611a39565b5b92915050565b7f4d697373207468696e672c20796f75722062616720776f756c6420626520746f5f8201527f6f20686561767900000000000000000000000000000000000000000000000000602082015250565b5f611af3602783611489565b9150611afe82611a99565b604082019050919050565b5f6020820190508181035f830152611b2081611ae7565b905091905056fea2646970667358221220f778a661d83c713eb86fefbe6b1ebc699e89dd6763b88d776e7c96ae9756cbc164736f6c634300081a0033
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610140575f3560e01c8063715018a6116100b6578063a9059cbb1161007a578063a9059cbb14610316578063c8c8ebe414610346578063dd62ed3e14610364578063f2fde38b14610394578063f8b45b05146103b0578063fe575a87146103ce57610140565b8063715018a6146102aa57806381905bf8146102b45780638a8c523c146102d05780638da5cb5b146102da57806395d89b41146102f857610140565b8063313ce56711610108578063313ce567146101fc578063404e51291461021a5780634ada218b146102365780635d0044ca146102545780636fcded6c1461027057806370a082311461027a57610140565b806306fdde0314610144578063095ea7b31461016257806318160ddd146101925780631e293c10146101b057806323b872dd146101cc575b5f80fd5b61014c6103fe565b60405161015991906114ef565b60405180910390f35b61017c600480360381019061017791906115a0565b61048e565b60405161018991906115f8565b60405180910390f35b61019a6104b0565b6040516101a79190611620565b60405180910390f35b6101ca60048036038101906101c59190611639565b6104b9565b005b6101e660048036038101906101e19190611664565b610502565b6040516101f391906115f8565b60405180910390f35b610204610530565b60405161021191906116cf565b60405180910390f35b610234600480360381019061022f9190611712565b610538565b005b61023e6105e6565b60405161024b91906115f8565b60405180910390f35b61026e60048036038101906102699190611639565b6105f8565b005b610278610641565b005b610294600480360381019061028f9190611750565b610675565b6040516102a19190611620565b60405180910390f35b6102b26106ba565b005b6102ce60048036038101906102c99190611712565b6106cd565b005b6102d861077b565b005b6102e26107e7565b6040516102ef919061178a565b60405180910390f35b61030061080f565b60405161030d91906114ef565b60405180910390f35b610330600480360381019061032b91906115a0565b61089f565b60405161033d91906115f8565b60405180910390f35b61034e6108c1565b60405161035b9190611620565b60405180910390f35b61037e600480360381019061037991906117a3565b6108c7565b60405161038b9190611620565b60405180910390f35b6103ae60048036038101906103a99190611750565b610949565b005b6103b86109cd565b6040516103c59190611620565b60405180910390f35b6103e860048036038101906103e39190611750565b6109d3565b6040516103f591906115f8565b60405180910390f35b60606003805461040d9061180e565b80601f01602080910402602001604051908101604052809291908181526020018280546104399061180e565b80156104845780601f1061045b57610100808354040283529160200191610484565b820191905f5260205f20905b81548152906001019060200180831161046757829003601f168201915b5050505050905090565b5f806104986109f0565b90506104a58185856109f7565b600191505092915050565b5f600254905090565b6104c1610a09565b806007819055507f7c1cb3702d8e1fa6d24b12dd90670ab69c6d66d58233103d37da8b07d6b850ac816040516104f79190611620565b60405180910390a150565b5f8061050c6109f0565b9050610519858285610a90565b610524858585610b22565b60019150509392505050565b5f6012905090565b610540610a09565b80600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f6a12b3df6cba4203bd7fd06b816789f87de8c594299aed5717ae070fac781bac826040516105da91906115f8565b60405180910390a25050565b60095f9054906101000a900460ff1681565b610600610a09565b806008819055507f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace816040516106369190611620565b60405180910390a150565b610649610a09565b6d15e91dd837f3e8950171800000006007819055506d15e91dd837f3e895017180000000600881905550565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6106c2610a09565b6106cb5f610c12565b565b6106d5610a09565b80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fadd085b087b1d15ae1222b8338431f2fa2f4c45cf49c5bda3c726f8d13c9659f8260405161076f91906115f8565b60405180910390a25050565b610783610a09565b61078b610cd5565b600160095f6101000a81548160ff0219169083151502179055507fbeda7dca7bc1b3e80b871f4818129ec73b771581f803d553aeb3484098e5f65a60016040516107d591906115f8565b60405180910390a16107e5610d24565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461081e9061180e565b80601f016020809104026020016040519081016040528092919081815260200182805461084a9061180e565b80156108955780601f1061086c57610100808354040283529160200191610895565b820191905f5260205f20905b81548152906001019060200180831161087857829003601f168201915b5050505050905090565b5f806108a96109f0565b90506108b6818585610b22565b600191505092915050565b60075481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610951610a09565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109c1575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016109b8919061178a565b60405180910390fd5b6109ca81610c12565b50565b60085481565b600b602052805f5260405f205f915054906101000a900460ff1681565b5f33905090565b610a048383836001610d2e565b505050565b610a116109f0565b73ffffffffffffffffffffffffffffffffffffffff16610a2f6107e7565b73ffffffffffffffffffffffffffffffffffffffff1614610a8e57610a526109f0565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610a85919061178a565b60405180910390fd5b565b5f610a9b84846108c7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b1c5781811015610b0d578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610b049392919061183e565b60405180910390fd5b610b1b84848484035f610d2e565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b92575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610b89919061178a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c02575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610bf9919061178a565b60405180910390fd5b610c0d838383610efd565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600260065403610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d11906118bd565b60405180910390fd5b6002600681905550565b6001600681905550565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610d9e575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610d95919061178a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e0e575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610e05919061178a565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610ef7578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610eee9190611620565b60405180910390a35b50505050565b60095f9054906101000a900460ff1680610f495750610f1a6107e7565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80610f865750610f576107e7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc90611925565b60405180910390fd5b600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156110635750600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b6110a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110999061198d565b60405180910390fd5b600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156111405750600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156112565760075481111561118a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118190611a1b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156111f257505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611255575f61120183610675565b905060085482826112129190611a66565b1115611253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124a90611b09565b60405180910390fd5b505b5b611261838383611266565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112b6578060025f8282546112aa9190611a66565b92505081905550611384565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561133f578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016113369392919061183e565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113cb578060025f8282540392505081905550611415565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114729190611620565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6114c18261147f565b6114cb8185611489565b93506114db818560208601611499565b6114e4816114a7565b840191505092915050565b5f6020820190508181035f83015261150781846114b7565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61153c82611513565b9050919050565b61154c81611532565b8114611556575f80fd5b50565b5f8135905061156781611543565b92915050565b5f819050919050565b61157f8161156d565b8114611589575f80fd5b50565b5f8135905061159a81611576565b92915050565b5f80604083850312156115b6576115b561150f565b5b5f6115c385828601611559565b92505060206115d48582860161158c565b9150509250929050565b5f8115159050919050565b6115f2816115de565b82525050565b5f60208201905061160b5f8301846115e9565b92915050565b61161a8161156d565b82525050565b5f6020820190506116335f830184611611565b92915050565b5f6020828403121561164e5761164d61150f565b5b5f61165b8482850161158c565b91505092915050565b5f805f6060848603121561167b5761167a61150f565b5b5f61168886828701611559565b935050602061169986828701611559565b92505060406116aa8682870161158c565b9150509250925092565b5f60ff82169050919050565b6116c9816116b4565b82525050565b5f6020820190506116e25f8301846116c0565b92915050565b6116f1816115de565b81146116fb575f80fd5b50565b5f8135905061170c816116e8565b92915050565b5f80604083850312156117285761172761150f565b5b5f61173585828601611559565b9250506020611746858286016116fe565b9150509250929050565b5f602082840312156117655761176461150f565b5b5f61177284828501611559565b91505092915050565b61178481611532565b82525050565b5f60208201905061179d5f83018461177b565b92915050565b5f80604083850312156117b9576117b861150f565b5b5f6117c685828601611559565b92505060206117d785828601611559565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061182557607f821691505b602082108103611838576118376117e1565b5b50919050565b5f6060820190506118515f83018661177b565b61185e6020830185611611565b61186b6040830184611611565b949350505050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f6118a7601f83611489565b91506118b282611873565b602082019050919050565b5f6020820190508181035f8301526118d48161189b565b9050919050565b7f54726164696e67206e6f742079657420656e61626c65642062657374696500005f82015250565b5f61190f601e83611489565b915061191a826118db565b602082019050919050565b5f6020820190508181035f83015261193c81611903565b9050919050565b7f53657276696e67207a65726f206c6f6f6b7320746f64617920626573746965005f82015250565b5f611977601f83611489565b915061198282611943565b602082019050919050565b5f6020820190508181035f8301526119a48161196b565b9050919050565b7f54686973207472616465206973206e6f7420676976696e6720776861742069745f8201527f206e6565647320746f2067697665000000000000000000000000000000000000602082015250565b5f611a05602e83611489565b9150611a10826119ab565b604082019050919050565b5f6020820190508181035f830152611a32816119f9565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611a708261156d565b9150611a7b8361156d565b9250828201905080821115611a9357611a92611a39565b5b92915050565b7f4d697373207468696e672c20796f75722062616720776f756c6420626520746f5f8201527f6f20686561767900000000000000000000000000000000000000000000000000602082015250565b5f611af3602783611489565b9150611afe82611a99565b604082019050919050565b5f6020820190508181035f830152611b2081611ae7565b905091905056fea2646970667358221220f778a661d83c713eb86fefbe6b1ebc699e89dd6763b88d776e7c96ae9756cbc164736f6c634300081a0033
Deployed Bytecode Sourcemap
28908:2853:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13038:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15331:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14140:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30923:167;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16131:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13991:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31447:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29118:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31102:134;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31623:135;;;:::i;:::-;;14302:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24761:103;;;:::i;:::-;;31248:187;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30778:133;;;:::i;:::-;;24086:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13248:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14625:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29045:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14870:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25019:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29087:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29217:45;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13038:91;13083:13;13116:5;13109:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13038:91;:::o;15331:190::-;15404:4;15421:13;15437:12;:10;:12::i;:::-;15421:28;;15460:31;15469:5;15476:7;15485:5;15460:8;:31::i;:::-;15509:4;15502:11;;;15331:190;;;;:::o;14140:99::-;14192:7;14219:12;;14212:19;;14140:99;:::o;30923:167::-;23972:13;:11;:13::i;:::-;31025:6:::1;31002:20;:29;;;;31047:35;31075:6;31047:35;;;;;;:::i;:::-;;;;;;;;30923:167:::0;:::o;16131:249::-;16218:4;16235:15;16253:12;:10;:12::i;:::-;16235:30;;16276:37;16292:4;16298:7;16307:5;16276:15;:37::i;:::-;16324:26;16334:4;16340:2;16344:5;16324:9;:26::i;:::-;16368:4;16361:11;;;16131:249;;;;;:::o;13991:84::-;14040:5;14065:2;14058:9;;13991:84;:::o;31447:164::-;23972:13;:11;:13::i;:::-;31550:5:::1;31525:13;:22;31539:7;31525:22;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;31588:7;31571:32;;;31597:5;31571:32;;;;;;:::i;:::-;;;;;;;;31447:164:::0;;:::o;29118:26::-;;;;;;;;;;;;;:::o;31102:134::-;23972:13;:11;:13::i;:::-;31182:6:::1;31170:9;:18;;;;31204:24;31221:6;31204:24;;;;;;:::i;:::-;;;;;;;;31102:134:::0;:::o;31623:135::-;23972:13;:11;:13::i;:::-;29008:24:::1;31680:20;:35;;;;29008:24;31726:9;:24;;;;31623:135::o:0;14302:118::-;14367:7;14394:9;:18;14404:7;14394:18;;;;;;;;;;;;;;;;14387:25;;14302:118;;;:::o;24761:103::-;23972:13;:11;:13::i;:::-;24826:30:::1;24853:1;24826:18;:30::i;:::-;24761:103::o:0;31248:187::-;23972:13;:11;:13::i;:::-;31368:8:::1;31336:20;:29;31357:7;31336:29;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;31409:7;31392:35;;;31418:8;31392:35;;;;;;:::i;:::-;;;;;;;;31248:187:::0;;:::o;30778:133::-;23972:13;:11;:13::i;:::-;27942:21:::1;:19;:21::i;:::-;30863:4:::2;30846:14;;:21;;;;;;;;;;;;;;;;;;30883:20;30898:4;30883:20;;;;;;:::i;:::-;;;;;;;;27986::::1;:18;:20::i;:::-;30778:133::o:0;24086:87::-;24132:7;24159:6;;;;;;;;;;;24152:13;;24086:87;:::o;13248:95::-;13295:13;13328:7;13321:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13248:95;:::o;14625:182::-;14694:4;14711:13;14727:12;:10;:12::i;:::-;14711:28;;14750:27;14760:5;14767:2;14771:5;14750:9;:27::i;:::-;14795:4;14788:11;;;14625:182;;;;:::o;29045:35::-;;;;:::o;14870:142::-;14950:7;14977:11;:18;14989:5;14977:18;;;;;;;;;;;;;;;:27;14996:7;14977:27;;;;;;;;;;;;;;;;14970:34;;14870:142;;;;:::o;25019:220::-;23972:13;:11;:13::i;:::-;25124:1:::1;25104:22;;:8;:22;;::::0;25100:93:::1;;25178:1;25150:31;;;;;;;;;;;:::i;:::-;;;;;;;;25100:93;25203:28;25222:8;25203:18;:28::i;:::-;25019:220:::0;:::o;29087:24::-;;;;:::o;29217:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;4337:98::-;4390:7;4417:10;4410:17;;4337:98;:::o;20190:130::-;20275:37;20284:5;20291:7;20300:5;20307:4;20275:8;:37::i;:::-;20190:130;;;:::o;24251:166::-;24322:12;:10;:12::i;:::-;24311:23;;:7;:5;:7::i;:::-;:23;;;24307:103;;24385:12;:10;:12::i;:::-;24358:40;;;;;;;;;;;:::i;:::-;;;;;;;;24307:103;24251:166::o;21922:487::-;22022:24;22049:25;22059:5;22066:7;22049:9;:25::i;:::-;22022:52;;22109:17;22089:16;:37;22085:317;;22166:5;22147:16;:24;22143:132;;;22226:7;22235:16;22253:5;22199:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;22143:132;22318:57;22327:5;22334:7;22362:5;22343:16;:24;22369:5;22318:8;:57::i;:::-;22085:317;22011:398;21922:487;;;:::o;16765:308::-;16865:1;16849:18;;:4;:18;;;16845:88;;16918:1;16891:30;;;;;;;;;;;:::i;:::-;;;;;;;;16845:88;16961:1;16947:16;;:2;:16;;;16943:88;;17016:1;16987:32;;;;;;;;;;;:::i;:::-;;;;;;;;16943:88;17041:24;17049:4;17055:2;17059:5;17041:7;:24::i;:::-;16765:308;;;:::o;25399:191::-;25473:16;25492:6;;;;;;;;;;;25473:25;;25518:8;25509:6;;:17;;;;;;;;;;;;;;;;;;25573:8;25542:40;;25563:8;25542:40;;;;;;;;;;;;25462:128;25399:191;:::o;28022:293::-;27424:1;28156:7;;:19;28148:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;27424:1;28289:7;:18;;;;28022:293::o;28323:213::-;27380:1;28506:7;:22;;;;28323:213::o;21187:443::-;21317:1;21300:19;;:5;:19;;;21296:91;;21372:1;21343:32;;;;;;;;;;;:::i;:::-;;;;;;;;21296:91;21420:1;21401:21;;:7;:21;;;21397:92;;21474:1;21446:31;;;;;;;;;;;:::i;:::-;;;;;;;;21397:92;21529:5;21499:11;:18;21511:5;21499:18;;;;;;;;;;;;;;;:27;21518:7;21499:27;;;;;;;;;;;;;;;:35;;;;21549:9;21545:78;;;21596:7;21580:31;;21589:5;21580:31;;;21605:5;21580:31;;;;;;:::i;:::-;;;;;;;;21545:78;21187:443;;;;:::o;29932:834::-;30070:14;;;;;;;;;;;:33;;;;30096:7;:5;:7::i;:::-;30088:15;;:4;:15;;;30070:33;:50;;;;30113:7;:5;:7::i;:::-;30107:13;;:2;:13;;;30070:50;30062:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;30175:13;:19;30189:4;30175:19;;;;;;;;;;;;;;;;;;;;;;;;;30174:20;:42;;;;;30199:13;:17;30213:2;30199:17;;;;;;;;;;;;;;;;;;;;;;;;;30198:18;30174:42;30166:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;30278:20;:26;30299:4;30278:26;;;;;;;;;;;;;;;;;;;;;;;;;30277:27;:56;;;;;30309:20;:24;30330:2;30309:24;;;;;;;;;;;;;;;;;;;;;;;;;30308:25;30277:56;30273:434;;;30368:20;;30358:6;:30;;30350:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;30486:1;30472:16;;:2;:16;;;;:38;;;;;30508:1;30492:18;;:4;:18;;;;30472:38;30468:228;;;30531:24;30558:13;30568:2;30558:9;:13::i;:::-;30531:40;;30627:9;;30617:6;30598:16;:25;;;;:::i;:::-;:38;;30590:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;30512:184;30468:228;30273:434;30727:31;30741:4;30747:2;30751:6;30727:13;:31::i;:::-;29932:834;;;:::o;17397:1135::-;17503:1;17487:18;;:4;:18;;;17483:552;;17641:5;17625:12;;:21;;;;;;;:::i;:::-;;;;;;;;17483:552;;;17679:19;17701:9;:15;17711:4;17701:15;;;;;;;;;;;;;;;;17679:37;;17749:5;17735:11;:19;17731:117;;;17807:4;17813:11;17826:5;17782:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;17731:117;18003:5;17989:11;:19;17971:9;:15;17981:4;17971:15;;;;;;;;;;;;;;;:37;;;;17664:371;17483:552;18065:1;18051:16;;:2;:16;;;18047:435;;18233:5;18217:12;;:21;;;;;;;;;;;18047:435;;;18450:5;18433:9;:13;18443:2;18433:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;18047:435;18514:2;18499:25;;18508:4;18499:25;;;18518:5;18499:25;;;;;;:::i;:::-;;;;;;;;17397:1135;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:329::-;3750:6;3799:2;3787:9;3778:7;3774:23;3770:32;3767:119;;;3805:79;;:::i;:::-;3767:119;3925:1;3950:53;3995:7;3986:6;3975:9;3971:22;3950:53;:::i;:::-;3940:63;;3896:117;3691:329;;;;:::o;4026:619::-;4103:6;4111;4119;4168:2;4156:9;4147:7;4143:23;4139:32;4136:119;;;4174:79;;:::i;:::-;4136:119;4294:1;4319:53;4364:7;4355:6;4344:9;4340:22;4319:53;:::i;:::-;4309:63;;4265:117;4421:2;4447:53;4492:7;4483:6;4472:9;4468:22;4447:53;:::i;:::-;4437:63;;4392:118;4549:2;4575:53;4620:7;4611:6;4600:9;4596:22;4575:53;:::i;:::-;4565:63;;4520:118;4026:619;;;;;:::o;4651:86::-;4686:7;4726:4;4719:5;4715:16;4704:27;;4651:86;;;:::o;4743:112::-;4826:22;4842:5;4826:22;:::i;:::-;4821:3;4814:35;4743:112;;:::o;4861:214::-;4950:4;4988:2;4977:9;4973:18;4965:26;;5001:67;5065:1;5054:9;5050:17;5041:6;5001:67;:::i;:::-;4861:214;;;;:::o;5081:116::-;5151:21;5166:5;5151:21;:::i;:::-;5144:5;5141:32;5131:60;;5187:1;5184;5177:12;5131:60;5081:116;:::o;5203:133::-;5246:5;5284:6;5271:20;5262:29;;5300:30;5324:5;5300:30;:::i;:::-;5203:133;;;;:::o;5342:468::-;5407:6;5415;5464:2;5452:9;5443:7;5439:23;5435:32;5432:119;;;5470:79;;:::i;:::-;5432:119;5590:1;5615:53;5660:7;5651:6;5640:9;5636:22;5615:53;:::i;:::-;5605:63;;5561:117;5717:2;5743:50;5785:7;5776:6;5765:9;5761:22;5743:50;:::i;:::-;5733:60;;5688:115;5342:468;;;;;:::o;5816:329::-;5875:6;5924:2;5912:9;5903:7;5899:23;5895:32;5892:119;;;5930:79;;:::i;:::-;5892:119;6050:1;6075:53;6120:7;6111:6;6100:9;6096:22;6075:53;:::i;:::-;6065:63;;6021:117;5816:329;;;;:::o;6151:118::-;6238:24;6256:5;6238:24;:::i;:::-;6233:3;6226:37;6151:118;;:::o;6275:222::-;6368:4;6406:2;6395:9;6391:18;6383:26;;6419:71;6487:1;6476:9;6472:17;6463:6;6419:71;:::i;:::-;6275:222;;;;:::o;6503:474::-;6571:6;6579;6628:2;6616:9;6607:7;6603:23;6599:32;6596:119;;;6634:79;;:::i;:::-;6596:119;6754:1;6779:53;6824:7;6815:6;6804:9;6800:22;6779:53;:::i;:::-;6769:63;;6725:117;6881:2;6907:53;6952:7;6943:6;6932:9;6928:22;6907:53;:::i;:::-;6897:63;;6852:118;6503:474;;;;;:::o;6983:180::-;7031:77;7028:1;7021:88;7128:4;7125:1;7118:15;7152:4;7149:1;7142:15;7169:320;7213:6;7250:1;7244:4;7240:12;7230:22;;7297:1;7291:4;7287:12;7318:18;7308:81;;7374:4;7366:6;7362:17;7352:27;;7308:81;7436:2;7428:6;7425:14;7405:18;7402:38;7399:84;;7455:18;;:::i;:::-;7399:84;7220:269;7169:320;;;:::o;7495:442::-;7644:4;7682:2;7671:9;7667:18;7659:26;;7695:71;7763:1;7752:9;7748:17;7739:6;7695:71;:::i;:::-;7776:72;7844:2;7833:9;7829:18;7820:6;7776:72;:::i;:::-;7858;7926:2;7915:9;7911:18;7902:6;7858:72;:::i;:::-;7495:442;;;;;;:::o;7943:181::-;8083:33;8079:1;8071:6;8067:14;8060:57;7943:181;:::o;8130:366::-;8272:3;8293:67;8357:2;8352:3;8293:67;:::i;:::-;8286:74;;8369:93;8458:3;8369:93;:::i;:::-;8487:2;8482:3;8478:12;8471:19;;8130:366;;;:::o;8502:419::-;8668:4;8706:2;8695:9;8691:18;8683:26;;8755:9;8749:4;8745:20;8741:1;8730:9;8726:17;8719:47;8783:131;8909:4;8783:131;:::i;:::-;8775:139;;8502:419;;;:::o;8927:180::-;9067:32;9063:1;9055:6;9051:14;9044:56;8927:180;:::o;9113:366::-;9255:3;9276:67;9340:2;9335:3;9276:67;:::i;:::-;9269:74;;9352:93;9441:3;9352:93;:::i;:::-;9470:2;9465:3;9461:12;9454:19;;9113:366;;;:::o;9485:419::-;9651:4;9689:2;9678:9;9674:18;9666:26;;9738:9;9732:4;9728:20;9724:1;9713:9;9709:17;9702:47;9766:131;9892:4;9766:131;:::i;:::-;9758:139;;9485:419;;;:::o;9910:181::-;10050:33;10046:1;10038:6;10034:14;10027:57;9910:181;:::o;10097:366::-;10239:3;10260:67;10324:2;10319:3;10260:67;:::i;:::-;10253:74;;10336:93;10425:3;10336:93;:::i;:::-;10454:2;10449:3;10445:12;10438:19;;10097:366;;;:::o;10469:419::-;10635:4;10673:2;10662:9;10658:18;10650:26;;10722:9;10716:4;10712:20;10708:1;10697:9;10693:17;10686:47;10750:131;10876:4;10750:131;:::i;:::-;10742:139;;10469:419;;;:::o;10894:233::-;11034:34;11030:1;11022:6;11018:14;11011:58;11103:16;11098:2;11090:6;11086:15;11079:41;10894:233;:::o;11133:366::-;11275:3;11296:67;11360:2;11355:3;11296:67;:::i;:::-;11289:74;;11372:93;11461:3;11372:93;:::i;:::-;11490:2;11485:3;11481:12;11474:19;;11133:366;;;:::o;11505:419::-;11671:4;11709:2;11698:9;11694:18;11686:26;;11758:9;11752:4;11748:20;11744:1;11733:9;11729:17;11722:47;11786:131;11912:4;11786:131;:::i;:::-;11778:139;;11505:419;;;:::o;11930:180::-;11978:77;11975:1;11968:88;12075:4;12072:1;12065:15;12099:4;12096:1;12089:15;12116:191;12156:3;12175:20;12193:1;12175:20;:::i;:::-;12170:25;;12209:20;12227:1;12209:20;:::i;:::-;12204:25;;12252:1;12249;12245:9;12238:16;;12273:3;12270:1;12267:10;12264:36;;;12280:18;;:::i;:::-;12264:36;12116:191;;;;:::o;12313:226::-;12453:34;12449:1;12441:6;12437:14;12430:58;12522:9;12517:2;12509:6;12505:15;12498:34;12313:226;:::o;12545:366::-;12687:3;12708:67;12772:2;12767:3;12708:67;:::i;:::-;12701:74;;12784:93;12873:3;12784:93;:::i;:::-;12902:2;12897:3;12893:12;12886:19;;12545:366;;;:::o;12917:419::-;13083:4;13121:2;13110:9;13106:18;13098:26;;13170:9;13164:4;13160:20;13156:1;13145:9;13141:17;13134:47;13198:131;13324:4;13198:131;:::i;:::-;13190:139;;12917:419;;;:::o
Swarm Source
ipfs://f778a661d83c713eb86fefbe6b1ebc699e89dd6763b88d776e7c96ae9756cbc1
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.