Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
500,000,000 BEXT
Holders
26
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000003861247621469 BEXTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BextToken
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-08-09 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _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); } } /** * @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); } 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); } 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 {} } contract BextToken is ERC20,Ownable{ uint256 _totalSupply=500 * 10**6 * 10**18; uint8 _decimal=18; string _name='BYTEDEX'; string _symbol='BEXT'; constructor () ERC20(_name, _symbol) { _mint(msg.sender, _totalSupply); } function decimals() public view override returns (uint8) { return _decimal; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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
60806040526b019d971e4fe8401e740000006006556012600760006101000a81548160ff021916908360ff1602179055506040518060400160405280600781526020017f4259544544455800000000000000000000000000000000000000000000000000815250600890805190602001906200007d929190620004bf565b506040518060400160405280600481526020017f424558540000000000000000000000000000000000000000000000000000000081525060099080519060200190620000cb929190620004bf565b50348015620000d957600080fd5b5060088054620000e99062000679565b80601f0160208091040260200160405190810160405280929190818152602001828054620001179062000679565b8015620001685780601f106200013c5761010080835404028352916020019162000168565b820191906000526020600020905b8154815290600101906020018083116200014a57829003601f168201915b5050505050600980546200017c9062000679565b80601f0160208091040260200160405190810160405280929190818152602001828054620001aa9062000679565b8015620001fb5780601f10620001cf57610100808354040283529160200191620001fb565b820191906000526020600020905b815481529060010190602001808311620001dd57829003601f168201915b5050505050816003908051906020019062000218929190620004bf565b50806004908051906020019062000231929190620004bf565b50505062000254620002486200026e60201b60201c565b6200027660201b60201c565b62000268336006546200033c60201b60201c565b6200070d565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003af576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003a690620005c2565b60405180910390fd5b620003c360008383620004b560201b60201c565b8060026000828254620003d7919062000612565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200042e919062000612565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004959190620005e4565b60405180910390a3620004b160008383620004ba60201b60201c565b5050565b505050565b505050565b828054620004cd9062000679565b90600052602060002090601f016020900481019282620004f157600085556200053d565b82601f106200050c57805160ff19168380011785556200053d565b828001600101855582156200053d579182015b828111156200053c5782518255916020019190600101906200051f565b5b5090506200054c919062000550565b5090565b5b808211156200056b57600081600090555060010162000551565b5090565b60006200057e601f8362000601565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b620005bc816200066f565b82525050565b60006020820190508181036000830152620005dd816200056f565b9050919050565b6000602082019050620005fb6000830184620005b1565b92915050565b600082825260208201905092915050565b60006200061f826200066f565b91506200062c836200066f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620006645762000663620006af565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200069257607f821691505b60208210811415620006a957620006a8620006de565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b611754806200071d6000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d71461024f578063a9059cbb1461027f578063dd62ed3e146102af578063f2fde38b146102df576100ea565b8063715018a6146102095780638da5cb5b1461021357806395d89b4114610231576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806370a08231146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fb565b60405161010491906113dd565b60405180910390f35b61012760048036038101906101229190610f86565b61038d565b60405161013491906113c2565b60405180910390f35b6101456103ab565b604051610152919061151f565b60405180910390f35b61017560048036038101906101709190610f37565b6103b5565b60405161018291906113c2565b60405180910390f35b6101936104ad565b6040516101a0919061153a565b60405180910390f35b6101c360048036038101906101be9190610f86565b6104c4565b6040516101d091906113c2565b60405180910390f35b6101f360048036038101906101ee9190610ed2565b610570565b604051610200919061151f565b60405180910390f35b6102116105b8565b005b61021b610640565b60405161022891906113a7565b60405180910390f35b61023961066a565b60405161024691906113dd565b60405180910390f35b61026960048036038101906102649190610f86565b6106fc565b60405161027691906113c2565b60405180910390f35b61029960048036038101906102949190610f86565b6107e7565b6040516102a691906113c2565b60405180910390f35b6102c960048036038101906102c49190610efb565b610805565b6040516102d6919061151f565b60405180910390f35b6102f960048036038101906102f49190610ed2565b61088c565b005b60606003805461030a9061164f565b80601f01602080910402602001604051908101604052809291908181526020018280546103369061164f565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b60006103a161039a610984565b848461098c565b6001905092915050565b6000600654905090565b60006103c2848484610b57565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061040d610984565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561048d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104849061147f565b60405180910390fd5b6104a185610499610984565b85840361098c565b60019150509392505050565b6000600760009054906101000a900460ff16905090565b60006105666104d1610984565b8484600160006104df610984565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105619190611571565b61098c565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105c0610984565b73ffffffffffffffffffffffffffffffffffffffff166105de610640565b73ffffffffffffffffffffffffffffffffffffffff1614610634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062b9061149f565b60405180910390fd5b61063e6000610dd8565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106799061164f565b80601f01602080910402602001604051908101604052809291908181526020018280546106a59061164f565b80156106f25780601f106106c7576101008083540402835291602001916106f2565b820191906000526020600020905b8154815290600101906020018083116106d557829003601f168201915b5050505050905090565b6000806001600061070b610984565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156107c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bf906114ff565b60405180910390fd5b6107dc6107d3610984565b8585840361098c565b600191505092915050565b60006107fb6107f4610984565b8484610b57565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610894610984565b73ffffffffffffffffffffffffffffffffffffffff166108b2610640565b73ffffffffffffffffffffffffffffffffffffffff1614610908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ff9061149f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096f9061141f565b60405180910390fd5b61098181610dd8565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f3906114df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a639061143f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b4a919061151f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe906114bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2e906113ff565b60405180910390fd5b610c42838383610e9e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbf9061145f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d5b9190611571565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dbf919061151f565b60405180910390a3610dd2848484610ea3565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081359050610eb7816116f0565b92915050565b600081359050610ecc81611707565b92915050565b600060208284031215610ee457600080fd5b6000610ef284828501610ea8565b91505092915050565b60008060408385031215610f0e57600080fd5b6000610f1c85828601610ea8565b9250506020610f2d85828601610ea8565b9150509250929050565b600080600060608486031215610f4c57600080fd5b6000610f5a86828701610ea8565b9350506020610f6b86828701610ea8565b9250506040610f7c86828701610ebd565b9150509250925092565b60008060408385031215610f9957600080fd5b6000610fa785828601610ea8565b9250506020610fb885828601610ebd565b9150509250929050565b610fcb816115c7565b82525050565b610fda816115d9565b82525050565b6000610feb82611555565b610ff58185611560565b935061100581856020860161161c565b61100e816116df565b840191505092915050565b6000611026602383611560565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061108c602683611560565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006110f2602283611560565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611158602683611560565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006111be602883611560565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611224602083611560565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611264602583611560565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112ca602483611560565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611330602583611560565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61139281611605565b82525050565b6113a18161160f565b82525050565b60006020820190506113bc6000830184610fc2565b92915050565b60006020820190506113d76000830184610fd1565b92915050565b600060208201905081810360008301526113f78184610fe0565b905092915050565b6000602082019050818103600083015261141881611019565b9050919050565b600060208201905081810360008301526114388161107f565b9050919050565b60006020820190508181036000830152611458816110e5565b9050919050565b600060208201905081810360008301526114788161114b565b9050919050565b60006020820190508181036000830152611498816111b1565b9050919050565b600060208201905081810360008301526114b881611217565b9050919050565b600060208201905081810360008301526114d881611257565b9050919050565b600060208201905081810360008301526114f8816112bd565b9050919050565b6000602082019050818103600083015261151881611323565b9050919050565b60006020820190506115346000830184611389565b92915050565b600060208201905061154f6000830184611398565b92915050565b600081519050919050565b600082825260208201905092915050565b600061157c82611605565b915061158783611605565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156115bc576115bb611681565b5b828201905092915050565b60006115d2826115e5565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561163a57808201518184015260208101905061161f565b83811115611649576000848401525b50505050565b6000600282049050600182168061166757607f821691505b6020821081141561167b5761167a6116b0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6116f9816115c7565b811461170457600080fd5b50565b61171081611605565b811461171b57600080fd5b5056fea26469706673582212203b95844676f77bb40449585b12a54ed2e010ae5f7bdf46e86b90f670512228ef64736f6c63430008000033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d71461024f578063a9059cbb1461027f578063dd62ed3e146102af578063f2fde38b146102df576100ea565b8063715018a6146102095780638da5cb5b1461021357806395d89b4114610231576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806370a08231146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fb565b60405161010491906113dd565b60405180910390f35b61012760048036038101906101229190610f86565b61038d565b60405161013491906113c2565b60405180910390f35b6101456103ab565b604051610152919061151f565b60405180910390f35b61017560048036038101906101709190610f37565b6103b5565b60405161018291906113c2565b60405180910390f35b6101936104ad565b6040516101a0919061153a565b60405180910390f35b6101c360048036038101906101be9190610f86565b6104c4565b6040516101d091906113c2565b60405180910390f35b6101f360048036038101906101ee9190610ed2565b610570565b604051610200919061151f565b60405180910390f35b6102116105b8565b005b61021b610640565b60405161022891906113a7565b60405180910390f35b61023961066a565b60405161024691906113dd565b60405180910390f35b61026960048036038101906102649190610f86565b6106fc565b60405161027691906113c2565b60405180910390f35b61029960048036038101906102949190610f86565b6107e7565b6040516102a691906113c2565b60405180910390f35b6102c960048036038101906102c49190610efb565b610805565b6040516102d6919061151f565b60405180910390f35b6102f960048036038101906102f49190610ed2565b61088c565b005b60606003805461030a9061164f565b80601f01602080910402602001604051908101604052809291908181526020018280546103369061164f565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b60006103a161039a610984565b848461098c565b6001905092915050565b6000600654905090565b60006103c2848484610b57565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061040d610984565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561048d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104849061147f565b60405180910390fd5b6104a185610499610984565b85840361098c565b60019150509392505050565b6000600760009054906101000a900460ff16905090565b60006105666104d1610984565b8484600160006104df610984565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105619190611571565b61098c565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105c0610984565b73ffffffffffffffffffffffffffffffffffffffff166105de610640565b73ffffffffffffffffffffffffffffffffffffffff1614610634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062b9061149f565b60405180910390fd5b61063e6000610dd8565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106799061164f565b80601f01602080910402602001604051908101604052809291908181526020018280546106a59061164f565b80156106f25780601f106106c7576101008083540402835291602001916106f2565b820191906000526020600020905b8154815290600101906020018083116106d557829003601f168201915b5050505050905090565b6000806001600061070b610984565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156107c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bf906114ff565b60405180910390fd5b6107dc6107d3610984565b8585840361098c565b600191505092915050565b60006107fb6107f4610984565b8484610b57565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610894610984565b73ffffffffffffffffffffffffffffffffffffffff166108b2610640565b73ffffffffffffffffffffffffffffffffffffffff1614610908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ff9061149f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096f9061141f565b60405180910390fd5b61098181610dd8565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f3906114df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a639061143f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b4a919061151f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe906114bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2e906113ff565b60405180910390fd5b610c42838383610e9e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbf9061145f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d5b9190611571565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dbf919061151f565b60405180910390a3610dd2848484610ea3565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081359050610eb7816116f0565b92915050565b600081359050610ecc81611707565b92915050565b600060208284031215610ee457600080fd5b6000610ef284828501610ea8565b91505092915050565b60008060408385031215610f0e57600080fd5b6000610f1c85828601610ea8565b9250506020610f2d85828601610ea8565b9150509250929050565b600080600060608486031215610f4c57600080fd5b6000610f5a86828701610ea8565b9350506020610f6b86828701610ea8565b9250506040610f7c86828701610ebd565b9150509250925092565b60008060408385031215610f9957600080fd5b6000610fa785828601610ea8565b9250506020610fb885828601610ebd565b9150509250929050565b610fcb816115c7565b82525050565b610fda816115d9565b82525050565b6000610feb82611555565b610ff58185611560565b935061100581856020860161161c565b61100e816116df565b840191505092915050565b6000611026602383611560565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061108c602683611560565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006110f2602283611560565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611158602683611560565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006111be602883611560565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611224602083611560565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611264602583611560565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112ca602483611560565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611330602583611560565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61139281611605565b82525050565b6113a18161160f565b82525050565b60006020820190506113bc6000830184610fc2565b92915050565b60006020820190506113d76000830184610fd1565b92915050565b600060208201905081810360008301526113f78184610fe0565b905092915050565b6000602082019050818103600083015261141881611019565b9050919050565b600060208201905081810360008301526114388161107f565b9050919050565b60006020820190508181036000830152611458816110e5565b9050919050565b600060208201905081810360008301526114788161114b565b9050919050565b60006020820190508181036000830152611498816111b1565b9050919050565b600060208201905081810360008301526114b881611217565b9050919050565b600060208201905081810360008301526114d881611257565b9050919050565b600060208201905081810360008301526114f8816112bd565b9050919050565b6000602082019050818103600083015261151881611323565b9050919050565b60006020820190506115346000830184611389565b92915050565b600060208201905061154f6000830184611398565b92915050565b600081519050919050565b600082825260208201905092915050565b600061157c82611605565b915061158783611605565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156115bc576115bb611681565b5b828201905092915050565b60006115d2826115e5565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561163a57808201518184015260208101905061161f565b83811115611649576000848401525b50505050565b6000600282049050600182168061166757607f821691505b6020821081141561167b5761167a6116b0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6116f9816115c7565b811461170457600080fd5b50565b61171081611605565b811461171b57600080fd5b5056fea26469706673582212203b95844676f77bb40449585b12a54ed2e010ae5f7bdf46e86b90f670512228ef64736f6c63430008000033
Deployed Bytecode Sourcemap
15902:525:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5941:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8108:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16324:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8759:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16168:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9660:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7232:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1363:94;;;:::i;:::-;;712:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6160:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10378:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7572:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7810:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1612:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5941:100;5995:13;6028:5;6021:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5941:100;:::o;8108:169::-;8191:4;8208:39;8217:12;:10;:12::i;:::-;8231:7;8240:6;8208:8;:39::i;:::-;8265:4;8258:11;;8108:169;;;;:::o;16324:100::-;16377:7;16404:12;;16397:19;;16324:100;:::o;8759:492::-;8899:4;8916:36;8926:6;8934:9;8945:6;8916:9;:36::i;:::-;8965:24;8992:11;:19;9004:6;8992:19;;;;;;;;;;;;;;;:33;9012:12;:10;:12::i;:::-;8992:33;;;;;;;;;;;;;;;;8965:60;;9064:6;9044:16;:26;;9036:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9151:57;9160:6;9168:12;:10;:12::i;:::-;9201:6;9182:16;:25;9151:8;:57::i;:::-;9239:4;9232:11;;;8759:492;;;;;:::o;16168:91::-;16218:5;16243:8;;;;;;;;;;;16236:15;;16168:91;:::o;9660:215::-;9748:4;9765:80;9774:12;:10;:12::i;:::-;9788:7;9834:10;9797:11;:25;9809:12;:10;:12::i;:::-;9797:25;;;;;;;;;;;;;;;:34;9823:7;9797:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;9765:8;:80::i;:::-;9863:4;9856:11;;9660:215;;;;:::o;7232:127::-;7306:7;7333:9;:18;7343:7;7333:18;;;;;;;;;;;;;;;;7326:25;;7232:127;;;:::o;1363:94::-;943:12;:10;:12::i;:::-;932:23;;:7;:5;:7::i;:::-;:23;;;924:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1428:21:::1;1446:1;1428:9;:21::i;:::-;1363:94::o:0;712:87::-;758:7;785:6;;;;;;;;;;;778:13;;712:87;:::o;6160:104::-;6216:13;6249:7;6242:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6160:104;:::o;10378:413::-;10471:4;10488:24;10515:11;:25;10527:12;:10;:12::i;:::-;10515:25;;;;;;;;;;;;;;;:34;10541:7;10515:34;;;;;;;;;;;;;;;;10488:61;;10588:15;10568:16;:35;;10560:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10681:67;10690:12;:10;:12::i;:::-;10704:7;10732:15;10713:16;:34;10681:8;:67::i;:::-;10779:4;10772:11;;;10378:413;;;;:::o;7572:175::-;7658:4;7675:42;7685:12;:10;:12::i;:::-;7699:9;7710:6;7675:9;:42::i;:::-;7735:4;7728:11;;7572:175;;;;:::o;7810:151::-;7899:7;7926:11;:18;7938:5;7926:18;;;;;;;;;;;;;;;:27;7945:7;7926:27;;;;;;;;;;;;;;;;7919:34;;7810:151;;;;:::o;1612:192::-;943:12;:10;:12::i;:::-;932:23;;:7;:5;:7::i;:::-;:23;;;924:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1721:1:::1;1701:22;;:8;:22;;;;1693:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;1777:19;1787:8;1777:9;:19::i;:::-;1612:192:::0;:::o;95:98::-;148:7;175:10;168:17;;95:98;:::o;14062:380::-;14215:1;14198:19;;:5;:19;;;;14190:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14296:1;14277:21;;:7;:21;;;;14269:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14380:6;14350:11;:18;14362:5;14350:18;;;;;;;;;;;;;;;:27;14369:7;14350:27;;;;;;;;;;;;;;;:36;;;;14418:7;14402:32;;14411:5;14402:32;;;14427:6;14402:32;;;;;;:::i;:::-;;;;;;;;14062:380;;;:::o;11281:733::-;11439:1;11421:20;;:6;:20;;;;11413:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11523:1;11502:23;;:9;:23;;;;11494:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;11578:47;11599:6;11607:9;11618:6;11578:20;:47::i;:::-;11638:21;11662:9;:17;11672:6;11662:17;;;;;;;;;;;;;;;;11638:41;;11715:6;11698:13;:23;;11690:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;11836:6;11820:13;:22;11800:9;:17;11810:6;11800:17;;;;;;;;;;;;;;;:42;;;;11888:6;11864:9;:20;11874:9;11864:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;11929:9;11912:35;;11921:6;11912:35;;;11940:6;11912:35;;;;;;:::i;:::-;;;;;;;;11960:46;11980:6;11988:9;11999:6;11960:19;:46::i;:::-;11281:733;;;;:::o;1812:173::-;1868:16;1887:6;;;;;;;;;;;1868:25;;1913:8;1904:6;;:17;;;;;;;;;;;;;;;;;;1968:8;1937:40;;1958:8;1937:40;;;;;;;;;;;;1812:173;;:::o;15042:125::-;;;;:::o;15771:124::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:118::-;2036:24;2054:5;2036:24;:::i;:::-;2031:3;2024:37;2014:53;;:::o;2073:109::-;2154:21;2169:5;2154:21;:::i;:::-;2149:3;2142:34;2132:50;;:::o;2188:364::-;;2304:39;2337:5;2304:39;:::i;:::-;2359:71;2423:6;2418:3;2359:71;:::i;:::-;2352:78;;2439:52;2484:6;2479:3;2472:4;2465:5;2461:16;2439:52;:::i;:::-;2516:29;2538:6;2516:29;:::i;:::-;2511:3;2507:39;2500:46;;2280:272;;;;;:::o;2558:367::-;;2721:67;2785:2;2780:3;2721:67;:::i;:::-;2714:74;;2818:34;2814:1;2809:3;2805:11;2798:55;2884:5;2879:2;2874:3;2870:12;2863:27;2916:2;2911:3;2907:12;2900:19;;2704:221;;;:::o;2931:370::-;;3094:67;3158:2;3153:3;3094:67;:::i;:::-;3087:74;;3191:34;3187:1;3182:3;3178:11;3171:55;3257:8;3252:2;3247:3;3243:12;3236:30;3292:2;3287:3;3283:12;3276:19;;3077:224;;;:::o;3307:366::-;;3470:67;3534:2;3529:3;3470:67;:::i;:::-;3463:74;;3567:34;3563:1;3558:3;3554:11;3547:55;3633:4;3628:2;3623:3;3619:12;3612:26;3664:2;3659:3;3655:12;3648:19;;3453:220;;;:::o;3679:370::-;;3842:67;3906:2;3901:3;3842:67;:::i;:::-;3835:74;;3939:34;3935:1;3930:3;3926:11;3919:55;4005:8;4000:2;3995:3;3991:12;3984:30;4040:2;4035:3;4031:12;4024:19;;3825:224;;;:::o;4055:372::-;;4218:67;4282:2;4277:3;4218:67;:::i;:::-;4211:74;;4315:34;4311:1;4306:3;4302:11;4295:55;4381:10;4376:2;4371:3;4367:12;4360:32;4418:2;4413:3;4409:12;4402:19;;4201:226;;;:::o;4433:330::-;;4596:67;4660:2;4655:3;4596:67;:::i;:::-;4589:74;;4693:34;4689:1;4684:3;4680:11;4673:55;4754:2;4749:3;4745:12;4738:19;;4579:184;;;:::o;4769:369::-;;4932:67;4996:2;4991:3;4932:67;:::i;:::-;4925:74;;5029:34;5025:1;5020:3;5016:11;5009:55;5095:7;5090:2;5085:3;5081:12;5074:29;5129:2;5124:3;5120:12;5113:19;;4915:223;;;:::o;5144:368::-;;5307:67;5371:2;5366:3;5307:67;:::i;:::-;5300:74;;5404:34;5400:1;5395:3;5391:11;5384:55;5470:6;5465:2;5460:3;5456:12;5449:28;5503:2;5498:3;5494:12;5487:19;;5290:222;;;:::o;5518:369::-;;5681:67;5745:2;5740:3;5681:67;:::i;:::-;5674:74;;5778:34;5774:1;5769:3;5765:11;5758:55;5844:7;5839:2;5834:3;5830:12;5823:29;5878:2;5873:3;5869:12;5862:19;;5664:223;;;:::o;5893:118::-;5980:24;5998:5;5980:24;:::i;:::-;5975:3;5968:37;5958:53;;:::o;6017:112::-;6100:22;6116:5;6100:22;:::i;:::-;6095:3;6088:35;6078:51;;:::o;6135:222::-;;6266:2;6255:9;6251:18;6243:26;;6279:71;6347:1;6336:9;6332:17;6323:6;6279:71;:::i;:::-;6233:124;;;;:::o;6363:210::-;;6488:2;6477:9;6473:18;6465:26;;6501:65;6563:1;6552:9;6548:17;6539:6;6501:65;:::i;:::-;6455:118;;;;:::o;6579:313::-;;6730:2;6719:9;6715:18;6707:26;;6779:9;6773:4;6769:20;6765:1;6754:9;6750:17;6743:47;6807:78;6880:4;6871:6;6807:78;:::i;:::-;6799:86;;6697:195;;;;:::o;6898:419::-;;7102:2;7091:9;7087:18;7079:26;;7151:9;7145:4;7141:20;7137:1;7126:9;7122:17;7115:47;7179:131;7305:4;7179:131;:::i;:::-;7171:139;;7069:248;;;:::o;7323:419::-;;7527:2;7516:9;7512:18;7504:26;;7576:9;7570:4;7566:20;7562:1;7551:9;7547:17;7540:47;7604:131;7730:4;7604:131;:::i;:::-;7596:139;;7494:248;;;:::o;7748:419::-;;7952:2;7941:9;7937:18;7929:26;;8001:9;7995:4;7991:20;7987:1;7976:9;7972:17;7965:47;8029:131;8155:4;8029:131;:::i;:::-;8021:139;;7919:248;;;:::o;8173:419::-;;8377:2;8366:9;8362:18;8354:26;;8426:9;8420:4;8416:20;8412:1;8401:9;8397:17;8390:47;8454:131;8580:4;8454:131;:::i;:::-;8446:139;;8344:248;;;:::o;8598:419::-;;8802:2;8791:9;8787:18;8779:26;;8851:9;8845:4;8841:20;8837:1;8826:9;8822:17;8815:47;8879:131;9005:4;8879:131;:::i;:::-;8871:139;;8769:248;;;:::o;9023:419::-;;9227:2;9216:9;9212:18;9204:26;;9276:9;9270:4;9266:20;9262:1;9251:9;9247:17;9240:47;9304:131;9430:4;9304:131;:::i;:::-;9296:139;;9194:248;;;:::o;9448:419::-;;9652:2;9641:9;9637:18;9629:26;;9701:9;9695:4;9691:20;9687:1;9676:9;9672:17;9665:47;9729:131;9855:4;9729:131;:::i;:::-;9721:139;;9619:248;;;:::o;9873:419::-;;10077:2;10066:9;10062:18;10054:26;;10126:9;10120:4;10116:20;10112:1;10101:9;10097:17;10090:47;10154:131;10280:4;10154:131;:::i;:::-;10146:139;;10044:248;;;:::o;10298:419::-;;10502:2;10491:9;10487:18;10479:26;;10551:9;10545:4;10541:20;10537:1;10526:9;10522:17;10515:47;10579:131;10705:4;10579:131;:::i;:::-;10571:139;;10469:248;;;:::o;10723:222::-;;10854:2;10843:9;10839:18;10831:26;;10867:71;10935:1;10924:9;10920:17;10911:6;10867:71;:::i;:::-;10821:124;;;;:::o;10951:214::-;;11078:2;11067:9;11063:18;11055:26;;11091:67;11155:1;11144:9;11140:17;11131:6;11091:67;:::i;:::-;11045:120;;;;:::o;11171:99::-;;11257:5;11251:12;11241:22;;11230:40;;;:::o;11276:169::-;;11394:6;11389:3;11382:19;11434:4;11429:3;11425:14;11410:29;;11372:73;;;;:::o;11451:305::-;;11510:20;11528:1;11510:20;:::i;:::-;11505:25;;11544:20;11562:1;11544:20;:::i;:::-;11539:25;;11698:1;11630:66;11626:74;11623:1;11620:81;11617:2;;;11704:18;;:::i;:::-;11617:2;11748:1;11745;11741:9;11734:16;;11495:261;;;;:::o;11762:96::-;;11828:24;11846:5;11828:24;:::i;:::-;11817:35;;11807:51;;;:::o;11864:90::-;;11941:5;11934:13;11927:21;11916:32;;11906:48;;;:::o;11960:126::-;;12037:42;12030:5;12026:54;12015:65;;12005:81;;;:::o;12092:77::-;;12158:5;12147:16;;12137:32;;;:::o;12175:86::-;;12250:4;12243:5;12239:16;12228:27;;12218:43;;;:::o;12267:307::-;12335:1;12345:113;12359:6;12356:1;12353:13;12345:113;;;12444:1;12439:3;12435:11;12429:18;12425:1;12420:3;12416:11;12409:39;12381:2;12378:1;12374:10;12369:15;;12345:113;;;12476:6;12473:1;12470:13;12467:2;;;12556:1;12547:6;12542:3;12538:16;12531:27;12467:2;12316:258;;;;:::o;12580:320::-;;12661:1;12655:4;12651:12;12641:22;;12708:1;12702:4;12698:12;12729:18;12719:2;;12785:4;12777:6;12773:17;12763:27;;12719:2;12847;12839:6;12836:14;12816:18;12813:38;12810:2;;;12866:18;;:::i;:::-;12810:2;12631:269;;;;:::o;12906:180::-;12954:77;12951:1;12944:88;13051:4;13048:1;13041:15;13075:4;13072:1;13065:15;13092:180;13140:77;13137:1;13130:88;13237:4;13234:1;13227:15;13261:4;13258:1;13251:15;13278:102;;13370:2;13366:7;13361:2;13354:5;13350:14;13346:28;13336:38;;13326:54;;;:::o;13386:122::-;13459:24;13477:5;13459:24;:::i;:::-;13452:5;13449:35;13439:2;;13498:1;13495;13488:12;13439:2;13429:79;:::o;13514:122::-;13587:24;13605:5;13587:24;:::i;:::-;13580:5;13577:35;13567:2;;13626:1;13623;13616:12;13567:2;13557:79;:::o
Swarm Source
ipfs://3b95844676f77bb40449585b12a54ed2e010ae5f7bdf46e86b90f670512228ef
Loading...
Loading
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.