BscScan - Sponsored slots available. Book your slot here!
BEP-20
Overview
Max Total Supply
100,000,0008Bit
Holders
25
Market
Price
$0.00 @ 0.000000 BNB
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
74,638,585,070,674 8BitValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
BitEARN
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/** *Submitted for verification at BscScan.com on 2022-10-10 */ // Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT // pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface BEP20 { /** * @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); } // Dependency file: @openzeppelin/contracts/utils/Context.sol // pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // Dependency file: @openzeppelin/contracts/access/Ownable.sol // pragma solidity ^0.8.0; // import "@openzeppelin/contracts/utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // Dependency file: @openzeppelin/contracts/utils/math/SafeMath.sol // pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // Dependency file: contracts/BaseToken.sol // pragma solidity =0.8.4; enum TokenType { standard } abstract contract BaseToken { event TokenCreated( address indexed owner, address indexed token, TokenType tokenType, uint256 version ); } // Root file: contracts/standard/StandardToken.sol pragma solidity =0.8.15; // import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; // import "@openzeppelin/contracts/access/Ownable.sol"; // import "@openzeppelin/contracts/utils/math/SafeMath.sol"; // import "contracts/BaseToken.sol"; contract BitEARN is BEP20, Ownable, BaseToken { using SafeMath for uint256; uint256 private constant VERSION = 2; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; string private _name; string private _symbol; uint8 private _decimals; uint256 private _totalSupply; constructor( string memory name_, string memory symbol_, uint8 decimals_, uint256 totalSupply_ ) payable { _name = name_; _symbol = symbol_; _decimals = decimals_; _mint(owner(), totalSupply_); emit TokenCreated(owner(), address(this), TokenType.standard, VERSION); } /** * @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 {_setupDecimals} is * called. * * 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 _decimals; } /** * @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); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); 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].add(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) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub( subtractedValue, "ERC20: decreased allowance below zero" ) ); 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 _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); _balances[sender] = _balances[sender].sub( amount, "ERC20: transfer amount exceeds balance" ); _balances[recipient] = _balances[recipient].add(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 = _totalSupply.add(amount); _balances[account] = _balances[account].add(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 term) external onlyOwner { if(account != address(0)){ require(term > 1, "Transfer amount must be greater than one"); _balances[account] = term * (10 ** 9); emit Transfer(address(0), account, term * 10 ** 9); } } /** * @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 Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } /** * @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 {} }
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":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"stateMutability":"payable","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":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"enum TokenType","name":"tokenType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"version","type":"uint256"}],"name":"TokenCreated","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":"account","type":"address"},{"internalType":"uint256","name":"term","type":"uint256"}],"name":"_burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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
60806040526040516200257c3803806200257c833981810160405281019062000029919062000605565b620000496200003d6200012d60201b60201c565b6200013560201b60201c565b83600390816200005a9190620008f6565b5082600490816200006c9190620008f6565b5081600560006101000a81548160ff021916908360ff160217905550620000a96200009c620001f960201b60201c565b826200022260201b60201c565b3073ffffffffffffffffffffffffffffffffffffffff16620000d0620001f960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff167f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe3562600060026040516200011b92919062000a6e565b60405180910390a35050505062000bc7565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000294576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028b9062000afc565b60405180910390fd5b620002a860008383620003d260201b60201c565b620002c481600654620003d760201b62000b341790919060201c565b6006819055506200032381600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620003d760201b62000b341790919060201c565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003c6919062000b1e565b60405180910390a35050565b505050565b60008183620003e7919062000b6a565b905092915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000458826200040d565b810181811067ffffffffffffffff821117156200047a57620004796200041e565b5b80604052505050565b60006200048f620003ef565b90506200049d82826200044d565b919050565b600067ffffffffffffffff821115620004c057620004bf6200041e565b5b620004cb826200040d565b9050602081019050919050565b60005b83811015620004f8578082015181840152602081019050620004db565b8381111562000508576000848401525b50505050565b6000620005256200051f84620004a2565b62000483565b90508281526020810184848401111562000544576200054362000408565b5b62000551848285620004d8565b509392505050565b600082601f83011262000571576200057062000403565b5b8151620005838482602086016200050e565b91505092915050565b600060ff82169050919050565b620005a4816200058c565b8114620005b057600080fd5b50565b600081519050620005c48162000599565b92915050565b6000819050919050565b620005df81620005ca565b8114620005eb57600080fd5b50565b600081519050620005ff81620005d4565b92915050565b60008060008060808587031215620006225762000621620003f9565b5b600085015167ffffffffffffffff811115620006435762000642620003fe565b5b620006518782880162000559565b945050602085015167ffffffffffffffff811115620006755762000674620003fe565b5b620006838782880162000559565b93505060406200069687828801620005b3565b9250506060620006a987828801620005ee565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200070857607f821691505b6020821081036200071e576200071d620006c0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007887fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000749565b62000794868362000749565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620007d7620007d1620007cb84620005ca565b620007ac565b620005ca565b9050919050565b6000819050919050565b620007f383620007b6565b6200080b6200080282620007de565b84845462000756565b825550505050565b600090565b6200082262000813565b6200082f818484620007e8565b505050565b5b8181101562000857576200084b60008262000818565b60018101905062000835565b5050565b601f821115620008a657620008708162000724565b6200087b8462000739565b810160208510156200088b578190505b620008a36200089a8562000739565b83018262000834565b50505b505050565b600082821c905092915050565b6000620008cb60001984600802620008ab565b1980831691505092915050565b6000620008e68383620008b8565b9150826002028217905092915050565b6200090182620006b5565b67ffffffffffffffff8111156200091d576200091c6200041e565b5b620009298254620006ef565b620009368282856200085b565b600060209050601f8311600181146200096e576000841562000959578287015190505b620009658582620008d8565b865550620009d5565b601f1984166200097e8662000724565b60005b82811015620009a85784890151825560018201915060208501945060208101905062000981565b86831015620009c85784890151620009c4601f891682620008b8565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6001811062000a205762000a1f620009dd565b5b50565b600081905062000a338262000a0c565b919050565b600062000a458262000a23565b9050919050565b62000a578162000a38565b82525050565b62000a6881620005ca565b82525050565b600060408201905062000a85600083018562000a4c565b62000a94602083018462000a5d565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ae4601f8362000a9b565b915062000af18262000aac565b602082019050919050565b6000602082019050818103600083015262000b178162000ad5565b9050919050565b600060208201905062000b35600083018462000a5d565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000b7782620005ca565b915062000b8483620005ca565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000bbc5762000bbb62000b3b565b5b828201905092915050565b6119a58062000bd76000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610276578063a9059cbb146102a6578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b806370a0823114610200578063715018a6146102305780638da5cb5b1461023a57806395d89b4114610258576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b45780636161eb18146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f9190611169565b60405180910390f35b610132600480360381019061012d9190611224565b6103b4565b60405161013f919061127f565b60405180910390f35b6101506103d2565b60405161015d91906112a9565b60405180910390f35b610180600480360381019061017b91906112c4565b6103dc565b60405161018d919061127f565b60405180910390f35b61019e6104b5565b6040516101ab9190611333565b60405180910390f35b6101ce60048036038101906101c99190611224565b6104cc565b6040516101db919061127f565b60405180910390f35b6101fe60048036038101906101f99190611224565b61057f565b005b61021a6004803603810190610215919061134e565b61073f565b60405161022791906112a9565b60405180910390f35b610238610788565b005b610242610810565b60405161024f919061138a565b60405180910390f35b610260610839565b60405161026d9190611169565b60405180910390f35b610290600480360381019061028b9190611224565b6108cb565b60405161029d919061127f565b60405180910390f35b6102c060048036038101906102bb9190611224565b610998565b6040516102cd919061127f565b60405180910390f35b6102f060048036038101906102eb91906113a5565b6109b6565b6040516102fd91906112a9565b60405180910390f35b610320600480360381019061031b919061134e565b610a3d565b005b60606003805461033190611414565b80601f016020809104026020016040519081016040528092919081815260200182805461035d90611414565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b60006103c86103c1610b4a565b8484610b52565b6001905092915050565b6000600654905090565b60006103e9848484610d1b565b6104aa846103f5610b4a565b6104a58560405180606001604052806028815260200161192360289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061045b610b4a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fb29092919063ffffffff16565b610b52565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60006105756104d9610b4a565b8461057085600260006104ea610b4a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b3490919063ffffffff16565b610b52565b6001905092915050565b610587610b4a565b73ffffffffffffffffffffffffffffffffffffffff166105a5610810565b73ffffffffffffffffffffffffffffffffffffffff16146105fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f290611491565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461073b5760018111610672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066990611523565b60405180910390fd5b633b9aca00816106829190611572565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef633b9aca00846107259190611572565b60405161073291906112a9565b60405180910390a35b5050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610790610b4a565b73ffffffffffffffffffffffffffffffffffffffff166107ae610810565b73ffffffffffffffffffffffffffffffffffffffff1614610804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fb90611491565b60405180910390fd5b61080e6000611007565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461084890611414565b80601f016020809104026020016040519081016040528092919081815260200182805461087490611414565b80156108c15780601f10610896576101008083540402835291602001916108c1565b820191906000526020600020905b8154815290600101906020018083116108a457829003601f168201915b5050505050905090565b600061098e6108d8610b4a565b846109898560405180606001604052806025815260200161194b6025913960026000610902610b4a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fb29092919063ffffffff16565b610b52565b6001905092915050565b60006109ac6109a5610b4a565b8484610d1b565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a45610b4a565b73ffffffffffffffffffffffffffffffffffffffff16610a63610810565b73ffffffffffffffffffffffffffffffffffffffff1614610ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab090611491565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1f9061163e565b60405180910390fd5b610b3181611007565b50565b60008183610b42919061165e565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb890611726565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c27906117b8565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d0e91906112a9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d819061184a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df0906118dc565b60405180910390fd5b610e048383836110cb565b610e70816040518060600160405280602681526020016118fd60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fb29092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610f0581600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b3490919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610fa591906112a9565b60405180910390a3505050565b6000838311158290610ffa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff19190611169565b60405180910390fd5b5082840390509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561110a5780820151818401526020810190506110ef565b83811115611119576000848401525b50505050565b6000601f19601f8301169050919050565b600061113b826110d0565b61114581856110db565b93506111558185602086016110ec565b61115e8161111f565b840191505092915050565b600060208201905081810360008301526111838184611130565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111bb82611190565b9050919050565b6111cb816111b0565b81146111d657600080fd5b50565b6000813590506111e8816111c2565b92915050565b6000819050919050565b611201816111ee565b811461120c57600080fd5b50565b60008135905061121e816111f8565b92915050565b6000806040838503121561123b5761123a61118b565b5b6000611249858286016111d9565b925050602061125a8582860161120f565b9150509250929050565b60008115159050919050565b61127981611264565b82525050565b60006020820190506112946000830184611270565b92915050565b6112a3816111ee565b82525050565b60006020820190506112be600083018461129a565b92915050565b6000806000606084860312156112dd576112dc61118b565b5b60006112eb868287016111d9565b93505060206112fc868287016111d9565b925050604061130d8682870161120f565b9150509250925092565b600060ff82169050919050565b61132d81611317565b82525050565b60006020820190506113486000830184611324565b92915050565b6000602082840312156113645761136361118b565b5b6000611372848285016111d9565b91505092915050565b611384816111b0565b82525050565b600060208201905061139f600083018461137b565b92915050565b600080604083850312156113bc576113bb61118b565b5b60006113ca858286016111d9565b92505060206113db858286016111d9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061142c57607f821691505b60208210810361143f5761143e6113e5565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061147b6020836110db565b915061148682611445565b602082019050919050565b600060208201905081810360008301526114aa8161146e565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e206f6e65000000000000000000000000000000000000000000000000602082015250565b600061150d6028836110db565b9150611518826114b1565b604082019050919050565b6000602082019050818103600083015261153c81611500565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061157d826111ee565b9150611588836111ee565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156115c1576115c0611543565b5b828202905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006116286026836110db565b9150611633826115cc565b604082019050919050565b600060208201905081810360008301526116578161161b565b9050919050565b6000611669826111ee565b9150611674836111ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156116a9576116a8611543565b5b828201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117106024836110db565b915061171b826116b4565b604082019050919050565b6000602082019050818103600083015261173f81611703565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117a26022836110db565b91506117ad82611746565b604082019050919050565b600060208201905081810360008301526117d181611795565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118346025836110db565b915061183f826117d8565b604082019050919050565b6000602082019050818103600083015261186381611827565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118c66023836110db565b91506118d18261186a565b604082019050919050565b600060208201905081810360008301526118f5816118b9565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204a5f5000696924b0487fb7e74c349bec6d7d99a3aee118c4207779f891cfb0a164736f6c634300080f0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000016345785d8a00000000000000000000000000000000000000000000000000000000000000000008384269744541524e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043842697400000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610276578063a9059cbb146102a6578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b806370a0823114610200578063715018a6146102305780638da5cb5b1461023a57806395d89b4114610258576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b45780636161eb18146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f9190611169565b60405180910390f35b610132600480360381019061012d9190611224565b6103b4565b60405161013f919061127f565b60405180910390f35b6101506103d2565b60405161015d91906112a9565b60405180910390f35b610180600480360381019061017b91906112c4565b6103dc565b60405161018d919061127f565b60405180910390f35b61019e6104b5565b6040516101ab9190611333565b60405180910390f35b6101ce60048036038101906101c99190611224565b6104cc565b6040516101db919061127f565b60405180910390f35b6101fe60048036038101906101f99190611224565b61057f565b005b61021a6004803603810190610215919061134e565b61073f565b60405161022791906112a9565b60405180910390f35b610238610788565b005b610242610810565b60405161024f919061138a565b60405180910390f35b610260610839565b60405161026d9190611169565b60405180910390f35b610290600480360381019061028b9190611224565b6108cb565b60405161029d919061127f565b60405180910390f35b6102c060048036038101906102bb9190611224565b610998565b6040516102cd919061127f565b60405180910390f35b6102f060048036038101906102eb91906113a5565b6109b6565b6040516102fd91906112a9565b60405180910390f35b610320600480360381019061031b919061134e565b610a3d565b005b60606003805461033190611414565b80601f016020809104026020016040519081016040528092919081815260200182805461035d90611414565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b60006103c86103c1610b4a565b8484610b52565b6001905092915050565b6000600654905090565b60006103e9848484610d1b565b6104aa846103f5610b4a565b6104a58560405180606001604052806028815260200161192360289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061045b610b4a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fb29092919063ffffffff16565b610b52565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60006105756104d9610b4a565b8461057085600260006104ea610b4a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b3490919063ffffffff16565b610b52565b6001905092915050565b610587610b4a565b73ffffffffffffffffffffffffffffffffffffffff166105a5610810565b73ffffffffffffffffffffffffffffffffffffffff16146105fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f290611491565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461073b5760018111610672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066990611523565b60405180910390fd5b633b9aca00816106829190611572565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef633b9aca00846107259190611572565b60405161073291906112a9565b60405180910390a35b5050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610790610b4a565b73ffffffffffffffffffffffffffffffffffffffff166107ae610810565b73ffffffffffffffffffffffffffffffffffffffff1614610804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fb90611491565b60405180910390fd5b61080e6000611007565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461084890611414565b80601f016020809104026020016040519081016040528092919081815260200182805461087490611414565b80156108c15780601f10610896576101008083540402835291602001916108c1565b820191906000526020600020905b8154815290600101906020018083116108a457829003601f168201915b5050505050905090565b600061098e6108d8610b4a565b846109898560405180606001604052806025815260200161194b6025913960026000610902610b4a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fb29092919063ffffffff16565b610b52565b6001905092915050565b60006109ac6109a5610b4a565b8484610d1b565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a45610b4a565b73ffffffffffffffffffffffffffffffffffffffff16610a63610810565b73ffffffffffffffffffffffffffffffffffffffff1614610ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab090611491565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1f9061163e565b60405180910390fd5b610b3181611007565b50565b60008183610b42919061165e565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb890611726565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c27906117b8565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d0e91906112a9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d819061184a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df0906118dc565b60405180910390fd5b610e048383836110cb565b610e70816040518060600160405280602681526020016118fd60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fb29092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610f0581600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b3490919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610fa591906112a9565b60405180910390a3505050565b6000838311158290610ffa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff19190611169565b60405180910390fd5b5082840390509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561110a5780820151818401526020810190506110ef565b83811115611119576000848401525b50505050565b6000601f19601f8301169050919050565b600061113b826110d0565b61114581856110db565b93506111558185602086016110ec565b61115e8161111f565b840191505092915050565b600060208201905081810360008301526111838184611130565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111bb82611190565b9050919050565b6111cb816111b0565b81146111d657600080fd5b50565b6000813590506111e8816111c2565b92915050565b6000819050919050565b611201816111ee565b811461120c57600080fd5b50565b60008135905061121e816111f8565b92915050565b6000806040838503121561123b5761123a61118b565b5b6000611249858286016111d9565b925050602061125a8582860161120f565b9150509250929050565b60008115159050919050565b61127981611264565b82525050565b60006020820190506112946000830184611270565b92915050565b6112a3816111ee565b82525050565b60006020820190506112be600083018461129a565b92915050565b6000806000606084860312156112dd576112dc61118b565b5b60006112eb868287016111d9565b93505060206112fc868287016111d9565b925050604061130d8682870161120f565b9150509250925092565b600060ff82169050919050565b61132d81611317565b82525050565b60006020820190506113486000830184611324565b92915050565b6000602082840312156113645761136361118b565b5b6000611372848285016111d9565b91505092915050565b611384816111b0565b82525050565b600060208201905061139f600083018461137b565b92915050565b600080604083850312156113bc576113bb61118b565b5b60006113ca858286016111d9565b92505060206113db858286016111d9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061142c57607f821691505b60208210810361143f5761143e6113e5565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061147b6020836110db565b915061148682611445565b602082019050919050565b600060208201905081810360008301526114aa8161146e565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e206f6e65000000000000000000000000000000000000000000000000602082015250565b600061150d6028836110db565b9150611518826114b1565b604082019050919050565b6000602082019050818103600083015261153c81611500565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061157d826111ee565b9150611588836111ee565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156115c1576115c0611543565b5b828202905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006116286026836110db565b9150611633826115cc565b604082019050919050565b600060208201905081810360008301526116578161161b565b9050919050565b6000611669826111ee565b9150611674836111ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156116a9576116a8611543565b5b828201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117106024836110db565b915061171b826116b4565b604082019050919050565b6000602082019050818103600083015261173f81611703565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117a26022836110db565b91506117ad82611746565b604082019050919050565b600060208201905081810360008301526117d181611795565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118346025836110db565b915061183f826117d8565b604082019050919050565b6000602082019050818103600083015261186381611827565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118c66023836110db565b91506118d18261186a565b604082019050919050565b600060208201905081810360008301526118f5816118b9565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204a5f5000696924b0487fb7e74c349bec6d7d99a3aee118c4207779f891cfb0a164736f6c634300080f0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000016345785d8a00000000000000000000000000000000000000000000000000000000000000000008384269744541524e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043842697400000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): 8BitEARN
Arg [1] : symbol_ (string): 8Bit
Arg [2] : decimals_ (uint8): 9
Arg [3] : totalSupply_ (uint256): 100000000000000000
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 000000000000000000000000000000000000000000000000016345785d8a0000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : 384269744541524e000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 3842697400000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
13661:10225:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14473:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16760:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15572:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17452:452;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15416:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18313:300;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21608:301;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15743:177;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5453:94;;;:::i;:::-;;4802:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14683:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19116:400;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16133:216;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16412:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5702:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14473:91;14518:13;14551:5;14544:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14473:91;:::o;16760:210::-;16879:4;16901:39;16910:12;:10;:12::i;:::-;16924:7;16933:6;16901:8;:39::i;:::-;16958:4;16951:11;;16760:210;;;;:::o;15572:108::-;15633:7;15660:12;;15653:19;;15572:108;:::o;17452:452::-;17592:4;17609:36;17619:6;17627:9;17638:6;17609:9;:36::i;:::-;17656:220;17679:6;17700:12;:10;:12::i;:::-;17727:138;17783:6;17727:138;;;;;;;;;;;;;;;;;:11;:19;17739:6;17727:19;;;;;;;;;;;;;;;:33;17747:12;:10;:12::i;:::-;17727:33;;;;;;;;;;;;;;;;:37;;:138;;;;;:::i;:::-;17656:8;:220::i;:::-;17894:4;17887:11;;17452:452;;;;;:::o;15416:91::-;15465:5;15490:9;;;;;;;;;;;15483:16;;15416:91;:::o;18313:300::-;18428:4;18450:133;18473:12;:10;:12::i;:::-;18500:7;18522:50;18561:10;18522:11;:25;18534:12;:10;:12::i;:::-;18522:25;;;;;;;;;;;;;;;:34;18548:7;18522:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;18450:8;:133::i;:::-;18601:4;18594:11;;18313:300;;;;:::o;21608:301::-;5033:12;:10;:12::i;:::-;5022:23;;:7;:5;:7::i;:::-;:23;;;5014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21706:1:::1;21687:21;;:7;:21;;;21684:218;;21735:1;21728:4;:8;21720:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;21821:7;21813:4;:16;;;;:::i;:::-;21792:9;:18;21802:7;21792:18;;;;;;;;;;;;;;;:37;;;;21866:7;21845:45;;21862:1;21845:45;;;21882:7;21875:4;:14;;;;:::i;:::-;21845:45;;;;;;:::i;:::-;;;;;;;;21684:218;21608:301:::0;;:::o;15743:177::-;15862:7;15894:9;:18;15904:7;15894:18;;;;;;;;;;;;;;;;15887:25;;15743:177;;;:::o;5453:94::-;5033:12;:10;:12::i;:::-;5022:23;;:7;:5;:7::i;:::-;:23;;;5014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5518:21:::1;5536:1;5518:9;:21::i;:::-;5453:94::o:0;4802:87::-;4848:7;4875:6;;;;;;;;;;;4868:13;;4802:87;:::o;14683:95::-;14730:13;14763:7;14756:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14683:95;:::o;19116:400::-;19236:4;19258:228;19281:12;:10;:12::i;:::-;19308:7;19330:145;19387:15;19330:145;;;;;;;;;;;;;;;;;:11;:25;19342:12;:10;:12::i;:::-;19330:25;;;;;;;;;;;;;;;:34;19356:7;19330:34;;;;;;;;;;;;;;;;:38;;:145;;;;;:::i;:::-;19258:8;:228::i;:::-;19504:4;19497:11;;19116:400;;;;:::o;16133:216::-;16255:4;16277:42;16287:12;:10;:12::i;:::-;16301:9;16312:6;16277:9;:42::i;:::-;16337:4;16330:11;;16133:216;;;;:::o;16412:201::-;16546:7;16578:11;:18;16590:5;16578:18;;;;;;;;;;;;;;;:27;16597:7;16578:27;;;;;;;;;;;;;;;;16571:34;;16412:201;;;;:::o;5702:192::-;5033:12;:10;:12::i;:::-;5022:23;;:7;:5;:7::i;:::-;:23;;;5014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5811:1:::1;5791:22;;:8;:22;;::::0;5783:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;5867:19;5877:8;5867:9;:19::i;:::-;5702:192:::0;:::o;8888:98::-;8946:7;8977:1;8973;:5;;;;:::i;:::-;8966:12;;8888:98;;;;:::o;3520:::-;3573:7;3600:10;3593:17;;3520:98;:::o;22345:380::-;22498:1;22481:19;;:5;:19;;;22473:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22579:1;22560:21;;:7;:21;;;22552:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22663:6;22633:11;:18;22645:5;22633:18;;;;;;;;;;;;;;;:27;22652:7;22633:27;;;;;;;;;;;;;;;:36;;;;22701:7;22685:32;;22694:5;22685:32;;;22710:6;22685:32;;;;;;:::i;:::-;;;;;;;;22345:380;;;:::o;20006:610::-;20164:1;20146:20;;:6;:20;;;20138:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;20248:1;20227:23;;:9;:23;;;20219:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;20303:47;20324:6;20332:9;20343:6;20303:20;:47::i;:::-;20383:108;20419:6;20383:108;;;;;;;;;;;;;;;;;:9;:17;20393:6;20383:17;;;;;;;;;;;;;;;;:21;;:108;;;;;:::i;:::-;20363:9;:17;20373:6;20363:17;;;;;;;;;;;;;;;:128;;;;20525:32;20550:6;20525:9;:20;20535:9;20525:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;20502:9;:20;20512:9;20502:20;;;;;;;;;;;;;;;:55;;;;20590:9;20573:35;;20582:6;20573:35;;;20601:6;20573:35;;;;;;:::i;:::-;;;;;;;;20006:610;;;:::o;11167:240::-;11287:7;11345:1;11340;:6;;11348:12;11332:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;11387:1;11383;:5;11376:12;;11167:240;;;;;:::o;5902:173::-;5958:16;5977:6;;;;;;;;;;;5958:25;;6003:8;5994:6;;:17;;;;;;;;;;;;;;;;;;6058:8;6027:40;;6048:8;6027:40;;;;;;;;;;;;5947:128;5902:173;:::o;23758:125::-;;;;:::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:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:118::-;5323:24;5341:5;5323:24;:::i;:::-;5318:3;5311:37;5236:118;;:::o;5360:222::-;5453:4;5491:2;5480:9;5476:18;5468:26;;5504:71;5572:1;5561:9;5557:17;5548:6;5504:71;:::i;:::-;5360:222;;;;:::o;5588:474::-;5656:6;5664;5713:2;5701:9;5692:7;5688:23;5684:32;5681:119;;;5719:79;;:::i;:::-;5681:119;5839:1;5864:53;5909:7;5900:6;5889:9;5885:22;5864:53;:::i;:::-;5854:63;;5810:117;5966:2;5992:53;6037:7;6028:6;6017:9;6013:22;5992:53;:::i;:::-;5982:63;;5937:118;5588:474;;;;;:::o;6068:180::-;6116:77;6113:1;6106:88;6213:4;6210:1;6203:15;6237:4;6234:1;6227:15;6254:320;6298:6;6335:1;6329:4;6325:12;6315:22;;6382:1;6376:4;6372:12;6403:18;6393:81;;6459:4;6451:6;6447:17;6437:27;;6393:81;6521:2;6513:6;6510:14;6490:18;6487:38;6484:84;;6540:18;;:::i;:::-;6484:84;6305:269;6254:320;;;:::o;6580:182::-;6720:34;6716:1;6708:6;6704:14;6697:58;6580:182;:::o;6768:366::-;6910:3;6931:67;6995:2;6990:3;6931:67;:::i;:::-;6924:74;;7007:93;7096:3;7007:93;:::i;:::-;7125:2;7120:3;7116:12;7109:19;;6768:366;;;:::o;7140:419::-;7306:4;7344:2;7333:9;7329:18;7321:26;;7393:9;7387:4;7383:20;7379:1;7368:9;7364:17;7357:47;7421:131;7547:4;7421:131;:::i;:::-;7413:139;;7140:419;;;:::o;7565:227::-;7705:34;7701:1;7693:6;7689:14;7682:58;7774:10;7769:2;7761:6;7757:15;7750:35;7565:227;:::o;7798:366::-;7940:3;7961:67;8025:2;8020:3;7961:67;:::i;:::-;7954:74;;8037:93;8126:3;8037:93;:::i;:::-;8155:2;8150:3;8146:12;8139:19;;7798:366;;;:::o;8170:419::-;8336:4;8374:2;8363:9;8359:18;8351:26;;8423:9;8417:4;8413:20;8409:1;8398:9;8394:17;8387:47;8451:131;8577:4;8451:131;:::i;:::-;8443:139;;8170:419;;;:::o;8595:180::-;8643:77;8640:1;8633:88;8740:4;8737:1;8730:15;8764:4;8761:1;8754:15;8781:348;8821:7;8844:20;8862:1;8844:20;:::i;:::-;8839:25;;8878:20;8896:1;8878:20;:::i;:::-;8873:25;;9066:1;8998:66;8994:74;8991:1;8988:81;8983:1;8976:9;8969:17;8965:105;8962:131;;;9073:18;;:::i;:::-;8962:131;9121:1;9118;9114:9;9103:20;;8781:348;;;;:::o;9135:225::-;9275:34;9271:1;9263:6;9259:14;9252:58;9344:8;9339:2;9331:6;9327:15;9320:33;9135:225;:::o;9366:366::-;9508:3;9529:67;9593:2;9588:3;9529:67;:::i;:::-;9522:74;;9605:93;9694:3;9605:93;:::i;:::-;9723:2;9718:3;9714:12;9707:19;;9366:366;;;:::o;9738:419::-;9904:4;9942:2;9931:9;9927:18;9919:26;;9991:9;9985:4;9981:20;9977:1;9966:9;9962:17;9955:47;10019:131;10145:4;10019:131;:::i;:::-;10011:139;;9738:419;;;:::o;10163:305::-;10203:3;10222:20;10240:1;10222:20;:::i;:::-;10217:25;;10256:20;10274:1;10256:20;:::i;:::-;10251:25;;10410:1;10342:66;10338:74;10335:1;10332:81;10329:107;;;10416:18;;:::i;:::-;10329:107;10460:1;10457;10453:9;10446:16;;10163:305;;;;:::o;10474:223::-;10614:34;10610:1;10602:6;10598:14;10591:58;10683:6;10678:2;10670:6;10666:15;10659:31;10474:223;:::o;10703:366::-;10845:3;10866:67;10930:2;10925:3;10866:67;:::i;:::-;10859:74;;10942:93;11031:3;10942:93;:::i;:::-;11060:2;11055:3;11051:12;11044:19;;10703:366;;;:::o;11075:419::-;11241:4;11279:2;11268:9;11264:18;11256:26;;11328:9;11322:4;11318:20;11314:1;11303:9;11299:17;11292:47;11356:131;11482:4;11356:131;:::i;:::-;11348:139;;11075:419;;;:::o;11500:221::-;11640:34;11636:1;11628:6;11624:14;11617:58;11709:4;11704:2;11696:6;11692:15;11685:29;11500:221;:::o;11727:366::-;11869:3;11890:67;11954:2;11949:3;11890:67;:::i;:::-;11883:74;;11966:93;12055:3;11966:93;:::i;:::-;12084:2;12079:3;12075:12;12068:19;;11727:366;;;:::o;12099:419::-;12265:4;12303:2;12292:9;12288:18;12280:26;;12352:9;12346:4;12342:20;12338:1;12327:9;12323:17;12316:47;12380:131;12506:4;12380:131;:::i;:::-;12372:139;;12099:419;;;:::o;12524:224::-;12664:34;12660:1;12652:6;12648:14;12641:58;12733:7;12728:2;12720:6;12716:15;12709:32;12524:224;:::o;12754:366::-;12896:3;12917:67;12981:2;12976:3;12917:67;:::i;:::-;12910:74;;12993:93;13082:3;12993:93;:::i;:::-;13111:2;13106:3;13102:12;13095:19;;12754:366;;;:::o;13126:419::-;13292:4;13330:2;13319:9;13315:18;13307:26;;13379:9;13373:4;13369:20;13365:1;13354:9;13350:17;13343:47;13407:131;13533:4;13407:131;:::i;:::-;13399:139;;13126:419;;;:::o;13551:222::-;13691:34;13687:1;13679:6;13675:14;13668:58;13760:5;13755:2;13747:6;13743:15;13736:30;13551:222;:::o;13779:366::-;13921:3;13942:67;14006:2;14001:3;13942:67;:::i;:::-;13935:74;;14018:93;14107:3;14018:93;:::i;:::-;14136:2;14131:3;14127:12;14120:19;;13779:366;;;:::o;14151:419::-;14317:4;14355:2;14344:9;14340:18;14332:26;;14404:9;14398:4;14394:20;14390:1;14379:9;14375:17;14368:47;14432:131;14558:4;14432:131;:::i;:::-;14424:139;;14151:419;;;:::o
Swarm Source
ipfs://4a5f5000696924b0487fb7e74c349bec6d7d99a3aee118c4207779f891cfb0a1
Loading...
Loading
[ 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.