ERC-20
Overview
Max Total Supply
100,000,000,000 PICKLES
Holders
1
Total Transfers
-
Market
Price
$0.00 @ 0.000000 S
Onchain Market Cap
$0.00
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:
PICKLES
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2024-12-19 */ /** *Submitted for verification at ftmscan.com on 2024-10-09 */ /** *Submitted for verification at ftmscan.com on 2024-04-09 */ /** *Submitted for verification at ftmscan.com on 2023-11-14 */ // SPDX-License-Identifier: MIT // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.9/contracts/utils/Context.sol // GROK FANTOM IS A PURE MEME COIN WITH NO USECASE OR WHATSOEVER!! // // NO SOCIAL MEDIA CHANNELS OR ANYTHING ELSE TO MINIMIZE SCAMMER ACTIVITY // // GROK'N ROLL !! // // 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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.9/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.9.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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.9/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: contracts/Balls.sol // OpenZeppelin Contracts (last updated v4.9.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]. * * 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. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract PICKLES 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}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor() { _name = "PICKLES"; _symbol = "PICKLES"; _mint(msg.sender, 100000000000 * 10 ** decimals()); } /** * @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 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 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 {} }
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":[],"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
608060405234801561000f575f80fd5b506040518060400160405280600781526020017f5049434b4c45530000000000000000000000000000000000000000000000000081525060039081610054919061047e565b506040518060400160405280600781526020017f5049434b4c45530000000000000000000000000000000000000000000000000081525060049081610099919061047e565b506100d3336100ac6100d860201b60201c565b600a6100b891906106b5565b64174876e8006100c891906106ff565b6100e060201b60201c565b610813565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361014e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101459061079a565b60405180910390fd5b61015f5f838361023a60201b60201c565b8060025f82825461017091906107b8565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161021d91906107fa565b60405180910390a36102365f838361023f60201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806102bf57607f821691505b6020821081036102d2576102d161027b565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026103347fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826102f9565b61033e86836102f9565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61038261037d61037884610356565b61035f565b610356565b9050919050565b5f819050919050565b61039b83610368565b6103af6103a782610389565b848454610305565b825550505050565b5f90565b6103c36103b7565b6103ce818484610392565b505050565b5b818110156103f1576103e65f826103bb565b6001810190506103d4565b5050565b601f82111561043657610407816102d8565b610410846102ea565b8101602085101561041f578190505b61043361042b856102ea565b8301826103d3565b50505b505050565b5f82821c905092915050565b5f6104565f198460080261043b565b1980831691505092915050565b5f61046e8383610447565b9150826002028217905092915050565b61048782610244565b67ffffffffffffffff8111156104a05761049f61024e565b5b6104aa82546102a8565b6104b58282856103f5565b5f60209050601f8311600181146104e6575f84156104d4578287015190505b6104de8582610463565b865550610545565b601f1984166104f4866102d8565b5f5b8281101561051b578489015182556001820191506020850194506020810190506104f6565b868310156105385784890151610534601f891682610447565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156105cf578086048111156105ab576105aa61054d565b5b60018516156105ba5780820291505b80810290506105c88561057a565b945061058f565b94509492505050565b5f826105e757600190506106a2565b816105f4575f90506106a2565b816001811461060a576002811461061457610643565b60019150506106a2565b60ff8411156106265761062561054d565b5b8360020a91508482111561063d5761063c61054d565b5b506106a2565b5060208310610133831016604e8410600b84101617156106785782820a9050838111156106735761067261054d565b5b6106a2565b6106858484846001610586565b9250905081840481111561069c5761069b61054d565b5b81810290505b9392505050565b5f60ff82169050919050565b5f6106bf82610356565b91506106ca836106a9565b92506106f77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846105d8565b905092915050565b5f61070982610356565b915061071483610356565b925082820261072281610356565b915082820484148315176107395761073861054d565b5b5092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f610784601f83610740565b915061078f82610750565b602082019050919050565b5f6020820190508181035f8301526107b181610778565b9050919050565b5f6107c282610356565b91506107cd83610356565b92508282019050808211156107e5576107e461054d565b5b92915050565b6107f481610356565b82525050565b5f60208201905061080d5f8301846107eb565b92915050565b6111a9806108205f395ff3fe608060405234801561000f575f80fd5b50600436106100a7575f3560e01c8063395093511161006f578063395093511461016557806370a082311461019557806395d89b41146101c5578063a457c2d7146101e3578063a9059cbb14610213578063dd62ed3e14610243576100a7565b806306fdde03146100ab578063095ea7b3146100c957806318160ddd146100f957806323b872dd14610117578063313ce56714610147575b5f80fd5b6100b3610273565b6040516100c09190610ac3565b60405180910390f35b6100e360048036038101906100de9190610b74565b610303565b6040516100f09190610bcc565b60405180910390f35b610101610325565b60405161010e9190610bf4565b60405180910390f35b610131600480360381019061012c9190610c0d565b61032e565b60405161013e9190610bcc565b60405180910390f35b61014f61035c565b60405161015c9190610c78565b60405180910390f35b61017f600480360381019061017a9190610b74565b610364565b60405161018c9190610bcc565b60405180910390f35b6101af60048036038101906101aa9190610c91565b61039a565b6040516101bc9190610bf4565b60405180910390f35b6101cd6103df565b6040516101da9190610ac3565b60405180910390f35b6101fd60048036038101906101f89190610b74565b61046f565b60405161020a9190610bcc565b60405180910390f35b61022d60048036038101906102289190610b74565b6104e4565b60405161023a9190610bcc565b60405180910390f35b61025d60048036038101906102589190610cbc565b610506565b60405161026a9190610bf4565b60405180910390f35b60606003805461028290610d27565b80601f01602080910402602001604051908101604052809291908181526020018280546102ae90610d27565b80156102f95780601f106102d0576101008083540402835291602001916102f9565b820191905f5260205f20905b8154815290600101906020018083116102dc57829003601f168201915b5050505050905090565b5f8061030d610588565b905061031a81858561058f565b600191505092915050565b5f600254905090565b5f80610338610588565b9050610345858285610752565b6103508585856107dd565b60019150509392505050565b5f6012905090565b5f8061036e610588565b905061038f8185856103808589610506565b61038a9190610d84565b61058f565b600191505092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6060600480546103ee90610d27565b80601f016020809104026020016040519081016040528092919081815260200182805461041a90610d27565b80156104655780601f1061043c57610100808354040283529160200191610465565b820191905f5260205f20905b81548152906001019060200180831161044857829003601f168201915b5050505050905090565b5f80610479610588565b90505f6104868286610506565b9050838110156104cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c290610e27565b60405180910390fd5b6104d8828686840361058f565b60019250505092915050565b5f806104ee610588565b90506104fb8185856107dd565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036105fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f490610eb5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361066b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066290610f43565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107459190610bf4565b60405180910390a3505050565b5f61075d8484610506565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107d757818110156107c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c090610fab565b60405180910390fd5b6107d6848484840361058f565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361084b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084290611039565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b0906110c7565b60405180910390fd5b6108c4838383610a49565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e90611155565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a309190610bf4565b60405180910390a3610a43848484610a4e565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610a9582610a53565b610a9f8185610a5d565b9350610aaf818560208601610a6d565b610ab881610a7b565b840191505092915050565b5f6020820190508181035f830152610adb8184610a8b565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610b1082610ae7565b9050919050565b610b2081610b06565b8114610b2a575f80fd5b50565b5f81359050610b3b81610b17565b92915050565b5f819050919050565b610b5381610b41565b8114610b5d575f80fd5b50565b5f81359050610b6e81610b4a565b92915050565b5f8060408385031215610b8a57610b89610ae3565b5b5f610b9785828601610b2d565b9250506020610ba885828601610b60565b9150509250929050565b5f8115159050919050565b610bc681610bb2565b82525050565b5f602082019050610bdf5f830184610bbd565b92915050565b610bee81610b41565b82525050565b5f602082019050610c075f830184610be5565b92915050565b5f805f60608486031215610c2457610c23610ae3565b5b5f610c3186828701610b2d565b9350506020610c4286828701610b2d565b9250506040610c5386828701610b60565b9150509250925092565b5f60ff82169050919050565b610c7281610c5d565b82525050565b5f602082019050610c8b5f830184610c69565b92915050565b5f60208284031215610ca657610ca5610ae3565b5b5f610cb384828501610b2d565b91505092915050565b5f8060408385031215610cd257610cd1610ae3565b5b5f610cdf85828601610b2d565b9250506020610cf085828601610b2d565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610d3e57607f821691505b602082108103610d5157610d50610cfa565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610d8e82610b41565b9150610d9983610b41565b9250828201905080821115610db157610db0610d57565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f610e11602583610a5d565b9150610e1c82610db7565b604082019050919050565b5f6020820190508181035f830152610e3e81610e05565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f610e9f602483610a5d565b9150610eaa82610e45565b604082019050919050565b5f6020820190508181035f830152610ecc81610e93565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f610f2d602283610a5d565b9150610f3882610ed3565b604082019050919050565b5f6020820190508181035f830152610f5a81610f21565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f610f95601d83610a5d565b9150610fa082610f61565b602082019050919050565b5f6020820190508181035f830152610fc281610f89565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611023602583610a5d565b915061102e82610fc9565b604082019050919050565b5f6020820190508181035f83015261105081611017565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6110b1602383610a5d565b91506110bc82611057565b604082019050919050565b5f6020820190508181035f8301526110de816110a5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61113f602683610a5d565b915061114a826110e5565b604082019050919050565b5f6020820190508181035f83015261116c81611133565b905091905056fea264697066735822122022726c7eaca0fb939c9fdaaa15470e4c3b8a9f585d3a11c3ab89be09315b8e3264736f6c634300081a0033
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100a7575f3560e01c8063395093511161006f578063395093511461016557806370a082311461019557806395d89b41146101c5578063a457c2d7146101e3578063a9059cbb14610213578063dd62ed3e14610243576100a7565b806306fdde03146100ab578063095ea7b3146100c957806318160ddd146100f957806323b872dd14610117578063313ce56714610147575b5f80fd5b6100b3610273565b6040516100c09190610ac3565b60405180910390f35b6100e360048036038101906100de9190610b74565b610303565b6040516100f09190610bcc565b60405180910390f35b610101610325565b60405161010e9190610bf4565b60405180910390f35b610131600480360381019061012c9190610c0d565b61032e565b60405161013e9190610bcc565b60405180910390f35b61014f61035c565b60405161015c9190610c78565b60405180910390f35b61017f600480360381019061017a9190610b74565b610364565b60405161018c9190610bcc565b60405180910390f35b6101af60048036038101906101aa9190610c91565b61039a565b6040516101bc9190610bf4565b60405180910390f35b6101cd6103df565b6040516101da9190610ac3565b60405180910390f35b6101fd60048036038101906101f89190610b74565b61046f565b60405161020a9190610bcc565b60405180910390f35b61022d60048036038101906102289190610b74565b6104e4565b60405161023a9190610bcc565b60405180910390f35b61025d60048036038101906102589190610cbc565b610506565b60405161026a9190610bf4565b60405180910390f35b60606003805461028290610d27565b80601f01602080910402602001604051908101604052809291908181526020018280546102ae90610d27565b80156102f95780601f106102d0576101008083540402835291602001916102f9565b820191905f5260205f20905b8154815290600101906020018083116102dc57829003601f168201915b5050505050905090565b5f8061030d610588565b905061031a81858561058f565b600191505092915050565b5f600254905090565b5f80610338610588565b9050610345858285610752565b6103508585856107dd565b60019150509392505050565b5f6012905090565b5f8061036e610588565b905061038f8185856103808589610506565b61038a9190610d84565b61058f565b600191505092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6060600480546103ee90610d27565b80601f016020809104026020016040519081016040528092919081815260200182805461041a90610d27565b80156104655780601f1061043c57610100808354040283529160200191610465565b820191905f5260205f20905b81548152906001019060200180831161044857829003601f168201915b5050505050905090565b5f80610479610588565b90505f6104868286610506565b9050838110156104cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c290610e27565b60405180910390fd5b6104d8828686840361058f565b60019250505092915050565b5f806104ee610588565b90506104fb8185856107dd565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036105fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f490610eb5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361066b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066290610f43565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107459190610bf4565b60405180910390a3505050565b5f61075d8484610506565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107d757818110156107c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c090610fab565b60405180910390fd5b6107d6848484840361058f565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361084b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084290611039565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b0906110c7565b60405180910390fd5b6108c4838383610a49565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e90611155565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a309190610bf4565b60405180910390a3610a43848484610a4e565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610a9582610a53565b610a9f8185610a5d565b9350610aaf818560208601610a6d565b610ab881610a7b565b840191505092915050565b5f6020820190508181035f830152610adb8184610a8b565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610b1082610ae7565b9050919050565b610b2081610b06565b8114610b2a575f80fd5b50565b5f81359050610b3b81610b17565b92915050565b5f819050919050565b610b5381610b41565b8114610b5d575f80fd5b50565b5f81359050610b6e81610b4a565b92915050565b5f8060408385031215610b8a57610b89610ae3565b5b5f610b9785828601610b2d565b9250506020610ba885828601610b60565b9150509250929050565b5f8115159050919050565b610bc681610bb2565b82525050565b5f602082019050610bdf5f830184610bbd565b92915050565b610bee81610b41565b82525050565b5f602082019050610c075f830184610be5565b92915050565b5f805f60608486031215610c2457610c23610ae3565b5b5f610c3186828701610b2d565b9350506020610c4286828701610b2d565b9250506040610c5386828701610b60565b9150509250925092565b5f60ff82169050919050565b610c7281610c5d565b82525050565b5f602082019050610c8b5f830184610c69565b92915050565b5f60208284031215610ca657610ca5610ae3565b5b5f610cb384828501610b2d565b91505092915050565b5f8060408385031215610cd257610cd1610ae3565b5b5f610cdf85828601610b2d565b9250506020610cf085828601610b2d565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610d3e57607f821691505b602082108103610d5157610d50610cfa565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610d8e82610b41565b9150610d9983610b41565b9250828201905080821115610db157610db0610d57565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f610e11602583610a5d565b9150610e1c82610db7565b604082019050919050565b5f6020820190508181035f830152610e3e81610e05565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f610e9f602483610a5d565b9150610eaa82610e45565b604082019050919050565b5f6020820190508181035f830152610ecc81610e93565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f610f2d602283610a5d565b9150610f3882610ed3565b604082019050919050565b5f6020820190508181035f830152610f5a81610f21565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f610f95601d83610a5d565b9150610fa082610f61565b602082019050919050565b5f6020820190508181035f830152610fc281610f89565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611023602583610a5d565b915061102e82610fc9565b604082019050919050565b5f6020820190508181035f83015261105081611017565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6110b1602383610a5d565b91506110bc82611057565b604082019050919050565b5f6020820190508181035f8301526110de816110a5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61113f602683610a5d565b915061114a826110e5565b604082019050919050565b5f6020820190508181035f83015261116c81611133565b905091905056fea264697066735822122022726c7eaca0fb939c9fdaaa15470e4c3b8a9f585d3a11c3ab89be09315b8e3264736f6c634300081a0033
Deployed Bytecode Sourcemap
6619:11662:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7292:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9652:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8421:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10433:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8263:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11103:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8592:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7511:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11844:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8925:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9181:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7292:100;7346:13;7379:5;7372:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7292:100;:::o;9652:201::-;9735:4;9752:13;9768:12;:10;:12::i;:::-;9752:28;;9791:32;9800:5;9807:7;9816:6;9791:8;:32::i;:::-;9841:4;9834:11;;;9652:201;;;;:::o;8421:108::-;8482:7;8509:12;;8502:19;;8421:108;:::o;10433:261::-;10530:4;10547:15;10565:12;:10;:12::i;:::-;10547:30;;10588:38;10604:4;10610:7;10619:6;10588:15;:38::i;:::-;10637:27;10647:4;10653:2;10657:6;10637:9;:27::i;:::-;10682:4;10675:11;;;10433:261;;;;;:::o;8263:93::-;8321:5;8346:2;8339:9;;8263:93;:::o;11103:238::-;11191:4;11208:13;11224:12;:10;:12::i;:::-;11208:28;;11247:64;11256:5;11263:7;11300:10;11272:25;11282:5;11289:7;11272:9;:25::i;:::-;:38;;;;:::i;:::-;11247:8;:64::i;:::-;11329:4;11322:11;;;11103:238;;;;:::o;8592:127::-;8666:7;8693:9;:18;8703:7;8693:18;;;;;;;;;;;;;;;;8686:25;;8592:127;;;:::o;7511:104::-;7567:13;7600:7;7593:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7511:104;:::o;11844:436::-;11937:4;11954:13;11970:12;:10;:12::i;:::-;11954:28;;11993:24;12020:25;12030:5;12037:7;12020:9;:25::i;:::-;11993:52;;12084:15;12064:16;:35;;12056:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;12177:60;12186:5;12193:7;12221:15;12202:16;:34;12177:8;:60::i;:::-;12268:4;12261:11;;;;11844:436;;;;:::o;8925:193::-;9004:4;9021:13;9037:12;:10;:12::i;:::-;9021:28;;9060;9070:5;9077:2;9081:6;9060:9;:28::i;:::-;9106:4;9099:11;;;8925:193;;;;:::o;9181:151::-;9270:7;9297:11;:18;9309:5;9297:18;;;;;;;;;;;;;;;:27;9316:7;9297:27;;;;;;;;;;;;;;;;9290:34;;9181:151;;;;:::o;1228:98::-;1281:7;1308:10;1301:17;;1228:98;:::o;15837:346::-;15956:1;15939:19;;:5;:19;;;15931:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16037:1;16018:21;;:7;:21;;;16010:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16121:6;16091:11;:18;16103:5;16091:18;;;;;;;;;;;;;;;:27;16110:7;16091:27;;;;;;;;;;;;;;;:36;;;;16159:7;16143:32;;16152:5;16143:32;;;16168:6;16143:32;;;;;;:::i;:::-;;;;;;;;15837:346;;;:::o;16474:419::-;16575:24;16602:25;16612:5;16619:7;16602:9;:25::i;:::-;16575:52;;16662:17;16642:16;:37;16638:248;;16724:6;16704:16;:26;;16696:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16808:51;16817:5;16824:7;16852:6;16833:16;:25;16808:8;:51::i;:::-;16638:248;16564:329;16474:419;;;:::o;12750:806::-;12863:1;12847:18;;:4;:18;;;12839:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12940:1;12926:16;;:2;:16;;;12918:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12995:38;13016:4;13022:2;13026:6;12995:20;:38::i;:::-;13046:19;13068:9;:15;13078:4;13068:15;;;;;;;;;;;;;;;;13046:37;;13117:6;13102:11;:21;;13094:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;13234:6;13220:11;:20;13202:9;:15;13212:4;13202:15;;;;;;;;;;;;;;;:38;;;;13437:6;13420:9;:13;13430:2;13420:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;13487:2;13472:26;;13481:4;13472:26;;;13491:6;13472:26;;;;;;:::i;:::-;;;;;;;;13511:37;13531:4;13537:2;13541:6;13511:19;:37::i;:::-;12828:728;12750:806;;;:::o;17493:91::-;;;;:::o;18188:90::-;;;;:::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:474::-;5149:6;5157;5206:2;5194:9;5185:7;5181:23;5177:32;5174:119;;;5212:79;;:::i;:::-;5174:119;5332:1;5357:53;5402:7;5393:6;5382:9;5378:22;5357:53;:::i;:::-;5347:63;;5303:117;5459:2;5485:53;5530:7;5521:6;5510:9;5506:22;5485:53;:::i;:::-;5475:63;;5430:118;5081:474;;;;;:::o;5561:180::-;5609:77;5606:1;5599:88;5706:4;5703:1;5696:15;5730:4;5727:1;5720:15;5747:320;5791:6;5828:1;5822:4;5818:12;5808:22;;5875:1;5869:4;5865:12;5896:18;5886:81;;5952:4;5944:6;5940:17;5930:27;;5886:81;6014:2;6006:6;6003:14;5983:18;5980:38;5977:84;;6033:18;;:::i;:::-;5977:84;5798:269;5747:320;;;:::o;6073:180::-;6121:77;6118:1;6111:88;6218:4;6215:1;6208:15;6242:4;6239:1;6232:15;6259:191;6299:3;6318:20;6336:1;6318:20;:::i;:::-;6313:25;;6352:20;6370:1;6352:20;:::i;:::-;6347:25;;6395:1;6392;6388:9;6381:16;;6416:3;6413:1;6410:10;6407:36;;;6423:18;;:::i;:::-;6407:36;6259:191;;;;:::o;6456:224::-;6596:34;6592:1;6584:6;6580:14;6573:58;6665:7;6660:2;6652:6;6648:15;6641:32;6456:224;:::o;6686:366::-;6828:3;6849:67;6913:2;6908:3;6849:67;:::i;:::-;6842:74;;6925:93;7014:3;6925:93;:::i;:::-;7043:2;7038:3;7034:12;7027:19;;6686:366;;;:::o;7058:419::-;7224:4;7262:2;7251:9;7247:18;7239:26;;7311:9;7305:4;7301:20;7297:1;7286:9;7282:17;7275:47;7339:131;7465:4;7339:131;:::i;:::-;7331:139;;7058:419;;;:::o;7483:223::-;7623:34;7619:1;7611:6;7607:14;7600:58;7692:6;7687:2;7679:6;7675:15;7668:31;7483:223;:::o;7712:366::-;7854:3;7875:67;7939:2;7934:3;7875:67;:::i;:::-;7868:74;;7951:93;8040:3;7951:93;:::i;:::-;8069:2;8064:3;8060:12;8053:19;;7712:366;;;:::o;8084:419::-;8250:4;8288:2;8277:9;8273:18;8265:26;;8337:9;8331:4;8327:20;8323:1;8312:9;8308:17;8301:47;8365:131;8491:4;8365:131;:::i;:::-;8357:139;;8084:419;;;:::o;8509:221::-;8649:34;8645:1;8637:6;8633:14;8626:58;8718:4;8713:2;8705:6;8701:15;8694:29;8509:221;:::o;8736:366::-;8878:3;8899:67;8963:2;8958:3;8899:67;:::i;:::-;8892:74;;8975:93;9064:3;8975:93;:::i;:::-;9093:2;9088:3;9084:12;9077:19;;8736:366;;;:::o;9108:419::-;9274:4;9312:2;9301:9;9297:18;9289:26;;9361:9;9355:4;9351:20;9347:1;9336:9;9332:17;9325:47;9389:131;9515:4;9389:131;:::i;:::-;9381:139;;9108:419;;;:::o;9533:179::-;9673:31;9669:1;9661:6;9657:14;9650:55;9533:179;:::o;9718:366::-;9860:3;9881:67;9945:2;9940:3;9881:67;:::i;:::-;9874:74;;9957:93;10046:3;9957:93;:::i;:::-;10075:2;10070:3;10066:12;10059:19;;9718:366;;;:::o;10090:419::-;10256:4;10294:2;10283:9;10279:18;10271:26;;10343:9;10337:4;10333:20;10329:1;10318:9;10314:17;10307:47;10371:131;10497:4;10371:131;:::i;:::-;10363:139;;10090:419;;;:::o;10515:224::-;10655:34;10651:1;10643:6;10639:14;10632:58;10724:7;10719:2;10711:6;10707:15;10700:32;10515:224;:::o;10745:366::-;10887:3;10908:67;10972:2;10967:3;10908:67;:::i;:::-;10901:74;;10984:93;11073:3;10984:93;:::i;:::-;11102:2;11097:3;11093:12;11086:19;;10745:366;;;:::o;11117:419::-;11283:4;11321:2;11310:9;11306:18;11298:26;;11370:9;11364:4;11360:20;11356:1;11345:9;11341:17;11334:47;11398:131;11524:4;11398:131;:::i;:::-;11390:139;;11117:419;;;:::o;11542:222::-;11682:34;11678:1;11670:6;11666:14;11659:58;11751:5;11746:2;11738:6;11734:15;11727:30;11542:222;:::o;11770:366::-;11912:3;11933:67;11997:2;11992:3;11933:67;:::i;:::-;11926:74;;12009:93;12098:3;12009:93;:::i;:::-;12127:2;12122:3;12118:12;12111:19;;11770:366;;;:::o;12142:419::-;12308:4;12346:2;12335:9;12331:18;12323:26;;12395:9;12389:4;12385:20;12381:1;12370:9;12366:17;12359:47;12423:131;12549:4;12423:131;:::i;:::-;12415:139;;12142:419;;;:::o;12567:225::-;12707:34;12703:1;12695:6;12691:14;12684:58;12776:8;12771:2;12763:6;12759:15;12752:33;12567:225;:::o;12798:366::-;12940:3;12961:67;13025:2;13020:3;12961:67;:::i;:::-;12954:74;;13037:93;13126:3;13037:93;:::i;:::-;13155:2;13150:3;13146:12;13139:19;;12798:366;;;:::o;13170:419::-;13336:4;13374:2;13363:9;13359:18;13351:26;;13423:9;13417:4;13413:20;13409:1;13398:9;13394:17;13387:47;13451:131;13577:4;13451:131;:::i;:::-;13443:139;;13170:419;;;:::o
Swarm Source
ipfs://22726c7eaca0fb939c9fdaaa15470e4c3b8a9f585d3a11c3ab89be09315b8e32
[ 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.