ERC-20
Overview
Max Total Supply
1,000,000,000,000,000 CONK
Holders
73
Market
Price
-
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
ShibaPoconk
Compiler Version
v0.8.28+commit.7893614a
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2024-12-12 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @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 amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` 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 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * 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 `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `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. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } // File: contracts/ShibaPoconk.sol /** $CONK @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&&&&&&&&######&&&&&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&&&&##BGGPP5555YYYYYY5555PPGGB##&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@&&&#BBP55YJJJJJJJJJJJJJJJJJJJJJJJJJJY55PGB#&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@&&&#BG5YJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJY5GB#&&&@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@&&&#G5YJJJJJJJJJJYYY555555555YYYYYJJJJJJJJJJJJJJJJJJJY5G#&&&@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@&&&#G5JJJJJJJJJ??JP#####&&&&&&&&#######BBBBBPJ??JJJJJJJJJJJJ5G#&&&@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@&&#B5JJJJJJJJJJ?~:::^?G#&############&&&&&&&BJ~:::^7JJJJJJJJJJJJJ5B#&&@@@@@@@@@@@@@@@ @@@@@@@@@@@@@&&#GYJJJJJJJJJYJ?:......~YGBB###############B5!:.....:7JYJJJJJJJJJJJJYG#&&@@@@@@@@@@@@@ @@@@@@@@@@@&&#GYJJJJJJJJJJGBJ~.:::::..~J5BBBBBBBBBBBBBBBPJ!:.:::::.:?BBPYJJJJJJJJJJJYG#&&@@@@@@@@@@@ @@@@@@@@@@&&BYJJJJJJJJJJYB&B?:.:^^^^:..!?YGPPPPPPPPPPGG5J7:.::^^^::.!G&&#B5JJJJJJJJJJJYB&&@@@@@@@@@@ @@@@@@@@&&#PJJJJJJJJJJJY#&&G7:.:^^^^^:^!J???????????????J7^::^^^^^:.~P&##&&#PJJJJJJJJJJJP#&&@@@@@@@@ @@@@@@@&&BYJJJJJJJJJJJYB&#&B7.:^^^~!7?JJ??????JJJJJ??????JJ??7~^^^:.~5&####&&BYJJJJJJJJJJYB&&@@@@@@@ @@@@@@&&GJJJJJJJJJJJJYB&##&B7..~!?JJJJJ???????????????????JJJJJ?7~:.~Y#######JJJJJJJJJJJG&&@@@@@@ @@@@@&#PJJJJJJJJJJJJY#&#####?:!?JJJ????JJJJJ?????????JJJJJ????JJJJ7^~Y########JJJJJJJJJJJP#&@@@@@ @@@@#&PJJJJJJJJJJJJY#&######Y?JJ??????JJ???JJ???????JJ????JJ?????JJ??5&########&#JJJJJJJJJJJJP&#@@@@ @@@&&GJJJJJJJJJJJJJG&######&G????JJJJJ?^:::~?J?????J?!:::^7JJJJJJ??J?P&#########&PJJJJJJJJJJJJG&&@@@ @@&&BJJJJJJJJJJJJJY##########J??J??7!~:..:..^JJ????J!..::..^!7??JJ??JB&#########&GJJJJJJJJJJJJJB&&@@ @@##YJJJJJJJJJJJJJ5&#########P?J!^:~7?!^..::7JJ????J?^:..:!77!::~?J?5###########&BJJJJJJJJJJJJJ5##@@ @&&GJJJJJJJJJJJJJJP&##########Y?^.Y#&&&BJ77?J???????JJ?7?G&&&&P^:??Y#&##########&BJJJJJJJJJJJJJJG&&@ @##5JJJJJJJJJJJJJJP&##########GJ!^#&##&&B?JJJJJJJJJJJJJ?P&&##&&7^?YB&#############YJJJJJJJJJJJJJ5##@ &#BJJJJJJJJJJJJJJJP&###########5^.?B###GYJJJJJJ???JJJJJJJGB##BY::JB###############YJJJJJJJJJJJJJJB#& &&GJJJJJJJJJJJJJJJ5&###########B!..:~~^^!!~~~^^^^^^^^~~!!^^~~^..~G&###############5JJJJJJJJJJJJJJG&& #&PJJJJJJJJJJJJJJJ5&###########&G^.............................^G&###############&5JJJJJJJJJJJJJJP&# #&PJJJJJJJJJJJJJJJ5&############&P:.::::::::~?Y55Y7^.::::::::.:5#################&PJJJJJJJJJJJJJJP&# #&PJJJJJJJJJJJJJJJ5&##############Y:.:::::.!&&&&&&&B^.::::::.:Y##################&GJJJJJJJJJJJJJJP&# &&GJJJJJJJJJJJJJJJG&###############J.::..:.^5#&&&&#Y:.::::::.J###################&GJJJJJJJJJJJJJJG&& &#BJJJJJJJJJJJJJJJ#&################7..:^:...~JPPY~...:::::.?####################&BJJJJJJJJJJJJJJB#& @##5JJJJJJJJJJJJJP&################&B!.:!77!7!!!!777??!:::.!B####################&#JJJJJJJJJJJJJ5##@ @&&GJJJJJJJJJJJJY###################&G^..::^::....:^^:.::.~B&######################YJJJJJJJJJJJJG&&@ @@##YJJJJJJJJJJJB&###################&P:.:..:::::::..:::.^G&#######################YJJJJJJJJJJJ5##@@ @@&&BJJJJJJJJJJ5&######################Y:.:::::::::::::.:P########################&5JJJJJJJJJJJB&&@@ @@@&&GJJJJJJJJJ#&#######################?.::::::::::::.:Y#########################&PJJJJJJJJJJG&&@@@ @@@@#&PJJJJJJJP&#########################!.:::::::::::.?##########################&PJJJJJJJJJP&#@@@@ @@@@@&#PJJJJJY#&########################&G^.:::::::::.7###########################&BJJJJJJJJP#&@@@@@ @@@@@@&&GJJJJP&##########################&5:.:::::::.~B&############################YJJJJJJG&&@@@@@@ @@@@@@@&&BYJJ#&############################?.::::::.:P&############################&BJJJJYB&&@@@@@@@ @@@@@@@@&P&############################&B^.:::::.Y###############################&PJJP#&&@@@@@@@@ @@@@@@@@@@&################################&5.::::.7##################################PB&&@@@@@@@@@@ @@@@@@@@@@@&&################################!.::.~B##################################&&&@@@@@@@@@@@ @@@@@@@@@@@@@&##############################&P:..:5###################################&@@@@@@@@@@@@@ @@@@@@@@@@@@@@@&&#############################!..?#################################&&@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@&&##########################&5.^B###############################&&@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@&&#######################&B^Y#############################&&@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@&&######################5B##########################&&@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@&&&#################B######################&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&&&&############################&&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&&&&&&&##########&&&&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ **/ /** * @title ShibaPoconk * @author Pocong * ShibaPoconk or $CONK is a meme token. **/ pragma solidity ^0.8.9; contract ShibaPoconk is ERC20, ERC20Burnable { constructor() ERC20("ShibaPoconk", "CONK") { _mint(msg.sender, 1000000000000000 * 10 ** decimals()); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561000f575f5ffd5b506040518060400160405280600b81526020017f5368696261506f636f6e6b0000000000000000000000000000000000000000008152506040518060400160405280600481526020017f434f4e4b00000000000000000000000000000000000000000000000000000000815250816003908161008b9190610487565b50806004908161009b9190610487565b5050506100d9336100b06100de60201b60201c565b600a6100bc91906106be565b66038d7ea4c680006100ce9190610708565b6100e660201b60201c565b61081c565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161014b906107a3565b60405180910390fd5b6101655f838361024060201b60201c565b8060025f82825461017691906107c1565b92505081905550805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516102239190610803565b60405180910390a361023c5f838361024560201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806102c557607f821691505b6020821081036102d8576102d7610281565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261033a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826102ff565b61034486836102ff565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61038861038361037e8461035c565b610365565b61035c565b9050919050565b5f819050919050565b6103a18361036e565b6103b56103ad8261038f565b84845461030b565b825550505050565b5f5f905090565b6103cc6103bd565b6103d7818484610398565b505050565b5b818110156103fa576103ef5f826103c4565b6001810190506103dd565b5050565b601f82111561043f57610410816102de565b610419846102f0565b81016020851015610428578190505b61043c610434856102f0565b8301826103dc565b50505b505050565b5f82821c905092915050565b5f61045f5f1984600802610444565b1980831691505092915050565b5f6104778383610450565b9150826002028217905092915050565b6104908261024a565b67ffffffffffffffff8111156104a9576104a8610254565b5b6104b382546102ae565b6104be8282856103fe565b5f60209050601f8311600181146104ef575f84156104dd578287015190505b6104e7858261046c565b86555061054e565b601f1984166104fd866102de565b5f5b82811015610524578489015182556001820191506020850194506020810190506104ff565b86831015610541578489015161053d601f891682610450565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f5f8291508390505b60018511156105d8578086048111156105b4576105b3610556565b5b60018516156105c35780820291505b80810290506105d185610583565b9450610598565b94509492505050565b5f826105f057600190506106ab565b816105fd575f90506106ab565b8160018114610613576002811461061d5761064c565b60019150506106ab565b60ff84111561062f5761062e610556565b5b8360020a91508482111561064657610645610556565b5b506106ab565b5060208310610133831016604e8410600b84101617156106815782820a90508381111561067c5761067b610556565b5b6106ab565b61068e848484600161058f565b925090508184048111156106a5576106a4610556565b5b81810290505b9392505050565b5f60ff82169050919050565b5f6106c88261035c565b91506106d3836106b2565b92506107007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846105e1565b905092915050565b5f6107128261035c565b915061071d8361035c565b925082820261072b8161035c565b9150828204841483151761074257610741610556565b5b5092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f61078d601f83610749565b915061079882610759565b602082019050919050565b5f6020820190508181035f8301526107ba81610781565b9050919050565b5f6107cb8261035c565b91506107d68361035c565b92508282019050808211156107ee576107ed610556565b5b92915050565b6107fd8161035c565b82525050565b5f6020820190506108165f8301846107f4565b92915050565b611545806108295f395ff3fe608060405234801561000f575f5ffd5b50600436106100cd575f3560e01c806342966c681161008a57806395d89b411161006457806395d89b4114610223578063a457c2d714610241578063a9059cbb14610271578063dd62ed3e146102a1576100cd565b806342966c68146101bb57806370a08231146101d757806379cc679014610207576100cd565b806306fdde03146100d1578063095ea7b3146100ef57806318160ddd1461011f57806323b872dd1461013d578063313ce5671461016d578063395093511461018b575b5f5ffd5b6100d96102d1565b6040516100e69190610d18565b60405180910390f35b61010960048036038101906101049190610dc9565b610361565b6040516101169190610e21565b60405180910390f35b610127610383565b6040516101349190610e49565b60405180910390f35b61015760048036038101906101529190610e62565b61038c565b6040516101649190610e21565b60405180910390f35b6101756103ba565b6040516101829190610ecd565b60405180910390f35b6101a560048036038101906101a09190610dc9565b6103c2565b6040516101b29190610e21565b60405180910390f35b6101d560048036038101906101d09190610ee6565b6103f8565b005b6101f160048036038101906101ec9190610f11565b61040c565b6040516101fe9190610e49565b60405180910390f35b610221600480360381019061021c9190610dc9565b610451565b005b61022b610471565b6040516102389190610d18565b60405180910390f35b61025b60048036038101906102569190610dc9565b610501565b6040516102689190610e21565b60405180910390f35b61028b60048036038101906102869190610dc9565b610576565b6040516102989190610e21565b60405180910390f35b6102bb60048036038101906102b69190610f3c565b610598565b6040516102c89190610e49565b60405180910390f35b6060600380546102e090610fa7565b80601f016020809104026020016040519081016040528092919081815260200182805461030c90610fa7565b80156103575780601f1061032e57610100808354040283529160200191610357565b820191905f5260205f20905b81548152906001019060200180831161033a57829003601f168201915b5050505050905090565b5f5f61036b61061a565b9050610378818585610621565b600191505092915050565b5f600254905090565b5f5f61039661061a565b90506103a38582856107e4565b6103ae85858561086f565b60019150509392505050565b5f6012905090565b5f5f6103cc61061a565b90506103ed8185856103de8589610598565b6103e89190611004565b610621565b600191505092915050565b61040961040361061a565b82610adb565b50565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104638261045d61061a565b836107e4565b61046d8282610adb565b5050565b60606004805461048090610fa7565b80601f01602080910402602001604051908101604052809291908181526020018280546104ac90610fa7565b80156104f75780601f106104ce576101008083540402835291602001916104f7565b820191905f5260205f20905b8154815290600101906020018083116104da57829003601f168201915b5050505050905090565b5f5f61050b61061a565b90505f6105188286610598565b90508381101561055d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610554906110a7565b60405180910390fd5b61056a8286868403610621565b60019250505092915050565b5f5f61058061061a565b905061058d81858561086f565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361068f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068690611135565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036106fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f4906111c3565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107d79190610e49565b60405180910390a3505050565b5f6107ef8484610598565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610869578181101561085b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108529061122b565b60405180910390fd5b6108688484848403610621565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d4906112b9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361094b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094290611347565b60405180910390fd5b610956838383610c9e565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156109d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d0906113d5565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ac29190610e49565b60405180910390a3610ad5848484610ca3565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4090611463565b60405180910390fd5b610b54825f83610c9e565b5f5f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bce906114f1565b60405180910390fd5b8181035f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c869190610e49565b60405180910390a3610c99835f84610ca3565b505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610cea82610ca8565b610cf48185610cb2565b9350610d04818560208601610cc2565b610d0d81610cd0565b840191505092915050565b5f6020820190508181035f830152610d308184610ce0565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610d6582610d3c565b9050919050565b610d7581610d5b565b8114610d7f575f5ffd5b50565b5f81359050610d9081610d6c565b92915050565b5f819050919050565b610da881610d96565b8114610db2575f5ffd5b50565b5f81359050610dc381610d9f565b92915050565b5f5f60408385031215610ddf57610dde610d38565b5b5f610dec85828601610d82565b9250506020610dfd85828601610db5565b9150509250929050565b5f8115159050919050565b610e1b81610e07565b82525050565b5f602082019050610e345f830184610e12565b92915050565b610e4381610d96565b82525050565b5f602082019050610e5c5f830184610e3a565b92915050565b5f5f5f60608486031215610e7957610e78610d38565b5b5f610e8686828701610d82565b9350506020610e9786828701610d82565b9250506040610ea886828701610db5565b9150509250925092565b5f60ff82169050919050565b610ec781610eb2565b82525050565b5f602082019050610ee05f830184610ebe565b92915050565b5f60208284031215610efb57610efa610d38565b5b5f610f0884828501610db5565b91505092915050565b5f60208284031215610f2657610f25610d38565b5b5f610f3384828501610d82565b91505092915050565b5f5f60408385031215610f5257610f51610d38565b5b5f610f5f85828601610d82565b9250506020610f7085828601610d82565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610fbe57607f821691505b602082108103610fd157610fd0610f7a565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61100e82610d96565b915061101983610d96565b925082820190508082111561103157611030610fd7565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611091602583610cb2565b915061109c82611037565b604082019050919050565b5f6020820190508181035f8301526110be81611085565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61111f602483610cb2565b915061112a826110c5565b604082019050919050565b5f6020820190508181035f83015261114c81611113565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6111ad602283610cb2565b91506111b882611153565b604082019050919050565b5f6020820190508181035f8301526111da816111a1565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611215601d83610cb2565b9150611220826111e1565b602082019050919050565b5f6020820190508181035f83015261124281611209565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6112a3602583610cb2565b91506112ae82611249565b604082019050919050565b5f6020820190508181035f8301526112d081611297565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611331602383610cb2565b915061133c826112d7565b604082019050919050565b5f6020820190508181035f83015261135e81611325565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6113bf602683610cb2565b91506113ca82611365565b604082019050919050565b5f6020820190508181035f8301526113ec816113b3565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f61144d602183610cb2565b9150611458826113f3565b604082019050919050565b5f6020820190508181035f83015261147a81611441565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6114db602283610cb2565b91506114e682611481565b604082019050919050565b5f6020820190508181035f830152611508816114cf565b905091905056fea2646970667358221220f81705f8160a4ffec1c9eacecf0086c05bbb7d68e7d3cc47ae2a31a01130923b64736f6c634300081c0033
Deployed Bytecode
0x608060405234801561000f575f5ffd5b50600436106100cd575f3560e01c806342966c681161008a57806395d89b411161006457806395d89b4114610223578063a457c2d714610241578063a9059cbb14610271578063dd62ed3e146102a1576100cd565b806342966c68146101bb57806370a08231146101d757806379cc679014610207576100cd565b806306fdde03146100d1578063095ea7b3146100ef57806318160ddd1461011f57806323b872dd1461013d578063313ce5671461016d578063395093511461018b575b5f5ffd5b6100d96102d1565b6040516100e69190610d18565b60405180910390f35b61010960048036038101906101049190610dc9565b610361565b6040516101169190610e21565b60405180910390f35b610127610383565b6040516101349190610e49565b60405180910390f35b61015760048036038101906101529190610e62565b61038c565b6040516101649190610e21565b60405180910390f35b6101756103ba565b6040516101829190610ecd565b60405180910390f35b6101a560048036038101906101a09190610dc9565b6103c2565b6040516101b29190610e21565b60405180910390f35b6101d560048036038101906101d09190610ee6565b6103f8565b005b6101f160048036038101906101ec9190610f11565b61040c565b6040516101fe9190610e49565b60405180910390f35b610221600480360381019061021c9190610dc9565b610451565b005b61022b610471565b6040516102389190610d18565b60405180910390f35b61025b60048036038101906102569190610dc9565b610501565b6040516102689190610e21565b60405180910390f35b61028b60048036038101906102869190610dc9565b610576565b6040516102989190610e21565b60405180910390f35b6102bb60048036038101906102b69190610f3c565b610598565b6040516102c89190610e49565b60405180910390f35b6060600380546102e090610fa7565b80601f016020809104026020016040519081016040528092919081815260200182805461030c90610fa7565b80156103575780601f1061032e57610100808354040283529160200191610357565b820191905f5260205f20905b81548152906001019060200180831161033a57829003601f168201915b5050505050905090565b5f5f61036b61061a565b9050610378818585610621565b600191505092915050565b5f600254905090565b5f5f61039661061a565b90506103a38582856107e4565b6103ae85858561086f565b60019150509392505050565b5f6012905090565b5f5f6103cc61061a565b90506103ed8185856103de8589610598565b6103e89190611004565b610621565b600191505092915050565b61040961040361061a565b82610adb565b50565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104638261045d61061a565b836107e4565b61046d8282610adb565b5050565b60606004805461048090610fa7565b80601f01602080910402602001604051908101604052809291908181526020018280546104ac90610fa7565b80156104f75780601f106104ce576101008083540402835291602001916104f7565b820191905f5260205f20905b8154815290600101906020018083116104da57829003601f168201915b5050505050905090565b5f5f61050b61061a565b90505f6105188286610598565b90508381101561055d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610554906110a7565b60405180910390fd5b61056a8286868403610621565b60019250505092915050565b5f5f61058061061a565b905061058d81858561086f565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361068f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068690611135565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036106fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f4906111c3565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107d79190610e49565b60405180910390a3505050565b5f6107ef8484610598565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610869578181101561085b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108529061122b565b60405180910390fd5b6108688484848403610621565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d4906112b9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361094b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094290611347565b60405180910390fd5b610956838383610c9e565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156109d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d0906113d5565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ac29190610e49565b60405180910390a3610ad5848484610ca3565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4090611463565b60405180910390fd5b610b54825f83610c9e565b5f5f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bce906114f1565b60405180910390fd5b8181035f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c869190610e49565b60405180910390a3610c99835f84610ca3565b505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610cea82610ca8565b610cf48185610cb2565b9350610d04818560208601610cc2565b610d0d81610cd0565b840191505092915050565b5f6020820190508181035f830152610d308184610ce0565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610d6582610d3c565b9050919050565b610d7581610d5b565b8114610d7f575f5ffd5b50565b5f81359050610d9081610d6c565b92915050565b5f819050919050565b610da881610d96565b8114610db2575f5ffd5b50565b5f81359050610dc381610d9f565b92915050565b5f5f60408385031215610ddf57610dde610d38565b5b5f610dec85828601610d82565b9250506020610dfd85828601610db5565b9150509250929050565b5f8115159050919050565b610e1b81610e07565b82525050565b5f602082019050610e345f830184610e12565b92915050565b610e4381610d96565b82525050565b5f602082019050610e5c5f830184610e3a565b92915050565b5f5f5f60608486031215610e7957610e78610d38565b5b5f610e8686828701610d82565b9350506020610e9786828701610d82565b9250506040610ea886828701610db5565b9150509250925092565b5f60ff82169050919050565b610ec781610eb2565b82525050565b5f602082019050610ee05f830184610ebe565b92915050565b5f60208284031215610efb57610efa610d38565b5b5f610f0884828501610db5565b91505092915050565b5f60208284031215610f2657610f25610d38565b5b5f610f3384828501610d82565b91505092915050565b5f5f60408385031215610f5257610f51610d38565b5b5f610f5f85828601610d82565b9250506020610f7085828601610d82565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610fbe57607f821691505b602082108103610fd157610fd0610f7a565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61100e82610d96565b915061101983610d96565b925082820190508082111561103157611030610fd7565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611091602583610cb2565b915061109c82611037565b604082019050919050565b5f6020820190508181035f8301526110be81611085565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61111f602483610cb2565b915061112a826110c5565b604082019050919050565b5f6020820190508181035f83015261114c81611113565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6111ad602283610cb2565b91506111b882611153565b604082019050919050565b5f6020820190508181035f8301526111da816111a1565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611215601d83610cb2565b9150611220826111e1565b602082019050919050565b5f6020820190508181035f83015261124281611209565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6112a3602583610cb2565b91506112ae82611249565b604082019050919050565b5f6020820190508181035f8301526112d081611297565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611331602383610cb2565b915061133c826112d7565b604082019050919050565b5f6020820190508181035f83015261135e81611325565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6113bf602683610cb2565b91506113ca82611365565b604082019050919050565b5f6020820190508181035f8301526113ec816113b3565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f61144d602183610cb2565b9150611458826113f3565b604082019050919050565b5f6020820190508181035f83015261147a81611441565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6114db602283610cb2565b91506114e682611481565b604082019050919050565b5f6020820190508181035f830152611508816114cf565b905091905056fea2646970667358221220f81705f8160a4ffec1c9eacecf0086c05bbb7d68e7d3cc47ae2a31a01130923b64736f6c634300081c0033
Deployed Bytecode Sourcemap
24008:171:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6682:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9033:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7802:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9814:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7644:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10518:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18453:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7973:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18863:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6901:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11259:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8306:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8562:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6682:100;6736:13;6769:5;6762:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6682:100;:::o;9033:201::-;9116:4;9133:13;9149:12;:10;:12::i;:::-;9133:28;;9172:32;9181:5;9188:7;9197:6;9172:8;:32::i;:::-;9222:4;9215:11;;;9033:201;;;;:::o;7802:108::-;7863:7;7890:12;;7883:19;;7802:108;:::o;9814:295::-;9945:4;9962:15;9980:12;:10;:12::i;:::-;9962:30;;10003:38;10019:4;10025:7;10034:6;10003:15;:38::i;:::-;10052:27;10062:4;10068:2;10072:6;10052:9;:27::i;:::-;10097:4;10090:11;;;9814:295;;;;;:::o;7644:93::-;7702:5;7727:2;7720:9;;7644:93;:::o;10518:238::-;10606:4;10623:13;10639:12;:10;:12::i;:::-;10623:28;;10662:64;10671:5;10678:7;10715:10;10687:25;10697:5;10704:7;10687:9;:25::i;:::-;:38;;;;:::i;:::-;10662:8;:64::i;:::-;10744:4;10737:11;;;10518:238;;;;:::o;18453:91::-;18509:27;18515:12;:10;:12::i;:::-;18529:6;18509:5;:27::i;:::-;18453:91;:::o;7973:127::-;8047:7;8074:9;:18;8084:7;8074:18;;;;;;;;;;;;;;;;8067:25;;7973:127;;;:::o;18863:164::-;18940:46;18956:7;18965:12;:10;:12::i;:::-;18979:6;18940:15;:46::i;:::-;18997:22;19003:7;19012:6;18997:5;:22::i;:::-;18863:164;;:::o;6901:104::-;6957:13;6990:7;6983:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6901:104;:::o;11259:436::-;11352:4;11369:13;11385:12;:10;:12::i;:::-;11369:28;;11408:24;11435:25;11445:5;11452:7;11435:9;:25::i;:::-;11408:52;;11499:15;11479:16;:35;;11471:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11592:60;11601:5;11608:7;11636:15;11617:16;:34;11592:8;:60::i;:::-;11683:4;11676:11;;;;11259:436;;;;:::o;8306:193::-;8385:4;8402:13;8418:12;:10;:12::i;:::-;8402:28;;8441;8451:5;8458:2;8462:6;8441:9;:28::i;:::-;8487:4;8480:11;;;8306:193;;;;:::o;8562:151::-;8651:7;8678:11;:18;8690:5;8678:18;;;;;;;;;;;;;;;:27;8697:7;8678:27;;;;;;;;;;;;;;;;8671:34;;8562:151;;;;:::o;710:98::-;763:7;790:10;783:17;;710:98;:::o;15286:380::-;15439:1;15422:19;;:5;:19;;;15414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15520:1;15501:21;;:7;:21;;;15493:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15604:6;15574:11;:18;15586:5;15574:18;;;;;;;;;;;;;;;:27;15593:7;15574:27;;;;;;;;;;;;;;;:36;;;;15642:7;15626:32;;15635:5;15626:32;;;15651:6;15626:32;;;;;;:::i;:::-;;;;;;;;15286:380;;;:::o;15957:453::-;16092:24;16119:25;16129:5;16136:7;16119:9;:25::i;:::-;16092:52;;16179:17;16159:16;:37;16155:248;;16241:6;16221:16;:26;;16213:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16325:51;16334:5;16341:7;16369:6;16350:16;:25;16325:8;:51::i;:::-;16155:248;16081:329;15957:453;;;:::o;12165:840::-;12312:1;12296:18;;:4;:18;;;12288:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12389:1;12375:16;;:2;:16;;;12367:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12444:38;12465:4;12471:2;12475:6;12444:20;:38::i;:::-;12495:19;12517:9;:15;12527:4;12517:15;;;;;;;;;;;;;;;;12495:37;;12566:6;12551:11;:21;;12543:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12683:6;12669:11;:20;12651:9;:15;12661:4;12651:15;;;;;;;;;;;;;;;:38;;;;12886:6;12869:9;:13;12879:2;12869:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12936:2;12921:26;;12930:4;12921:26;;;12940:6;12921:26;;;;;;:::i;:::-;;;;;;;;12960:37;12980:4;12986:2;12990:6;12960:19;:37::i;:::-;12277:728;12165:840;;;:::o;14173:675::-;14276:1;14257:21;;:7;:21;;;14249:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14329:49;14350:7;14367:1;14371:6;14329:20;:49::i;:::-;14391:22;14416:9;:18;14426:7;14416:18;;;;;;;;;;;;;;;;14391:43;;14471:6;14453:14;:24;;14445:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14590:6;14573:14;:23;14552:9;:18;14562:7;14552:18;;;;;;;;;;;;;;;:44;;;;14707:6;14691:12;;:22;;;;;;;;;;;14768:1;14742:37;;14751:7;14742:37;;;14772:6;14742:37;;;;;;:::i;:::-;;;;;;;;14792:48;14812:7;14829:1;14833:6;14792:19;:48::i;:::-;14238:610;14173:675;;:::o;17010:125::-;;;;:::o;17739:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691: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:86::-;4351:7;4391:4;4384:5;4380:16;4369:27;;4316:86;;;:::o;4408:112::-;4491:22;4507:5;4491:22;:::i;:::-;4486:3;4479:35;4408:112;;:::o;4526:214::-;4615:4;4653:2;4642:9;4638:18;4630:26;;4666:67;4730:1;4719:9;4715:17;4706:6;4666:67;:::i;:::-;4526:214;;;;:::o;4746:329::-;4805:6;4854:2;4842:9;4833:7;4829:23;4825:32;4822:119;;;4860:79;;:::i;:::-;4822:119;4980:1;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4951:117;4746:329;;;;:::o;5081:::-;5140:6;5189:2;5177:9;5168:7;5164:23;5160:32;5157:119;;;5195:79;;:::i;:::-;5157:119;5315:1;5340:53;5385:7;5376:6;5365:9;5361:22;5340:53;:::i;:::-;5330:63;;5286:117;5081:329;;;;:::o;5416:474::-;5484:6;5492;5541:2;5529:9;5520:7;5516:23;5512:32;5509:119;;;5547:79;;:::i;:::-;5509:119;5667:1;5692:53;5737:7;5728:6;5717:9;5713:22;5692:53;:::i;:::-;5682:63;;5638:117;5794:2;5820:53;5865:7;5856:6;5845:9;5841:22;5820:53;:::i;:::-;5810:63;;5765:118;5416:474;;;;;:::o;5896:180::-;5944:77;5941:1;5934:88;6041:4;6038:1;6031:15;6065:4;6062:1;6055:15;6082:320;6126:6;6163:1;6157:4;6153:12;6143:22;;6210:1;6204:4;6200:12;6231:18;6221:81;;6287:4;6279:6;6275:17;6265:27;;6221:81;6349:2;6341:6;6338:14;6318:18;6315:38;6312:84;;6368:18;;:::i;:::-;6312:84;6133:269;6082:320;;;:::o;6408:180::-;6456:77;6453:1;6446:88;6553:4;6550:1;6543:15;6577:4;6574:1;6567:15;6594:191;6634:3;6653:20;6671:1;6653:20;:::i;:::-;6648:25;;6687:20;6705:1;6687:20;:::i;:::-;6682:25;;6730:1;6727;6723:9;6716:16;;6751:3;6748:1;6745:10;6742:36;;;6758:18;;:::i;:::-;6742:36;6594:191;;;;:::o;6791:224::-;6931:34;6927:1;6919:6;6915:14;6908:58;7000:7;6995:2;6987:6;6983:15;6976:32;6791:224;:::o;7021:366::-;7163:3;7184:67;7248:2;7243:3;7184:67;:::i;:::-;7177:74;;7260:93;7349:3;7260:93;:::i;:::-;7378:2;7373:3;7369:12;7362:19;;7021:366;;;:::o;7393:419::-;7559:4;7597:2;7586:9;7582:18;7574:26;;7646:9;7640:4;7636:20;7632:1;7621:9;7617:17;7610:47;7674:131;7800:4;7674:131;:::i;:::-;7666:139;;7393:419;;;:::o;7818:223::-;7958:34;7954:1;7946:6;7942:14;7935:58;8027:6;8022:2;8014:6;8010:15;8003:31;7818:223;:::o;8047:366::-;8189:3;8210:67;8274:2;8269:3;8210:67;:::i;:::-;8203:74;;8286:93;8375:3;8286:93;:::i;:::-;8404:2;8399:3;8395:12;8388:19;;8047:366;;;:::o;8419:419::-;8585:4;8623:2;8612:9;8608:18;8600:26;;8672:9;8666:4;8662:20;8658:1;8647:9;8643:17;8636:47;8700:131;8826:4;8700:131;:::i;:::-;8692:139;;8419:419;;;:::o;8844:221::-;8984:34;8980:1;8972:6;8968:14;8961:58;9053:4;9048:2;9040:6;9036:15;9029:29;8844:221;:::o;9071:366::-;9213:3;9234:67;9298:2;9293:3;9234:67;:::i;:::-;9227:74;;9310:93;9399:3;9310:93;:::i;:::-;9428:2;9423:3;9419:12;9412:19;;9071:366;;;:::o;9443:419::-;9609:4;9647:2;9636:9;9632:18;9624:26;;9696:9;9690:4;9686:20;9682:1;9671:9;9667:17;9660:47;9724:131;9850:4;9724:131;:::i;:::-;9716:139;;9443:419;;;:::o;9868:179::-;10008:31;10004:1;9996:6;9992:14;9985:55;9868:179;:::o;10053:366::-;10195:3;10216:67;10280:2;10275:3;10216:67;:::i;:::-;10209:74;;10292:93;10381:3;10292:93;:::i;:::-;10410:2;10405:3;10401:12;10394:19;;10053:366;;;:::o;10425:419::-;10591:4;10629:2;10618:9;10614:18;10606:26;;10678:9;10672:4;10668:20;10664:1;10653:9;10649:17;10642:47;10706:131;10832:4;10706:131;:::i;:::-;10698:139;;10425:419;;;:::o;10850:224::-;10990:34;10986:1;10978:6;10974:14;10967:58;11059:7;11054:2;11046:6;11042:15;11035:32;10850:224;:::o;11080:366::-;11222:3;11243:67;11307:2;11302:3;11243:67;:::i;:::-;11236:74;;11319:93;11408:3;11319:93;:::i;:::-;11437:2;11432:3;11428:12;11421:19;;11080:366;;;:::o;11452:419::-;11618:4;11656:2;11645:9;11641:18;11633:26;;11705:9;11699:4;11695:20;11691:1;11680:9;11676:17;11669:47;11733:131;11859:4;11733:131;:::i;:::-;11725:139;;11452:419;;;:::o;11877:222::-;12017:34;12013:1;12005:6;12001:14;11994:58;12086:5;12081:2;12073:6;12069:15;12062:30;11877:222;:::o;12105:366::-;12247:3;12268:67;12332:2;12327:3;12268:67;:::i;:::-;12261:74;;12344:93;12433:3;12344:93;:::i;:::-;12462:2;12457:3;12453:12;12446:19;;12105:366;;;:::o;12477:419::-;12643:4;12681:2;12670:9;12666:18;12658:26;;12730:9;12724:4;12720:20;12716:1;12705:9;12701:17;12694:47;12758:131;12884:4;12758:131;:::i;:::-;12750:139;;12477:419;;;:::o;12902:225::-;13042:34;13038:1;13030:6;13026:14;13019:58;13111:8;13106:2;13098:6;13094:15;13087:33;12902:225;:::o;13133:366::-;13275:3;13296:67;13360:2;13355:3;13296:67;:::i;:::-;13289:74;;13372:93;13461:3;13372:93;:::i;:::-;13490:2;13485:3;13481:12;13474:19;;13133:366;;;:::o;13505:419::-;13671:4;13709:2;13698:9;13694:18;13686:26;;13758:9;13752:4;13748:20;13744:1;13733:9;13729:17;13722:47;13786:131;13912:4;13786:131;:::i;:::-;13778:139;;13505:419;;;:::o;13930:220::-;14070:34;14066:1;14058:6;14054:14;14047:58;14139:3;14134:2;14126:6;14122:15;14115:28;13930:220;:::o;14156:366::-;14298:3;14319:67;14383:2;14378:3;14319:67;:::i;:::-;14312:74;;14395:93;14484:3;14395:93;:::i;:::-;14513:2;14508:3;14504:12;14497:19;;14156:366;;;:::o;14528:419::-;14694:4;14732:2;14721:9;14717:18;14709:26;;14781:9;14775:4;14771:20;14767:1;14756:9;14752:17;14745:47;14809:131;14935:4;14809:131;:::i;:::-;14801:139;;14528:419;;;:::o;14953:221::-;15093:34;15089:1;15081:6;15077:14;15070:58;15162:4;15157:2;15149:6;15145:15;15138:29;14953:221;:::o;15180:366::-;15322:3;15343:67;15407:2;15402:3;15343:67;:::i;:::-;15336:74;;15419:93;15508:3;15419:93;:::i;:::-;15537:2;15532:3;15528:12;15521:19;;15180:366;;;:::o;15552:419::-;15718:4;15756:2;15745:9;15741:18;15733:26;;15805:9;15799:4;15795:20;15791:1;15780:9;15776:17;15769:47;15833:131;15959:4;15833:131;:::i;:::-;15825:139;;15552:419;;;:::o
Swarm Source
ipfs://f81705f8160a4ffec1c9eacecf0086c05bbb7d68e7d3cc47ae2a31a01130923b
[ 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.