ERC-20
Overview
Max Total Supply
1,000,000,000 8BIT
Holders
66
Market
Price
-
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
84,493.827741326869132186 8BITValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
EightBitSonic
Compiler Version
v0.8.25+commit.b61c2a91
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2024-12-18 */ // ⠀⠀⠀⠀⠀⠀⠀⢀⣠⠤⠒⠒⠒⢛⣒⠒⠒⠦⢤⣀⠀⠀⠀⠀ // ⠀⣤⡀⠀⢀⡴⠚⠁⠀⠀⠀⡠⢊⠵⡈⡆⠀⠀⠀⠈⢱⠆⠀⠀ // ⡜⡷⢱⠔⠁⠀⠀⠀⠀⠀⠊⠰⠇⣀⡇⡇⢀⠀⢀⣠⠏⠀⠀⠀ // ⣇⣧⡋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠀⠇⠈⠙⠛⢤⡀⠀⠀⠀ // ⢘⡏⠀⠀⠀⠀⠀⠰⠊⢀⡠⢄⡀⠀⠀⠀⠀⠀⠀⠀⠙⢦⠀⠀ // ⢸⢰⠋⢢⠀⠀⠀⠀⡔⢁⣤⡀⠹⡀⠀⠀⠀⠀⠀⠀⠀⠀⢳⡀ // ⠈⡇⢰⡟⢳⡀⢀⠎⠀⡿⣄⣼⠀⠇⠀⠀⠀⠀⠠⡄⠀⠀⠀⣳ // ⠀⠰⡸⣽⣿⣈⣁⣀⠀⠙⠿⢃⡼⠲⡀⠀⠀⠀⠀⠹⡍⠉⠉⠁ // ⠀⠀⢵⠒⠋⠿⠗⠀⠉⠉⠉⡩⠀⢀⡇⠀⠀⠀⠀⠀⢧⠀⠀⠀ // ⠀⠀⠘⠢⣄⡀⠀⠀⠀⠀⣉⣠⠴⠋⠀⣀⣀⡀⠀⠀⡞⠀⠀⠀ // ⠀⠀⠀⠀⠀⠈⠉⠉⠉⠉⠀⠀⠀⠀⠀⠀⠀⠉⠑⠦⠃⠀⠀⠀ // // Telegram : https://t.me/BitSonicPortal // Website : https://8bitsonic.xyz/ // Twitter : https://x.com/Sonic8bit // // SPDX-License-Identifier: MIT pragma solidity ^0.8.25; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /** * @dev Interface of the ERC20 standard as defined in the EIP. */ 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); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) /** * @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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `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; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][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"); unchecked { _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"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ 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"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(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: * * - `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; _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; } _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 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 {} } abstract contract Ownable is Context { address private _owner; error OwnableUnauthorizedAccount(address account); error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } modifier onlyOwner() { _checkOwner(); _; } function owner() public view virtual returns (address) { return _owner; } function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } contract EightBitSonic is ERC20, Ownable { constructor() ERC20("SONIC 8BIT", "8BIT") Ownable(msg.sender) { _mint(msg.sender, 1_000_000_000 * 10 ** decimals()); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50336040518060400160405280600a81526020017f534f4e49432038424954000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f3842495400000000000000000000000000000000000000000000000000000000815250816003908161008d91906105f3565b50806004908161009d91906105f3565b505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036101125760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016101099190610706565b60405180910390fd5b6101218161015f60201b60201c565b5061015a3361013461022560201b60201c565b600a6101409190610890565b633b9aca0061014f91906108db565b61022e60201b60201c565b6109f8565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361029d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102949061097a565b60405180910390fd5b6102af6000838361039960201b60201c565b80600260008282546102c1919061099a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610316919061099a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161037b91906109dd565b60405180910390a36103956000838361039e60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061042457607f821691505b602082108103610437576104366103dd565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261049f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610462565b6104a98683610462565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006104f06104eb6104e6846104c1565b6104cb565b6104c1565b9050919050565b6000819050919050565b61050a836104d5565b61051e610516826104f7565b84845461046f565b825550505050565b600090565b610533610526565b61053e818484610501565b505050565b5b818110156105625761055760008261052b565b600181019050610544565b5050565b601f8211156105a7576105788161043d565b61058184610452565b81016020851015610590578190505b6105a461059c85610452565b830182610543565b50505b505050565b600082821c905092915050565b60006105ca600019846008026105ac565b1980831691505092915050565b60006105e383836105b9565b9150826002028217905092915050565b6105fc826103a3565b67ffffffffffffffff811115610615576106146103ae565b5b61061f825461040c565b61062a828285610566565b600060209050601f83116001811461065d576000841561064b578287015190505b61065585826105d7565b8655506106bd565b601f19841661066b8661043d565b60005b828110156106935784890151825560018201915060208501945060208101905061066e565b868310156106b057848901516106ac601f8916826105b9565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006106f0826106c5565b9050919050565b610700816106e5565b82525050565b600060208201905061071b60008301846106f7565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156107a75780860481111561078357610782610721565b5b60018516156107925780820291505b80810290506107a085610750565b9450610767565b94509492505050565b6000826107c0576001905061087c565b816107ce576000905061087c565b81600181146107e457600281146107ee5761081d565b600191505061087c565b60ff841115610800576107ff610721565b5b8360020a91508482111561081757610816610721565b5b5061087c565b5060208310610133831016604e8410600b84101617156108525782820a90508381111561084d5761084c610721565b5b61087c565b61085f848484600161075d565b9250905081840481111561087657610875610721565b5b81810290505b9392505050565b600060ff82169050919050565b600061089b826104c1565b91506108a683610883565b92506108d37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846107b0565b905092915050565b60006108e6826104c1565b91506108f1836104c1565b92508282026108ff816104c1565b9150828204841483151761091657610915610721565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000610964601f8361091d565b915061096f8261092e565b602082019050919050565b6000602082019050818103600083015261099381610957565b9050919050565b60006109a5826104c1565b91506109b0836104c1565b92508282019050808211156109c8576109c7610721565b5b92915050565b6109d7816104c1565b82525050565b60006020820190506109f260008301846109ce565b92915050565b61163a80610a076000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d71461024f578063a9059cbb1461027f578063dd62ed3e146102af578063f2fde38b146102df576100ea565b8063715018a6146102095780638da5cb5b1461021357806395d89b4114610231576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806370a08231146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fb565b6040516101049190610ec7565b60405180910390f35b61012760048036038101906101229190610f82565b61038d565b6040516101349190610fdd565b60405180910390f35b6101456103ab565b6040516101529190611007565b60405180910390f35b61017560048036038101906101709190611022565b6103b5565b6040516101829190610fdd565b60405180910390f35b6101936104ad565b6040516101a09190611091565b60405180910390f35b6101c360048036038101906101be9190610f82565b6104b6565b6040516101d09190610fdd565b60405180910390f35b6101f360048036038101906101ee91906110ac565b610562565b6040516102009190611007565b60405180910390f35b6102116105aa565b005b61021b6105be565b60405161022891906110e8565b60405180910390f35b6102396105e8565b6040516102469190610ec7565b60405180910390f35b61026960048036038101906102649190610f82565b61067a565b6040516102769190610fdd565b60405180910390f35b61029960048036038101906102949190610f82565b610765565b6040516102a69190610fdd565b60405180910390f35b6102c960048036038101906102c49190611103565b610783565b6040516102d69190611007565b60405180910390f35b6102f960048036038101906102f491906110ac565b61080a565b005b60606003805461030a90611172565b80601f016020809104026020016040519081016040528092919081815260200182805461033690611172565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b60006103a161039a610890565b8484610898565b6001905092915050565b6000600254905090565b60006103c2848484610a61565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061040d610890565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561048d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161048490611215565b60405180910390fd5b6104a185610499610890565b858403610898565b60019150509392505050565b60006012905090565b60006105586104c3610890565b8484600160006104d1610890565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105539190611264565b610898565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105b2610ce0565b6105bc6000610d67565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105f790611172565b80601f016020809104026020016040519081016040528092919081815260200182805461062390611172565b80156106705780601f1061064557610100808354040283529160200191610670565b820191906000526020600020905b81548152906001019060200180831161065357829003601f168201915b5050505050905090565b60008060016000610689610890565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073d9061130a565b60405180910390fd5b61075a610751610890565b85858403610898565b600191505092915050565b6000610779610772610890565b8484610a61565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610812610ce0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108845760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161087b91906110e8565b60405180910390fd5b61088d81610d67565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fe9061139c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096d9061142e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a549190611007565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac7906114c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3690611552565b60405180910390fd5b610b4a838383610e2d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc7906115e4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c639190611264565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cc79190611007565b60405180910390a3610cda848484610e32565b50505050565b610ce8610890565b73ffffffffffffffffffffffffffffffffffffffff16610d066105be565b73ffffffffffffffffffffffffffffffffffffffff1614610d6557610d29610890565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610d5c91906110e8565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610e71578082015181840152602081019050610e56565b60008484015250505050565b6000601f19601f8301169050919050565b6000610e9982610e37565b610ea38185610e42565b9350610eb3818560208601610e53565b610ebc81610e7d565b840191505092915050565b60006020820190508181036000830152610ee18184610e8e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610f1982610eee565b9050919050565b610f2981610f0e565b8114610f3457600080fd5b50565b600081359050610f4681610f20565b92915050565b6000819050919050565b610f5f81610f4c565b8114610f6a57600080fd5b50565b600081359050610f7c81610f56565b92915050565b60008060408385031215610f9957610f98610ee9565b5b6000610fa785828601610f37565b9250506020610fb885828601610f6d565b9150509250929050565b60008115159050919050565b610fd781610fc2565b82525050565b6000602082019050610ff26000830184610fce565b92915050565b61100181610f4c565b82525050565b600060208201905061101c6000830184610ff8565b92915050565b60008060006060848603121561103b5761103a610ee9565b5b600061104986828701610f37565b935050602061105a86828701610f37565b925050604061106b86828701610f6d565b9150509250925092565b600060ff82169050919050565b61108b81611075565b82525050565b60006020820190506110a66000830184611082565b92915050565b6000602082840312156110c2576110c1610ee9565b5b60006110d084828501610f37565b91505092915050565b6110e281610f0e565b82525050565b60006020820190506110fd60008301846110d9565b92915050565b6000806040838503121561111a57611119610ee9565b5b600061112885828601610f37565b925050602061113985828601610f37565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061118a57607f821691505b60208210810361119d5761119c611143565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006111ff602883610e42565b915061120a826111a3565b604082019050919050565b6000602082019050818103600083015261122e816111f2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061126f82610f4c565b915061127a83610f4c565b925082820190508082111561129257611291611235565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006112f4602583610e42565b91506112ff82611298565b604082019050919050565b60006020820190508181036000830152611323816112e7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611386602483610e42565b91506113918261132a565b604082019050919050565b600060208201905081810360008301526113b581611379565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611418602283610e42565b9150611423826113bc565b604082019050919050565b600060208201905081810360008301526114478161140b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006114aa602583610e42565b91506114b58261144e565b604082019050919050565b600060208201905081810360008301526114d98161149d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061153c602383610e42565b9150611547826114e0565b604082019050919050565b6000602082019050818103600083015261156b8161152f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006115ce602683610e42565b91506115d982611572565b604082019050919050565b600060208201905081810360008301526115fd816115c1565b905091905056fea264697066735822122080c4ff905e52ff2eeebc37adb4e82f7f868f3109340fb79a3999e15c52231f7364736f6c63430008190033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d71461024f578063a9059cbb1461027f578063dd62ed3e146102af578063f2fde38b146102df576100ea565b8063715018a6146102095780638da5cb5b1461021357806395d89b4114610231576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806370a08231146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fb565b6040516101049190610ec7565b60405180910390f35b61012760048036038101906101229190610f82565b61038d565b6040516101349190610fdd565b60405180910390f35b6101456103ab565b6040516101529190611007565b60405180910390f35b61017560048036038101906101709190611022565b6103b5565b6040516101829190610fdd565b60405180910390f35b6101936104ad565b6040516101a09190611091565b60405180910390f35b6101c360048036038101906101be9190610f82565b6104b6565b6040516101d09190610fdd565b60405180910390f35b6101f360048036038101906101ee91906110ac565b610562565b6040516102009190611007565b60405180910390f35b6102116105aa565b005b61021b6105be565b60405161022891906110e8565b60405180910390f35b6102396105e8565b6040516102469190610ec7565b60405180910390f35b61026960048036038101906102649190610f82565b61067a565b6040516102769190610fdd565b60405180910390f35b61029960048036038101906102949190610f82565b610765565b6040516102a69190610fdd565b60405180910390f35b6102c960048036038101906102c49190611103565b610783565b6040516102d69190611007565b60405180910390f35b6102f960048036038101906102f491906110ac565b61080a565b005b60606003805461030a90611172565b80601f016020809104026020016040519081016040528092919081815260200182805461033690611172565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b60006103a161039a610890565b8484610898565b6001905092915050565b6000600254905090565b60006103c2848484610a61565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061040d610890565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561048d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161048490611215565b60405180910390fd5b6104a185610499610890565b858403610898565b60019150509392505050565b60006012905090565b60006105586104c3610890565b8484600160006104d1610890565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105539190611264565b610898565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105b2610ce0565b6105bc6000610d67565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105f790611172565b80601f016020809104026020016040519081016040528092919081815260200182805461062390611172565b80156106705780601f1061064557610100808354040283529160200191610670565b820191906000526020600020905b81548152906001019060200180831161065357829003601f168201915b5050505050905090565b60008060016000610689610890565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073d9061130a565b60405180910390fd5b61075a610751610890565b85858403610898565b600191505092915050565b6000610779610772610890565b8484610a61565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610812610ce0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108845760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161087b91906110e8565b60405180910390fd5b61088d81610d67565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fe9061139c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096d9061142e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a549190611007565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac7906114c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3690611552565b60405180910390fd5b610b4a838383610e2d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc7906115e4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c639190611264565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cc79190611007565b60405180910390a3610cda848484610e32565b50505050565b610ce8610890565b73ffffffffffffffffffffffffffffffffffffffff16610d066105be565b73ffffffffffffffffffffffffffffffffffffffff1614610d6557610d29610890565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610d5c91906110e8565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610e71578082015181840152602081019050610e56565b60008484015250505050565b6000601f19601f8301169050919050565b6000610e9982610e37565b610ea38185610e42565b9350610eb3818560208601610e53565b610ebc81610e7d565b840191505092915050565b60006020820190508181036000830152610ee18184610e8e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610f1982610eee565b9050919050565b610f2981610f0e565b8114610f3457600080fd5b50565b600081359050610f4681610f20565b92915050565b6000819050919050565b610f5f81610f4c565b8114610f6a57600080fd5b50565b600081359050610f7c81610f56565b92915050565b60008060408385031215610f9957610f98610ee9565b5b6000610fa785828601610f37565b9250506020610fb885828601610f6d565b9150509250929050565b60008115159050919050565b610fd781610fc2565b82525050565b6000602082019050610ff26000830184610fce565b92915050565b61100181610f4c565b82525050565b600060208201905061101c6000830184610ff8565b92915050565b60008060006060848603121561103b5761103a610ee9565b5b600061104986828701610f37565b935050602061105a86828701610f37565b925050604061106b86828701610f6d565b9150509250925092565b600060ff82169050919050565b61108b81611075565b82525050565b60006020820190506110a66000830184611082565b92915050565b6000602082840312156110c2576110c1610ee9565b5b60006110d084828501610f37565b91505092915050565b6110e281610f0e565b82525050565b60006020820190506110fd60008301846110d9565b92915050565b6000806040838503121561111a57611119610ee9565b5b600061112885828601610f37565b925050602061113985828601610f37565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061118a57607f821691505b60208210810361119d5761119c611143565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006111ff602883610e42565b915061120a826111a3565b604082019050919050565b6000602082019050818103600083015261122e816111f2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061126f82610f4c565b915061127a83610f4c565b925082820190508082111561129257611291611235565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006112f4602583610e42565b91506112ff82611298565b604082019050919050565b60006020820190508181036000830152611323816112e7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611386602483610e42565b91506113918261132a565b604082019050919050565b600060208201905081810360008301526113b581611379565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611418602283610e42565b9150611423826113bc565b604082019050919050565b600060208201905081810360008301526114478161140b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006114aa602583610e42565b91506114b58261144e565b604082019050919050565b600060208201905081810360008301526114d98161149d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061153c602383610e42565b9150611547826114e0565b604082019050919050565b6000602082019050818103600083015261156b8161152f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006115ce602683610e42565b91506115d982611572565b604082019050919050565b600060208201905081810360008301526115fd816115c1565b905091905056fea264697066735822122080c4ff905e52ff2eeebc37adb4e82f7f868f3109340fb79a3999e15c52231f7364736f6c63430008190033
Deployed Bytecode Sourcemap
18830:184:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7516:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9683:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8636:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10334:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8478:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11235:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8807:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18291:103;;;:::i;:::-;;18022:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7735:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11953:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9147:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9385:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18402:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7516:100;7570:13;7603:5;7596:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7516:100;:::o;9683:169::-;9766:4;9783:39;9792:12;:10;:12::i;:::-;9806:7;9815:6;9783:8;:39::i;:::-;9840:4;9833:11;;9683:169;;;;:::o;8636:108::-;8697:7;8724:12;;8717:19;;8636:108;:::o;10334:492::-;10474:4;10491:36;10501:6;10509:9;10520:6;10491:9;:36::i;:::-;10540:24;10567:11;:19;10579:6;10567:19;;;;;;;;;;;;;;;:33;10587:12;:10;:12::i;:::-;10567:33;;;;;;;;;;;;;;;;10540:60;;10639:6;10619:16;:26;;10611:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;10726:57;10735:6;10743:12;:10;:12::i;:::-;10776:6;10757:16;:25;10726:8;:57::i;:::-;10814:4;10807:11;;;10334:492;;;;;:::o;8478:93::-;8536:5;8561:2;8554:9;;8478:93;:::o;11235:215::-;11323:4;11340:80;11349:12;:10;:12::i;:::-;11363:7;11409:10;11372:11;:25;11384:12;:10;:12::i;:::-;11372:25;;;;;;;;;;;;;;;:34;11398:7;11372:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;11340:8;:80::i;:::-;11438:4;11431:11;;11235:215;;;;:::o;8807:127::-;8881:7;8908:9;:18;8918:7;8908:18;;;;;;;;;;;;;;;;8901:25;;8807:127;;;:::o;18291:103::-;17981:13;:11;:13::i;:::-;18356:30:::1;18383:1;18356:18;:30::i;:::-;18291:103::o:0;18022:87::-;18068:7;18095:6;;;;;;;;;;;18088:13;;18022:87;:::o;7735:104::-;7791:13;7824:7;7817:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7735:104;:::o;11953:413::-;12046:4;12063:24;12090:11;:25;12102:12;:10;:12::i;:::-;12090:25;;;;;;;;;;;;;;;:34;12116:7;12090:34;;;;;;;;;;;;;;;;12063:61;;12163:15;12143:16;:35;;12135:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;12256:67;12265:12;:10;:12::i;:::-;12279:7;12307:15;12288:16;:34;12256:8;:67::i;:::-;12354:4;12347:11;;;11953:413;;;;:::o;9147:175::-;9233:4;9250:42;9260:12;:10;:12::i;:::-;9274:9;9285:6;9250:9;:42::i;:::-;9310:4;9303:11;;9147:175;;;;:::o;9385:151::-;9474:7;9501:11;:18;9513:5;9501:18;;;;;;;;;;;;;;;:27;9520:7;9501:27;;;;;;;;;;;;;;;;9494:34;;9385:151;;;;:::o;18402:220::-;17981:13;:11;:13::i;:::-;18507:1:::1;18487:22;;:8;:22;;::::0;18483:93:::1;;18561:1;18533:31;;;;;;;;;;;:::i;:::-;;;;;;;;18483:93;18586:28;18605:8;18586:18;:28::i;:::-;18402:220:::0;:::o;1623:98::-;1676:7;1703:10;1696:17;;1623:98;:::o;15637:380::-;15790:1;15773:19;;:5;:19;;;15765:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15871:1;15852:21;;:7;:21;;;15844:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15955:6;15925:11;:18;15937:5;15925:18;;;;;;;;;;;;;;;:27;15944:7;15925:27;;;;;;;;;;;;;;;:36;;;;15993:7;15977:32;;15986:5;15977:32;;;16002:6;15977:32;;;;;;:::i;:::-;;;;;;;;15637:380;;;:::o;12856:733::-;13014:1;12996:20;;:6;:20;;;12988:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13098:1;13077:23;;:9;:23;;;13069:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13153:47;13174:6;13182:9;13193:6;13153:20;:47::i;:::-;13213:21;13237:9;:17;13247:6;13237:17;;;;;;;;;;;;;;;;13213:41;;13290:6;13273:13;:23;;13265:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;13411:6;13395:13;:22;13375:9;:17;13385:6;13375:17;;;;;;;;;;;;;;;:42;;;;13463:6;13439:9;:20;13449:9;13439:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;13504:9;13487:35;;13496:6;13487:35;;;13515:6;13487:35;;;;;;:::i;:::-;;;;;;;;13535:46;13555:6;13563:9;13574:6;13535:19;:46::i;:::-;12977:612;12856:733;;;:::o;18117:166::-;18188:12;:10;:12::i;:::-;18177:23;;:7;:5;:7::i;:::-;:23;;;18173:103;;18251:12;:10;:12::i;:::-;18224:40;;;;;;;;;;;:::i;:::-;;;;;;;;18173:103;18117:166::o;18630:191::-;18704:16;18723:6;;;;;;;;;;;18704:25;;18749:8;18740:6;;:17;;;;;;;;;;;;;;;;;;18804:8;18773:40;;18794:8;18773:40;;;;;;;;;;;;18693:128;18630:191;:::o;16617:125::-;;;;:::o;17346:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:248::-;369:1;379:113;393:6;390:1;387:13;379:113;;;478:1;473:3;469:11;463:18;459:1;454:3;450:11;443:39;415:2;412:1;408:10;403:15;;379:113;;;526:1;517:6;512:3;508:16;501:27;349:186;287:248;;;:::o;541:102::-;582:6;633:2;629:7;624:2;617:5;613:14;609:28;599:38;;541:102;;;:::o;649:377::-;737:3;765:39;798:5;765:39;:::i;:::-;820:71;884:6;879:3;820:71;:::i;:::-;813:78;;900:65;958:6;953:3;946:4;939:5;935:16;900:65;:::i;:::-;990:29;1012:6;990:29;:::i;:::-;985:3;981:39;974:46;;741:285;649:377;;;;:::o;1032:313::-;1145:4;1183:2;1172:9;1168:18;1160:26;;1232:9;1226:4;1222:20;1218:1;1207:9;1203:17;1196:47;1260:78;1333:4;1324:6;1260:78;:::i;:::-;1252:86;;1032:313;;;;:::o;1432:117::-;1541:1;1538;1531:12;1678:126;1715:7;1755:42;1748:5;1744:54;1733:65;;1678:126;;;:::o;1810:96::-;1847:7;1876:24;1894:5;1876:24;:::i;:::-;1865:35;;1810:96;;;:::o;1912:122::-;1985:24;2003:5;1985:24;:::i;:::-;1978:5;1975:35;1965:63;;2024:1;2021;2014:12;1965:63;1912:122;:::o;2040:139::-;2086:5;2124:6;2111:20;2102:29;;2140:33;2167:5;2140:33;:::i;:::-;2040:139;;;;:::o;2185:77::-;2222:7;2251:5;2240:16;;2185:77;;;:::o;2268:122::-;2341:24;2359:5;2341:24;:::i;:::-;2334:5;2331:35;2321:63;;2380:1;2377;2370:12;2321:63;2268:122;:::o;2396:139::-;2442:5;2480:6;2467:20;2458:29;;2496:33;2523:5;2496:33;:::i;:::-;2396:139;;;;:::o;2541:474::-;2609:6;2617;2666:2;2654:9;2645:7;2641:23;2637:32;2634:119;;;2672:79;;:::i;:::-;2634:119;2792:1;2817:53;2862:7;2853:6;2842:9;2838:22;2817:53;:::i;:::-;2807:63;;2763:117;2919:2;2945:53;2990:7;2981:6;2970:9;2966:22;2945:53;:::i;:::-;2935:63;;2890:118;2541:474;;;;;:::o;3021:90::-;3055:7;3098:5;3091:13;3084:21;3073:32;;3021:90;;;:::o;3117:109::-;3198:21;3213:5;3198:21;:::i;:::-;3193:3;3186:34;3117:109;;:::o;3232:210::-;3319:4;3357:2;3346:9;3342:18;3334:26;;3370:65;3432:1;3421:9;3417:17;3408:6;3370:65;:::i;:::-;3232:210;;;;:::o;3448:118::-;3535:24;3553:5;3535:24;:::i;:::-;3530:3;3523:37;3448:118;;:::o;3572:222::-;3665:4;3703:2;3692:9;3688:18;3680:26;;3716:71;3784:1;3773:9;3769:17;3760:6;3716:71;:::i;:::-;3572:222;;;;:::o;3800:619::-;3877:6;3885;3893;3942:2;3930:9;3921:7;3917:23;3913:32;3910:119;;;3948:79;;:::i;:::-;3910:119;4068:1;4093:53;4138:7;4129:6;4118:9;4114:22;4093:53;:::i;:::-;4083:63;;4039:117;4195:2;4221:53;4266:7;4257:6;4246:9;4242:22;4221:53;:::i;:::-;4211:63;;4166:118;4323:2;4349:53;4394:7;4385:6;4374:9;4370:22;4349:53;:::i;:::-;4339:63;;4294:118;3800:619;;;;;:::o;4425:86::-;4460:7;4500:4;4493:5;4489:16;4478:27;;4425:86;;;:::o;4517:112::-;4600:22;4616:5;4600:22;:::i;:::-;4595:3;4588:35;4517:112;;:::o;4635:214::-;4724:4;4762:2;4751:9;4747:18;4739:26;;4775:67;4839:1;4828:9;4824:17;4815:6;4775:67;:::i;:::-;4635:214;;;;:::o;4855:329::-;4914:6;4963:2;4951:9;4942:7;4938:23;4934:32;4931:119;;;4969:79;;:::i;:::-;4931:119;5089:1;5114:53;5159:7;5150:6;5139:9;5135:22;5114:53;:::i;:::-;5104:63;;5060:117;4855:329;;;;:::o;5190:118::-;5277:24;5295:5;5277:24;:::i;:::-;5272:3;5265:37;5190:118;;:::o;5314:222::-;5407:4;5445:2;5434:9;5430:18;5422:26;;5458:71;5526:1;5515:9;5511:17;5502:6;5458:71;:::i;:::-;5314:222;;;;:::o;5542:474::-;5610:6;5618;5667:2;5655:9;5646:7;5642:23;5638:32;5635:119;;;5673:79;;:::i;:::-;5635:119;5793:1;5818:53;5863:7;5854:6;5843:9;5839:22;5818:53;:::i;:::-;5808:63;;5764:117;5920:2;5946:53;5991:7;5982:6;5971:9;5967:22;5946:53;:::i;:::-;5936:63;;5891:118;5542:474;;;;;:::o;6022:180::-;6070:77;6067:1;6060:88;6167:4;6164:1;6157:15;6191:4;6188:1;6181:15;6208:320;6252:6;6289:1;6283:4;6279:12;6269:22;;6336:1;6330:4;6326:12;6357:18;6347:81;;6413:4;6405:6;6401:17;6391:27;;6347:81;6475:2;6467:6;6464:14;6444:18;6441:38;6438:84;;6494:18;;:::i;:::-;6438:84;6259:269;6208:320;;;:::o;6534:227::-;6674:34;6670:1;6662:6;6658:14;6651:58;6743:10;6738:2;6730:6;6726:15;6719:35;6534:227;:::o;6767:366::-;6909:3;6930:67;6994:2;6989:3;6930:67;:::i;:::-;6923:74;;7006:93;7095:3;7006:93;:::i;:::-;7124:2;7119:3;7115:12;7108:19;;6767:366;;;:::o;7139:419::-;7305:4;7343:2;7332:9;7328:18;7320:26;;7392:9;7386:4;7382:20;7378:1;7367:9;7363:17;7356:47;7420:131;7546:4;7420:131;:::i;:::-;7412:139;;7139:419;;;:::o;7564:180::-;7612:77;7609:1;7602:88;7709:4;7706:1;7699:15;7733:4;7730:1;7723:15;7750:191;7790:3;7809:20;7827:1;7809:20;:::i;:::-;7804:25;;7843:20;7861:1;7843:20;:::i;:::-;7838:25;;7886:1;7883;7879:9;7872:16;;7907:3;7904:1;7901:10;7898:36;;;7914:18;;:::i;:::-;7898:36;7750:191;;;;:::o;7947:224::-;8087:34;8083:1;8075:6;8071:14;8064:58;8156:7;8151:2;8143:6;8139:15;8132:32;7947:224;:::o;8177:366::-;8319:3;8340:67;8404:2;8399:3;8340:67;:::i;:::-;8333:74;;8416:93;8505:3;8416:93;:::i;:::-;8534:2;8529:3;8525:12;8518:19;;8177:366;;;:::o;8549:419::-;8715:4;8753:2;8742:9;8738:18;8730:26;;8802:9;8796:4;8792:20;8788:1;8777:9;8773:17;8766:47;8830:131;8956:4;8830:131;:::i;:::-;8822:139;;8549:419;;;:::o;8974:223::-;9114:34;9110:1;9102:6;9098:14;9091:58;9183:6;9178:2;9170:6;9166:15;9159:31;8974:223;:::o;9203:366::-;9345:3;9366:67;9430:2;9425:3;9366:67;:::i;:::-;9359:74;;9442:93;9531:3;9442:93;:::i;:::-;9560:2;9555:3;9551:12;9544:19;;9203:366;;;:::o;9575:419::-;9741:4;9779:2;9768:9;9764:18;9756:26;;9828:9;9822:4;9818:20;9814:1;9803:9;9799:17;9792:47;9856:131;9982:4;9856:131;:::i;:::-;9848:139;;9575:419;;;:::o;10000:221::-;10140:34;10136:1;10128:6;10124:14;10117:58;10209:4;10204:2;10196:6;10192:15;10185:29;10000:221;:::o;10227:366::-;10369:3;10390:67;10454:2;10449:3;10390:67;:::i;:::-;10383:74;;10466:93;10555:3;10466:93;:::i;:::-;10584:2;10579:3;10575:12;10568:19;;10227:366;;;:::o;10599:419::-;10765:4;10803:2;10792:9;10788:18;10780:26;;10852:9;10846:4;10842:20;10838:1;10827:9;10823:17;10816:47;10880:131;11006:4;10880:131;:::i;:::-;10872:139;;10599:419;;;:::o;11024:224::-;11164:34;11160:1;11152:6;11148:14;11141:58;11233:7;11228:2;11220:6;11216:15;11209:32;11024:224;:::o;11254:366::-;11396:3;11417:67;11481:2;11476:3;11417:67;:::i;:::-;11410:74;;11493:93;11582:3;11493:93;:::i;:::-;11611:2;11606:3;11602:12;11595:19;;11254:366;;;:::o;11626:419::-;11792:4;11830:2;11819:9;11815:18;11807:26;;11879:9;11873:4;11869:20;11865:1;11854:9;11850:17;11843:47;11907:131;12033:4;11907:131;:::i;:::-;11899:139;;11626:419;;;:::o;12051:222::-;12191:34;12187:1;12179:6;12175:14;12168:58;12260:5;12255:2;12247:6;12243:15;12236:30;12051:222;:::o;12279:366::-;12421:3;12442:67;12506:2;12501:3;12442:67;:::i;:::-;12435:74;;12518:93;12607:3;12518:93;:::i;:::-;12636:2;12631:3;12627:12;12620:19;;12279:366;;;:::o;12651:419::-;12817:4;12855:2;12844:9;12840:18;12832:26;;12904:9;12898:4;12894:20;12890:1;12879:9;12875:17;12868:47;12932:131;13058:4;12932:131;:::i;:::-;12924:139;;12651:419;;;:::o;13076:225::-;13216:34;13212:1;13204:6;13200:14;13193:58;13285:8;13280:2;13272:6;13268:15;13261:33;13076:225;:::o;13307:366::-;13449:3;13470:67;13534:2;13529:3;13470:67;:::i;:::-;13463:74;;13546:93;13635:3;13546:93;:::i;:::-;13664:2;13659:3;13655:12;13648:19;;13307:366;;;:::o;13679:419::-;13845:4;13883:2;13872:9;13868:18;13860:26;;13932:9;13926:4;13922:20;13918:1;13907:9;13903:17;13896:47;13960:131;14086:4;13960:131;:::i;:::-;13952:139;;13679:419;;;:::o
Swarm Source
ipfs://80c4ff905e52ff2eeebc37adb4e82f7f868f3109340fb79a3999e15c52231f73
[ 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.