Overview
Max Total Supply
35,292.784888526849731988 WAV3
Holders
85 (0.00%)
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$6,782.06
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
3.765849670729474836 WAV3Value
$0.72 ( ~0.000229329202892785 Eth) [0.0107%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Wav3Token
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-12-03 */ // SPDX-License-Identifier: UNLICENSED /* `7MMF' A `7MF' db `7MMF' `7MF' `MA ,MA ,V ;MM: `MA ,V VM: ,VVM: ,V ,V^MM. VM: ,V pd""b. MM. M' MM. M' ,M `MM MM. M'(O) `8b `MM A' `MM A' AbmmmqMA `MM A' ,89 :MM; :MM; A' VML :MM; ""Yb. VF VF .AMA. .AMMA. VF 88 (O) .M' bmmmd' * Similar to water molecules — WAV3 join to the highly volatile Cryptocurrency market, it is not affected by a special deflation mechanism, but is highly yield. * Get inspired by projects: Sav3, ETHY, K3PR, BOND, ... * Each Transfer/Sell transaction on Uniswap will be charged 6% as transaction fee (of which 90% will be sent directly to WStake as rewards * 10% will be burned immediately, the total supply will go down continuously until reaching 30,000 WAV3) */ pragma solidity ^0.6.12; /* * @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 GSN 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 virtual view returns (address payable) { return msg.sender; } function _msgData() internal virtual view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @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 ); } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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 sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @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) { // 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 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts 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 mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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, string memory errorMessage ) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue( address target, bytes memory data, uint256 weiValue, string memory errorMessage ) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{value: weiValue}( data ); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @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. */ 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() internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract DeflationaryERC20 is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; //minimumsupply is 30000 WAV3. When the supply reach 30000, no more fee for transaction. uint256 private _minTotalSupply = 30000e18; string private _name; string private _symbol; uint8 private _decimals; // Transaction Fees: uint8 public txFee = 60; // artifical cap of 255 e.g. 25.5% address public feeDistributor; // fees are sent to fee distributer // Fee Whitelist mapping(address => bool) public feelessSender; mapping(address => bool) public feelessReciever; // if this equals false whitelist can nolonger be added to. bool public canWhitelist = true; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor(string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view 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 returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public override view returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public override view 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 virtual override view 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; } // assign a new transactionfee function setFee(uint8 _newTxFee) public onlyOwner { txFee = _newTxFee; } // assign a new fee distributor address function setFeeDistributor(address _distributor) public onlyOwner { feeDistributor = _distributor; } // enable/disable sender who can send feeless transactions function setFeelessSender(address _sender, bool _feeless) public onlyOwner { require( !_feeless || (_feeless && canWhitelist), "cannot add to whitelist" ); feelessSender[_sender] = _feeless; } // enable/disable recipient who can reccieve feeless transactions function setFeelessReciever(address _recipient, bool _feeless) public onlyOwner { require( !_feeless || (_feeless && canWhitelist), "cannot add to whitelist" ); feelessReciever[_recipient] = _feeless; } // disable adding to whitelist forever function renounceWhitelist() public onlyOwner { // adding to whitelist has been disabled forever: canWhitelist = false; } // to caclulate the amounts for recipient and distributer after fees have been applied function calculateAmountsAfterFee( address sender, address recipient, uint256 amount ) public view returns ( uint256 transferToAmount, uint256 transferToFeeDistributorAmount ) { // check if fees should apply to this transaction if ( _minTotalSupply >= _totalSupply || feelessSender[sender] || feelessReciever[recipient] ) { return (amount, 0); } // calculate fees and amounts uint256 fee = amount.mul(txFee).div(1000); return (amount.sub(fee), fee); } /** * @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"); require(amount > 1000, "amount to small, maths will break"); _beforeTokenTransfer(sender, recipient, amount); // subtract send balanced _balances[sender] = _balances[sender].sub( amount, "ERC20: transfer amount exceeds balance" ); // calculate fee: ( uint256 transferToAmount, uint256 transferToFeeDistributorAmount ) = calculateAmountsAfterFee(sender, recipient, amount); // update recipients balance: _balances[recipient] = _balances[recipient].add(transferToAmount); emit Transfer(sender, recipient, transferToAmount); // update distributers balance: // burn 20% txfee in each transfer if ( transferToFeeDistributorAmount > 0 && feeDistributor != address(0) ) { uint256 burnAmount = transferToFeeDistributorAmount.div(10); _balances[feeDistributor] = _balances[feeDistributor].add( transferToFeeDistributorAmount.sub(burnAmount) ); emit Transfer( sender, feeDistributor, transferToFeeDistributorAmount ); _totalSupply = _totalSupply.sub(burnAmount); emit Transfer(sender, address(0), burnAmount); } } /** @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 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub( amount, "ERC20: burn amount exceeds balance" ); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address 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 { _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 {} } /** * Waves are caused by energy passing through the water, causing the water to move in a circular motion. */ contract Wav3Token is DeflationaryERC20 { constructor() public DeflationaryERC20("Wav3Token", "WAV3") { _mint(msg.sender, 100000e18); } function burn(uint256 amount) public { _burn(msg.sender, amount); } }
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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"calculateAmountsAfterFee","outputs":[{"internalType":"uint256","name":"transferToAmount","type":"uint256"},{"internalType":"uint256","name":"transferToFeeDistributorAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"canWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"feeDistributor","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"feelessReciever","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"feelessSender","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"renounceWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_newTxFee","type":"uint8"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_distributor","type":"address"}],"name":"setFeeDistributor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"bool","name":"_feeless","type":"bool"}],"name":"setFeelessReciever","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"},{"internalType":"bool","name":"_feeless","type":"bool"}],"name":"setFeelessSender","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"},{"inputs":[],"name":"txFee","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405269065a4da25d3016c000006004556007805461ff001916613c00179055600a805460ff191660011790553480156200003b57600080fd5b50604051806040016040528060098152602001682bb0bb19aa37b5b2b760b91b815250604051806040016040528060048152602001635741563360e01b81525060006200008d6200012e60201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508151620000ec906005906020850190620002ac565b50805162000102906006906020840190620002ac565b50506007805460ff1916601217905550620001283369152d02c7e14af680000062000132565b62000348565b3390565b6001600160a01b0382166200018e576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200019c6000838362000245565b620001b8816003546200024a60201b62000df81790919060201c565b6003556001600160a01b038216600090815260016020908152604090912054620001ed91839062000df86200024a821b17901c565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b600082820183811015620002a5576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002ef57805160ff19168380011785556200031f565b828001600101855582156200031f579182015b828111156200031f57825182559160200191906001019062000302565b506200032d92915062000331565b5090565b5b808211156200032d576000815560010162000332565b6116e280620003586000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c8063715018a6116100de578063a9059cbb11610097578063cf82046111610071578063cf82046114610508578063dd62ed3e14610510578063e75d7b041461053e578063f2fde38b146105465761018e565b8063a9059cbb14610496578063cb122a09146104c2578063ccfc2e8d146104e25761018e565b8063715018a6146103f657806383fbca34146103fe5780638da5cb5b1461042c57806395d89b4114610434578063a056735d1461043c578063a457c2d71461046a5761018e565b8063301a58011161014b5780633950935111610125578063395093511461036157806342966c681461038d5780634a6f01b1146103aa57806370a08231146103d05761018e565b8063301a5801146102ea578063313ce5671461033957806339137f8b146103575761018e565b806306fdde0314610193578063095ea7b3146102105780630d43e8ad1461025057806318160ddd146102745780631dd17c321461028e57806323b872dd146102b4575b600080fd5b61019b61056c565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d55781810151838201526020016101bd565b50505050905090810190601f1680156102025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61023c6004803603604081101561022657600080fd5b506001600160a01b038135169060200135610602565b604080519115158252519081900360200190f35b610258610620565b604080516001600160a01b039092168252519081900360200190f35b61027c610635565b60408051918252519081900360200190f35b61023c600480360360208110156102a457600080fd5b50356001600160a01b031661063b565b61023c600480360360608110156102ca57600080fd5b506001600160a01b03813581169160208101359091169060400135610650565b6103206004803603606081101561030057600080fd5b506001600160a01b038135811691602081013590911690604001356106d7565b6040805192835260208301919091528051918290030190f35b610341610778565b6040805160ff9092168252519081900360200190f35b61035f610781565b005b61023c6004803603604081101561037757600080fd5b506001600160a01b0381351690602001356107e5565b61035f600480360360208110156103a357600080fd5b5035610833565b61023c600480360360208110156103c057600080fd5b50356001600160a01b0316610840565b61027c600480360360208110156103e657600080fd5b50356001600160a01b0316610855565b61035f610870565b61035f6004803603604081101561041457600080fd5b506001600160a01b0381351690602001351515610912565b6102586109f7565b61019b610a06565b61035f6004803603604081101561045257600080fd5b506001600160a01b0381351690602001351515610a67565b61023c6004803603604081101561048057600080fd5b506001600160a01b038135169060200135610b4c565b61023c600480360360408110156104ac57600080fd5b506001600160a01b038135169060200135610bb4565b61035f600480360360208110156104d857600080fd5b503560ff16610bc8565b61035f600480360360208110156104f857600080fd5b50356001600160a01b0316610c3c565b610341610cbe565b61027c6004803603604081101561052657600080fd5b506001600160a01b0381358116916020013516610ccc565b61023c610cf7565b61035f6004803603602081101561055c57600080fd5b50356001600160a01b0316610d00565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105f85780601f106105cd576101008083540402835291602001916105f8565b820191906000526020600020905b8154815290600101906020018083116105db57829003601f168201915b5050505050905090565b600061061661060f610e59565b8484610e5d565b5060015b92915050565b6007546201000090046001600160a01b031681565b60035490565b60096020526000908152604090205460ff1681565b600061065d848484610f49565b6106cd84610669610e59565b6106c8856040518060600160405280602881526020016115b6602891396001600160a01b038a166000908152600260205260408120906106a7610e59565b6001600160a01b0316815260208101919091526040016000205491906111f8565b610e5d565b5060019392505050565b60008060035460045410158061070557506001600160a01b03851660009081526008602052604090205460ff165b8061072857506001600160a01b03841660009081526009602052604090205460ff165b1561073857508190506000610770565b60075460009061075f906103e890610759908790610100900460ff1661128f565b906112e8565b905061076b848261132a565b925090505b935093915050565b60075460ff1690565b610789610e59565b6000546001600160a01b039081169116146107d9576040805162461bcd60e51b815260206004820181905260248201526000805160206115de833981519152604482015290519081900360640190fd5b600a805460ff19169055565b60006106166107f2610e59565b846106c88560026000610803610e59565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610df8565b61083d338261136c565b50565b60086020526000908152604090205460ff1681565b6001600160a01b031660009081526001602052604090205490565b610878610e59565b6000546001600160a01b039081169116146108c8576040805162461bcd60e51b815260206004820181905260248201526000805160206115de833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b61091a610e59565b6000546001600160a01b0390811691161461096a576040805162461bcd60e51b815260206004820181905260248201526000805160206115de833981519152604482015290519081900360640190fd5b80158061098157508080156109815750600a5460ff165b6109cc576040805162461bcd60e51b815260206004820152601760248201527618d85b9b9bdd08185919081d1bc81dda1a5d195b1a5cdd604a1b604482015290519081900360640190fd5b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6000546001600160a01b031690565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105f85780601f106105cd576101008083540402835291602001916105f8565b610a6f610e59565b6000546001600160a01b03908116911614610abf576040805162461bcd60e51b815260206004820181905260248201526000805160206115de833981519152604482015290519081900360640190fd5b801580610ad65750808015610ad65750600a5460ff165b610b21576040805162461bcd60e51b815260206004820152601760248201527618d85b9b9bdd08185919081d1bc81dda1a5d195b1a5cdd604a1b604482015290519081900360640190fd5b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b6000610616610b59610e59565b846106c8856040518060600160405280602581526020016116886025913960026000610b83610e59565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906111f8565b6000610616610bc1610e59565b8484610f49565b610bd0610e59565b6000546001600160a01b03908116911614610c20576040805162461bcd60e51b815260206004820181905260248201526000805160206115de833981519152604482015290519081900360640190fd5b6007805460ff9092166101000261ff0019909216919091179055565b610c44610e59565b6000546001600160a01b03908116911614610c94576040805162461bcd60e51b815260206004820181905260248201526000805160206115de833981519152604482015290519081900360640190fd5b600780546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b600754610100900460ff1681565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b600a5460ff1681565b610d08610e59565b6000546001600160a01b03908116911614610d58576040805162461bcd60e51b815260206004820181905260248201526000805160206115de833981519152604482015290519081900360640190fd5b6001600160a01b038116610d9d5760405162461bcd60e51b81526004018080602001828103825260268152602001806115066026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600082820183811015610e52576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b038316610ea25760405162461bcd60e51b81526004018080602001828103825260248152602001806116646024913960400191505060405180910390fd5b6001600160a01b038216610ee75760405162461bcd60e51b815260040180806020018281038252602281526020018061152c6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610f8e5760405162461bcd60e51b815260040180806020018281038252602581526020018061163f6025913960400191505060405180910390fd5b6001600160a01b038216610fd35760405162461bcd60e51b81526004018080602001828103825260238152602001806114c16023913960400191505060405180910390fd5b6103e881116110135760405162461bcd60e51b815260040180806020018281038252602181526020018061154e6021913960400191505060405180910390fd5b61101e838383611456565b61105b8160405180606001604052806026815260200161156f602691396001600160a01b03861660009081526001602052604090205491906111f8565b6001600160a01b038416600090815260016020526040812091909155806110838585856106d7565b6001600160a01b03861660009081526001602052604090205491935091506110ab9083610df8565b6001600160a01b0380861660008181526001602090815260409182902094909455805186815290519193928916926000805160206115fe83398151915292918290030190a360008111801561111057506007546201000090046001600160a01b031615155b156111f157600061112282600a6112e8565b9050611158611131838361132a565b6007546201000090046001600160a01b031660009081526001602052604090205490610df8565b600780546001600160a01b036201000091829004811660009081526001602090815260409182902095909555925483518781529351929004811693908a16926000805160206115fe833981519152929081900390910190a36003546111bd908261132a565b6003556040805182815290516000916001600160a01b038916916000805160206115fe8339815191529181900360200190a3505b5050505050565b600081848411156112875760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561124c578181015183820152602001611234565b50505050905090810190601f1680156112795780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008261129e5750600061061a565b828202828482816112ab57fe5b0414610e525760405162461bcd60e51b81526004018080602001828103825260218152602001806115956021913960400191505060405180910390fd5b6000610e5283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061145b565b6000610e5283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506111f8565b6001600160a01b0382166113b15760405162461bcd60e51b815260040180806020018281038252602181526020018061161e6021913960400191505060405180910390fd5b6113bd82600083611456565b6113fa816040518060600160405280602281526020016114e4602291396001600160a01b03851660009081526001602052604090205491906111f8565b6001600160a01b038316600090815260016020526040902055600354611420908261132a565b6003556040805182815290516000916001600160a01b038516916000805160206115fe8339815191529181900360200190a35050565b505050565b600081836114aa5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561124c578181015183820152602001611234565b5060008385816114b657fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373616d6f756e7420746f20736d616c6c2c206d617468732077696c6c20627265616b45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d31e8e1c4ece62b02c4bab54578b0f349031c19d8c40cefa49392ddf68e2dc8764736f6c634300060c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061018e5760003560e01c8063715018a6116100de578063a9059cbb11610097578063cf82046111610071578063cf82046114610508578063dd62ed3e14610510578063e75d7b041461053e578063f2fde38b146105465761018e565b8063a9059cbb14610496578063cb122a09146104c2578063ccfc2e8d146104e25761018e565b8063715018a6146103f657806383fbca34146103fe5780638da5cb5b1461042c57806395d89b4114610434578063a056735d1461043c578063a457c2d71461046a5761018e565b8063301a58011161014b5780633950935111610125578063395093511461036157806342966c681461038d5780634a6f01b1146103aa57806370a08231146103d05761018e565b8063301a5801146102ea578063313ce5671461033957806339137f8b146103575761018e565b806306fdde0314610193578063095ea7b3146102105780630d43e8ad1461025057806318160ddd146102745780631dd17c321461028e57806323b872dd146102b4575b600080fd5b61019b61056c565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d55781810151838201526020016101bd565b50505050905090810190601f1680156102025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61023c6004803603604081101561022657600080fd5b506001600160a01b038135169060200135610602565b604080519115158252519081900360200190f35b610258610620565b604080516001600160a01b039092168252519081900360200190f35b61027c610635565b60408051918252519081900360200190f35b61023c600480360360208110156102a457600080fd5b50356001600160a01b031661063b565b61023c600480360360608110156102ca57600080fd5b506001600160a01b03813581169160208101359091169060400135610650565b6103206004803603606081101561030057600080fd5b506001600160a01b038135811691602081013590911690604001356106d7565b6040805192835260208301919091528051918290030190f35b610341610778565b6040805160ff9092168252519081900360200190f35b61035f610781565b005b61023c6004803603604081101561037757600080fd5b506001600160a01b0381351690602001356107e5565b61035f600480360360208110156103a357600080fd5b5035610833565b61023c600480360360208110156103c057600080fd5b50356001600160a01b0316610840565b61027c600480360360208110156103e657600080fd5b50356001600160a01b0316610855565b61035f610870565b61035f6004803603604081101561041457600080fd5b506001600160a01b0381351690602001351515610912565b6102586109f7565b61019b610a06565b61035f6004803603604081101561045257600080fd5b506001600160a01b0381351690602001351515610a67565b61023c6004803603604081101561048057600080fd5b506001600160a01b038135169060200135610b4c565b61023c600480360360408110156104ac57600080fd5b506001600160a01b038135169060200135610bb4565b61035f600480360360208110156104d857600080fd5b503560ff16610bc8565b61035f600480360360208110156104f857600080fd5b50356001600160a01b0316610c3c565b610341610cbe565b61027c6004803603604081101561052657600080fd5b506001600160a01b0381358116916020013516610ccc565b61023c610cf7565b61035f6004803603602081101561055c57600080fd5b50356001600160a01b0316610d00565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105f85780601f106105cd576101008083540402835291602001916105f8565b820191906000526020600020905b8154815290600101906020018083116105db57829003601f168201915b5050505050905090565b600061061661060f610e59565b8484610e5d565b5060015b92915050565b6007546201000090046001600160a01b031681565b60035490565b60096020526000908152604090205460ff1681565b600061065d848484610f49565b6106cd84610669610e59565b6106c8856040518060600160405280602881526020016115b6602891396001600160a01b038a166000908152600260205260408120906106a7610e59565b6001600160a01b0316815260208101919091526040016000205491906111f8565b610e5d565b5060019392505050565b60008060035460045410158061070557506001600160a01b03851660009081526008602052604090205460ff165b8061072857506001600160a01b03841660009081526009602052604090205460ff165b1561073857508190506000610770565b60075460009061075f906103e890610759908790610100900460ff1661128f565b906112e8565b905061076b848261132a565b925090505b935093915050565b60075460ff1690565b610789610e59565b6000546001600160a01b039081169116146107d9576040805162461bcd60e51b815260206004820181905260248201526000805160206115de833981519152604482015290519081900360640190fd5b600a805460ff19169055565b60006106166107f2610e59565b846106c88560026000610803610e59565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610df8565b61083d338261136c565b50565b60086020526000908152604090205460ff1681565b6001600160a01b031660009081526001602052604090205490565b610878610e59565b6000546001600160a01b039081169116146108c8576040805162461bcd60e51b815260206004820181905260248201526000805160206115de833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b61091a610e59565b6000546001600160a01b0390811691161461096a576040805162461bcd60e51b815260206004820181905260248201526000805160206115de833981519152604482015290519081900360640190fd5b80158061098157508080156109815750600a5460ff165b6109cc576040805162461bcd60e51b815260206004820152601760248201527618d85b9b9bdd08185919081d1bc81dda1a5d195b1a5cdd604a1b604482015290519081900360640190fd5b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6000546001600160a01b031690565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105f85780601f106105cd576101008083540402835291602001916105f8565b610a6f610e59565b6000546001600160a01b03908116911614610abf576040805162461bcd60e51b815260206004820181905260248201526000805160206115de833981519152604482015290519081900360640190fd5b801580610ad65750808015610ad65750600a5460ff165b610b21576040805162461bcd60e51b815260206004820152601760248201527618d85b9b9bdd08185919081d1bc81dda1a5d195b1a5cdd604a1b604482015290519081900360640190fd5b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b6000610616610b59610e59565b846106c8856040518060600160405280602581526020016116886025913960026000610b83610e59565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906111f8565b6000610616610bc1610e59565b8484610f49565b610bd0610e59565b6000546001600160a01b03908116911614610c20576040805162461bcd60e51b815260206004820181905260248201526000805160206115de833981519152604482015290519081900360640190fd5b6007805460ff9092166101000261ff0019909216919091179055565b610c44610e59565b6000546001600160a01b03908116911614610c94576040805162461bcd60e51b815260206004820181905260248201526000805160206115de833981519152604482015290519081900360640190fd5b600780546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b600754610100900460ff1681565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b600a5460ff1681565b610d08610e59565b6000546001600160a01b03908116911614610d58576040805162461bcd60e51b815260206004820181905260248201526000805160206115de833981519152604482015290519081900360640190fd5b6001600160a01b038116610d9d5760405162461bcd60e51b81526004018080602001828103825260268152602001806115066026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600082820183811015610e52576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b038316610ea25760405162461bcd60e51b81526004018080602001828103825260248152602001806116646024913960400191505060405180910390fd5b6001600160a01b038216610ee75760405162461bcd60e51b815260040180806020018281038252602281526020018061152c6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610f8e5760405162461bcd60e51b815260040180806020018281038252602581526020018061163f6025913960400191505060405180910390fd5b6001600160a01b038216610fd35760405162461bcd60e51b81526004018080602001828103825260238152602001806114c16023913960400191505060405180910390fd5b6103e881116110135760405162461bcd60e51b815260040180806020018281038252602181526020018061154e6021913960400191505060405180910390fd5b61101e838383611456565b61105b8160405180606001604052806026815260200161156f602691396001600160a01b03861660009081526001602052604090205491906111f8565b6001600160a01b038416600090815260016020526040812091909155806110838585856106d7565b6001600160a01b03861660009081526001602052604090205491935091506110ab9083610df8565b6001600160a01b0380861660008181526001602090815260409182902094909455805186815290519193928916926000805160206115fe83398151915292918290030190a360008111801561111057506007546201000090046001600160a01b031615155b156111f157600061112282600a6112e8565b9050611158611131838361132a565b6007546201000090046001600160a01b031660009081526001602052604090205490610df8565b600780546001600160a01b036201000091829004811660009081526001602090815260409182902095909555925483518781529351929004811693908a16926000805160206115fe833981519152929081900390910190a36003546111bd908261132a565b6003556040805182815290516000916001600160a01b038916916000805160206115fe8339815191529181900360200190a3505b5050505050565b600081848411156112875760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561124c578181015183820152602001611234565b50505050905090810190601f1680156112795780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008261129e5750600061061a565b828202828482816112ab57fe5b0414610e525760405162461bcd60e51b81526004018080602001828103825260218152602001806115956021913960400191505060405180910390fd5b6000610e5283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061145b565b6000610e5283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506111f8565b6001600160a01b0382166113b15760405162461bcd60e51b815260040180806020018281038252602181526020018061161e6021913960400191505060405180910390fd5b6113bd82600083611456565b6113fa816040518060600160405280602281526020016114e4602291396001600160a01b03851660009081526001602052604090205491906111f8565b6001600160a01b038316600090815260016020526040902055600354611420908261132a565b6003556040805182815290516000916001600160a01b038516916000805160206115fe8339815191529181900360200190a35050565b505050565b600081836114aa5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561124c578181015183820152602001611234565b5060008385816114b657fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373616d6f756e7420746f20736d616c6c2c206d617468732077696c6c20627265616b45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d31e8e1c4ece62b02c4bab54578b0f349031c19d8c40cefa49392ddf68e2dc8764736f6c634300060c0033
Deployed Bytecode Sourcemap
34011:250:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21418:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23615:210;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23615:210:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;20572:29;;;:::i;:::-;;;;-1:-1:-1;;;;;20572:29:0;;;;;;;;;;;;;;22493:100;;;:::i;:::-;;;;;;;;;;;;;;;;20720:47;;;;;;;;;;;;;;;;-1:-1:-1;20720:47:0;-1:-1:-1;;;;;20720:47:0;;:::i;24299:454::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24299:454:0;;;;;;;;;;;;;;;;;:::i;27642:672::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27642:672:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;22345:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27398:144;;;:::i;:::-;;25162:300;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25162:300:0;;;;;;;;:::i;34177:81::-;;;;;;;;;;;;;;;;-1:-1:-1;34177:81:0;;:::i;20668:45::-;;;;;;;;;;;;;;;;-1:-1:-1;20668:45:0;-1:-1:-1;;;;;20668:45:0;;:::i;22656:119::-;;;;;;;;;;;;;;;;-1:-1:-1;22656:119:0;-1:-1:-1;;;;;22656:119:0;;:::i;18172:148::-;;;:::i;27063:283::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27063:283:0;;;;;;;;;;:::i;17530:79::-;;;:::i;21620:87::-;;;:::i;26734:250::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26734:250:0;;;;;;;;;;:::i;25965:400::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25965:400:0;;;;;;;;:::i;22988:216::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22988:216:0;;;;;;;;:::i;26409:86::-;;;;;;;;;;;;;;;;-1:-1:-1;26409:86:0;;;;:::i;26548:114::-;;;;;;;;;;;;;;;;-1:-1:-1;26548:114:0;-1:-1:-1;;;;;26548:114:0;;:::i;20507:23::-;;;:::i;23267:201::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23267:201:0;;;;;;;;;;:::i;20839:31::-;;;:::i;18475:281::-;;;;;;;;;;;;;;;;-1:-1:-1;18475:281:0;-1:-1:-1;;;;;18475:281:0;;:::i;21418:83::-;21488:5;21481:12;;;;;;;;-1:-1:-1;;21481:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21455:13;;21481:12;;21488:5;;21481:12;;21488:5;21481:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21418:83;:::o;23615:210::-;23734:4;23756:39;23765:12;:10;:12::i;:::-;23779:7;23788:6;23756:8;:39::i;:::-;-1:-1:-1;23813:4:0;23615:210;;;;;:::o;20572:29::-;;;;;;-1:-1:-1;;;;;20572:29:0;;:::o;22493:100::-;22573:12;;22493:100;:::o;20720:47::-;;;;;;;;;;;;;;;:::o;24299:454::-;24439:4;24456:36;24466:6;24474:9;24485:6;24456:9;:36::i;:::-;24503:220;24526:6;24547:12;:10;:12::i;:::-;24574:138;24630:6;24574:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24574:19:0;;;;;;:11;:19;;;;;;24594:12;:10;:12::i;:::-;-1:-1:-1;;;;;24574:33:0;;;;;;;;;;;;-1:-1:-1;24574:33:0;;;:138;:37;:138::i;:::-;24503:8;:220::i;:::-;-1:-1:-1;24741:4:0;24299:454;;;;;:::o;27642:672::-;27823:24;27862:38;28024:12;;28005:15;;:31;;:69;;;-1:-1:-1;;;;;;28053:21:0;;;;;;:13;:21;;;;;;;;28005:69;:112;;;-1:-1:-1;;;;;;28091:26:0;;;;;;:15;:26;;;;;;;;28005:112;27987:187;;;-1:-1:-1;28152:6:0;;-1:-1:-1;28160:1:0;28144:18;;27987:187;28250:5;;28225:11;;28239:27;;28261:4;;28239:17;;:6;;28250:5;;;;;28239:10;:17::i;:::-;:21;;:27::i;:::-;28225:41;-1:-1:-1;28285:15:0;:6;28225:41;28285:10;:15::i;:::-;28277:29;-1:-1:-1;28302:3:0;-1:-1:-1;27642:672:0;;;;;;;:::o;22345:83::-;22411:9;;;;22345:83;:::o;27398:144::-;17752:12;:10;:12::i;:::-;17742:6;;-1:-1:-1;;;;;17742:6:0;;;:22;;;17734:67;;;;;-1:-1:-1;;;17734:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17734:67:0;;;;;;;;;;;;;;;27514:12:::1;:20:::0;;-1:-1:-1;;27514:20:0::1;::::0;;27398:144::o;25162:300::-;25277:4;25299:133;25322:12;:10;:12::i;:::-;25349:7;25371:50;25410:10;25371:11;:25;25383:12;:10;:12::i;:::-;-1:-1:-1;;;;;25371:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;25371:25:0;;;:34;;;;;;;;;;;:38;:50::i;34177:81::-;34225:25;34231:10;34243:6;34225:5;:25::i;:::-;34177:81;:::o;20668:45::-;;;;;;;;;;;;;;;:::o;22656:119::-;-1:-1:-1;;;;;22749:18:0;22722:7;22749:18;;;:9;:18;;;;;;;22656:119::o;18172:148::-;17752:12;:10;:12::i;:::-;17742:6;;-1:-1:-1;;;;;17742:6:0;;;:22;;;17734:67;;;;;-1:-1:-1;;;17734:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17734:67:0;;;;;;;;;;;;;;;18279:1:::1;18263:6:::0;;18242:40:::1;::::0;-1:-1:-1;;;;;18263:6:0;;::::1;::::0;18242:40:::1;::::0;18279:1;;18242:40:::1;18310:1;18293:19:::0;;-1:-1:-1;;;;;;18293:19:0::1;::::0;;18172:148::o;27063:283::-;17752:12;:10;:12::i;:::-;17742:6;;-1:-1:-1;;;;;17742:6:0;;;:22;;;17734:67;;;;;-1:-1:-1;;;17734:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17734:67:0;;;;;;;;;;;;;;;27200:8:::1;27199:9;:39;;;;27213:8;:24;;;;-1:-1:-1::0;27225:12:0::1;::::0;::::1;;27213:24;27177:112;;;::::0;;-1:-1:-1;;;27177:112:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;27177:112:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;27300:27:0;;;::::1;;::::0;;;:15:::1;:27;::::0;;;;:38;;-1:-1:-1;;27300:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27063:283::o;17530:79::-;17568:7;17595:6;-1:-1:-1;;;;;17595:6:0;17530:79;:::o;21620:87::-;21692:7;21685:14;;;;;;;;-1:-1:-1;;21685:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21659:13;;21685:14;;21692:7;;21685:14;;21692:7;21685:14;;;;;;;;;;;;;;;;;;;;;;;;26734:250;17752:12;:10;:12::i;:::-;17742:6;;-1:-1:-1;;;;;17742:6:0;;;:22;;;17734:67;;;;;-1:-1:-1;;;17734:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17734:67:0;;;;;;;;;;;;;;;26843:8:::1;26842:9;:39;;;;26856:8;:24;;;;-1:-1:-1::0;26868:12:0::1;::::0;::::1;;26856:24;26820:112;;;::::0;;-1:-1:-1;;;26820:112:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;26820:112:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;26943:22:0;;;::::1;;::::0;;;:13:::1;:22;::::0;;;;:33;;-1:-1:-1;;26943:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26734:250::o;25965:400::-;26085:4;26107:228;26130:12;:10;:12::i;:::-;26157:7;26179:145;26236:15;26179:145;;;;;;;;;;;;;;;;;:11;:25;26191:12;:10;:12::i;:::-;-1:-1:-1;;;;;26179:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;26179:25:0;;;:34;;;;;;;;;;;:145;:38;:145::i;22988:216::-;23110:4;23132:42;23142:12;:10;:12::i;:::-;23156:9;23167:6;23132:9;:42::i;26409:86::-;17752:12;:10;:12::i;:::-;17742:6;;-1:-1:-1;;;;;17742:6:0;;;:22;;;17734:67;;;;;-1:-1:-1;;;17734:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17734:67:0;;;;;;;;;;;;;;;26470:5:::1;:17:::0;;::::1;::::0;;::::1;;;-1:-1:-1::0;;26470:17:0;;::::1;::::0;;;::::1;::::0;;26409:86::o;26548:114::-;17752:12;:10;:12::i;:::-;17742:6;;-1:-1:-1;;;;;17742:6:0;;;:22;;;17734:67;;;;;-1:-1:-1;;;17734:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17734:67:0;;;;;;;;;;;;;;;26625:14:::1;:29:::0;;-1:-1:-1;;;;;26625:29:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;26625:29:0;;::::1;::::0;;;::::1;::::0;;26548:114::o;20507:23::-;;;;;;;;;:::o;23267:201::-;-1:-1:-1;;;;;23433:18:0;;;23401:7;23433:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;23267:201::o;20839:31::-;;;;;;:::o;18475:281::-;17752:12;:10;:12::i;:::-;17742:6;;-1:-1:-1;;;;;17742:6:0;;;:22;;;17734:67;;;;;-1:-1:-1;;;17734:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17734:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;18578:22:0;::::1;18556:110;;;;-1:-1:-1::0;;;18556:110:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18703:6;::::0;;18682:38:::1;::::0;-1:-1:-1;;;;;18682:38:0;;::::1;::::0;18703:6;::::1;::::0;18682:38:::1;::::0;::::1;18731:6;:17:::0;;-1:-1:-1;;;;;;18731:17:0::1;-1:-1:-1::0;;;;;18731:17:0;;;::::1;::::0;;;::::1;::::0;;18475:281::o;5546:181::-;5604:7;5636:5;;;5660:6;;;;5652:46;;;;;-1:-1:-1;;;5652:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;5718:1;5546:181;-1:-1:-1;;;5546:181:0:o;1526:106::-;1614:10;1526:106;:::o;32358:380::-;-1:-1:-1;;;;;32494:19:0;;32486:68;;;;-1:-1:-1;;;32486:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32573:21:0;;32565:68;;;;-1:-1:-1;;;32565:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32646:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;32698:32;;;;;;;;;;;;;;;;;32358:380;;;:::o;28804:1670::-;-1:-1:-1;;;;;28944:20:0;;28936:70;;;;-1:-1:-1;;;28936:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29025:23:0;;29017:71;;;;-1:-1:-1;;;29017:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29116:4;29107:6;:13;29099:59;;;;-1:-1:-1;;;29099:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29169:47;29190:6;29198:9;29209:6;29169:20;:47::i;:::-;29284:108;29320:6;29284:108;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29284:17:0;;;;;;:9;:17;;;;;;;:108;:21;:108::i;:::-;-1:-1:-1;;;;;29264:17:0;;;;;;:9;:17;;;;;:128;;;;:17;29538:51;29274:6;29571:9;29582:6;29538:24;:51::i;:::-;-1:-1:-1;;;;;29664:20:0;;;;;;:9;:20;;;;;;29432:157;;-1:-1:-1;29432:157:0;-1:-1:-1;29664:42:0;;29432:157;29664:24;:42::i;:::-;-1:-1:-1;;;;;29641:20:0;;;;;;;:9;:20;;;;;;;;;:65;;;;29722:45;;;;;;;29641:20;;29722:45;;;;-1:-1:-1;;;;;;;;;;;29722:45:0;;;;;;;;29916:1;29883:30;:34;:66;;;;-1:-1:-1;29921:14:0;;;;;-1:-1:-1;;;;;29921:14:0;:28;;29883:66;29865:602;;;29976:18;29997:38;:30;30032:2;29997:34;:38::i;:::-;29976:59;-1:-1:-1;30078:109:0;30126:46;:30;29976:59;30126:34;:46::i;:::-;30088:14;;;;;-1:-1:-1;;;;;30088:14:0;30078:25;;;;:9;:25;;;;;;;:29;:109::i;:::-;30060:14;;;-1:-1:-1;;;;;30060:14:0;;;;;;;30050:25;;;;:9;:25;;;;;;;;;:137;;;;30259:14;;30207:130;;;;;;;30259:14;;;;;;30207:130;;;;-1:-1:-1;;;;;;;;;;;30207:130:0;;;;;;;;;;30367:12;;:28;;30384:10;30367:16;:28::i;:::-;30352:12;:43;30415:40;;;;;;;;30440:1;;-1:-1:-1;;;;;30415:40:0;;;-1:-1:-1;;;;;;;;;;;30415:40:0;;;;;;;;29865:602;;28804:1670;;;;;:::o;6449:226::-;6569:7;6605:12;6597:6;;;;6589:29;;;;-1:-1:-1;;;6589:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;6641:5:0;;;6449:226::o;6934:471::-;6992:7;7237:6;7233:47;;-1:-1:-1;7267:1:0;7260:8;;7233:47;7304:5;;;7308:1;7304;:5;:1;7328:5;;;;;:10;7320:56;;;;-1:-1:-1;;;7320:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7881:132;7939:7;7966:39;7970:1;7973;7966:39;;;;;;;;;;;;;;;;;:3;:39::i;6010:136::-;6068:7;6095:43;6099:1;6102;6095:43;;;;;;;;;;;;;;;;;:3;:43::i;31465:455::-;-1:-1:-1;;;;;31549:21:0;;31541:67;;;;-1:-1:-1;;;31541:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31621:49;31642:7;31659:1;31663:6;31621:20;:49::i;:::-;31704:105;31741:6;31704:105;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31704:18:0;;;;;;:9;:18;;;;;;;:105;:22;:105::i;:::-;-1:-1:-1;;;;;31683:18:0;;;;;;:9;:18;;;;;:126;31835:12;;:24;;31852:6;31835:16;:24::i;:::-;31820:12;:39;31875:37;;;;;;;;31901:1;;-1:-1:-1;;;;;31875:37:0;;;-1:-1:-1;;;;;;;;;;;31875:37:0;;;;;;;;31465:455;;:::o;33763:125::-;;;;:::o;8509:312::-;8629:7;8664:12;8657:5;8649:28;;;;-1:-1:-1;;;8649:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8688:9;8704:1;8700;:5;;;;;;;8509:312;-1:-1:-1;;;;;8509:312:0:o
Swarm Source
ipfs://d31e8e1c4ece62b02c4bab54578b0f349031c19d8c40cefa49392ddf68e2dc87
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.