ERC-20
Overview
Max Total Supply
100,000,000 Hedgehog
Holders
17
Market
Price
$0.00 @ 0.000000 S
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
637,900 HedgehogValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
Sonic
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2025-02-21 */ // SPDX-License-Identifier: MIT 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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; 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() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { 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 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); } /** * @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 ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the 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 Sonic is ERC20, Ownable { uint public constant MODE_NORMAL = 0; uint public constant MODE_TRANSFER_RESTRICTED = 1; uint public constant MODE_TRANSFER_CONTROLLED = 2; uint public _mode; constructor( string memory name, string memory symbol, uint256 totalSupply) ERC20(name, symbol) { _mint(owner(), totalSupply); _mode = MODE_TRANSFER_RESTRICTED; } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { super._beforeTokenTransfer(from, to, amount); if (_mode == MODE_TRANSFER_RESTRICTED) { revert("Token: Transfer is restricted"); } if (_mode == MODE_TRANSFER_CONTROLLED) { require(from == owner() || to == owner(), "Token: Invalid transfer"); } } function setMode(uint v) public onlyOwner { if (_mode != MODE_NORMAL) { _mode = v; } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"totalSupply","type":"uint256"}],"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":"MODE_NORMAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MODE_TRANSFER_CONTROLLED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MODE_TRANSFER_RESTRICTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mode","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"v","type":"uint256"}],"name":"setMode","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
60806040523480156200001157600080fd5b5060405162002210380380620022108339818101604052810190620000379190620005a1565b828281600390805190602001906200005192919062000468565b5080600490805190602001906200006a92919062000468565b5050506200008d62000081620000bf60201b60201c565b620000c760201b60201c565b620000ae620000a16200018d60201b60201c565b82620001b760201b60201c565b600160068190555050505062000975565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200022a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002219062000744565b60405180910390fd5b6200023e600083836200032560201b60201c565b8060026000828254620002529190620007fb565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000305919062000766565b60405180910390a362000321600083836200045e60201b60201c565b5050565b6200033d8383836200046360201b620007e31760201c565b6001600654141562000386576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200037d9062000722565b60405180910390fd5b600260065414156200045957620003a26200018d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620004165750620003e76200018d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000458576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200044f9062000700565b60405180910390fd5b5b505050565b505050565b505050565b828054620004769062000898565b90600052602060002090601f0160209004810192826200049a5760008555620004e6565b82601f10620004b557805160ff1916838001178555620004e6565b82800160010185558215620004e6579182015b82811115620004e5578251825591602001919060010190620004c8565b5b509050620004f59190620004f9565b5090565b5b8082111562000514576000816000905550600101620004fa565b5090565b60006200052f6200052984620007b7565b62000783565b9050828152602081018484840111156200054857600080fd5b6200055584828562000862565b509392505050565b600082601f8301126200056f57600080fd5b81516200058184826020860162000518565b91505092915050565b6000815190506200059b816200095b565b92915050565b600080600060608486031215620005b757600080fd5b600084015167ffffffffffffffff811115620005d257600080fd5b620005e0868287016200055d565b935050602084015167ffffffffffffffff811115620005fe57600080fd5b6200060c868287016200055d565b92505060406200061f868287016200058a565b9150509250925092565b600062000638601783620007ea565b91507f546f6b656e3a20496e76616c6964207472616e736665720000000000000000006000830152602082019050919050565b60006200067a601d83620007ea565b91507f546f6b656e3a205472616e7366657220697320726573747269637465640000006000830152602082019050919050565b6000620006bc601f83620007ea565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b620006fa8162000858565b82525050565b600060208201905081810360008301526200071b8162000629565b9050919050565b600060208201905081810360008301526200073d816200066b565b9050919050565b600060208201905081810360008301526200075f81620006ad565b9050919050565b60006020820190506200077d6000830184620006ef565b92915050565b6000604051905081810181811067ffffffffffffffff82111715620007ad57620007ac6200092c565b5b8060405250919050565b600067ffffffffffffffff821115620007d557620007d46200092c565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b6000620008088262000858565b9150620008158362000858565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200084d576200084c620008ce565b5b828201905092915050565b6000819050919050565b60005b838110156200088257808201518184015260208101905062000865565b8381111562000892576000848401525b50505050565b60006002820490506001821680620008b157607f821691505b60208210811415620008c857620008c7620008fd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620009668162000858565b81146200097257600080fd5b50565b61188b80620009856000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a9059cbb11610071578063a9059cbb14610310578063c5c03af314610340578063d72dd3b41461035e578063dd62ed3e1461037a578063f2fde38b146103aa57610121565b806370a082311461026a578063715018a61461029a5780638da5cb5b146102a457806395d89b41146102c2578063a457c2d7146102e057610121565b806323b872dd116100f457806323b872dd146101b0578063313ce567146101e057806332be6330146101fe578063395093511461021c5780633af3d7831461024c57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd146101745780631c8fc2c014610192575b600080fd5b61012e6103c6565b60405161013b91906114d4565b60405180910390f35b61015e60048036038101906101599190610ffa565b610458565b60405161016b91906114b9565b60405180910390f35b61017c61047b565b6040516101899190611656565b60405180910390f35b61019a610485565b6040516101a79190611656565b60405180910390f35b6101ca60048036038101906101c59190610fab565b61048a565b6040516101d791906114b9565b60405180910390f35b6101e86104b9565b6040516101f59190611671565b60405180910390f35b6102066104c2565b6040516102139190611656565b60405180910390f35b61023660048036038101906102319190610ffa565b6104c7565b60405161024391906114b9565b60405180910390f35b6102546104fe565b6040516102619190611656565b60405180910390f35b610284600480360381019061027f9190610f46565b610503565b6040516102919190611656565b60405180910390f35b6102a261054b565b005b6102ac61055f565b6040516102b9919061149e565b60405180910390f35b6102ca610589565b6040516102d791906114d4565b60405180910390f35b6102fa60048036038101906102f59190610ffa565b61061b565b60405161030791906114b9565b60405180910390f35b61032a60048036038101906103259190610ffa565b610692565b60405161033791906114b9565b60405180910390f35b6103486106b5565b6040516103559190611656565b60405180910390f35b61037860048036038101906103739190611036565b6106bb565b005b610394600480360381019061038f9190610f6f565b6106d8565b6040516103a19190611656565b60405180910390f35b6103c460048036038101906103bf9190610f46565b61075f565b005b6060600380546103d590611786565b80601f016020809104026020016040519081016040528092919081815260200182805461040190611786565b801561044e5780601f106104235761010080835404028352916020019161044e565b820191906000526020600020905b81548152906001019060200180831161043157829003601f168201915b5050505050905090565b6000806104636107e8565b90506104708185856107f0565b600191505092915050565b6000600254905090565b600181565b6000806104956107e8565b90506104a28582856109bb565b6104ad858585610a47565b60019150509392505050565b60006012905090565b600281565b6000806104d26107e8565b90506104f38185856104e485896106d8565b6104ee91906116a8565b6107f0565b600191505092915050565b600081565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610553610cbf565b61055d6000610d3d565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461059890611786565b80601f01602080910402602001604051908101604052809291908181526020018280546105c490611786565b80156106115780601f106105e657610100808354040283529160200191610611565b820191906000526020600020905b8154815290600101906020018083116105f457829003601f168201915b5050505050905090565b6000806106266107e8565b9050600061063482866106d8565b905083811015610679576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067090611636565b60405180910390fd5b61068682868684036107f0565b60019250505092915050565b60008061069d6107e8565b90506106aa818585610a47565b600191505092915050565b60065481565b6106c3610cbf565b6000600654146106d557806006819055505b50565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610767610cbf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156107d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ce90611516565b60405180910390fd5b6107e081610d3d565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610860576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085790611616565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c790611536565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109ae9190611656565b60405180910390a3505050565b60006109c784846106d8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a415781811015610a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2a90611556565b60405180910390fd5b610a4084848484036107f0565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aae906115f6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1e906114f6565b60405180910390fd5b610b32838383610e03565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baf90611576565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ca69190611656565b60405180910390a3610cb9848484610f17565b50505050565b610cc76107e8565b73ffffffffffffffffffffffffffffffffffffffff16610ce561055f565b73ffffffffffffffffffffffffffffffffffffffff1614610d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d32906115d6565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610e0e8383836107e3565b60016006541415610e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4b906115b6565b60405180910390fd5b60026006541415610f1257610e6761055f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610ed25750610ea361055f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b610f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0890611596565b60405180910390fd5b5b505050565b505050565b600081359050610f2b81611827565b92915050565b600081359050610f408161183e565b92915050565b600060208284031215610f5857600080fd5b6000610f6684828501610f1c565b91505092915050565b60008060408385031215610f8257600080fd5b6000610f9085828601610f1c565b9250506020610fa185828601610f1c565b9150509250929050565b600080600060608486031215610fc057600080fd5b6000610fce86828701610f1c565b9350506020610fdf86828701610f1c565b9250506040610ff086828701610f31565b9150509250925092565b6000806040838503121561100d57600080fd5b600061101b85828601610f1c565b925050602061102c85828601610f31565b9150509250929050565b60006020828403121561104857600080fd5b600061105684828501610f31565b91505092915050565b611068816116fe565b82525050565b61107781611710565b82525050565b60006110888261168c565b6110928185611697565b93506110a2818560208601611753565b6110ab81611816565b840191505092915050565b60006110c3602383611697565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611129602683611697565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061118f602283611697565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006111f5601d83611697565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000611235602683611697565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061129b601783611697565b91507f546f6b656e3a20496e76616c6964207472616e736665720000000000000000006000830152602082019050919050565b60006112db601d83611697565b91507f546f6b656e3a205472616e7366657220697320726573747269637465640000006000830152602082019050919050565b600061131b602083611697565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061135b602583611697565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113c1602483611697565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611427602583611697565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6114898161173c565b82525050565b61149881611746565b82525050565b60006020820190506114b3600083018461105f565b92915050565b60006020820190506114ce600083018461106e565b92915050565b600060208201905081810360008301526114ee818461107d565b905092915050565b6000602082019050818103600083015261150f816110b6565b9050919050565b6000602082019050818103600083015261152f8161111c565b9050919050565b6000602082019050818103600083015261154f81611182565b9050919050565b6000602082019050818103600083015261156f816111e8565b9050919050565b6000602082019050818103600083015261158f81611228565b9050919050565b600060208201905081810360008301526115af8161128e565b9050919050565b600060208201905081810360008301526115cf816112ce565b9050919050565b600060208201905081810360008301526115ef8161130e565b9050919050565b6000602082019050818103600083015261160f8161134e565b9050919050565b6000602082019050818103600083015261162f816113b4565b9050919050565b6000602082019050818103600083015261164f8161141a565b9050919050565b600060208201905061166b6000830184611480565b92915050565b6000602082019050611686600083018461148f565b92915050565b600081519050919050565b600082825260208201905092915050565b60006116b38261173c565b91506116be8361173c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156116f3576116f26117b8565b5b828201905092915050565b60006117098261171c565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611771578082015181840152602081019050611756565b83811115611780576000848401525b50505050565b6000600282049050600182168061179e57607f821691505b602082108114156117b2576117b16117e7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611830816116fe565b811461183b57600080fd5b50565b6118478161173c565b811461185257600080fd5b5056fea2646970667358221220a485910e67b6153831c4660ebe137486191459859e9a33d6ed2b67054dd0733164736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000052b7d2dcc80cd2e40000000000000000000000000000000000000000000000000000000000000000000012536f6e696320746865204865646765686f67000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084865646765686f67000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a9059cbb11610071578063a9059cbb14610310578063c5c03af314610340578063d72dd3b41461035e578063dd62ed3e1461037a578063f2fde38b146103aa57610121565b806370a082311461026a578063715018a61461029a5780638da5cb5b146102a457806395d89b41146102c2578063a457c2d7146102e057610121565b806323b872dd116100f457806323b872dd146101b0578063313ce567146101e057806332be6330146101fe578063395093511461021c5780633af3d7831461024c57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd146101745780631c8fc2c014610192575b600080fd5b61012e6103c6565b60405161013b91906114d4565b60405180910390f35b61015e60048036038101906101599190610ffa565b610458565b60405161016b91906114b9565b60405180910390f35b61017c61047b565b6040516101899190611656565b60405180910390f35b61019a610485565b6040516101a79190611656565b60405180910390f35b6101ca60048036038101906101c59190610fab565b61048a565b6040516101d791906114b9565b60405180910390f35b6101e86104b9565b6040516101f59190611671565b60405180910390f35b6102066104c2565b6040516102139190611656565b60405180910390f35b61023660048036038101906102319190610ffa565b6104c7565b60405161024391906114b9565b60405180910390f35b6102546104fe565b6040516102619190611656565b60405180910390f35b610284600480360381019061027f9190610f46565b610503565b6040516102919190611656565b60405180910390f35b6102a261054b565b005b6102ac61055f565b6040516102b9919061149e565b60405180910390f35b6102ca610589565b6040516102d791906114d4565b60405180910390f35b6102fa60048036038101906102f59190610ffa565b61061b565b60405161030791906114b9565b60405180910390f35b61032a60048036038101906103259190610ffa565b610692565b60405161033791906114b9565b60405180910390f35b6103486106b5565b6040516103559190611656565b60405180910390f35b61037860048036038101906103739190611036565b6106bb565b005b610394600480360381019061038f9190610f6f565b6106d8565b6040516103a19190611656565b60405180910390f35b6103c460048036038101906103bf9190610f46565b61075f565b005b6060600380546103d590611786565b80601f016020809104026020016040519081016040528092919081815260200182805461040190611786565b801561044e5780601f106104235761010080835404028352916020019161044e565b820191906000526020600020905b81548152906001019060200180831161043157829003601f168201915b5050505050905090565b6000806104636107e8565b90506104708185856107f0565b600191505092915050565b6000600254905090565b600181565b6000806104956107e8565b90506104a28582856109bb565b6104ad858585610a47565b60019150509392505050565b60006012905090565b600281565b6000806104d26107e8565b90506104f38185856104e485896106d8565b6104ee91906116a8565b6107f0565b600191505092915050565b600081565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610553610cbf565b61055d6000610d3d565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461059890611786565b80601f01602080910402602001604051908101604052809291908181526020018280546105c490611786565b80156106115780601f106105e657610100808354040283529160200191610611565b820191906000526020600020905b8154815290600101906020018083116105f457829003601f168201915b5050505050905090565b6000806106266107e8565b9050600061063482866106d8565b905083811015610679576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067090611636565b60405180910390fd5b61068682868684036107f0565b60019250505092915050565b60008061069d6107e8565b90506106aa818585610a47565b600191505092915050565b60065481565b6106c3610cbf565b6000600654146106d557806006819055505b50565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610767610cbf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156107d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ce90611516565b60405180910390fd5b6107e081610d3d565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610860576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085790611616565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c790611536565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109ae9190611656565b60405180910390a3505050565b60006109c784846106d8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a415781811015610a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2a90611556565b60405180910390fd5b610a4084848484036107f0565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aae906115f6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1e906114f6565b60405180910390fd5b610b32838383610e03565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baf90611576565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ca69190611656565b60405180910390a3610cb9848484610f17565b50505050565b610cc76107e8565b73ffffffffffffffffffffffffffffffffffffffff16610ce561055f565b73ffffffffffffffffffffffffffffffffffffffff1614610d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d32906115d6565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610e0e8383836107e3565b60016006541415610e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4b906115b6565b60405180910390fd5b60026006541415610f1257610e6761055f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610ed25750610ea361055f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b610f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0890611596565b60405180910390fd5b5b505050565b505050565b600081359050610f2b81611827565b92915050565b600081359050610f408161183e565b92915050565b600060208284031215610f5857600080fd5b6000610f6684828501610f1c565b91505092915050565b60008060408385031215610f8257600080fd5b6000610f9085828601610f1c565b9250506020610fa185828601610f1c565b9150509250929050565b600080600060608486031215610fc057600080fd5b6000610fce86828701610f1c565b9350506020610fdf86828701610f1c565b9250506040610ff086828701610f31565b9150509250925092565b6000806040838503121561100d57600080fd5b600061101b85828601610f1c565b925050602061102c85828601610f31565b9150509250929050565b60006020828403121561104857600080fd5b600061105684828501610f31565b91505092915050565b611068816116fe565b82525050565b61107781611710565b82525050565b60006110888261168c565b6110928185611697565b93506110a2818560208601611753565b6110ab81611816565b840191505092915050565b60006110c3602383611697565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611129602683611697565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061118f602283611697565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006111f5601d83611697565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000611235602683611697565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061129b601783611697565b91507f546f6b656e3a20496e76616c6964207472616e736665720000000000000000006000830152602082019050919050565b60006112db601d83611697565b91507f546f6b656e3a205472616e7366657220697320726573747269637465640000006000830152602082019050919050565b600061131b602083611697565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061135b602583611697565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113c1602483611697565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611427602583611697565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6114898161173c565b82525050565b61149881611746565b82525050565b60006020820190506114b3600083018461105f565b92915050565b60006020820190506114ce600083018461106e565b92915050565b600060208201905081810360008301526114ee818461107d565b905092915050565b6000602082019050818103600083015261150f816110b6565b9050919050565b6000602082019050818103600083015261152f8161111c565b9050919050565b6000602082019050818103600083015261154f81611182565b9050919050565b6000602082019050818103600083015261156f816111e8565b9050919050565b6000602082019050818103600083015261158f81611228565b9050919050565b600060208201905081810360008301526115af8161128e565b9050919050565b600060208201905081810360008301526115cf816112ce565b9050919050565b600060208201905081810360008301526115ef8161130e565b9050919050565b6000602082019050818103600083015261160f8161134e565b9050919050565b6000602082019050818103600083015261162f816113b4565b9050919050565b6000602082019050818103600083015261164f8161141a565b9050919050565b600060208201905061166b6000830184611480565b92915050565b6000602082019050611686600083018461148f565b92915050565b600081519050919050565b600082825260208201905092915050565b60006116b38261173c565b91506116be8361173c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156116f3576116f26117b8565b5b828201905092915050565b60006117098261171c565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611771578082015181840152602081019050611756565b83811115611780576000848401525b50505050565b6000600282049050600182168061179e57607f821691505b602082108114156117b2576117b16117e7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611830816116fe565b811461183b57600080fd5b50565b6118478161173c565b811461185257600080fd5b5056fea2646970667358221220a485910e67b6153831c4660ebe137486191459859e9a33d6ed2b67054dd0733164736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000052b7d2dcc80cd2e40000000000000000000000000000000000000000000000000000000000000000000012536f6e696320746865204865646765686f67000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084865646765686f67000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Sonic the Hedgehog
Arg [1] : symbol (string): Hedgehog
Arg [2] : totalSupply (uint256): 100000000000000000000000000
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 536f6e696320746865204865646765686f670000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [6] : 4865646765686f67000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
19640:1028:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8663:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11023:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9792:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19723:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11804:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9634:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19779:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12474:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19680:36;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9963:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2639:103;;;:::i;:::-;;1998:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8882:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13215:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10296:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19835:17;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20543:122;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10552:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2897:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8663:100;8717:13;8750:5;8743:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8663:100;:::o;11023:201::-;11106:4;11123:13;11139:12;:10;:12::i;:::-;11123:28;;11162:32;11171:5;11178:7;11187:6;11162:8;:32::i;:::-;11212:4;11205:11;;;11023:201;;;;:::o;9792:108::-;9853:7;9880:12;;9873:19;;9792:108;:::o;19723:49::-;19771:1;19723:49;:::o;11804:261::-;11901:4;11918:15;11936:12;:10;:12::i;:::-;11918:30;;11959:38;11975:4;11981:7;11990:6;11959:15;:38::i;:::-;12008:27;12018:4;12024:2;12028:6;12008:9;:27::i;:::-;12053:4;12046:11;;;11804:261;;;;;:::o;9634:93::-;9692:5;9717:2;9710:9;;9634:93;:::o;19779:49::-;19827:1;19779:49;:::o;12474:238::-;12562:4;12579:13;12595:12;:10;:12::i;:::-;12579:28;;12618:64;12627:5;12634:7;12671:10;12643:25;12653:5;12660:7;12643:9;:25::i;:::-;:38;;;;:::i;:::-;12618:8;:64::i;:::-;12700:4;12693:11;;;12474:238;;;;:::o;19680:36::-;19715:1;19680:36;:::o;9963:127::-;10037:7;10064:9;:18;10074:7;10064:18;;;;;;;;;;;;;;;;10057:25;;9963:127;;;:::o;2639:103::-;1884:13;:11;:13::i;:::-;2704:30:::1;2731:1;2704:18;:30::i;:::-;2639:103::o:0;1998:87::-;2044:7;2071:6;;;;;;;;;;;2064:13;;1998:87;:::o;8882:104::-;8938:13;8971:7;8964:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8882:104;:::o;13215:436::-;13308:4;13325:13;13341:12;:10;:12::i;:::-;13325:28;;13364:24;13391:25;13401:5;13408:7;13391:9;:25::i;:::-;13364:52;;13455:15;13435:16;:35;;13427:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13548:60;13557:5;13564:7;13592:15;13573:16;:34;13548:8;:60::i;:::-;13639:4;13632:11;;;;13215:436;;;;:::o;10296:193::-;10375:4;10392:13;10408:12;:10;:12::i;:::-;10392:28;;10431;10441:5;10448:2;10452:6;10431:9;:28::i;:::-;10477:4;10470:11;;;10296:193;;;;:::o;19835:17::-;;;;:::o;20543:122::-;1884:13;:11;:13::i;:::-;19715:1:::1;20600:5;;:20;20596:62;;20645:1;20637:5;:9;;;;20596:62;20543:122:::0;:::o;10552:151::-;10641:7;10668:11;:18;10680:5;10668:18;;;;;;;;;;;;;;;:27;10687:7;10668:27;;;;;;;;;;;;;;;;10661:34;;10552:151;;;;:::o;2897:201::-;1884:13;:11;:13::i;:::-;3006:1:::1;2986:22;;:8;:22;;;;2978:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3062:28;3081:8;3062:18;:28::i;:::-;2897:201:::0;:::o;18848:91::-;;;;:::o;600:98::-;653:7;680:10;673:17;;600:98;:::o;17192:346::-;17311:1;17294:19;;:5;:19;;;;17286:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17392:1;17373:21;;:7;:21;;;;17365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17476:6;17446:11;:18;17458:5;17446:18;;;;;;;;;;;;;;;:27;17465:7;17446:27;;;;;;;;;;;;;;;:36;;;;17514:7;17498:32;;17507:5;17498:32;;;17523:6;17498:32;;;;;;:::i;:::-;;;;;;;;17192:346;;;:::o;17829:419::-;17930:24;17957:25;17967:5;17974:7;17957:9;:25::i;:::-;17930:52;;18017:17;17997:16;:37;17993:248;;18079:6;18059:16;:26;;18051:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18163:51;18172:5;18179:7;18207:6;18188:16;:25;18163:8;:51::i;:::-;17993:248;17829:419;;;;:::o;14121:798::-;14234:1;14218:18;;:4;:18;;;;14210:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14311:1;14297:16;;:2;:16;;;;14289:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;14366:38;14387:4;14393:2;14397:6;14366:20;:38::i;:::-;14417:19;14439:9;:15;14449:4;14439:15;;;;;;;;;;;;;;;;14417:37;;14488:6;14473:11;:21;;14465:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;14605:6;14591:11;:20;14573:9;:15;14583:4;14573:15;;;;;;;;;;;;;;;:38;;;;14800:6;14783:9;:13;14793:2;14783:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;14850:2;14835:26;;14844:4;14835:26;;;14854:6;14835:26;;;;;;:::i;:::-;;;;;;;;14874:37;14894:4;14900:2;14904:6;14874:19;:37::i;:::-;14121:798;;;;:::o;2163:132::-;2238:12;:10;:12::i;:::-;2227:23;;:7;:5;:7::i;:::-;:23;;;2219:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2163:132::o;3258:191::-;3332:16;3351:6;;;;;;;;;;;3332:25;;3377:8;3368:6;;:17;;;;;;;;;;;;;;;;;;3432:8;3401:40;;3422:8;3401:40;;;;;;;;;;;;3258:191;;:::o;20081:454::-;20224:44;20251:4;20257:2;20261:6;20224:26;:44::i;:::-;19771:1;20283:5;;:33;20279:105;;;20333:39;;;;;;;;;;:::i;:::-;;;;;;;;20279:105;19827:1;20398:5;;:33;20394:134;;;20464:7;:5;:7::i;:::-;20456:15;;:4;:15;;;:32;;;;20481:7;:5;:7::i;:::-;20475:13;;:2;:13;;;20456:32;20448:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20394:134;20081:454;;;:::o;19543:90::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:367::-;;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3086:34;3082:1;3077:3;3073:11;3066:55;3152:5;3147:2;3142:3;3138:12;3131:27;3184:2;3179:3;3175:12;3168:19;;2972:221;;;:::o;3199:370::-;;3362:67;3426:2;3421:3;3362:67;:::i;:::-;3355:74;;3459:34;3455:1;3450:3;3446:11;3439:55;3525:8;3520:2;3515:3;3511:12;3504:30;3560:2;3555:3;3551:12;3544:19;;3345:224;;;:::o;3575:366::-;;3738:67;3802:2;3797:3;3738:67;:::i;:::-;3731:74;;3835:34;3831:1;3826:3;3822:11;3815:55;3901:4;3896:2;3891:3;3887:12;3880:26;3932:2;3927:3;3923:12;3916:19;;3721:220;;;:::o;3947:327::-;;4110:67;4174:2;4169:3;4110:67;:::i;:::-;4103:74;;4207:31;4203:1;4198:3;4194:11;4187:52;4265:2;4260:3;4256:12;4249:19;;4093:181;;;:::o;4280:370::-;;4443:67;4507:2;4502:3;4443:67;:::i;:::-;4436:74;;4540:34;4536:1;4531:3;4527:11;4520:55;4606:8;4601:2;4596:3;4592:12;4585:30;4641:2;4636:3;4632:12;4625:19;;4426:224;;;:::o;4656:321::-;;4819:67;4883:2;4878:3;4819:67;:::i;:::-;4812:74;;4916:25;4912:1;4907:3;4903:11;4896:46;4968:2;4963:3;4959:12;4952:19;;4802:175;;;:::o;4983:327::-;;5146:67;5210:2;5205:3;5146:67;:::i;:::-;5139:74;;5243:31;5239:1;5234:3;5230:11;5223:52;5301:2;5296:3;5292:12;5285:19;;5129:181;;;:::o;5316:330::-;;5479:67;5543:2;5538:3;5479:67;:::i;:::-;5472:74;;5576:34;5572:1;5567:3;5563:11;5556:55;5637:2;5632:3;5628:12;5621:19;;5462:184;;;:::o;5652:369::-;;5815:67;5879:2;5874:3;5815:67;:::i;:::-;5808:74;;5912:34;5908:1;5903:3;5899:11;5892:55;5978:7;5973:2;5968:3;5964:12;5957:29;6012:2;6007:3;6003:12;5996:19;;5798:223;;;:::o;6027:368::-;;6190:67;6254:2;6249:3;6190:67;:::i;:::-;6183:74;;6287:34;6283:1;6278:3;6274:11;6267:55;6353:6;6348:2;6343:3;6339:12;6332:28;6386:2;6381:3;6377:12;6370:19;;6173:222;;;:::o;6401:369::-;;6564:67;6628:2;6623:3;6564:67;:::i;:::-;6557:74;;6661:34;6657:1;6652:3;6648:11;6641:55;6727:7;6722:2;6717:3;6713:12;6706:29;6761:2;6756:3;6752:12;6745:19;;6547:223;;;:::o;6776:118::-;6863:24;6881:5;6863:24;:::i;:::-;6858:3;6851:37;6841:53;;:::o;6900:112::-;6983:22;6999:5;6983:22;:::i;:::-;6978:3;6971:35;6961:51;;:::o;7018:222::-;;7149:2;7138:9;7134:18;7126:26;;7162:71;7230:1;7219:9;7215:17;7206:6;7162:71;:::i;:::-;7116:124;;;;:::o;7246:210::-;;7371:2;7360:9;7356:18;7348:26;;7384:65;7446:1;7435:9;7431:17;7422:6;7384:65;:::i;:::-;7338:118;;;;:::o;7462:313::-;;7613:2;7602:9;7598:18;7590:26;;7662:9;7656:4;7652:20;7648:1;7637:9;7633:17;7626:47;7690:78;7763:4;7754:6;7690:78;:::i;:::-;7682:86;;7580:195;;;;:::o;7781:419::-;;7985:2;7974:9;7970:18;7962:26;;8034:9;8028:4;8024:20;8020:1;8009:9;8005:17;7998:47;8062:131;8188:4;8062:131;:::i;:::-;8054:139;;7952:248;;;:::o;8206:419::-;;8410:2;8399:9;8395:18;8387:26;;8459:9;8453:4;8449:20;8445:1;8434:9;8430:17;8423:47;8487:131;8613:4;8487:131;:::i;:::-;8479:139;;8377:248;;;:::o;8631:419::-;;8835:2;8824:9;8820:18;8812:26;;8884:9;8878:4;8874:20;8870:1;8859:9;8855:17;8848:47;8912:131;9038:4;8912:131;:::i;:::-;8904:139;;8802:248;;;:::o;9056:419::-;;9260:2;9249:9;9245:18;9237:26;;9309:9;9303:4;9299:20;9295:1;9284:9;9280:17;9273:47;9337:131;9463:4;9337:131;:::i;:::-;9329:139;;9227:248;;;:::o;9481:419::-;;9685:2;9674:9;9670:18;9662:26;;9734:9;9728:4;9724:20;9720:1;9709:9;9705:17;9698:47;9762:131;9888:4;9762:131;:::i;:::-;9754:139;;9652:248;;;:::o;9906:419::-;;10110:2;10099:9;10095:18;10087:26;;10159:9;10153:4;10149:20;10145:1;10134:9;10130:17;10123:47;10187:131;10313:4;10187:131;:::i;:::-;10179:139;;10077:248;;;:::o;10331:419::-;;10535:2;10524:9;10520:18;10512:26;;10584:9;10578:4;10574:20;10570:1;10559:9;10555:17;10548:47;10612:131;10738:4;10612:131;:::i;:::-;10604:139;;10502:248;;;:::o;10756:419::-;;10960:2;10949:9;10945:18;10937:26;;11009:9;11003:4;10999:20;10995:1;10984:9;10980:17;10973:47;11037:131;11163:4;11037:131;:::i;:::-;11029:139;;10927:248;;;:::o;11181:419::-;;11385:2;11374:9;11370:18;11362:26;;11434:9;11428:4;11424:20;11420:1;11409:9;11405:17;11398:47;11462:131;11588:4;11462:131;:::i;:::-;11454:139;;11352:248;;;:::o;11606:419::-;;11810:2;11799:9;11795:18;11787:26;;11859:9;11853:4;11849:20;11845:1;11834:9;11830:17;11823:47;11887:131;12013:4;11887:131;:::i;:::-;11879:139;;11777:248;;;:::o;12031:419::-;;12235:2;12224:9;12220:18;12212:26;;12284:9;12278:4;12274:20;12270:1;12259:9;12255:17;12248:47;12312:131;12438:4;12312:131;:::i;:::-;12304:139;;12202:248;;;:::o;12456:222::-;;12587:2;12576:9;12572:18;12564:26;;12600:71;12668:1;12657:9;12653:17;12644:6;12600:71;:::i;:::-;12554:124;;;;:::o;12684:214::-;;12811:2;12800:9;12796:18;12788:26;;12824:67;12888:1;12877:9;12873:17;12864:6;12824:67;:::i;:::-;12778:120;;;;:::o;12904:99::-;;12990:5;12984:12;12974:22;;12963:40;;;:::o;13009:169::-;;13127:6;13122:3;13115:19;13167:4;13162:3;13158:14;13143:29;;13105:73;;;;:::o;13184:305::-;;13243:20;13261:1;13243:20;:::i;:::-;13238:25;;13277:20;13295:1;13277:20;:::i;:::-;13272:25;;13431:1;13363:66;13359:74;13356:1;13353:81;13350:2;;;13437:18;;:::i;:::-;13350:2;13481:1;13478;13474:9;13467:16;;13228:261;;;;:::o;13495:96::-;;13561:24;13579:5;13561:24;:::i;:::-;13550:35;;13540:51;;;:::o;13597:90::-;;13674:5;13667:13;13660:21;13649:32;;13639:48;;;:::o;13693:126::-;;13770:42;13763:5;13759:54;13748:65;;13738:81;;;:::o;13825:77::-;;13891:5;13880:16;;13870:32;;;:::o;13908:86::-;;13983:4;13976:5;13972:16;13961:27;;13951:43;;;:::o;14000:307::-;14068:1;14078:113;14092:6;14089:1;14086:13;14078:113;;;14177:1;14172:3;14168:11;14162:18;14158:1;14153:3;14149:11;14142:39;14114:2;14111:1;14107:10;14102:15;;14078:113;;;14209:6;14206:1;14203:13;14200:2;;;14289:1;14280:6;14275:3;14271:16;14264:27;14200:2;14049:258;;;;:::o;14313:320::-;;14394:1;14388:4;14384:12;14374:22;;14441:1;14435:4;14431:12;14462:18;14452:2;;14518:4;14510:6;14506:17;14496:27;;14452:2;14580;14572:6;14569:14;14549:18;14546:38;14543:2;;;14599:18;;:::i;:::-;14543:2;14364:269;;;;:::o;14639:180::-;14687:77;14684:1;14677:88;14784:4;14781:1;14774:15;14808:4;14805:1;14798:15;14825:180;14873:77;14870:1;14863:88;14970:4;14967:1;14960:15;14994:4;14991:1;14984:15;15011:102;;15103:2;15099:7;15094:2;15087:5;15083:14;15079:28;15069:38;;15059:54;;;:::o;15119:122::-;15192:24;15210:5;15192:24;:::i;:::-;15185:5;15182:35;15172:2;;15231:1;15228;15221:12;15172:2;15162:79;:::o;15247:122::-;15320:24;15338:5;15320:24;:::i;:::-;15313:5;15310:35;15300:2;;15359:1;15356;15349:12;15300:2;15290:79;:::o
Swarm Source
ipfs://a485910e67b6153831c4660ebe137486191459859e9a33d6ed2b67054dd07331
[ 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.