Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
100,000,000 BITE
Holders
848
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BITE
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-09 */ // SPDX-License-Identifier: MIT // File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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 { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, 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) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, 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) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - 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 {} } // File: contracts/BITE.sol pragma solidity ^0.8.0; contract BITE is ERC20, Ownable, ReentrancyGuard { using SafeMath for uint256; uint256 private constant MARKETING_TAX = 1; uint256 private constant MARKETING_TAX_DIVISOR = 100; address public marketingWallet; address public airdropWallet; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; event UniswapRouterUpdated(address indexed newUniswapRouter); constructor() ERC20("BITE", "BITE") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); airdropWallet = 0x70Ebd5d7f54c6ea096Ef7b801aE679391290930F; marketingWallet = 0xd11e6784BA46d34403AF0789310a22b60075705d; _mint(airdropWallet, 100_000_000 * 10**decimals()); } function _applyMarketingTax(address sender, address recipient, uint256 amount) private returns (uint256) { if ((sender == uniswapV2Pair || recipient == uniswapV2Pair) && sender != airdropWallet && sender != marketingWallet && recipient != airdropWallet && recipient != marketingWallet) { uint256 marketingAmount = amount.mul(MARKETING_TAX).div(MARKETING_TAX_DIVISOR); uint256 netAmount = amount.sub(marketingAmount); _transfer(sender, marketingWallet, marketingAmount); return netAmount; } return amount; } function transfer(address recipient, uint256 amount) public override nonReentrant returns (bool) { uint256 netAmount = _applyMarketingTax(_msgSender(), recipient, amount); _transfer(_msgSender(), recipient, netAmount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override nonReentrant returns (bool) { uint256 netAmount = _applyMarketingTax(sender, recipient, amount); _transfer(sender, recipient, netAmount); _approve(sender, _msgSender(), allowance(sender, _msgSender()).sub(netAmount)); return true; } function renounceOwnership() public override onlyOwner { super.renounceOwnership(); } }
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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newUniswapRouter","type":"address"}],"name":"UniswapRouterUpdated","type":"event"},{"inputs":[],"name":"airdropWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600481526020017f42495445000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f424954450000000000000000000000000000000000000000000000000000000081525081600390816200008f9190620008a6565b508060049081620000a19190620008a6565b505050620000c4620000b8620003de60201b60201c565b620003e660201b60201c565b60016006819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d905080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000172573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001989190620009f7565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000200573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002269190620009f7565b6040518363ffffffff1660e01b81526004016200024592919062000a3a565b6020604051808303816000875af115801562000265573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028b9190620009f7565b600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507370ebd5d7f54c6ea096ef7b801ae679391290930f600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073d11e6784ba46d34403af0789310a22b60075705d600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003d7600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620003ac620004ac60201b60201c565b600a620003ba919062000bf7565b6305f5e100620003cb919062000c48565b620004b560201b60201c565b5062000d7f565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000527576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200051e9062000cf4565b60405180910390fd5b6200053b600083836200062260201b60201c565b80600260008282546200054f919062000d16565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000602919062000d62565b60405180910390a36200061e600083836200062760201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006ae57607f821691505b602082108103620006c457620006c362000666565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200072e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006ef565b6200073a8683620006ef565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000787620007816200077b8462000752565b6200075c565b62000752565b9050919050565b6000819050919050565b620007a38362000766565b620007bb620007b2826200078e565b848454620006fc565b825550505050565b600090565b620007d2620007c3565b620007df81848462000798565b505050565b5b818110156200080757620007fb600082620007c8565b600181019050620007e5565b5050565b601f82111562000856576200082081620006ca565b6200082b84620006df565b810160208510156200083b578190505b620008536200084a85620006df565b830182620007e4565b50505b505050565b600082821c905092915050565b60006200087b600019846008026200085b565b1980831691505092915050565b600062000896838362000868565b9150826002028217905092915050565b620008b1826200062c565b67ffffffffffffffff811115620008cd57620008cc62000637565b5b620008d9825462000695565b620008e68282856200080b565b600060209050601f8311600181146200091e576000841562000909578287015190505b62000915858262000888565b86555062000985565b601f1984166200092e86620006ca565b60005b82811015620009585784890151825560018201915060208501945060208101905062000931565b8683101562000978578489015162000974601f89168262000868565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620009bf8262000992565b9050919050565b620009d181620009b2565b8114620009dd57600080fd5b50565b600081519050620009f181620009c6565b92915050565b60006020828403121562000a105762000a0f6200098d565b5b600062000a2084828501620009e0565b91505092915050565b62000a3481620009b2565b82525050565b600060408201905062000a51600083018562000a29565b62000a60602083018462000a29565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000af55780860481111562000acd5762000acc62000a67565b5b600185161562000add5780820291505b808102905062000aed8562000a96565b945062000aad565b94509492505050565b60008262000b10576001905062000be3565b8162000b20576000905062000be3565b816001811462000b39576002811462000b445762000b7a565b600191505062000be3565b60ff84111562000b595762000b5862000a67565b5b8360020a91508482111562000b735762000b7262000a67565b5b5062000be3565b5060208310610133831016604e8410600b841016171562000bb45782820a90508381111562000bae5762000bad62000a67565b5b62000be3565b62000bc3848484600162000aa3565b9250905081840481111562000bdd5762000bdc62000a67565b5b81810290505b9392505050565b600060ff82169050919050565b600062000c048262000752565b915062000c118362000bea565b925062000c407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000afe565b905092915050565b600062000c558262000752565b915062000c628362000752565b925082820262000c728162000752565b9150828204841483151762000c8c5762000c8b62000a67565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000cdc601f8362000c93565b915062000ce98262000ca4565b602082019050919050565b6000602082019050818103600083015262000d0f8162000ccd565b9050919050565b600062000d238262000752565b915062000d308362000752565b925082820190508082111562000d4b5762000d4a62000a67565b5b92915050565b62000d5c8162000752565b82525050565b600060208201905062000d79600083018462000d51565b92915050565b611b898062000d8f6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a14779c911610071578063a14779c9146102d5578063a457c2d7146102f3578063a9059cbb14610323578063dd62ed3e14610353578063f2fde38b1461038357610116565b8063715018a61461027157806375f0a8741461027b5780638da5cb5b1461029957806395d89b41146102b757610116565b806323b872dd116100e957806323b872dd146101a5578063313ce567146101d557806339509351146101f357806349bd5a5e1461022357806370a082311461024157610116565b806306fdde031461011b578063095ea7b3146101395780631694505e1461016957806318160ddd14610187575b600080fd5b61012361039f565b60405161013091906111ee565b60405180910390f35b610153600480360381019061014e91906112a9565b610431565b6040516101609190611304565b60405180910390f35b610171610454565b60405161017e919061137e565b60405180910390f35b61018f61047a565b60405161019c91906113a8565b60405180910390f35b6101bf60048036038101906101ba91906113c3565b610484565b6040516101cc9190611304565b60405180910390f35b6101dd6104f0565b6040516101ea9190611432565b60405180910390f35b61020d600480360381019061020891906112a9565b6104f9565b60405161021a9190611304565b60405180910390f35b61022b610530565b604051610238919061145c565b60405180910390f35b61025b60048036038101906102569190611477565b610556565b60405161026891906113a8565b60405180910390f35b61027961059e565b005b6102836105b0565b604051610290919061145c565b60405180910390f35b6102a16105d6565b6040516102ae919061145c565b60405180910390f35b6102bf610600565b6040516102cc91906111ee565b60405180910390f35b6102dd610692565b6040516102ea919061145c565b60405180910390f35b61030d600480360381019061030891906112a9565b6106b8565b60405161031a9190611304565b60405180910390f35b61033d600480360381019061033891906112a9565b61072f565b60405161034a9190611304565b60405180910390f35b61036d600480360381019061036891906114a4565b610774565b60405161037a91906113a8565b60405180910390f35b61039d60048036038101906103989190611477565b6107fb565b005b6060600380546103ae90611513565b80601f01602080910402602001604051908101604052809291908181526020018280546103da90611513565b80156104275780601f106103fc57610100808354040283529160200191610427565b820191906000526020600020905b81548152906001019060200180831161040a57829003601f168201915b5050505050905090565b60008061043c61087e565b9050610449818585610886565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b600061048e610a4f565b600061049b858585610a9e565b90506104a8858583610d3a565b6104dc856104b461087e565b6104d7846104c98a6104c461087e565b610774565b610fb090919063ffffffff16565b610886565b60019150506104e9610fc6565b9392505050565b60006012905090565b60008061050461087e565b90506105258185856105168589610774565b6105209190611573565b610886565b600191505092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105a6610fd0565b6105ae61104e565b565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461060f90611513565b80601f016020809104026020016040519081016040528092919081815260200182805461063b90611513565b80156106885780601f1061065d57610100808354040283529160200191610688565b820191906000526020600020905b81548152906001019060200180831161066b57829003601f168201915b5050505050905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806106c361087e565b905060006106d18286610774565b905083811015610716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070d90611619565b60405180910390fd5b6107238286868403610886565b60019250505092915050565b6000610739610a4f565b600061074d61074661087e565b8585610a9e565b905061076161075a61087e565b8583610d3a565b600191505061076e610fc6565b92915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610803610fd0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610872576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610869906116ab565b60405180910390fd5b61087b81611062565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ec9061173d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095b906117cf565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a4291906113a8565b60405180910390a3505050565b600260065403610a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8b9061183b565b60405180910390fd5b6002600681905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610b495750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8015610ba35750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015610bfd5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015610c575750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015610cb15750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15610d2f576000610cdf6064610cd160018661112890919063ffffffff16565b61113e90919063ffffffff16565b90506000610cf68285610fb090919063ffffffff16565b9050610d2586600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610d3a565b8092505050610d33565b8190505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da0906118cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f9061195f565b60405180910390fd5b610e23838383611154565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea0906119f1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f9791906113a8565b60405180910390a3610faa848484611159565b50505050565b60008183610fbe9190611a11565b905092915050565b6001600681905550565b610fd861087e565b73ffffffffffffffffffffffffffffffffffffffff16610ff66105d6565b73ffffffffffffffffffffffffffffffffffffffff161461104c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104390611a91565b60405180910390fd5b565b611056610fd0565b6110606000611062565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836111369190611ab1565b905092915050565b6000818361114c9190611b22565b905092915050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561119857808201518184015260208101905061117d565b60008484015250505050565b6000601f19601f8301169050919050565b60006111c08261115e565b6111ca8185611169565b93506111da81856020860161117a565b6111e3816111a4565b840191505092915050565b6000602082019050818103600083015261120881846111b5565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061124082611215565b9050919050565b61125081611235565b811461125b57600080fd5b50565b60008135905061126d81611247565b92915050565b6000819050919050565b61128681611273565b811461129157600080fd5b50565b6000813590506112a38161127d565b92915050565b600080604083850312156112c0576112bf611210565b5b60006112ce8582860161125e565b92505060206112df85828601611294565b9150509250929050565b60008115159050919050565b6112fe816112e9565b82525050565b600060208201905061131960008301846112f5565b92915050565b6000819050919050565b600061134461133f61133a84611215565b61131f565b611215565b9050919050565b600061135682611329565b9050919050565b60006113688261134b565b9050919050565b6113788161135d565b82525050565b6000602082019050611393600083018461136f565b92915050565b6113a281611273565b82525050565b60006020820190506113bd6000830184611399565b92915050565b6000806000606084860312156113dc576113db611210565b5b60006113ea8682870161125e565b93505060206113fb8682870161125e565b925050604061140c86828701611294565b9150509250925092565b600060ff82169050919050565b61142c81611416565b82525050565b60006020820190506114476000830184611423565b92915050565b61145681611235565b82525050565b6000602082019050611471600083018461144d565b92915050565b60006020828403121561148d5761148c611210565b5b600061149b8482850161125e565b91505092915050565b600080604083850312156114bb576114ba611210565b5b60006114c98582860161125e565b92505060206114da8582860161125e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061152b57607f821691505b60208210810361153e5761153d6114e4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061157e82611273565b915061158983611273565b92508282019050808211156115a1576115a0611544565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611603602583611169565b915061160e826115a7565b604082019050919050565b60006020820190508181036000830152611632816115f6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611695602683611169565b91506116a082611639565b604082019050919050565b600060208201905081810360008301526116c481611688565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611727602483611169565b9150611732826116cb565b604082019050919050565b600060208201905081810360008301526117568161171a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117b9602283611169565b91506117c48261175d565b604082019050919050565b600060208201905081810360008301526117e8816117ac565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000611825601f83611169565b9150611830826117ef565b602082019050919050565b6000602082019050818103600083015261185481611818565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118b7602583611169565b91506118c28261185b565b604082019050919050565b600060208201905081810360008301526118e6816118aa565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611949602383611169565b9150611954826118ed565b604082019050919050565b600060208201905081810360008301526119788161193c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006119db602683611169565b91506119e68261197f565b604082019050919050565b60006020820190508181036000830152611a0a816119ce565b9050919050565b6000611a1c82611273565b9150611a2783611273565b9250828203905081811115611a3f57611a3e611544565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a7b602083611169565b9150611a8682611a45565b602082019050919050565b60006020820190508181036000830152611aaa81611a6e565b9050919050565b6000611abc82611273565b9150611ac783611273565b9250828202611ad581611273565b91508282048414831517611aec57611aeb611544565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611b2d82611273565b9150611b3883611273565b925082611b4857611b47611af3565b5b82820490509291505056fea2646970667358221220769727083074b2e3228d0dcd12ca2127a38a443b6ef9b5ccde00107f65ae067c64736f6c63430008120033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a14779c911610071578063a14779c9146102d5578063a457c2d7146102f3578063a9059cbb14610323578063dd62ed3e14610353578063f2fde38b1461038357610116565b8063715018a61461027157806375f0a8741461027b5780638da5cb5b1461029957806395d89b41146102b757610116565b806323b872dd116100e957806323b872dd146101a5578063313ce567146101d557806339509351146101f357806349bd5a5e1461022357806370a082311461024157610116565b806306fdde031461011b578063095ea7b3146101395780631694505e1461016957806318160ddd14610187575b600080fd5b61012361039f565b60405161013091906111ee565b60405180910390f35b610153600480360381019061014e91906112a9565b610431565b6040516101609190611304565b60405180910390f35b610171610454565b60405161017e919061137e565b60405180910390f35b61018f61047a565b60405161019c91906113a8565b60405180910390f35b6101bf60048036038101906101ba91906113c3565b610484565b6040516101cc9190611304565b60405180910390f35b6101dd6104f0565b6040516101ea9190611432565b60405180910390f35b61020d600480360381019061020891906112a9565b6104f9565b60405161021a9190611304565b60405180910390f35b61022b610530565b604051610238919061145c565b60405180910390f35b61025b60048036038101906102569190611477565b610556565b60405161026891906113a8565b60405180910390f35b61027961059e565b005b6102836105b0565b604051610290919061145c565b60405180910390f35b6102a16105d6565b6040516102ae919061145c565b60405180910390f35b6102bf610600565b6040516102cc91906111ee565b60405180910390f35b6102dd610692565b6040516102ea919061145c565b60405180910390f35b61030d600480360381019061030891906112a9565b6106b8565b60405161031a9190611304565b60405180910390f35b61033d600480360381019061033891906112a9565b61072f565b60405161034a9190611304565b60405180910390f35b61036d600480360381019061036891906114a4565b610774565b60405161037a91906113a8565b60405180910390f35b61039d60048036038101906103989190611477565b6107fb565b005b6060600380546103ae90611513565b80601f01602080910402602001604051908101604052809291908181526020018280546103da90611513565b80156104275780601f106103fc57610100808354040283529160200191610427565b820191906000526020600020905b81548152906001019060200180831161040a57829003601f168201915b5050505050905090565b60008061043c61087e565b9050610449818585610886565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b600061048e610a4f565b600061049b858585610a9e565b90506104a8858583610d3a565b6104dc856104b461087e565b6104d7846104c98a6104c461087e565b610774565b610fb090919063ffffffff16565b610886565b60019150506104e9610fc6565b9392505050565b60006012905090565b60008061050461087e565b90506105258185856105168589610774565b6105209190611573565b610886565b600191505092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105a6610fd0565b6105ae61104e565b565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461060f90611513565b80601f016020809104026020016040519081016040528092919081815260200182805461063b90611513565b80156106885780601f1061065d57610100808354040283529160200191610688565b820191906000526020600020905b81548152906001019060200180831161066b57829003601f168201915b5050505050905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806106c361087e565b905060006106d18286610774565b905083811015610716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070d90611619565b60405180910390fd5b6107238286868403610886565b60019250505092915050565b6000610739610a4f565b600061074d61074661087e565b8585610a9e565b905061076161075a61087e565b8583610d3a565b600191505061076e610fc6565b92915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610803610fd0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610872576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610869906116ab565b60405180910390fd5b61087b81611062565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ec9061173d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095b906117cf565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a4291906113a8565b60405180910390a3505050565b600260065403610a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8b9061183b565b60405180910390fd5b6002600681905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610b495750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8015610ba35750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015610bfd5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015610c575750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015610cb15750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15610d2f576000610cdf6064610cd160018661112890919063ffffffff16565b61113e90919063ffffffff16565b90506000610cf68285610fb090919063ffffffff16565b9050610d2586600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610d3a565b8092505050610d33565b8190505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da0906118cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f9061195f565b60405180910390fd5b610e23838383611154565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea0906119f1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f9791906113a8565b60405180910390a3610faa848484611159565b50505050565b60008183610fbe9190611a11565b905092915050565b6001600681905550565b610fd861087e565b73ffffffffffffffffffffffffffffffffffffffff16610ff66105d6565b73ffffffffffffffffffffffffffffffffffffffff161461104c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104390611a91565b60405180910390fd5b565b611056610fd0565b6110606000611062565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836111369190611ab1565b905092915050565b6000818361114c9190611b22565b905092915050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561119857808201518184015260208101905061117d565b60008484015250505050565b6000601f19601f8301169050919050565b60006111c08261115e565b6111ca8185611169565b93506111da81856020860161117a565b6111e3816111a4565b840191505092915050565b6000602082019050818103600083015261120881846111b5565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061124082611215565b9050919050565b61125081611235565b811461125b57600080fd5b50565b60008135905061126d81611247565b92915050565b6000819050919050565b61128681611273565b811461129157600080fd5b50565b6000813590506112a38161127d565b92915050565b600080604083850312156112c0576112bf611210565b5b60006112ce8582860161125e565b92505060206112df85828601611294565b9150509250929050565b60008115159050919050565b6112fe816112e9565b82525050565b600060208201905061131960008301846112f5565b92915050565b6000819050919050565b600061134461133f61133a84611215565b61131f565b611215565b9050919050565b600061135682611329565b9050919050565b60006113688261134b565b9050919050565b6113788161135d565b82525050565b6000602082019050611393600083018461136f565b92915050565b6113a281611273565b82525050565b60006020820190506113bd6000830184611399565b92915050565b6000806000606084860312156113dc576113db611210565b5b60006113ea8682870161125e565b93505060206113fb8682870161125e565b925050604061140c86828701611294565b9150509250925092565b600060ff82169050919050565b61142c81611416565b82525050565b60006020820190506114476000830184611423565b92915050565b61145681611235565b82525050565b6000602082019050611471600083018461144d565b92915050565b60006020828403121561148d5761148c611210565b5b600061149b8482850161125e565b91505092915050565b600080604083850312156114bb576114ba611210565b5b60006114c98582860161125e565b92505060206114da8582860161125e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061152b57607f821691505b60208210810361153e5761153d6114e4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061157e82611273565b915061158983611273565b92508282019050808211156115a1576115a0611544565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611603602583611169565b915061160e826115a7565b604082019050919050565b60006020820190508181036000830152611632816115f6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611695602683611169565b91506116a082611639565b604082019050919050565b600060208201905081810360008301526116c481611688565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611727602483611169565b9150611732826116cb565b604082019050919050565b600060208201905081810360008301526117568161171a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117b9602283611169565b91506117c48261175d565b604082019050919050565b600060208201905081810360008301526117e8816117ac565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000611825601f83611169565b9150611830826117ef565b602082019050919050565b6000602082019050818103600083015261185481611818565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118b7602583611169565b91506118c28261185b565b604082019050919050565b600060208201905081810360008301526118e6816118aa565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611949602383611169565b9150611954826118ed565b604082019050919050565b600060208201905081810360008301526119788161193c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006119db602683611169565b91506119e68261197f565b604082019050919050565b60006020820190508181036000830152611a0a816119ce565b9050919050565b6000611a1c82611273565b9150611a2783611273565b9250828203905081811115611a3f57611a3e611544565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a7b602083611169565b9150611a8682611a45565b602082019050919050565b60006020820190508181036000830152611aaa81611a6e565b9050919050565b6000611abc82611273565b9150611ac783611273565b9250828202611ad581611273565b91508282048414831517611aec57611aeb611544565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611b2d82611273565b9150611b3883611273565b925082611b4857611b47611af3565b5b82820490509291505056fea2646970667358221220769727083074b2e3228d0dcd12ca2127a38a443b6ef9b5ccde00107f65ae067c64736f6c63430008120033
Deployed Bytecode Sourcemap
36462:2347:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25200:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27551:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36738:41;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26320:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38337:362;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26162:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29036:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36786:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26491:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38707:99;;;:::i;:::-;;36664:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17977:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25419:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36701:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29777:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38064:265;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27080:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18883:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25200:100;25254:13;25287:5;25280:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25200:100;:::o;27551:201::-;27634:4;27651:13;27667:12;:10;:12::i;:::-;27651:28;;27690:32;27699:5;27706:7;27715:6;27690:8;:32::i;:::-;27740:4;27733:11;;;27551:201;;;;:::o;36738:41::-;;;;;;;;;;;;;:::o;26320:108::-;26381:7;26408:12;;26401:19;;26320:108;:::o;38337:362::-;38448:4;15248:21;:19;:21::i;:::-;38465:17:::1;38485:45;38504:6;38512:9;38523:6;38485:18;:45::i;:::-;38465:65;;38541:39;38551:6;38559:9;38570;38541;:39::i;:::-;38591:78;38600:6;38608:12;:10;:12::i;:::-;38622:46;38658:9;38622:31;38632:6;38640:12;:10;:12::i;:::-;38622:9;:31::i;:::-;:35;;:46;;;;:::i;:::-;38591:8;:78::i;:::-;38687:4;38680:11;;;15292:20:::0;:18;:20::i;:::-;38337:362;;;;;:::o;26162:93::-;26220:5;26245:2;26238:9;;26162:93;:::o;29036:238::-;29124:4;29141:13;29157:12;:10;:12::i;:::-;29141:28;;29180:64;29189:5;29196:7;29233:10;29205:25;29215:5;29222:7;29205:9;:25::i;:::-;:38;;;;:::i;:::-;29180:8;:64::i;:::-;29262:4;29255:11;;;29036:238;;;;:::o;36786:28::-;;;;;;;;;;;;;:::o;26491:127::-;26565:7;26592:9;:18;26602:7;26592:18;;;;;;;;;;;;;;;;26585:25;;26491:127;;;:::o;38707:99::-;17863:13;:11;:13::i;:::-;38773:25:::1;:23;:25::i;:::-;38707:99::o:0;36664:30::-;;;;;;;;;;;;;:::o;17977:87::-;18023:7;18050:6;;;;;;;;;;;18043:13;;17977:87;:::o;25419:104::-;25475:13;25508:7;25501:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25419:104;:::o;36701:28::-;;;;;;;;;;;;;:::o;29777:436::-;29870:4;29887:13;29903:12;:10;:12::i;:::-;29887:28;;29926:24;29953:25;29963:5;29970:7;29953:9;:25::i;:::-;29926:52;;30017:15;29997:16;:35;;29989:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;30110:60;30119:5;30126:7;30154:15;30135:16;:34;30110:8;:60::i;:::-;30201:4;30194:11;;;;29777:436;;;;:::o;38064:265::-;38155:4;15248:21;:19;:21::i;:::-;38172:17:::1;38192:51;38211:12;:10;:12::i;:::-;38225:9;38236:6;38192:18;:51::i;:::-;38172:71;;38254:45;38264:12;:10;:12::i;:::-;38278:9;38289;38254;:45::i;:::-;38317:4;38310:11;;;15292:20:::0;:18;:20::i;:::-;38064:265;;;;:::o;27080:151::-;27169:7;27196:11;:18;27208:5;27196:18;;;;;;;;;;;;;;;:27;27215:7;27196:27;;;;;;;;;;;;;;;;27189:34;;27080:151;;;;:::o;18883:201::-;17863:13;:11;:13::i;:::-;18992:1:::1;18972:22;;:8;:22;;::::0;18964:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;19048:28;19067:8;19048:18;:28::i;:::-;18883:201:::0;:::o;16528:98::-;16581:7;16608:10;16601:17;;16528:98;:::o;33804:380::-;33957:1;33940:19;;:5;:19;;;33932:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34038:1;34019:21;;:7;:21;;;34011:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34122:6;34092:11;:18;34104:5;34092:18;;;;;;;;;;;;;;;:27;34111:7;34092:27;;;;;;;;;;;;;;;:36;;;;34160:7;34144:32;;34153:5;34144:32;;;34169:6;34144:32;;;;;;:::i;:::-;;;;;;;;33804:380;;;:::o;15328:293::-;14730:1;15462:7;;:19;15454:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;14730:1;15595:7;:18;;;;15328:293::o;37440:616::-;37536:7;37571:13;;;;;;;;;;;37561:23;;:6;:23;;;:53;;;;37601:13;;;;;;;;;;;37588:26;;:9;:26;;;37561:53;37560:95;;;;;37642:13;;;;;;;;;;;37632:23;;:6;:23;;;;37560:95;:124;;;;;37669:15;;;;;;;;;;;37659:25;;:6;:25;;;;37560:124;:167;;;;;37714:13;;;;;;;;;;;37701:26;;:9;:26;;;;37560:167;:199;;;;;37744:15;;;;;;;;;;;37731:28;;:9;:28;;;;37560:199;37556:469;;;37776:23;37802:52;36652:3;37802:25;36595:1;37802:6;:10;;:25;;;;:::i;:::-;:29;;:52;;;;:::i;:::-;37776:78;;37869:17;37889:27;37900:15;37889:6;:10;;:27;;;;:::i;:::-;37869:47;;37931:51;37941:6;37949:15;;;;;;;;;;;37966;37931:9;:51::i;:::-;38004:9;37997:16;;;;;;37556:469;38042:6;38035:13;;37440:616;;;;;;:::o;30683:840::-;30830:1;30814:18;;:4;:18;;;30806:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30907:1;30893:16;;:2;:16;;;30885:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30962:38;30983:4;30989:2;30993:6;30962:20;:38::i;:::-;31013:19;31035:9;:15;31045:4;31035:15;;;;;;;;;;;;;;;;31013:37;;31084:6;31069:11;:21;;31061:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;31201:6;31187:11;:20;31169:9;:15;31179:4;31169:15;;;;;;;;;;;;;;;:38;;;;31404:6;31387:9;:13;31397:2;31387:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;31454:2;31439:26;;31448:4;31439:26;;;31458:6;31439:26;;;;;;:::i;:::-;;;;;;;;31478:37;31498:4;31504:2;31508:6;31478:19;:37::i;:::-;30795:728;30683:840;;;:::o;9119:98::-;9177:7;9208:1;9204;:5;;;;:::i;:::-;9197:12;;9119:98;;;;:::o;15629:213::-;14686:1;15812:7;:22;;;;15629:213::o;18142:132::-;18217:12;:10;:12::i;:::-;18206:23;;:7;:5;:7::i;:::-;:23;;;18198:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18142:132::o;18625:103::-;17863:13;:11;:13::i;:::-;18690:30:::1;18717:1;18690:18;:30::i;:::-;18625:103::o:0;19244:191::-;19318:16;19337:6;;;;;;;;;;;19318:25;;19363:8;19354:6;;:17;;;;;;;;;;;;;;;;;;19418:8;19387:40;;19408:8;19387:40;;;;;;;;;;;;19307:128;19244:191;:::o;9476:98::-;9534:7;9565:1;9561;:5;;;;:::i;:::-;9554:12;;9476:98;;;;:::o;9875:::-;9933:7;9964:1;9960;:5;;;;:::i;:::-;9953:12;;9875:98;;;;:::o;35528:125::-;;;;:::o;36257:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:152::-;3868:9;3901:37;3932:5;3901:37;:::i;:::-;3888:50;;3792:152;;;:::o;3950:183::-;4063:63;4120:5;4063:63;:::i;:::-;4058:3;4051:76;3950:183;;:::o;4139:274::-;4258:4;4296:2;4285:9;4281:18;4273:26;;4309:97;4403:1;4392:9;4388:17;4379:6;4309:97;:::i;:::-;4139:274;;;;:::o;4419:118::-;4506:24;4524:5;4506:24;:::i;:::-;4501:3;4494:37;4419:118;;:::o;4543:222::-;4636:4;4674:2;4663:9;4659:18;4651:26;;4687:71;4755:1;4744:9;4740:17;4731:6;4687:71;:::i;:::-;4543:222;;;;:::o;4771:619::-;4848:6;4856;4864;4913:2;4901:9;4892:7;4888:23;4884:32;4881:119;;;4919:79;;:::i;:::-;4881:119;5039:1;5064:53;5109:7;5100:6;5089:9;5085:22;5064:53;:::i;:::-;5054:63;;5010:117;5166:2;5192:53;5237:7;5228:6;5217:9;5213:22;5192:53;:::i;:::-;5182:63;;5137:118;5294:2;5320:53;5365:7;5356:6;5345:9;5341:22;5320:53;:::i;:::-;5310:63;;5265:118;4771:619;;;;;:::o;5396:86::-;5431:7;5471:4;5464:5;5460:16;5449:27;;5396:86;;;:::o;5488:112::-;5571:22;5587:5;5571:22;:::i;:::-;5566:3;5559:35;5488:112;;:::o;5606:214::-;5695:4;5733:2;5722:9;5718:18;5710:26;;5746:67;5810:1;5799:9;5795:17;5786:6;5746:67;:::i;:::-;5606:214;;;;:::o;5826:118::-;5913:24;5931:5;5913:24;:::i;:::-;5908:3;5901:37;5826:118;;:::o;5950:222::-;6043:4;6081:2;6070:9;6066:18;6058:26;;6094:71;6162:1;6151:9;6147:17;6138:6;6094:71;:::i;:::-;5950:222;;;;:::o;6178:329::-;6237:6;6286:2;6274:9;6265:7;6261:23;6257:32;6254:119;;;6292:79;;:::i;:::-;6254:119;6412:1;6437:53;6482:7;6473:6;6462:9;6458:22;6437:53;:::i;:::-;6427:63;;6383:117;6178:329;;;;:::o;6513:474::-;6581:6;6589;6638:2;6626:9;6617:7;6613:23;6609:32;6606:119;;;6644:79;;:::i;:::-;6606:119;6764:1;6789:53;6834:7;6825:6;6814:9;6810:22;6789:53;:::i;:::-;6779:63;;6735:117;6891:2;6917:53;6962:7;6953:6;6942:9;6938:22;6917:53;:::i;:::-;6907:63;;6862:118;6513:474;;;;;:::o;6993:180::-;7041:77;7038:1;7031:88;7138:4;7135:1;7128:15;7162:4;7159:1;7152:15;7179:320;7223:6;7260:1;7254:4;7250:12;7240:22;;7307:1;7301:4;7297:12;7328:18;7318:81;;7384:4;7376:6;7372:17;7362:27;;7318:81;7446:2;7438:6;7435:14;7415:18;7412:38;7409:84;;7465:18;;:::i;:::-;7409:84;7230:269;7179:320;;;:::o;7505:180::-;7553:77;7550:1;7543:88;7650:4;7647:1;7640:15;7674:4;7671:1;7664:15;7691:191;7731:3;7750:20;7768:1;7750:20;:::i;:::-;7745:25;;7784:20;7802:1;7784:20;:::i;:::-;7779:25;;7827:1;7824;7820:9;7813:16;;7848:3;7845:1;7842:10;7839:36;;;7855:18;;:::i;:::-;7839:36;7691:191;;;;:::o;7888:224::-;8028:34;8024:1;8016:6;8012:14;8005:58;8097:7;8092:2;8084:6;8080:15;8073:32;7888:224;:::o;8118:366::-;8260:3;8281:67;8345:2;8340:3;8281:67;:::i;:::-;8274:74;;8357:93;8446:3;8357:93;:::i;:::-;8475:2;8470:3;8466:12;8459:19;;8118:366;;;:::o;8490:419::-;8656:4;8694:2;8683:9;8679:18;8671:26;;8743:9;8737:4;8733:20;8729:1;8718:9;8714:17;8707:47;8771:131;8897:4;8771:131;:::i;:::-;8763:139;;8490:419;;;:::o;8915:225::-;9055:34;9051:1;9043:6;9039:14;9032:58;9124:8;9119:2;9111:6;9107:15;9100:33;8915:225;:::o;9146:366::-;9288:3;9309:67;9373:2;9368:3;9309:67;:::i;:::-;9302:74;;9385:93;9474:3;9385:93;:::i;:::-;9503:2;9498:3;9494:12;9487:19;;9146:366;;;:::o;9518:419::-;9684:4;9722:2;9711:9;9707:18;9699:26;;9771:9;9765:4;9761:20;9757:1;9746:9;9742:17;9735:47;9799:131;9925:4;9799:131;:::i;:::-;9791:139;;9518:419;;;:::o;9943:223::-;10083:34;10079:1;10071:6;10067:14;10060:58;10152:6;10147:2;10139:6;10135:15;10128:31;9943:223;:::o;10172:366::-;10314:3;10335:67;10399:2;10394:3;10335:67;:::i;:::-;10328:74;;10411:93;10500:3;10411:93;:::i;:::-;10529:2;10524:3;10520:12;10513:19;;10172:366;;;:::o;10544:419::-;10710:4;10748:2;10737:9;10733:18;10725:26;;10797:9;10791:4;10787:20;10783:1;10772:9;10768:17;10761:47;10825:131;10951:4;10825:131;:::i;:::-;10817:139;;10544:419;;;:::o;10969:221::-;11109:34;11105:1;11097:6;11093:14;11086:58;11178:4;11173:2;11165:6;11161:15;11154:29;10969:221;:::o;11196:366::-;11338:3;11359:67;11423:2;11418:3;11359:67;:::i;:::-;11352:74;;11435:93;11524:3;11435:93;:::i;:::-;11553:2;11548:3;11544:12;11537:19;;11196:366;;;:::o;11568:419::-;11734:4;11772:2;11761:9;11757:18;11749:26;;11821:9;11815:4;11811:20;11807:1;11796:9;11792:17;11785:47;11849:131;11975:4;11849:131;:::i;:::-;11841:139;;11568:419;;;:::o;11993:181::-;12133:33;12129:1;12121:6;12117:14;12110:57;11993:181;:::o;12180:366::-;12322:3;12343:67;12407:2;12402:3;12343:67;:::i;:::-;12336:74;;12419:93;12508:3;12419:93;:::i;:::-;12537:2;12532:3;12528:12;12521:19;;12180:366;;;:::o;12552:419::-;12718:4;12756:2;12745:9;12741:18;12733:26;;12805:9;12799:4;12795:20;12791:1;12780:9;12776:17;12769:47;12833:131;12959:4;12833:131;:::i;:::-;12825:139;;12552:419;;;:::o;12977:224::-;13117:34;13113:1;13105:6;13101:14;13094:58;13186:7;13181:2;13173:6;13169:15;13162:32;12977:224;:::o;13207:366::-;13349:3;13370:67;13434:2;13429:3;13370:67;:::i;:::-;13363:74;;13446:93;13535:3;13446:93;:::i;:::-;13564:2;13559:3;13555:12;13548:19;;13207:366;;;:::o;13579:419::-;13745:4;13783:2;13772:9;13768:18;13760:26;;13832:9;13826:4;13822:20;13818:1;13807:9;13803:17;13796:47;13860:131;13986:4;13860:131;:::i;:::-;13852:139;;13579:419;;;:::o;14004:222::-;14144:34;14140:1;14132:6;14128:14;14121:58;14213:5;14208:2;14200:6;14196:15;14189:30;14004:222;:::o;14232:366::-;14374:3;14395:67;14459:2;14454:3;14395:67;:::i;:::-;14388:74;;14471:93;14560:3;14471:93;:::i;:::-;14589:2;14584:3;14580:12;14573:19;;14232:366;;;:::o;14604:419::-;14770:4;14808:2;14797:9;14793:18;14785:26;;14857:9;14851:4;14847:20;14843:1;14832:9;14828:17;14821:47;14885:131;15011:4;14885:131;:::i;:::-;14877:139;;14604:419;;;:::o;15029:225::-;15169:34;15165:1;15157:6;15153:14;15146:58;15238:8;15233:2;15225:6;15221:15;15214:33;15029:225;:::o;15260:366::-;15402:3;15423:67;15487:2;15482:3;15423:67;:::i;:::-;15416:74;;15499:93;15588:3;15499:93;:::i;:::-;15617:2;15612:3;15608:12;15601:19;;15260:366;;;:::o;15632:419::-;15798:4;15836:2;15825:9;15821:18;15813:26;;15885:9;15879:4;15875:20;15871:1;15860:9;15856:17;15849:47;15913:131;16039:4;15913:131;:::i;:::-;15905:139;;15632:419;;;:::o;16057:194::-;16097:4;16117:20;16135:1;16117:20;:::i;:::-;16112:25;;16151:20;16169:1;16151:20;:::i;:::-;16146:25;;16195:1;16192;16188:9;16180:17;;16219:1;16213:4;16210:11;16207:37;;;16224:18;;:::i;:::-;16207:37;16057:194;;;;:::o;16257:182::-;16397:34;16393:1;16385:6;16381:14;16374:58;16257:182;:::o;16445:366::-;16587:3;16608:67;16672:2;16667:3;16608:67;:::i;:::-;16601:74;;16684:93;16773:3;16684:93;:::i;:::-;16802:2;16797:3;16793:12;16786:19;;16445:366;;;:::o;16817:419::-;16983:4;17021:2;17010:9;17006:18;16998:26;;17070:9;17064:4;17060:20;17056:1;17045:9;17041:17;17034:47;17098:131;17224:4;17098:131;:::i;:::-;17090:139;;16817:419;;;:::o;17242:410::-;17282:7;17305:20;17323:1;17305:20;:::i;:::-;17300:25;;17339:20;17357:1;17339:20;:::i;:::-;17334:25;;17394:1;17391;17387:9;17416:30;17434:11;17416:30;:::i;:::-;17405:41;;17595:1;17586:7;17582:15;17579:1;17576:22;17556:1;17549:9;17529:83;17506:139;;17625:18;;:::i;:::-;17506:139;17290:362;17242:410;;;;:::o;17658:180::-;17706:77;17703:1;17696:88;17803:4;17800:1;17793:15;17827:4;17824:1;17817:15;17844:185;17884:1;17901:20;17919:1;17901:20;:::i;:::-;17896:25;;17935:20;17953:1;17935:20;:::i;:::-;17930:25;;17974:1;17964:35;;17979:18;;:::i;:::-;17964:35;18021:1;18018;18014:9;18009:14;;17844:185;;;;:::o
Swarm Source
ipfs://769727083074b2e3228d0dcd12ca2127a38a443b6ef9b5ccde00107f65ae067c
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.