ERC-20
Overview
Max Total Supply
21,000,000 600519
Holders
666
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,422.291105392746168385 600519Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
MOUTAI
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; interface IUniswapV2Factory { function getPair(address tokenA, address tokenB) external view returns (address pair); } interface IUniswapV2Pair { function token0() external view returns (address); function token1() external view returns (address); } contract MOUTAI is ERC20, Ownable { using SafeMath for uint256; uint256 public sellTaxRate; address public taxWallet; IUniswapV2Factory public uniswapV2Factory; address private constant UNISWAP_V2_FACTORY = 0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f; // Ethereum mainnet address private constant WETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2; // Wrapped ETH on Ethereum mainnet address public constant MARKET_MAKER = 0x0F86D68d1Ee0fA34895F40FC748014D72f830951; // Updated Market Maker address mapping(address => bool) public isUniswapPair; bool public tradingEnabled = false; event TaxRateChanged(uint256 newTaxRate); event TaxWalletChanged(address newTaxWallet); event TradingEnabled(); event UniswapPairAdded(address pair); constructor( string memory name, string memory symbol, uint256 initialSupply ) ERC20(name, symbol) Ownable(msg.sender) { taxWallet = 0x83be80020d1C72c8B18059bea5771F879Ae15257; // Initial tax wallet address sellTaxRate = 2500; // 25% initial tax rate (2500 / 10000) _mint(msg.sender, initialSupply * (10 ** decimals())); uniswapV2Factory = IUniswapV2Factory(UNISWAP_V2_FACTORY); } function enableTrading() external onlyOwner { require(!tradingEnabled, "Trading is already enabled"); tradingEnabled = true; emit TradingEnabled(); } function addUniswapPair(address tokenB) external onlyOwner { address pair = uniswapV2Factory.getPair(address(this), tokenB); require(pair != address(0), "Uniswap pair does not exist"); isUniswapPair[pair] = true; emit UniswapPairAdded(pair); } function _customTransfer( address sender, address recipient, uint256 amount ) internal virtual returns (uint256) { require(sender != address(0), "Transfer from the zero address"); require(recipient != address(0), "Transfer to the zero address"); require(tradingEnabled || sender == owner() || recipient == owner() || sender == MARKET_MAKER || recipient == MARKET_MAKER, "Trading not yet enabled"); uint256 taxAmount = 0; // Check if it's a sell (transfer to Uniswap pair) and not from the market maker if (isUniswapPair[recipient] && sender != MARKET_MAKER) { taxAmount = amount.mul(sellTaxRate).div(10000); super._transfer(sender, taxWallet, taxAmount); } return amount.sub(taxAmount); } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { uint256 amountAfterTax = _customTransfer(_msgSender(), recipient, amount); _transfer(_msgSender(), recipient, amountAfterTax); return true; } function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { uint256 amountAfterTax = _customTransfer(sender, recipient, amount); uint256 currentAllowance = allowance(sender, _msgSender()); require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } _transfer(sender, recipient, amountAfterTax); return true; } function setTaxRate(uint256 _newTaxRate) external onlyOwner { require(_newTaxRate <= 10000, "Tax rate cannot exceed 100%"); sellTaxRate = _newTaxRate; emit TaxRateChanged(_newTaxRate); } function setTaxWallet(address _newTaxWallet) external onlyOwner { require(_newTaxWallet != address(0), "New tax wallet is the zero address"); taxWallet = _newTaxWallet; emit TaxWalletChanged(_newTaxWallet); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/Context.sol"; /** * @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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; import {IERC20Metadata} from "./extensions/IERC20Metadata.sol"; import {Context} from "../../utils/Context.sol"; import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * 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); } } } }
// SPDX-License-Identifier: MIT // 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); }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "remappings": [] }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"initialSupply","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":[{"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newTaxRate","type":"uint256"}],"name":"TaxRateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newTaxWallet","type":"address"}],"name":"TaxWalletChanged","type":"event"},{"anonymous":false,"inputs":[],"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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"pair","type":"address"}],"name":"UniswapPairAdded","type":"event"},{"inputs":[],"name":"MARKET_MAKER","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenB","type":"address"}],"name":"addUniswapPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isUniswapPair","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newTaxRate","type":"uint256"}],"name":"setTaxRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newTaxWallet","type":"address"}],"name":"setTaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Factory","outputs":[{"internalType":"contract IUniswapV2Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040525f600a5f6101000a81548160ff021916908315150217905550348015610028575f80fd5b50604051612c2e380380612c2e833981810160405281019061004a91906106c5565b338383816003908161005c9190610951565b50806004908161006c9190610951565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036100df575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016100d69190610a5f565b60405180910390fd5b6100ee816101dc60201b60201c565b507383be80020d1c72c8b18059bea5771f879ae1525760075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506109c46006819055506101803361015e61029f60201b60201c565b600a61016a9190610be0565b836101759190610c2a565b6102a760201b60201c565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f60085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050610cfb565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610317575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161030e9190610a5f565b60405180910390fd5b6103285f838361032c60201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361037c578060025f8282546103709190610c6b565b9250508190555061044a565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610405578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016103fc93929190610cad565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610491578060025f82825403925050819055506104db565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516105389190610ce2565b60405180910390a3505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6105a48261055e565b810181811067ffffffffffffffff821117156105c3576105c261056e565b5b80604052505050565b5f6105d5610545565b90506105e1828261059b565b919050565b5f67ffffffffffffffff821115610600576105ff61056e565b5b6106098261055e565b9050602081019050919050565b8281835e5f83830152505050565b5f610636610631846105e6565b6105cc565b9050828152602081018484840111156106525761065161055a565b5b61065d848285610616565b509392505050565b5f82601f83011261067957610678610556565b5b8151610689848260208601610624565b91505092915050565b5f819050919050565b6106a481610692565b81146106ae575f80fd5b50565b5f815190506106bf8161069b565b92915050565b5f805f606084860312156106dc576106db61054e565b5b5f84015167ffffffffffffffff8111156106f9576106f8610552565b5b61070586828701610665565b935050602084015167ffffffffffffffff81111561072657610725610552565b5b61073286828701610665565b9250506040610743868287016106b1565b9150509250925092565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061079b57607f821691505b6020821081036107ae576107ad610757565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026108107fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826107d5565b61081a86836107d5565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61085561085061084b84610692565b610832565b610692565b9050919050565b5f819050919050565b61086e8361083b565b61088261087a8261085c565b8484546107e1565b825550505050565b5f90565b61089661088a565b6108a1818484610865565b505050565b5b818110156108c4576108b95f8261088e565b6001810190506108a7565b5050565b601f821115610909576108da816107b4565b6108e3846107c6565b810160208510156108f2578190505b6109066108fe856107c6565b8301826108a6565b50505b505050565b5f82821c905092915050565b5f6109295f198460080261090e565b1980831691505092915050565b5f610941838361091a565b9150826002028217905092915050565b61095a8261074d565b67ffffffffffffffff8111156109735761097261056e565b5b61097d8254610784565b6109888282856108c8565b5f60209050601f8311600181146109b9575f84156109a7578287015190505b6109b18582610936565b865550610a18565b601f1984166109c7866107b4565b5f5b828110156109ee578489015182556001820191506020850194506020810190506109c9565b86831015610a0b5784890151610a07601f89168261091a565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610a4982610a20565b9050919050565b610a5981610a3f565b82525050565b5f602082019050610a725f830184610a50565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115610afa57808604811115610ad657610ad5610a78565b5b6001851615610ae55780820291505b8081029050610af385610aa5565b9450610aba565b94509492505050565b5f82610b125760019050610bcd565b81610b1f575f9050610bcd565b8160018114610b355760028114610b3f57610b6e565b6001915050610bcd565b60ff841115610b5157610b50610a78565b5b8360020a915084821115610b6857610b67610a78565b5b50610bcd565b5060208310610133831016604e8410600b8410161715610ba35782820a905083811115610b9e57610b9d610a78565b5b610bcd565b610bb08484846001610ab1565b92509050818404811115610bc757610bc6610a78565b5b81810290505b9392505050565b5f60ff82169050919050565b5f610bea82610692565b9150610bf583610bd4565b9250610c227fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484610b03565b905092915050565b5f610c3482610692565b9150610c3f83610692565b9250828202610c4d81610692565b91508282048414831517610c6457610c63610a78565b5b5092915050565b5f610c7582610692565b9150610c8083610692565b9250828201905080821115610c9857610c97610a78565b5b92915050565b610ca781610692565b82525050565b5f606082019050610cc05f830186610a50565b610ccd6020830185610c9e565b610cda6040830184610c9e565b949350505050565b5f602082019050610cf55f830184610c9e565b92915050565b611f2680610d085f395ff3fe608060405234801561000f575f80fd5b5060043610610140575f3560e01c80638a8c523c116100b6578063a7f404e21161007a578063a7f404e214610344578063a9059cbb14610360578063c6d69a3014610390578063dd62ed3e146103ac578063ea414b28146103dc578063f2fde38b146103f857610140565b80638a8c523c146102b05780638da5cb5b146102ba57806395d89b41146102d85780639cece12e146102f6578063a766e06d1461032657610140565b80632dc0562d116101085780632dc0562d146101fe578063313ce5671461021c5780634ada218b1461023a57806359d0f7131461025857806370a0823114610276578063715018a6146102a657610140565b806306fdde0314610144578063095ea7b31461016257806318160ddd1461019257806323b872dd146101b057806324024efd146101e0575b5f80fd5b61014c610414565b604051610159919061163d565b60405180910390f35b61017c600480360381019061017791906116ee565b6104a4565b6040516101899190611746565b60405180910390f35b61019a6104c6565b6040516101a7919061176e565b60405180910390f35b6101ca60048036038101906101c59190611787565b6104cf565b6040516101d79190611746565b60405180910390f35b6101e8610561565b6040516101f5919061176e565b60405180910390f35b610206610567565b60405161021391906117e6565b60405180910390f35b61022461058c565b604051610231919061181a565b60405180910390f35b610242610594565b60405161024f9190611746565b60405180910390f35b6102606105a6565b60405161026d919061188e565b60405180910390f35b610290600480360381019061028b91906118a7565b6105cb565b60405161029d919061176e565b60405180910390f35b6102ae610610565b005b6102b8610623565b005b6102c26106c2565b6040516102cf91906117e6565b60405180910390f35b6102e06106ea565b6040516102ed919061163d565b60405180910390f35b610310600480360381019061030b91906118a7565b61077a565b60405161031d9190611746565b60405180910390f35b61032e610797565b60405161033b91906117e6565b60405180910390f35b61035e600480360381019061035991906118a7565b6107af565b005b61037a600480360381019061037591906116ee565b610953565b6040516103879190611746565b60405180910390f35b6103aa60048036038101906103a591906118d2565b610986565b005b6103c660048036038101906103c191906118fd565b610a14565b6040516103d3919061176e565b60405180910390f35b6103f660048036038101906103f191906118a7565b610a96565b005b610412600480360381019061040d91906118a7565b610b85565b005b60606003805461042390611968565b80601f016020809104026020016040519081016040528092919081815260200182805461044f90611968565b801561049a5780601f106104715761010080835404028352916020019161049a565b820191905f5260205f20905b81548152906001019060200180831161047d57829003601f168201915b5050505050905090565b5f806104ae610c09565b90506104bb818585610c10565b600191505092915050565b5f600254905090565b5f806104dc858585610c22565b90505f6104f0866104eb610c09565b610a14565b905083811015610535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052c90611a08565b60405180910390fd5b61054986610541610c09565b868403610c10565b610554868684610f6c565b6001925050509392505050565b60065481565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b600a5f9054906101000a900460ff1681565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61061861105c565b6106215f6110e3565b565b61062b61105c565b600a5f9054906101000a900460ff161561067a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067190611a70565b60405180910390fd5b6001600a5f6101000a81548160ff0219169083151502179055507f799663458a5ef2936f7fa0c99b3336c69c25890f82974f04e811e5bb359186c760405160405180910390a1565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106f990611968565b80601f016020809104026020016040519081016040528092919081815260200182805461072590611968565b80156107705780601f1061074757610100808354040283529160200191610770565b820191905f5260205f20905b81548152906001019060200180831161075357829003601f168201915b5050505050905090565b6009602052805f5260405f205f915054906101000a900460ff1681565b730f86d68d1ee0fa34895f40fc748014d72f83095181565b6107b761105c565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e6a4390530846040518363ffffffff1660e01b8152600401610814929190611a8e565b602060405180830381865afa15801561082f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108539190611ac9565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ba90611b3e565b60405180910390fd5b600160095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055507f6cbc3ddc1459574fe063f423fa6a05d355dd80399b7381076415a2080e11562a8160405161094791906117e6565b60405180910390a15050565b5f80610967610960610c09565b8585610c22565b905061097b610974610c09565b8583610f6c565b600191505092915050565b61098e61105c565b6127108111156109d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ca90611ba6565b60405180910390fd5b806006819055507fbe89dc2f9769e9896808a0f0983380fed3225e0784b99b98d3eec9ccb501852881604051610a09919061176e565b60405180910390a150565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610a9e61105c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0390611c34565b60405180910390fd5b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507ea263b61aab5ebdcff20c4c0c74c2589ea5ab52149abde19eca17ad5221789981604051610b7a91906117e6565b60405180910390a150565b610b8d61105c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bfd575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610bf491906117e6565b60405180910390fd5b610c06816110e3565b50565b5f33905090565b610c1d83838360016111a6565b505050565b5f8073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8890611c9c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf690611d04565b60405180910390fd5b600a5f9054906101000a900460ff1680610d4b5750610d1c6106c2565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80610d885750610d596106c2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80610dd25750730f86d68d1ee0fa34895f40fc748014d72f83095173ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80610e1c5750730f86d68d1ee0fa34895f40fc748014d72f83095173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b610e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5290611d6c565b60405180910390fd5b5f60095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015610ef25750730f86d68d1ee0fa34895f40fc748014d72f83095173ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15610f4f57610f20612710610f126006548661137590919063ffffffff16565b61138a90919063ffffffff16565b9050610f4e8560075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683610f6c565b5b610f62818461139f90919063ffffffff16565b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fdc575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610fd391906117e6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361104c575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161104391906117e6565b60405180910390fd5b6110578383836113b4565b505050565b611064610c09565b73ffffffffffffffffffffffffffffffffffffffff166110826106c2565b73ffffffffffffffffffffffffffffffffffffffff16146110e1576110a5610c09565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016110d891906117e6565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611216575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161120d91906117e6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611286575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161127d91906117e6565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561136f578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611366919061176e565b60405180910390a35b50505050565b5f81836113829190611db7565b905092915050565b5f81836113979190611e25565b905092915050565b5f81836113ac9190611e55565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611404578060025f8282546113f89190611e88565b925050819055506114d2565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561148d578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161148493929190611ebb565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611519578060025f8282540392505081905550611563565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115c0919061176e565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61160f826115cd565b61161981856115d7565b93506116298185602086016115e7565b611632816115f5565b840191505092915050565b5f6020820190508181035f8301526116558184611605565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61168a82611661565b9050919050565b61169a81611680565b81146116a4575f80fd5b50565b5f813590506116b581611691565b92915050565b5f819050919050565b6116cd816116bb565b81146116d7575f80fd5b50565b5f813590506116e8816116c4565b92915050565b5f80604083850312156117045761170361165d565b5b5f611711858286016116a7565b9250506020611722858286016116da565b9150509250929050565b5f8115159050919050565b6117408161172c565b82525050565b5f6020820190506117595f830184611737565b92915050565b611768816116bb565b82525050565b5f6020820190506117815f83018461175f565b92915050565b5f805f6060848603121561179e5761179d61165d565b5b5f6117ab868287016116a7565b93505060206117bc868287016116a7565b92505060406117cd868287016116da565b9150509250925092565b6117e081611680565b82525050565b5f6020820190506117f95f8301846117d7565b92915050565b5f60ff82169050919050565b611814816117ff565b82525050565b5f60208201905061182d5f83018461180b565b92915050565b5f819050919050565b5f61185661185161184c84611661565b611833565b611661565b9050919050565b5f6118678261183c565b9050919050565b5f6118788261185d565b9050919050565b6118888161186e565b82525050565b5f6020820190506118a15f83018461187f565b92915050565b5f602082840312156118bc576118bb61165d565b5b5f6118c9848285016116a7565b91505092915050565b5f602082840312156118e7576118e661165d565b5b5f6118f4848285016116da565b91505092915050565b5f80604083850312156119135761191261165d565b5b5f611920858286016116a7565b9250506020611931858286016116a7565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061197f57607f821691505b6020821081036119925761199161193b565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f6119f26028836115d7565b91506119fd82611998565b604082019050919050565b5f6020820190508181035f830152611a1f816119e6565b9050919050565b7f54726164696e6720697320616c726561647920656e61626c65640000000000005f82015250565b5f611a5a601a836115d7565b9150611a6582611a26565b602082019050919050565b5f6020820190508181035f830152611a8781611a4e565b9050919050565b5f604082019050611aa15f8301856117d7565b611aae60208301846117d7565b9392505050565b5f81519050611ac381611691565b92915050565b5f60208284031215611ade57611add61165d565b5b5f611aeb84828501611ab5565b91505092915050565b7f556e6973776170207061697220646f6573206e6f7420657869737400000000005f82015250565b5f611b28601b836115d7565b9150611b3382611af4565b602082019050919050565b5f6020820190508181035f830152611b5581611b1c565b9050919050565b7f54617820726174652063616e6e6f7420657863656564203130302500000000005f82015250565b5f611b90601b836115d7565b9150611b9b82611b5c565b602082019050919050565b5f6020820190508181035f830152611bbd81611b84565b9050919050565b7f4e6577207461782077616c6c657420697320746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611c1e6022836115d7565b9150611c2982611bc4565b604082019050919050565b5f6020820190508181035f830152611c4b81611c12565b9050919050565b7f5472616e736665722066726f6d20746865207a65726f206164647265737300005f82015250565b5f611c86601e836115d7565b9150611c9182611c52565b602082019050919050565b5f6020820190508181035f830152611cb381611c7a565b9050919050565b7f5472616e7366657220746f20746865207a65726f2061646472657373000000005f82015250565b5f611cee601c836115d7565b9150611cf982611cba565b602082019050919050565b5f6020820190508181035f830152611d1b81611ce2565b9050919050565b7f54726164696e67206e6f742079657420656e61626c65640000000000000000005f82015250565b5f611d566017836115d7565b9150611d6182611d22565b602082019050919050565b5f6020820190508181035f830152611d8381611d4a565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611dc1826116bb565b9150611dcc836116bb565b9250828202611dda816116bb565b91508282048414831517611df157611df0611d8a565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611e2f826116bb565b9150611e3a836116bb565b925082611e4a57611e49611df8565b5b828204905092915050565b5f611e5f826116bb565b9150611e6a836116bb565b9250828203905081811115611e8257611e81611d8a565b5b92915050565b5f611e92826116bb565b9150611e9d836116bb565b9250828201905080821115611eb557611eb4611d8a565b5b92915050565b5f606082019050611ece5f8301866117d7565b611edb602083018561175f565b611ee8604083018461175f565b94935050505056fea264697066735822122047c343265c36a83a2d0b15375f6f182bab063007525d93d6dc67901e8851014964736f6c634300081a0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000001406f4000000000000000000000000000000000000000000000000000000000000000064d4f55544149000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000063630303531390000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610140575f3560e01c80638a8c523c116100b6578063a7f404e21161007a578063a7f404e214610344578063a9059cbb14610360578063c6d69a3014610390578063dd62ed3e146103ac578063ea414b28146103dc578063f2fde38b146103f857610140565b80638a8c523c146102b05780638da5cb5b146102ba57806395d89b41146102d85780639cece12e146102f6578063a766e06d1461032657610140565b80632dc0562d116101085780632dc0562d146101fe578063313ce5671461021c5780634ada218b1461023a57806359d0f7131461025857806370a0823114610276578063715018a6146102a657610140565b806306fdde0314610144578063095ea7b31461016257806318160ddd1461019257806323b872dd146101b057806324024efd146101e0575b5f80fd5b61014c610414565b604051610159919061163d565b60405180910390f35b61017c600480360381019061017791906116ee565b6104a4565b6040516101899190611746565b60405180910390f35b61019a6104c6565b6040516101a7919061176e565b60405180910390f35b6101ca60048036038101906101c59190611787565b6104cf565b6040516101d79190611746565b60405180910390f35b6101e8610561565b6040516101f5919061176e565b60405180910390f35b610206610567565b60405161021391906117e6565b60405180910390f35b61022461058c565b604051610231919061181a565b60405180910390f35b610242610594565b60405161024f9190611746565b60405180910390f35b6102606105a6565b60405161026d919061188e565b60405180910390f35b610290600480360381019061028b91906118a7565b6105cb565b60405161029d919061176e565b60405180910390f35b6102ae610610565b005b6102b8610623565b005b6102c26106c2565b6040516102cf91906117e6565b60405180910390f35b6102e06106ea565b6040516102ed919061163d565b60405180910390f35b610310600480360381019061030b91906118a7565b61077a565b60405161031d9190611746565b60405180910390f35b61032e610797565b60405161033b91906117e6565b60405180910390f35b61035e600480360381019061035991906118a7565b6107af565b005b61037a600480360381019061037591906116ee565b610953565b6040516103879190611746565b60405180910390f35b6103aa60048036038101906103a591906118d2565b610986565b005b6103c660048036038101906103c191906118fd565b610a14565b6040516103d3919061176e565b60405180910390f35b6103f660048036038101906103f191906118a7565b610a96565b005b610412600480360381019061040d91906118a7565b610b85565b005b60606003805461042390611968565b80601f016020809104026020016040519081016040528092919081815260200182805461044f90611968565b801561049a5780601f106104715761010080835404028352916020019161049a565b820191905f5260205f20905b81548152906001019060200180831161047d57829003601f168201915b5050505050905090565b5f806104ae610c09565b90506104bb818585610c10565b600191505092915050565b5f600254905090565b5f806104dc858585610c22565b90505f6104f0866104eb610c09565b610a14565b905083811015610535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052c90611a08565b60405180910390fd5b61054986610541610c09565b868403610c10565b610554868684610f6c565b6001925050509392505050565b60065481565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b600a5f9054906101000a900460ff1681565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61061861105c565b6106215f6110e3565b565b61062b61105c565b600a5f9054906101000a900460ff161561067a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067190611a70565b60405180910390fd5b6001600a5f6101000a81548160ff0219169083151502179055507f799663458a5ef2936f7fa0c99b3336c69c25890f82974f04e811e5bb359186c760405160405180910390a1565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106f990611968565b80601f016020809104026020016040519081016040528092919081815260200182805461072590611968565b80156107705780601f1061074757610100808354040283529160200191610770565b820191905f5260205f20905b81548152906001019060200180831161075357829003601f168201915b5050505050905090565b6009602052805f5260405f205f915054906101000a900460ff1681565b730f86d68d1ee0fa34895f40fc748014d72f83095181565b6107b761105c565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e6a4390530846040518363ffffffff1660e01b8152600401610814929190611a8e565b602060405180830381865afa15801561082f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108539190611ac9565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ba90611b3e565b60405180910390fd5b600160095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055507f6cbc3ddc1459574fe063f423fa6a05d355dd80399b7381076415a2080e11562a8160405161094791906117e6565b60405180910390a15050565b5f80610967610960610c09565b8585610c22565b905061097b610974610c09565b8583610f6c565b600191505092915050565b61098e61105c565b6127108111156109d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ca90611ba6565b60405180910390fd5b806006819055507fbe89dc2f9769e9896808a0f0983380fed3225e0784b99b98d3eec9ccb501852881604051610a09919061176e565b60405180910390a150565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610a9e61105c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0390611c34565b60405180910390fd5b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507ea263b61aab5ebdcff20c4c0c74c2589ea5ab52149abde19eca17ad5221789981604051610b7a91906117e6565b60405180910390a150565b610b8d61105c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bfd575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610bf491906117e6565b60405180910390fd5b610c06816110e3565b50565b5f33905090565b610c1d83838360016111a6565b505050565b5f8073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8890611c9c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf690611d04565b60405180910390fd5b600a5f9054906101000a900460ff1680610d4b5750610d1c6106c2565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80610d885750610d596106c2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80610dd25750730f86d68d1ee0fa34895f40fc748014d72f83095173ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80610e1c5750730f86d68d1ee0fa34895f40fc748014d72f83095173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b610e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5290611d6c565b60405180910390fd5b5f60095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015610ef25750730f86d68d1ee0fa34895f40fc748014d72f83095173ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15610f4f57610f20612710610f126006548661137590919063ffffffff16565b61138a90919063ffffffff16565b9050610f4e8560075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683610f6c565b5b610f62818461139f90919063ffffffff16565b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fdc575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610fd391906117e6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361104c575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161104391906117e6565b60405180910390fd5b6110578383836113b4565b505050565b611064610c09565b73ffffffffffffffffffffffffffffffffffffffff166110826106c2565b73ffffffffffffffffffffffffffffffffffffffff16146110e1576110a5610c09565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016110d891906117e6565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611216575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161120d91906117e6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611286575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161127d91906117e6565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561136f578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611366919061176e565b60405180910390a35b50505050565b5f81836113829190611db7565b905092915050565b5f81836113979190611e25565b905092915050565b5f81836113ac9190611e55565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611404578060025f8282546113f89190611e88565b925050819055506114d2565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561148d578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161148493929190611ebb565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611519578060025f8282540392505081905550611563565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115c0919061176e565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61160f826115cd565b61161981856115d7565b93506116298185602086016115e7565b611632816115f5565b840191505092915050565b5f6020820190508181035f8301526116558184611605565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61168a82611661565b9050919050565b61169a81611680565b81146116a4575f80fd5b50565b5f813590506116b581611691565b92915050565b5f819050919050565b6116cd816116bb565b81146116d7575f80fd5b50565b5f813590506116e8816116c4565b92915050565b5f80604083850312156117045761170361165d565b5b5f611711858286016116a7565b9250506020611722858286016116da565b9150509250929050565b5f8115159050919050565b6117408161172c565b82525050565b5f6020820190506117595f830184611737565b92915050565b611768816116bb565b82525050565b5f6020820190506117815f83018461175f565b92915050565b5f805f6060848603121561179e5761179d61165d565b5b5f6117ab868287016116a7565b93505060206117bc868287016116a7565b92505060406117cd868287016116da565b9150509250925092565b6117e081611680565b82525050565b5f6020820190506117f95f8301846117d7565b92915050565b5f60ff82169050919050565b611814816117ff565b82525050565b5f60208201905061182d5f83018461180b565b92915050565b5f819050919050565b5f61185661185161184c84611661565b611833565b611661565b9050919050565b5f6118678261183c565b9050919050565b5f6118788261185d565b9050919050565b6118888161186e565b82525050565b5f6020820190506118a15f83018461187f565b92915050565b5f602082840312156118bc576118bb61165d565b5b5f6118c9848285016116a7565b91505092915050565b5f602082840312156118e7576118e661165d565b5b5f6118f4848285016116da565b91505092915050565b5f80604083850312156119135761191261165d565b5b5f611920858286016116a7565b9250506020611931858286016116a7565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061197f57607f821691505b6020821081036119925761199161193b565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f6119f26028836115d7565b91506119fd82611998565b604082019050919050565b5f6020820190508181035f830152611a1f816119e6565b9050919050565b7f54726164696e6720697320616c726561647920656e61626c65640000000000005f82015250565b5f611a5a601a836115d7565b9150611a6582611a26565b602082019050919050565b5f6020820190508181035f830152611a8781611a4e565b9050919050565b5f604082019050611aa15f8301856117d7565b611aae60208301846117d7565b9392505050565b5f81519050611ac381611691565b92915050565b5f60208284031215611ade57611add61165d565b5b5f611aeb84828501611ab5565b91505092915050565b7f556e6973776170207061697220646f6573206e6f7420657869737400000000005f82015250565b5f611b28601b836115d7565b9150611b3382611af4565b602082019050919050565b5f6020820190508181035f830152611b5581611b1c565b9050919050565b7f54617820726174652063616e6e6f7420657863656564203130302500000000005f82015250565b5f611b90601b836115d7565b9150611b9b82611b5c565b602082019050919050565b5f6020820190508181035f830152611bbd81611b84565b9050919050565b7f4e6577207461782077616c6c657420697320746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611c1e6022836115d7565b9150611c2982611bc4565b604082019050919050565b5f6020820190508181035f830152611c4b81611c12565b9050919050565b7f5472616e736665722066726f6d20746865207a65726f206164647265737300005f82015250565b5f611c86601e836115d7565b9150611c9182611c52565b602082019050919050565b5f6020820190508181035f830152611cb381611c7a565b9050919050565b7f5472616e7366657220746f20746865207a65726f2061646472657373000000005f82015250565b5f611cee601c836115d7565b9150611cf982611cba565b602082019050919050565b5f6020820190508181035f830152611d1b81611ce2565b9050919050565b7f54726164696e67206e6f742079657420656e61626c65640000000000000000005f82015250565b5f611d566017836115d7565b9150611d6182611d22565b602082019050919050565b5f6020820190508181035f830152611d8381611d4a565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611dc1826116bb565b9150611dcc836116bb565b9250828202611dda816116bb565b91508282048414831517611df157611df0611d8a565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611e2f826116bb565b9150611e3a836116bb565b925082611e4a57611e49611df8565b5b828204905092915050565b5f611e5f826116bb565b9150611e6a836116bb565b9250828203905081811115611e8257611e81611d8a565b5b92915050565b5f611e92826116bb565b9150611e9d836116bb565b9250828201905080821115611eb557611eb4611d8a565b5b92915050565b5f606082019050611ece5f8301866117d7565b611edb602083018561175f565b611ee8604083018461175f565b94935050505056fea264697066735822122047c343265c36a83a2d0b15375f6f182bab063007525d93d6dc67901e8851014964736f6c634300081a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000001406f4000000000000000000000000000000000000000000000000000000000000000064d4f55544149000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000063630303531390000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): MOUTAI
Arg [1] : symbol (string): 600519
Arg [2] : initialSupply (uint256): 21000000
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000001406f40
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [4] : 4d4f555441490000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 3630303531390000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
505:3896:7:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2074:89:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4293:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3144:97;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3386:538:7;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;581:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;614:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3002:82:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1098:34:7;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;645:41;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3299:116:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2293:101:0;;;:::i;:::-;;1793:181:7;;;:::i;:::-;;1638:85:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2276:93:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1046:45:7;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;924:81;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1982:284;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3111:267;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3932:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3846:140:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4158:240:7;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2543:215:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2074:89:2;2119:13;2151:5;2144:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2074:89;:::o;4293:186::-;4366:4;4382:13;4398:12;:10;:12::i;:::-;4382:28;;4420:31;4429:5;4436:7;4445:5;4420:8;:31::i;:::-;4468:4;4461:11;;;4293:186;;;;:::o;3144:97::-;3196:7;3222:12;;3215:19;;3144:97;:::o;3386:538:7:-;3492:4;3509:22;3534:42;3550:6;3558:9;3569:6;3534:15;:42::i;:::-;3509:67;;3587:24;3614:31;3624:6;3632:12;:10;:12::i;:::-;3614:9;:31::i;:::-;3587:58;;3684:6;3664:16;:26;;3656:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;3771:57;3780:6;3788:12;:10;:12::i;:::-;3821:6;3802:16;:25;3771:8;:57::i;:::-;3850:44;3860:6;3868:9;3879:14;3850:9;:44::i;:::-;3912:4;3905:11;;;;3386:538;;;;;:::o;581:26::-;;;;:::o;614:24::-;;;;;;;;;;;;;:::o;3002:82:2:-;3051:5;3075:2;3068:9;;3002:82;:::o;1098:34:7:-;;;;;;;;;;;;;:::o;645:41::-;;;;;;;;;;;;;:::o;3299:116:2:-;3364:7;3390:9;:18;3400:7;3390:18;;;;;;;;;;;;;;;;3383:25;;3299:116;;;:::o;2293:101:0:-;1531:13;:11;:13::i;:::-;2357:30:::1;2384:1;2357:18;:30::i;:::-;2293:101::o:0;1793:181:7:-;1531:13:0;:11;:13::i;:::-;1857:14:7::1;;;;;;;;;;;1856:15;1848:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;1930:4;1913:14;;:21;;;;;;;;;;;;;;;;;;1950:16;;;;;;;;;;1793:181::o:0;1638:85:0:-;1684:7;1710:6;;;;;;;;;;;1703:13;;1638:85;:::o;2276:93:2:-;2323:13;2355:7;2348:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2276:93;:::o;1046:45:7:-;;;;;;;;;;;;;;;;;;;;;;:::o;924:81::-;963:42;924:81;:::o;1982:284::-;1531:13:0;:11;:13::i;:::-;2052:12:7::1;2067:16;;;;;;;;;;;:24;;;2100:4;2107:6;2067:47;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2052:62;;2149:1;2133:18;;:4;:18;;::::0;2125:58:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2216:4;2194:13;:19;2208:4;2194:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;2236:22;2253:4;2236:22;;;;;;:::i;:::-;;;;;;;;2041:225;1982:284:::0;:::o;3111:267::-;3197:4;3214:22;3239:48;3255:12;:10;:12::i;:::-;3269:9;3280:6;3239:15;:48::i;:::-;3214:73;;3298:50;3308:12;:10;:12::i;:::-;3322:9;3333:14;3298:9;:50::i;:::-;3366:4;3359:11;;;3111:267;;;;:::o;3932:218::-;1531:13:0;:11;:13::i;:::-;4026:5:7::1;4011:11;:20;;4003:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;4088:11;4074;:25;;;;4115:27;4130:11;4115:27;;;;;;:::i;:::-;;;;;;;;3932:218:::0;:::o;3846:140:2:-;3926:7;3952:11;:18;3964:5;3952:18;;;;;;;;;;;;;;;:27;3971:7;3952:27;;;;;;;;;;;;;;;;3945:34;;3846:140;;;;:::o;4158:240:7:-;1531:13:0;:11;:13::i;:::-;4266:1:7::1;4241:27;;:13;:27;;::::0;4233:74:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;4330:13;4318:9;;:25;;;;;;;;;;;;;;;;;;4359:31;4376:13;4359:31;;;;;;:::i;:::-;;;;;;;;4158:240:::0;:::o;2543:215:0:-;1531:13;:11;:13::i;:::-;2647:1:::1;2627:22;;:8;:22;;::::0;2623:91:::1;;2700:1;2672:31;;;;;;;;;;;:::i;:::-;;;;;;;;2623:91;2723:28;2742:8;2723:18;:28::i;:::-;2543:215:::0;:::o;656:96:5:-;709:7;735:10;728:17;;656:96;:::o;8989:128:2:-;9073:37;9082:5;9089:7;9098:5;9105:4;9073:8;:37::i;:::-;8989:128;;;:::o;2274:829:7:-;2410:7;2456:1;2438:20;;:6;:20;;;2430:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;2533:1;2512:23;;:9;:23;;;2504:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;2587:14;;;;;;;;;;;:35;;;;2615:7;:5;:7::i;:::-;2605:17;;:6;:17;;;2587:35;:59;;;;2639:7;:5;:7::i;:::-;2626:20;;:9;:20;;;2587:59;:85;;;;963:42;2650:22;;:6;:22;;;2587:85;:114;;;;963:42;2676:25;;:9;:25;;;2587:114;2579:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;2742:17;2870:13;:24;2884:9;2870:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;963:42;2898:22;;:6;:22;;;;2870:50;2866:189;;;2949:34;2977:5;2949:23;2960:11;;2949:6;:10;;:23;;;;:::i;:::-;:27;;:34;;;;:::i;:::-;2937:46;;2998:45;3014:6;3022:9;;;;;;;;;;;3033;2998:15;:45::i;:::-;2866:189;3074:21;3085:9;3074:6;:10;;:21;;;;:::i;:::-;3067:28;;;2274:829;;;;;:::o;5656:300:2:-;5755:1;5739:18;;:4;:18;;;5735:86;;5807:1;5780:30;;;;;;;;;;;:::i;:::-;;;;;;;;5735:86;5848:1;5834:16;;:2;:16;;;5830:86;;5902:1;5873:32;;;;;;;;;;;:::i;:::-;;;;;;;;5830:86;5925:24;5933:4;5939:2;5943:5;5925:7;:24::i;:::-;5656:300;;;:::o;1796:162:0:-;1866:12;:10;:12::i;:::-;1855:23;;:7;:5;:7::i;:::-;:23;;;1851:101;;1928:12;:10;:12::i;:::-;1901:40;;;;;;;;;;;:::i;:::-;;;;;;;;1851:101;1796:162::o;2912:187::-;2985:16;3004:6;;;;;;;;;;;2985:25;;3029:8;3020:6;;:17;;;;;;;;;;;;;;;;;;3083:8;3052:40;;3073:8;3052:40;;;;;;;;;;;;2975:124;2912:187;:::o;9949:432:2:-;10078:1;10061:19;;:5;:19;;;10057:89;;10132:1;10103:32;;;;;;;;;;;:::i;:::-;;;;;;;;10057:89;10178:1;10159:21;;:7;:21;;;10155:90;;10231:1;10203:31;;;;;;;;;;;:::i;:::-;;;;;;;;10155:90;10284:5;10254:11;:18;10266:5;10254:18;;;;;;;;;;;;;;;:27;10273:7;10254:27;;;;;;;;;;;;;;;:35;;;;10303:9;10299:76;;;10349:7;10333:31;;10342:5;10333:31;;;10358:5;10333:31;;;;;;:::i;:::-;;;;;;;;10299:76;9949:432;;;;:::o;3465:96:6:-;3523:7;3553:1;3549;:5;;;;:::i;:::-;3542:12;;3465:96;;;;:::o;3850:::-;3908:7;3938:1;3934;:5;;;;:::i;:::-;3927:12;;3850:96;;;;:::o;3122:::-;3180:7;3210:1;3206;:5;;;;:::i;:::-;3199:12;;3122:96;;;;:::o;6271:1107:2:-;6376:1;6360:18;;:4;:18;;;6356:540;;6512:5;6496:12;;:21;;;;;;;:::i;:::-;;;;;;;;6356:540;;;6548:19;6570:9;:15;6580:4;6570:15;;;;;;;;;;;;;;;;6548:37;;6617:5;6603:11;:19;6599:115;;;6674:4;6680:11;6693:5;6649:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;6599:115;6866:5;6852:11;:19;6834:9;:15;6844:4;6834:15;;;;;;;;;;;;;;;:37;;;;6534:362;6356:540;6924:1;6910:16;;:2;:16;;;6906:425;;7089:5;7073:12;;:21;;;;;;;;;;;6906:425;;;7301:5;7284:9;:13;7294:2;7284:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;6906:425;7361:2;7346:25;;7355:4;7346:25;;;7365:5;7346:25;;;;;;:::i;:::-;;;;;;;;6271:1107;;;:::o;7:99:8:-;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:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:118::-;4403:24;4421:5;4403:24;:::i;:::-;4398:3;4391:37;4316:118;;:::o;4440:222::-;4533:4;4571:2;4560:9;4556:18;4548:26;;4584:71;4652:1;4641:9;4637:17;4628:6;4584:71;:::i;:::-;4440:222;;;;:::o;4668:86::-;4703:7;4743:4;4736:5;4732:16;4721:27;;4668:86;;;:::o;4760:112::-;4843:22;4859:5;4843:22;:::i;:::-;4838:3;4831:35;4760:112;;:::o;4878:214::-;4967:4;5005:2;4994:9;4990:18;4982:26;;5018:67;5082:1;5071:9;5067:17;5058:6;5018:67;:::i;:::-;4878:214;;;;:::o;5098:60::-;5126:3;5147:5;5140:12;;5098:60;;;:::o;5164:142::-;5214:9;5247:53;5265:34;5274:24;5292:5;5274:24;:::i;:::-;5265:34;:::i;:::-;5247:53;:::i;:::-;5234:66;;5164:142;;;:::o;5312:126::-;5362:9;5395:37;5426:5;5395:37;:::i;:::-;5382:50;;5312:126;;;:::o;5444:152::-;5520:9;5553:37;5584:5;5553:37;:::i;:::-;5540:50;;5444:152;;;:::o;5602:183::-;5715:63;5772:5;5715:63;:::i;:::-;5710:3;5703:76;5602:183;;:::o;5791:274::-;5910:4;5948:2;5937:9;5933:18;5925:26;;5961:97;6055:1;6044:9;6040:17;6031:6;5961:97;:::i;:::-;5791:274;;;;:::o;6071:329::-;6130:6;6179:2;6167:9;6158:7;6154:23;6150:32;6147:119;;;6185:79;;:::i;:::-;6147:119;6305:1;6330:53;6375:7;6366:6;6355:9;6351:22;6330:53;:::i;:::-;6320:63;;6276:117;6071:329;;;;:::o;6406:::-;6465:6;6514:2;6502:9;6493:7;6489:23;6485:32;6482:119;;;6520:79;;:::i;:::-;6482:119;6640:1;6665:53;6710:7;6701:6;6690:9;6686:22;6665:53;:::i;:::-;6655:63;;6611:117;6406:329;;;;:::o;6741:474::-;6809:6;6817;6866:2;6854:9;6845:7;6841:23;6837:32;6834:119;;;6872:79;;:::i;:::-;6834:119;6992:1;7017:53;7062:7;7053:6;7042:9;7038:22;7017:53;:::i;:::-;7007:63;;6963:117;7119:2;7145:53;7190:7;7181:6;7170:9;7166:22;7145:53;:::i;:::-;7135:63;;7090:118;6741:474;;;;;:::o;7221:180::-;7269:77;7266:1;7259:88;7366:4;7363:1;7356:15;7390:4;7387:1;7380:15;7407:320;7451:6;7488:1;7482:4;7478:12;7468:22;;7535:1;7529:4;7525:12;7556:18;7546:81;;7612:4;7604:6;7600:17;7590:27;;7546:81;7674:2;7666:6;7663:14;7643:18;7640:38;7637:84;;7693:18;;:::i;:::-;7637:84;7458:269;7407:320;;;:::o;7733:227::-;7873:34;7869:1;7861:6;7857:14;7850:58;7942:10;7937:2;7929:6;7925:15;7918:35;7733:227;:::o;7966:366::-;8108:3;8129:67;8193:2;8188:3;8129:67;:::i;:::-;8122:74;;8205:93;8294:3;8205:93;:::i;:::-;8323:2;8318:3;8314:12;8307:19;;7966:366;;;:::o;8338:419::-;8504:4;8542:2;8531:9;8527:18;8519:26;;8591:9;8585:4;8581:20;8577:1;8566:9;8562:17;8555:47;8619:131;8745:4;8619:131;:::i;:::-;8611:139;;8338:419;;;:::o;8763:176::-;8903:28;8899:1;8891:6;8887:14;8880:52;8763:176;:::o;8945:366::-;9087:3;9108:67;9172:2;9167:3;9108:67;:::i;:::-;9101:74;;9184:93;9273:3;9184:93;:::i;:::-;9302:2;9297:3;9293:12;9286:19;;8945:366;;;:::o;9317:419::-;9483:4;9521:2;9510:9;9506:18;9498:26;;9570:9;9564:4;9560:20;9556:1;9545:9;9541:17;9534:47;9598:131;9724:4;9598:131;:::i;:::-;9590:139;;9317:419;;;:::o;9742:332::-;9863:4;9901:2;9890:9;9886:18;9878:26;;9914:71;9982:1;9971:9;9967:17;9958:6;9914:71;:::i;:::-;9995:72;10063:2;10052:9;10048:18;10039:6;9995:72;:::i;:::-;9742:332;;;;;:::o;10080:143::-;10137:5;10168:6;10162:13;10153:22;;10184:33;10211:5;10184:33;:::i;:::-;10080:143;;;;:::o;10229:351::-;10299:6;10348:2;10336:9;10327:7;10323:23;10319:32;10316:119;;;10354:79;;:::i;:::-;10316:119;10474:1;10499:64;10555:7;10546:6;10535:9;10531:22;10499:64;:::i;:::-;10489:74;;10445:128;10229:351;;;;:::o;10586:177::-;10726:29;10722:1;10714:6;10710:14;10703:53;10586:177;:::o;10769:366::-;10911:3;10932:67;10996:2;10991:3;10932:67;:::i;:::-;10925:74;;11008:93;11097:3;11008:93;:::i;:::-;11126:2;11121:3;11117:12;11110:19;;10769:366;;;:::o;11141:419::-;11307:4;11345:2;11334:9;11330:18;11322:26;;11394:9;11388:4;11384:20;11380:1;11369:9;11365:17;11358:47;11422:131;11548:4;11422:131;:::i;:::-;11414:139;;11141:419;;;:::o;11566:177::-;11706:29;11702:1;11694:6;11690:14;11683:53;11566:177;:::o;11749:366::-;11891:3;11912:67;11976:2;11971:3;11912:67;:::i;:::-;11905:74;;11988:93;12077:3;11988:93;:::i;:::-;12106:2;12101:3;12097:12;12090:19;;11749:366;;;:::o;12121:419::-;12287:4;12325:2;12314:9;12310:18;12302:26;;12374:9;12368:4;12364:20;12360:1;12349:9;12345:17;12338:47;12402:131;12528:4;12402:131;:::i;:::-;12394:139;;12121:419;;;:::o;12546:221::-;12686:34;12682:1;12674:6;12670:14;12663:58;12755:4;12750:2;12742:6;12738:15;12731:29;12546:221;:::o;12773:366::-;12915:3;12936:67;13000:2;12995:3;12936:67;:::i;:::-;12929:74;;13012:93;13101:3;13012:93;:::i;:::-;13130:2;13125:3;13121:12;13114:19;;12773:366;;;:::o;13145:419::-;13311:4;13349:2;13338:9;13334:18;13326:26;;13398:9;13392:4;13388:20;13384:1;13373:9;13369:17;13362:47;13426:131;13552:4;13426:131;:::i;:::-;13418:139;;13145:419;;;:::o;13570:180::-;13710:32;13706:1;13698:6;13694:14;13687:56;13570:180;:::o;13756:366::-;13898:3;13919:67;13983:2;13978:3;13919:67;:::i;:::-;13912:74;;13995:93;14084:3;13995:93;:::i;:::-;14113:2;14108:3;14104:12;14097:19;;13756:366;;;:::o;14128:419::-;14294:4;14332:2;14321:9;14317:18;14309:26;;14381:9;14375:4;14371:20;14367:1;14356:9;14352:17;14345:47;14409:131;14535:4;14409:131;:::i;:::-;14401:139;;14128:419;;;:::o;14553:178::-;14693:30;14689:1;14681:6;14677:14;14670:54;14553:178;:::o;14737:366::-;14879:3;14900:67;14964:2;14959:3;14900:67;:::i;:::-;14893:74;;14976:93;15065:3;14976:93;:::i;:::-;15094:2;15089:3;15085:12;15078:19;;14737:366;;;:::o;15109:419::-;15275:4;15313:2;15302:9;15298:18;15290:26;;15362:9;15356:4;15352:20;15348:1;15337:9;15333:17;15326:47;15390:131;15516:4;15390:131;:::i;:::-;15382:139;;15109:419;;;:::o;15534:173::-;15674:25;15670:1;15662:6;15658:14;15651:49;15534:173;:::o;15713:366::-;15855:3;15876:67;15940:2;15935:3;15876:67;:::i;:::-;15869:74;;15952:93;16041:3;15952:93;:::i;:::-;16070:2;16065:3;16061:12;16054:19;;15713:366;;;:::o;16085:419::-;16251:4;16289:2;16278:9;16274:18;16266:26;;16338:9;16332:4;16328:20;16324:1;16313:9;16309:17;16302:47;16366:131;16492:4;16366:131;:::i;:::-;16358:139;;16085:419;;;:::o;16510:180::-;16558:77;16555:1;16548:88;16655:4;16652:1;16645:15;16679:4;16676:1;16669:15;16696:410;16736:7;16759:20;16777:1;16759:20;:::i;:::-;16754:25;;16793:20;16811:1;16793:20;:::i;:::-;16788:25;;16848:1;16845;16841:9;16870:30;16888:11;16870:30;:::i;:::-;16859:41;;17049:1;17040:7;17036:15;17033:1;17030:22;17010:1;17003:9;16983:83;16960:139;;17079:18;;:::i;:::-;16960:139;16744:362;16696:410;;;;:::o;17112:180::-;17160:77;17157:1;17150:88;17257:4;17254:1;17247:15;17281:4;17278:1;17271:15;17298:185;17338:1;17355:20;17373:1;17355:20;:::i;:::-;17350:25;;17389:20;17407:1;17389:20;:::i;:::-;17384:25;;17428:1;17418:35;;17433:18;;:::i;:::-;17418:35;17475:1;17472;17468:9;17463:14;;17298:185;;;;:::o;17489:194::-;17529:4;17549:20;17567:1;17549:20;:::i;:::-;17544:25;;17583:20;17601:1;17583:20;:::i;:::-;17578:25;;17627:1;17624;17620:9;17612:17;;17651:1;17645:4;17642:11;17639:37;;;17656:18;;:::i;:::-;17639:37;17489:194;;;;:::o;17689:191::-;17729:3;17748:20;17766:1;17748:20;:::i;:::-;17743:25;;17782:20;17800:1;17782:20;:::i;:::-;17777:25;;17825:1;17822;17818:9;17811:16;;17846:3;17843:1;17840:10;17837:36;;;17853:18;;:::i;:::-;17837:36;17689:191;;;;:::o;17886:442::-;18035:4;18073:2;18062:9;18058:18;18050:26;;18086:71;18154:1;18143:9;18139:17;18130:6;18086:71;:::i;:::-;18167:72;18235:2;18224:9;18220:18;18211:6;18167:72;:::i;:::-;18249;18317:2;18306:9;18302:18;18293:6;18249:72;:::i;:::-;17886:442;;;;;;:::o
Swarm Source
ipfs://47c343265c36a83a2d0b15375f6f182bab063007525d93d6dc67901e88510149
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.