ERC-20
Overview
Max Total Supply
1,000,000,000 SNS
Holders
8
Market
Price
-
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
SonicNameServices
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2024-12-18 */ /** Sonic Name Service empowers everyone with a digital identity for the new internet. It's more than just a domain—it's your key to a better, open, and inclusive web for all. www.sonicname.services */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool); /** * @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); } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } contract ERC20 is Context, IERC20 { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; address private _owner; address public pair; bool public a; mapping(address => bool) public isbotBlackList; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Sets the values for {name} and {symbol}. * * The defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overloaded; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual 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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function setblacklist(address _account) external onlyOwner { isbotBlackList[_account] = true; } function unsetblack(address _account) external onlyOwner { isbotBlackList[_account] = false; } /** * @dev See {IERC20-allowance}. */ function allowance(address oowner, address spender) public view virtual override returns (uint256) { return _allowances[oowner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function owner() public view returns (address) { return _owner; } modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } function waiveOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0x000000000000000000000000000000000000dEaD)); _owner = address(0x000000000000000000000000000000000000dEaD); } function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); require(!isbotBlackList[sender], "account is bot"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, 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: * * - `to` 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; _balances[account] += amount; emit Transfer(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"); _balances[account] = accountBalance - amount; _totalSupply -= 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 oowner, address spender, uint256 amount) internal virtual { require(oowner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[oowner][spender] = amount; emit Approval(oowner, spender, 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 to 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 { } } abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), currentAllowance - amount); _burn(account, amount); } } contract SonicNameServices is ERC20Burnable { constructor(string memory name_, string memory symbol_,address addr_) ERC20(name_, symbol_) { _mint(addr_, 1000000000 * 10**18); } }
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":"address","name":"addr_","type":"address"}],"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":"a","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"oowner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isbotBlackList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"setblacklist","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"unsetblack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"waiveOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620025a6380380620025a68339818101604052810190620000379190620003f0565b8282816003908051906020019062000051929190620002b7565b5080600490805190602001906200006a929190620002b7565b5060006200007d6200014560201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050506200013c816b033b2e3c9fd0803ce80000006200014d60201b60201c565b50505062000730565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620001c0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001b790620004cb565b60405180910390fd5b620001d460008383620002b260201b60201c565b8060026000828254620001e8919062000582565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200023f919062000582565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002a69190620004ed565b60405180910390a35050565b505050565b828054620002c59062000653565b90600052602060002090601f016020900481019282620002e9576000855562000335565b82601f106200030457805160ff191683800117855562000335565b8280016001018555821562000335579182015b828111156200033457825182559160200191906001019062000317565b5b50905062000344919062000348565b5090565b5b808211156200036357600081600090555060010162000349565b5090565b60006200037e62000378846200053e565b6200050a565b9050828152602081018484840111156200039757600080fd5b620003a48482856200061d565b509392505050565b600081519050620003bd8162000716565b92915050565b600082601f830112620003d557600080fd5b8151620003e784826020860162000367565b91505092915050565b6000806000606084860312156200040657600080fd5b600084015167ffffffffffffffff8111156200042157600080fd5b6200042f86828701620003c3565b935050602084015167ffffffffffffffff8111156200044d57600080fd5b6200045b86828701620003c3565b92505060406200046e86828701620003ac565b9150509250925092565b600062000487601f8362000571565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b620004c58162000613565b82525050565b60006020820190508181036000830152620004e68162000478565b9050919050565b6000602082019050620005046000830184620004ba565b92915050565b6000604051905081810181811067ffffffffffffffff82111715620005345762000533620006e7565b5b8060405250919050565b600067ffffffffffffffff8211156200055c576200055b620006e7565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b60006200058f8262000613565b91506200059c8362000613565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620005d457620005d362000689565b5b828201905092915050565b6000620005ec82620005f3565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200063d57808201518184015260208101905062000620565b838111156200064d576000848401525b50505050565b600060028204905060018216806200066c57607f821691505b60208210811415620006835762000682620006b8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200072181620005df565b81146200072d57600080fd5b50565b611e6680620007406000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d71461031f578063a8aa1b311461034f578063a9059cbb1461036d578063bdfc29901461039d578063dd62ed3e146103cd5761012c565b806370a082311461028d57806379cc6790146102bd5780638da5cb5b146102d9578063914eb66a146102f757806395d89b41146103015761012c565b8063313ce567116100f4578063313ce567146101eb578063395093511461020957806342966c6814610239578063446e01ea146102555780635c5ba448146102715761012c565b806306fdde0314610131578063095ea7b31461014f5780630dbe671f1461017f57806318160ddd1461019d57806323b872dd146101bb575b600080fd5b6101396103fd565b6040516101469190611a5b565b60405180910390f35b610169600480360381019061016491906114cf565b61048f565b6040516101769190611a40565b60405180910390f35b6101876104ad565b6040516101949190611a40565b60405180910390f35b6101a56104c0565b6040516101b29190611bfd565b60405180910390f35b6101d560048036038101906101d09190611480565b6104ca565b6040516101e29190611a40565b60405180910390f35b6101f36105cb565b6040516102009190611c18565b60405180910390f35b610223600480360381019061021e91906114cf565b6105d4565b6040516102309190611a40565b60405180910390f35b610253600480360381019061024e919061150b565b610680565b005b61026f600480360381019061026a919061141b565b610694565b005b61028b6004803603810190610286919061141b565b610786565b005b6102a760048036038101906102a2919061141b565b610878565b6040516102b49190611bfd565b60405180910390f35b6102d760048036038101906102d291906114cf565b6108c0565b005b6102e1610944565b6040516102ee9190611a25565b60405180910390f35b6102ff61096e565b005b610309610ac8565b6040516103169190611a5b565b60405180910390f35b610339600480360381019061033491906114cf565b610b5a565b6040516103469190611a40565b60405180910390f35b610357610c4e565b6040516103649190611a25565b60405180910390f35b610387600480360381019061038291906114cf565b610c74565b6040516103949190611a40565b60405180910390f35b6103b760048036038101906103b2919061141b565b610c92565b6040516103c49190611a40565b60405180910390f35b6103e760048036038101906103e29190611444565b610cb2565b6040516103f49190611bfd565b60405180910390f35b60606003805461040c90611d61565b80601f016020809104026020016040519081016040528092919081815260200182805461043890611d61565b80156104855780601f1061045a57610100808354040283529160200191610485565b820191906000526020600020905b81548152906001019060200180831161046857829003601f168201915b5050505050905090565b60006104a361049c610d39565b8484610d41565b6001905092915050565b600660149054906101000a900460ff1681565b6000600254905090565b60006104d7848484610f0c565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610522610d39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059990611b1d565b60405180910390fd5b6105bf856105ae610d39565b85846105ba9190611ca5565b610d41565b60019150509392505050565b60006012905090565b60006106766105e1610d39565b8484600160006105ef610d39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106719190611c4f565b610d41565b6001905092915050565b61069161068b610d39565b82611218565b50565b61069c610d39565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461072b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072290611b3d565b60405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61078e610d39565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461081d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081490611b3d565b60405180910390fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006108d3836108ce610d39565b610cb2565b905081811015610918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090f90611b5d565b60405180910390fd5b61093583610924610d39565b84846109309190611ca5565b610d41565b61093f8383611218565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610976610d39565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fc90611b3d565b60405180910390fd5b61dead73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a361dead600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b606060048054610ad790611d61565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0390611d61565b8015610b505780601f10610b2557610100808354040283529160200191610b50565b820191906000526020600020905b815481529060010190602001808311610b3357829003601f168201915b5050505050905090565b60008060016000610b69610d39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1d90611bdd565b60405180910390fd5b610c43610c31610d39565b858584610c3e9190611ca5565b610d41565b600191505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610c88610c81610d39565b8484610f0c565b6001905092915050565b60076020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da890611bbd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1890611add565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610eff9190611bfd565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7390611b9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe390611a7d565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107090611a9d565b60405180910390fd5b6110848383836113ec565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561110a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110190611afd565b60405180910390fd5b81816111169190611ca5565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111a69190611c4f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161120a9190611bfd565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f90611b7d565b60405180910390fd5b611294826000836113ec565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561131a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131190611abd565b60405180910390fd5b81816113269190611ca5565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461137a9190611ca5565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113df9190611bfd565b60405180910390a3505050565b505050565b60008135905061140081611e02565b92915050565b60008135905061141581611e19565b92915050565b60006020828403121561142d57600080fd5b600061143b848285016113f1565b91505092915050565b6000806040838503121561145757600080fd5b6000611465858286016113f1565b9250506020611476858286016113f1565b9150509250929050565b60008060006060848603121561149557600080fd5b60006114a3868287016113f1565b93505060206114b4868287016113f1565b92505060406114c586828701611406565b9150509250925092565b600080604083850312156114e257600080fd5b60006114f0858286016113f1565b925050602061150185828601611406565b9150509250929050565b60006020828403121561151d57600080fd5b600061152b84828501611406565b91505092915050565b61153d81611cd9565b82525050565b61154c81611ceb565b82525050565b600061155d82611c33565b6115678185611c3e565b9350611577818560208601611d2e565b61158081611df1565b840191505092915050565b6000611598602383611c3e565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115fe600e83611c3e565b91507f6163636f756e7420697320626f740000000000000000000000000000000000006000830152602082019050919050565b600061163e602283611c3e565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006116a4602283611c3e565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061170a602683611c3e565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611770602883611c3e565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b60006117d6602083611c3e565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611816602483611c3e565b91507f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008301527f616e6365000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061187c602183611c3e565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006118e2602583611c3e565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611948602483611c3e565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006119ae602583611c3e565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b611a1081611d17565b82525050565b611a1f81611d21565b82525050565b6000602082019050611a3a6000830184611534565b92915050565b6000602082019050611a556000830184611543565b92915050565b60006020820190508181036000830152611a758184611552565b905092915050565b60006020820190508181036000830152611a968161158b565b9050919050565b60006020820190508181036000830152611ab6816115f1565b9050919050565b60006020820190508181036000830152611ad681611631565b9050919050565b60006020820190508181036000830152611af681611697565b9050919050565b60006020820190508181036000830152611b16816116fd565b9050919050565b60006020820190508181036000830152611b3681611763565b9050919050565b60006020820190508181036000830152611b56816117c9565b9050919050565b60006020820190508181036000830152611b7681611809565b9050919050565b60006020820190508181036000830152611b968161186f565b9050919050565b60006020820190508181036000830152611bb6816118d5565b9050919050565b60006020820190508181036000830152611bd68161193b565b9050919050565b60006020820190508181036000830152611bf6816119a1565b9050919050565b6000602082019050611c126000830184611a07565b92915050565b6000602082019050611c2d6000830184611a16565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611c5a82611d17565b9150611c6583611d17565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c9a57611c99611d93565b5b828201905092915050565b6000611cb082611d17565b9150611cbb83611d17565b925082821015611cce57611ccd611d93565b5b828203905092915050565b6000611ce482611cf7565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611d4c578082015181840152602081019050611d31565b83811115611d5b576000848401525b50505050565b60006002820490506001821680611d7957607f821691505b60208210811415611d8d57611d8c611dc2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611e0b81611cd9565b8114611e1657600080fd5b50565b611e2281611d17565b8114611e2d57600080fd5b5056fea2646970667358221220142449b9fc97da4de7dc59c058a0841b05a42baa427742f679332c30b6766c7d64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000169bc73148d2e3047a1d0655fd11ffd3ae2a4740000000000000000000000000000000000000000000000000000000000000012736f6e69636e616d652e736572766963657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003534e530000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d71461031f578063a8aa1b311461034f578063a9059cbb1461036d578063bdfc29901461039d578063dd62ed3e146103cd5761012c565b806370a082311461028d57806379cc6790146102bd5780638da5cb5b146102d9578063914eb66a146102f757806395d89b41146103015761012c565b8063313ce567116100f4578063313ce567146101eb578063395093511461020957806342966c6814610239578063446e01ea146102555780635c5ba448146102715761012c565b806306fdde0314610131578063095ea7b31461014f5780630dbe671f1461017f57806318160ddd1461019d57806323b872dd146101bb575b600080fd5b6101396103fd565b6040516101469190611a5b565b60405180910390f35b610169600480360381019061016491906114cf565b61048f565b6040516101769190611a40565b60405180910390f35b6101876104ad565b6040516101949190611a40565b60405180910390f35b6101a56104c0565b6040516101b29190611bfd565b60405180910390f35b6101d560048036038101906101d09190611480565b6104ca565b6040516101e29190611a40565b60405180910390f35b6101f36105cb565b6040516102009190611c18565b60405180910390f35b610223600480360381019061021e91906114cf565b6105d4565b6040516102309190611a40565b60405180910390f35b610253600480360381019061024e919061150b565b610680565b005b61026f600480360381019061026a919061141b565b610694565b005b61028b6004803603810190610286919061141b565b610786565b005b6102a760048036038101906102a2919061141b565b610878565b6040516102b49190611bfd565b60405180910390f35b6102d760048036038101906102d291906114cf565b6108c0565b005b6102e1610944565b6040516102ee9190611a25565b60405180910390f35b6102ff61096e565b005b610309610ac8565b6040516103169190611a5b565b60405180910390f35b610339600480360381019061033491906114cf565b610b5a565b6040516103469190611a40565b60405180910390f35b610357610c4e565b6040516103649190611a25565b60405180910390f35b610387600480360381019061038291906114cf565b610c74565b6040516103949190611a40565b60405180910390f35b6103b760048036038101906103b2919061141b565b610c92565b6040516103c49190611a40565b60405180910390f35b6103e760048036038101906103e29190611444565b610cb2565b6040516103f49190611bfd565b60405180910390f35b60606003805461040c90611d61565b80601f016020809104026020016040519081016040528092919081815260200182805461043890611d61565b80156104855780601f1061045a57610100808354040283529160200191610485565b820191906000526020600020905b81548152906001019060200180831161046857829003601f168201915b5050505050905090565b60006104a361049c610d39565b8484610d41565b6001905092915050565b600660149054906101000a900460ff1681565b6000600254905090565b60006104d7848484610f0c565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610522610d39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059990611b1d565b60405180910390fd5b6105bf856105ae610d39565b85846105ba9190611ca5565b610d41565b60019150509392505050565b60006012905090565b60006106766105e1610d39565b8484600160006105ef610d39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106719190611c4f565b610d41565b6001905092915050565b61069161068b610d39565b82611218565b50565b61069c610d39565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461072b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072290611b3d565b60405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61078e610d39565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461081d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081490611b3d565b60405180910390fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006108d3836108ce610d39565b610cb2565b905081811015610918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090f90611b5d565b60405180910390fd5b61093583610924610d39565b84846109309190611ca5565b610d41565b61093f8383611218565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610976610d39565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fc90611b3d565b60405180910390fd5b61dead73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a361dead600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b606060048054610ad790611d61565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0390611d61565b8015610b505780601f10610b2557610100808354040283529160200191610b50565b820191906000526020600020905b815481529060010190602001808311610b3357829003601f168201915b5050505050905090565b60008060016000610b69610d39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1d90611bdd565b60405180910390fd5b610c43610c31610d39565b858584610c3e9190611ca5565b610d41565b600191505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610c88610c81610d39565b8484610f0c565b6001905092915050565b60076020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da890611bbd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1890611add565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610eff9190611bfd565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7390611b9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe390611a7d565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107090611a9d565b60405180910390fd5b6110848383836113ec565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561110a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110190611afd565b60405180910390fd5b81816111169190611ca5565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111a69190611c4f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161120a9190611bfd565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f90611b7d565b60405180910390fd5b611294826000836113ec565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561131a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131190611abd565b60405180910390fd5b81816113269190611ca5565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461137a9190611ca5565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113df9190611bfd565b60405180910390a3505050565b505050565b60008135905061140081611e02565b92915050565b60008135905061141581611e19565b92915050565b60006020828403121561142d57600080fd5b600061143b848285016113f1565b91505092915050565b6000806040838503121561145757600080fd5b6000611465858286016113f1565b9250506020611476858286016113f1565b9150509250929050565b60008060006060848603121561149557600080fd5b60006114a3868287016113f1565b93505060206114b4868287016113f1565b92505060406114c586828701611406565b9150509250925092565b600080604083850312156114e257600080fd5b60006114f0858286016113f1565b925050602061150185828601611406565b9150509250929050565b60006020828403121561151d57600080fd5b600061152b84828501611406565b91505092915050565b61153d81611cd9565b82525050565b61154c81611ceb565b82525050565b600061155d82611c33565b6115678185611c3e565b9350611577818560208601611d2e565b61158081611df1565b840191505092915050565b6000611598602383611c3e565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115fe600e83611c3e565b91507f6163636f756e7420697320626f740000000000000000000000000000000000006000830152602082019050919050565b600061163e602283611c3e565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006116a4602283611c3e565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061170a602683611c3e565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611770602883611c3e565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b60006117d6602083611c3e565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611816602483611c3e565b91507f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008301527f616e6365000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061187c602183611c3e565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006118e2602583611c3e565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611948602483611c3e565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006119ae602583611c3e565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b611a1081611d17565b82525050565b611a1f81611d21565b82525050565b6000602082019050611a3a6000830184611534565b92915050565b6000602082019050611a556000830184611543565b92915050565b60006020820190508181036000830152611a758184611552565b905092915050565b60006020820190508181036000830152611a968161158b565b9050919050565b60006020820190508181036000830152611ab6816115f1565b9050919050565b60006020820190508181036000830152611ad681611631565b9050919050565b60006020820190508181036000830152611af681611697565b9050919050565b60006020820190508181036000830152611b16816116fd565b9050919050565b60006020820190508181036000830152611b3681611763565b9050919050565b60006020820190508181036000830152611b56816117c9565b9050919050565b60006020820190508181036000830152611b7681611809565b9050919050565b60006020820190508181036000830152611b968161186f565b9050919050565b60006020820190508181036000830152611bb6816118d5565b9050919050565b60006020820190508181036000830152611bd68161193b565b9050919050565b60006020820190508181036000830152611bf6816119a1565b9050919050565b6000602082019050611c126000830184611a07565b92915050565b6000602082019050611c2d6000830184611a16565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611c5a82611d17565b9150611c6583611d17565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c9a57611c99611d93565b5b828201905092915050565b6000611cb082611d17565b9150611cbb83611d17565b925082821015611cce57611ccd611d93565b5b828203905092915050565b6000611ce482611cf7565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611d4c578082015181840152602081019050611d31565b83811115611d5b576000848401525b50505050565b60006002820490506001821680611d7957607f821691505b60208210811415611d8d57611d8c611dc2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611e0b81611cd9565b8114611e1657600080fd5b50565b611e2281611d17565b8114611e2d57600080fd5b5056fea2646970667358221220142449b9fc97da4de7dc59c058a0841b05a42baa427742f679332c30b6766c7d64736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000169bc73148d2e3047a1d0655fd11ffd3ae2a4740000000000000000000000000000000000000000000000000000000000000012736f6e69636e616d652e736572766963657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003534e530000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): sonicname.services
Arg [1] : symbol_ (string): SNS
Arg [2] : addr_ (address): 0x0169bc73148d2e3047a1d0655Fd11fFD3aE2a474
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000169bc73148d2e3047a1d0655fd11ffd3ae2a474
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 736f6e69636e616d652e73657276696365730000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 534e530000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
14894:216:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4414:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6839:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3620:13;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5507:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7490:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5358:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8321:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14143:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6341:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6201:132;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5678:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14553:332;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9907:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10130:227;;;:::i;:::-;;4624:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9039:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3594:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6018:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3640:46;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6539:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4414:91;4459:13;4492:5;4485:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4414:91;:::o;6839:169::-;6922:4;6939:39;6948:12;:10;:12::i;:::-;6962:7;6971:6;6939:8;:39::i;:::-;6996:4;6989:11;;6839:169;;;;:::o;3620:13::-;;;;;;;;;;;;;:::o;5507:108::-;5568:7;5595:12;;5588:19;;5507:108;:::o;7490:422::-;7596:4;7613:36;7623:6;7631:9;7642:6;7613:9;:36::i;:::-;7662:24;7689:11;:19;7701:6;7689:19;;;;;;;;;;;;;;;:33;7709:12;:10;:12::i;:::-;7689:33;;;;;;;;;;;;;;;;7662:60;;7761:6;7741:16;:26;;7733:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;7823:57;7832:6;7840:12;:10;:12::i;:::-;7873:6;7854:16;:25;;;;:::i;:::-;7823:8;:57::i;:::-;7900:4;7893:11;;;7490:422;;;;;:::o;5358:84::-;5407:5;5432:2;5425:9;;5358:84;:::o;8321:215::-;8409:4;8426:80;8435:12;:10;:12::i;:::-;8449:7;8495:10;8458:11;:25;8470:12;:10;:12::i;:::-;8458:25;;;;;;;;;;;;;;;:34;8484:7;8458:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;8426:8;:80::i;:::-;8524:4;8517:11;;8321:215;;;;:::o;14143:91::-;14199:27;14205:12;:10;:12::i;:::-;14219:6;14199:5;:27::i;:::-;14143:91;:::o;6341:131::-;10051:12;:10;:12::i;:::-;10041:22;;:6;;;;;;;;;;;:22;;;10033:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;6449:5:::1;6422:14;:24;6437:8;6422:24;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;6341:131:::0;:::o;6201:132::-;10051:12;:10;:12::i;:::-;10041:22;;:6;;;;;;;;;;;:22;;;10033:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;6311:4:::1;6284:14;:24;6299:8;6284:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;6201:132:::0;:::o;5678:127::-;5752:7;5779:9;:18;5789:7;5779:18;;;;;;;;;;;;;;;;5772:25;;5678:127;;;:::o;14553:332::-;14630:24;14657:32;14667:7;14676:12;:10;:12::i;:::-;14657:9;:32::i;:::-;14630:59;;14728:6;14708:16;:26;;14700:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;14786:58;14795:7;14804:12;:10;:12::i;:::-;14837:6;14818:16;:25;;;;:::i;:::-;14786:8;:58::i;:::-;14855:22;14861:7;14870:6;14855:5;:22::i;:::-;14553:332;;;:::o;9907:79::-;9945:7;9972:6;;;;;;;;;;;9965:13;;9907:79;:::o;10130:227::-;10051:12;:10;:12::i;:::-;10041:22;;:6;;;;;;;;;;;:22;;;10033:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;10234:42:::1;10197:81;;10218:6;;;;;;;;;;;10197:81;;;;;;;;;;;;10306:42;10289:6;;:60;;;;;;;;;;;;;;;;;;10130:227::o:0;4624:95::-;4671:13;4704:7;4697:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4624:95;:::o;9039:377::-;9132:4;9149:24;9176:11;:25;9188:12;:10;:12::i;:::-;9176:25;;;;;;;;;;;;;;;:34;9202:7;9176:34;;;;;;;;;;;;;;;;9149:61;;9249:15;9229:16;:35;;9221:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;9317:67;9326:12;:10;:12::i;:::-;9340:7;9368:15;9349:16;:34;;;;:::i;:::-;9317:8;:67::i;:::-;9404:4;9397:11;;;9039:377;;;;:::o;3594:19::-;;;;;;;;;;;;;:::o;6018:175::-;6104:4;6121:42;6131:12;:10;:12::i;:::-;6145:9;6156:6;6121:9;:42::i;:::-;6181:4;6174:11;;6018:175;;;;:::o;3640:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;6539:153::-;6629:7;6656:11;:19;6668:6;6656:19;;;;;;;;;;;;;;;:28;6676:7;6656:28;;;;;;;;;;;;;;;;6649:35;;6539:153;;;;:::o;2948:98::-;3001:7;3028:10;3021:17;;2948:98;:::o;12926:350::-;13047:1;13029:20;;:6;:20;;;;13021:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;13128:1;13109:21;;:7;:21;;;;13101:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13213:6;13182:11;:19;13194:6;13182:19;;;;;;;;;;;;;;;:28;13202:7;13182:28;;;;;;;;;;;;;;;:37;;;;13252:7;13235:33;;13244:6;13235:33;;;13261:6;13235:33;;;;;;:::i;:::-;;;;;;;;12926:350;;;:::o;10365:668::-;10489:1;10471:20;;:6;:20;;;;10463:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;10573:1;10552:23;;:9;:23;;;;10544:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;10635:14;:22;10650:6;10635:22;;;;;;;;;;;;;;;;;;;;;;;;;10634:23;10626:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;10689:47;10710:6;10718:9;10729:6;10689:20;:47::i;:::-;10752:21;10776:9;:17;10786:6;10776:17;;;;;;;;;;;;;;;;10752:41;;10829:6;10812:13;:23;;10804:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;10925:6;10909:13;:22;;;;:::i;:::-;10889:9;:17;10899:6;10889:17;;;;;;;;;;;;;;;:42;;;;10966:6;10942:9;:20;10952:9;10942:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;11007:9;10990:35;;10999:6;10990:35;;;11018:6;10990:35;;;;;;:::i;:::-;;;;;;;;10365:668;;;;:::o;11994:494::-;12097:1;12078:21;;:7;:21;;;;12070:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;12150:49;12171:7;12188:1;12192:6;12150:20;:49::i;:::-;12212:22;12237:9;:18;12247:7;12237:18;;;;;;;;;;;;;;;;12212:43;;12292:6;12274:14;:24;;12266:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12386:6;12369:14;:23;;;;:::i;:::-;12348:9;:18;12358:7;12348:18;;;;;;;;;;;;;;;:44;;;;12419:6;12403:12;;:22;;;;;;;:::i;:::-;;;;;;;;12469:1;12443:37;;12452:7;12443:37;;;12473:6;12443:37;;;;;;:::i;:::-;;;;;;;;11994:494;;;:::o;13879:92::-;;;;:::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:312::-;;3362:67;3426:2;3421:3;3362:67;:::i;:::-;3355:74;;3459:16;3455:1;3450:3;3446:11;3439:37;3502:2;3497:3;3493:12;3486:19;;3345:166;;;:::o;3517:366::-;;3680:67;3744:2;3739:3;3680:67;:::i;:::-;3673:74;;3777:34;3773:1;3768:3;3764:11;3757:55;3843:4;3838:2;3833:3;3829:12;3822:26;3874:2;3869:3;3865:12;3858:19;;3663:220;;;:::o;3889:366::-;;4052:67;4116:2;4111:3;4052:67;:::i;:::-;4045:74;;4149:34;4145:1;4140:3;4136:11;4129:55;4215:4;4210:2;4205:3;4201:12;4194:26;4246:2;4241:3;4237:12;4230:19;;4035:220;;;:::o;4261:370::-;;4424:67;4488:2;4483:3;4424:67;:::i;:::-;4417:74;;4521:34;4517:1;4512:3;4508:11;4501:55;4587:8;4582:2;4577:3;4573:12;4566:30;4622:2;4617:3;4613:12;4606:19;;4407:224;;;:::o;4637:372::-;;4800:67;4864:2;4859:3;4800:67;:::i;:::-;4793:74;;4897:34;4893:1;4888:3;4884:11;4877:55;4963:10;4958:2;4953:3;4949:12;4942:32;5000:2;4995:3;4991:12;4984:19;;4783:226;;;:::o;5015:330::-;;5178:67;5242:2;5237:3;5178:67;:::i;:::-;5171:74;;5275:34;5271:1;5266:3;5262:11;5255:55;5336:2;5331:3;5327:12;5320:19;;5161:184;;;:::o;5351:368::-;;5514:67;5578:2;5573:3;5514:67;:::i;:::-;5507:74;;5611:34;5607:1;5602:3;5598:11;5591:55;5677:6;5672:2;5667:3;5663:12;5656:28;5710:2;5705:3;5701:12;5694:19;;5497:222;;;:::o;5725:365::-;;5888:67;5952:2;5947:3;5888:67;:::i;:::-;5881:74;;5985:34;5981:1;5976:3;5972:11;5965:55;6051:3;6046:2;6041:3;6037:12;6030:25;6081:2;6076:3;6072:12;6065:19;;5871:219;;;:::o;6096:369::-;;6259:67;6323:2;6318:3;6259:67;:::i;:::-;6252:74;;6356:34;6352:1;6347:3;6343:11;6336:55;6422:7;6417:2;6412:3;6408:12;6401:29;6456:2;6451:3;6447:12;6440:19;;6242:223;;;:::o;6471:368::-;;6634:67;6698:2;6693:3;6634:67;:::i;:::-;6627:74;;6731:34;6727:1;6722:3;6718:11;6711:55;6797:6;6792:2;6787:3;6783:12;6776:28;6830:2;6825:3;6821:12;6814:19;;6617:222;;;:::o;6845:369::-;;7008:67;7072:2;7067:3;7008:67;:::i;:::-;7001:74;;7105:34;7101:1;7096:3;7092:11;7085:55;7171:7;7166:2;7161:3;7157:12;7150:29;7205:2;7200:3;7196:12;7189:19;;6991:223;;;:::o;7220:118::-;7307:24;7325:5;7307:24;:::i;:::-;7302:3;7295:37;7285:53;;:::o;7344:112::-;7427:22;7443:5;7427:22;:::i;:::-;7422:3;7415:35;7405:51;;:::o;7462:222::-;;7593:2;7582:9;7578:18;7570:26;;7606:71;7674:1;7663:9;7659:17;7650:6;7606:71;:::i;:::-;7560:124;;;;:::o;7690:210::-;;7815:2;7804:9;7800:18;7792:26;;7828:65;7890:1;7879:9;7875:17;7866:6;7828:65;:::i;:::-;7782:118;;;;:::o;7906:313::-;;8057:2;8046:9;8042:18;8034:26;;8106:9;8100:4;8096:20;8092:1;8081:9;8077:17;8070:47;8134:78;8207:4;8198:6;8134:78;:::i;:::-;8126:86;;8024:195;;;;:::o;8225:419::-;;8429:2;8418:9;8414:18;8406:26;;8478:9;8472:4;8468:20;8464:1;8453:9;8449:17;8442:47;8506:131;8632:4;8506:131;:::i;:::-;8498:139;;8396:248;;;:::o;8650:419::-;;8854:2;8843:9;8839:18;8831:26;;8903:9;8897:4;8893:20;8889:1;8878:9;8874:17;8867:47;8931:131;9057:4;8931:131;:::i;:::-;8923:139;;8821:248;;;:::o;9075:419::-;;9279:2;9268:9;9264:18;9256:26;;9328:9;9322:4;9318:20;9314:1;9303:9;9299:17;9292:47;9356:131;9482:4;9356:131;:::i;:::-;9348:139;;9246:248;;;:::o;9500:419::-;;9704:2;9693:9;9689:18;9681:26;;9753:9;9747:4;9743:20;9739:1;9728:9;9724:17;9717:47;9781:131;9907:4;9781:131;:::i;:::-;9773:139;;9671:248;;;:::o;9925:419::-;;10129:2;10118:9;10114:18;10106:26;;10178:9;10172:4;10168:20;10164:1;10153:9;10149:17;10142:47;10206:131;10332:4;10206:131;:::i;:::-;10198:139;;10096:248;;;:::o;10350:419::-;;10554:2;10543:9;10539:18;10531:26;;10603:9;10597:4;10593:20;10589:1;10578:9;10574:17;10567:47;10631:131;10757:4;10631:131;:::i;:::-;10623:139;;10521:248;;;:::o;10775:419::-;;10979:2;10968:9;10964:18;10956:26;;11028:9;11022:4;11018:20;11014:1;11003:9;10999:17;10992:47;11056:131;11182:4;11056:131;:::i;:::-;11048:139;;10946:248;;;:::o;11200:419::-;;11404:2;11393:9;11389:18;11381:26;;11453:9;11447:4;11443:20;11439:1;11428:9;11424:17;11417:47;11481:131;11607:4;11481:131;:::i;:::-;11473:139;;11371:248;;;:::o;11625:419::-;;11829:2;11818:9;11814:18;11806:26;;11878:9;11872:4;11868:20;11864:1;11853:9;11849:17;11842:47;11906:131;12032:4;11906:131;:::i;:::-;11898:139;;11796:248;;;:::o;12050:419::-;;12254:2;12243:9;12239:18;12231:26;;12303:9;12297:4;12293:20;12289:1;12278:9;12274:17;12267:47;12331:131;12457:4;12331:131;:::i;:::-;12323:139;;12221:248;;;:::o;12475:419::-;;12679:2;12668:9;12664:18;12656:26;;12728:9;12722:4;12718:20;12714:1;12703:9;12699:17;12692:47;12756:131;12882:4;12756:131;:::i;:::-;12748:139;;12646:248;;;:::o;12900:419::-;;13104:2;13093:9;13089:18;13081:26;;13153:9;13147:4;13143:20;13139:1;13128:9;13124:17;13117:47;13181:131;13307:4;13181:131;:::i;:::-;13173:139;;13071:248;;;:::o;13325:222::-;;13456:2;13445:9;13441:18;13433:26;;13469:71;13537:1;13526:9;13522:17;13513:6;13469:71;:::i;:::-;13423:124;;;;:::o;13553:214::-;;13680:2;13669:9;13665:18;13657:26;;13693:67;13757:1;13746:9;13742:17;13733:6;13693:67;:::i;:::-;13647:120;;;;:::o;13773:99::-;;13859:5;13853:12;13843:22;;13832:40;;;:::o;13878:169::-;;13996:6;13991:3;13984:19;14036:4;14031:3;14027:14;14012:29;;13974:73;;;;:::o;14053:305::-;;14112:20;14130:1;14112:20;:::i;:::-;14107:25;;14146:20;14164:1;14146:20;:::i;:::-;14141:25;;14300:1;14232:66;14228:74;14225:1;14222:81;14219:2;;;14306:18;;:::i;:::-;14219:2;14350:1;14347;14343:9;14336:16;;14097:261;;;;:::o;14364:191::-;;14424:20;14442:1;14424:20;:::i;:::-;14419:25;;14458:20;14476:1;14458:20;:::i;:::-;14453:25;;14497:1;14494;14491:8;14488:2;;;14502:18;;:::i;:::-;14488:2;14547:1;14544;14540:9;14532:17;;14409:146;;;;:::o;14561:96::-;;14627:24;14645:5;14627:24;:::i;:::-;14616:35;;14606:51;;;:::o;14663:90::-;;14740:5;14733:13;14726:21;14715:32;;14705:48;;;:::o;14759:126::-;;14836:42;14829:5;14825:54;14814:65;;14804:81;;;:::o;14891:77::-;;14957:5;14946:16;;14936:32;;;:::o;14974:86::-;;15049:4;15042:5;15038:16;15027:27;;15017:43;;;:::o;15066:307::-;15134:1;15144:113;15158:6;15155:1;15152:13;15144:113;;;15243:1;15238:3;15234:11;15228:18;15224:1;15219:3;15215:11;15208:39;15180:2;15177:1;15173:10;15168:15;;15144:113;;;15275:6;15272:1;15269:13;15266:2;;;15355:1;15346:6;15341:3;15337:16;15330:27;15266:2;15115:258;;;;:::o;15379:320::-;;15460:1;15454:4;15450:12;15440:22;;15507:1;15501:4;15497:12;15528:18;15518:2;;15584:4;15576:6;15572:17;15562:27;;15518:2;15646;15638:6;15635:14;15615:18;15612:38;15609:2;;;15665:18;;:::i;:::-;15609:2;15430:269;;;;:::o;15705:180::-;15753:77;15750:1;15743:88;15850:4;15847:1;15840:15;15874:4;15871:1;15864:15;15891:180;15939:77;15936:1;15929:88;16036:4;16033:1;16026:15;16060:4;16057:1;16050:15;16077:102;;16169:2;16165:7;16160:2;16153:5;16149:14;16145:28;16135:38;;16125:54;;;:::o;16185:122::-;16258:24;16276:5;16258:24;:::i;:::-;16251:5;16248:35;16238:2;;16297:1;16294;16287:12;16238:2;16228:79;:::o;16313:122::-;16386:24;16404:5;16386:24;:::i;:::-;16379:5;16376:35;16366:2;;16425:1;16422;16415:12;16366:2;16356:79;:::o
Swarm Source
ipfs://142449b9fc97da4de7dc59c058a0841b05a42baa427742f679332c30b6766c7d
[ 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.