ERC-20
Overview
Max Total Supply
1,000,000,000 ORACUL
Holders
92
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
806,599.791537911402659395 ORACULValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
ORACUL
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // Website: https://oracul.co/ //Telegram: https://t.me/oracul_a // Twitter: https://x.com/Oracul_ai pragma solidity ^0.8.12; import {Ownable} from "Ownable.sol"; import {ERC20} from "ERC20.sol"; import {IERC20} from "IERC20.sol"; import {SafeMath} from "SafeMath.sol"; import {IUniswapV2Factory} from "IUniswapV2Factory.sol"; import {IUniswapV2Router02} from "IUniswapV2Router02.sol"; contract ORACUL is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapRouter; address public uniswapV2Pair; bool private swapping; address private marketingWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public swapEnabled = true; bool public tradingActive = false; uint256 public tokensForMarketing; uint256 public startTradingBlock; uint256[] public taxSteps = [20, 35, 55, 80, 180, 220]; uint256[] public taxRates = [80, 60, 40, 30, 20, 10]; mapping(address => bool) public isExcludedFromFees; mapping(address => bool) public isExcludedMaxTransactionAmount; mapping(address => bool) public automatedMarketMakerPairs; event ExcludeFromFees(address indexed account, bool isExcluded); event ExcludeFromMaxTransaction(address indexed account, bool isExcluded); event EnableTrading(); event UpdateSwapTokensAtAmount(uint256 newAmount); event UpdateSwapEnabled(bool enabled); event UpdateSwapDisabled(bool disabled); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); constructor() ERC20("Oracul Ai", "ORACUL") { IUniswapV2Router02 _uniswapRouter = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapRouter), true); uniswapRouter = _uniswapRouter; uint256 totalSupply = 1_000_000_000 * 1e18; maxTransactionAmount = 2000000 * 1e18; maxWallet = 4000000 * 1e18; swapTokensAtAmount = (totalSupply * 5) / 10000; // .05% of total supply marketingWallet = msg.sender; excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); _mint(msg.sender, totalSupply); } /** * ************************************************************** * ************ Admin functions ******************************* * ************************************************************** */ receive() external payable {} function setPair() external onlyOwner { uniswapV2Pair = IUniswapV2Factory(uniswapRouter.factory()).createPair( address(this), uniswapRouter.WETH() ); _excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); } function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; startTradingBlock = block.number; emit EnableTrading(); } function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner { swapTokensAtAmount = newAmount; emit UpdateSwapTokensAtAmount(newAmount); } function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; emit UpdateSwapEnabled(enabled); } function updateTokenSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; emit UpdateSwapEnabled(enabled); } function excludeFromMaxTransaction( address updAds, bool isEx ) public onlyOwner { _excludeFromMaxTransaction(updAds, isEx); emit ExcludeFromMaxTransaction(updAds, isEx); } function excludeFromMaxTransactionLims( address updAds, bool isEx ) public onlyOwner { _excludeFromMaxTransaction(updAds, isEx); emit ExcludeFromMaxTransaction(updAds, isEx); } function excludeFromFees(address account, bool excluded) public onlyOwner { _excludeFromFees(account, excluded); emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair( address pair, bool value ) public onlyOwner { require(pair != uniswapV2Pair, "Pair cannot be removed"); _setAutomatedMarketMakerPair(pair, value); emit SetAutomatedMarketMakerPair(pair, value); } function renounceOwnership() public override onlyOwner { swapEnabled = false; withdrawETH(owner()); withdrawToken(address(this), owner()); super.renounceOwnership(); } function withdrawToken(address token, address to) public onlyOwner { uint256 contractBalance = IERC20(token).balanceOf(address(this)); IERC20(token).transfer(to, contractBalance); } function withdrawOraculToken(address token, address to) public onlyOwner { uint256 contractBalance = IERC20(token).balanceOf(address(this)); IERC20(token).transfer(to, contractBalance); } function withdrawETH(address toAddr) public onlyOwner { (bool success, ) = toAddr.call{value: address(this).balance}(""); require(success); } /** * ************************************************************** * ************ View functions ********************************* * ************************************************************** */ function getORCfees() public view returns (uint256) { uint256 blocksElapsed = block.number - startTradingBlock; uint256 elapsed; for (uint256 i = 0; i < taxSteps.length; i++) { elapsed += taxSteps[i]; if (blocksElapsed <= elapsed) { return taxRates[i]; } } return startTradingBlock == 0 ? 80 : 0; } function areLimitsInEffect() public view returns (bool) { uint256 blocksElapsed = block.number - startTradingBlock; uint256 endBlock = taxSteps[0] + taxSteps[1] + taxSteps[2] + taxSteps[3]; return startTradingBlock == 0 || blocksElapsed <= endBlock; } /** * ************************************************************** * ************ Internal view functions *********************** * ************************************************************** */ function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "Transfer from the zero address"); require(to != address(0), "Transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (areLimitsInEffect()) { if ( from != owner() && to != owner() && to != address(0) && !swapping ) { if (!tradingActive) { require( isExcludedFromFees[from] || isExcludedFromFees[to], "Trading is not active" ); } //when buy if ( automatedMarketMakerPairs[from] && !isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount" ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount" ); } else if (!isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !isExcludedFromFees[from] && !isExcludedFromFees[to] ) { swapping = true; _swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to isExcludedFromFee account then remove the fee if (isExcludedFromFees[from] || isExcludedFromFees[to]) { takeFee = false; } // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { uint256 fees; uint256 tax = getORCfees(); // on sell if (automatedMarketMakerPairs[to] && tax > 0) { fees = amount.mul(tax).div(100); tokensForMarketing += fees; } // on buy else if (automatedMarketMakerPairs[from] && tax > 0) { fees = amount.mul(tax).div(100); tokensForMarketing += fees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function _swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapRouter.WETH(); _approve(address(this), address(uniswapRouter), tokenAmount); uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function _swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForMarketing; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } uint256 amountToSwapForETH = contractBalance; uint256 initialETHBalance = address(this).balance; _swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); tokensForMarketing = 0; (success, ) = address(marketingWallet).call{value: ethBalance}(""); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function _excludeFromMaxTransaction(address updAds, bool isEx) private { isExcludedMaxTransactionAmount[updAds] = isEx; } function _excludeFromFees(address account, bool excluded) private { isExcludedFromFees[account] = excluded; } function _excludeOwnerFromFees(address account, bool excluded) private { isExcludedFromFees[account] = excluded; } }
pragma solidity >=0.6.2; interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); }
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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "IERC20Metadata.sol"; import "Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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}. * * 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 default value returned by this function, unless * it's 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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _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. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.4) (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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
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":[],"name":"EnableTrading","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromMaxTransaction","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","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":false,"internalType":"bool","name":"disabled","type":"bool"}],"name":"UpdateSwapDisabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"UpdateSwapEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdateSwapTokensAtAmount","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":[],"name":"areLimitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransactionLims","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getORCfees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTradingBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"taxRates","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"taxSteps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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":"uniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateTokenSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"withdrawOraculToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
600b805461ffff19166001179055610160604052601460a0908152602360c052603760e05260506101005260b46101205260dc610140526200004690600e9060066200046c565b506040805160c08101825260508152603c6020820152602891810191909152601e606082015260146080820152600a60a08201526200008a90600f9060066200046c565b5034801562000097575f80fd5b50604051806040016040528060098152602001684f726163756c20416960b81b8152506040518060400160405280600681526020016513d49050d55360d21b8152508160039081620000ea919062000572565b506004620000f9828262000572565b50505062000116620001106200020d60201b60201c565b62000211565b737a250d5630b4cf539739df2c5dacb4c659f2488d6200013881600162000262565b6001600160a01b0381166080526a01a784379d99db420000006008556a034f086f3b33b684000000600a556b033b2e3c9fd0803ce80000006127106200018082600562000652565b6200018c919062000672565b600955600780546001600160a01b03191633179055620001c0620001b86005546001600160a01b031690565b6001620002d9565b620001cd306001620002d9565b620001ec620001e46005546001600160a01b031690565b600162000262565b620001f930600162000262565b62000205338262000344565b5050620006a8565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6200026c62000409565b6001600160a01b0382165f908152601160205260409020805460ff1916821515179055816001600160a01b03167fe0a7c1f8826ab3d62a6e242681ccca3828462e5c87816004b9f8d655b22d5f0882604051620002cd911515815260200190565b60405180910390a25050565b620002e362000409565b6001600160a01b0382165f908152601060205260409020805460ff1916821515179055816001600160a01b03167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620002cd911515815260200190565b6001600160a01b038216620003a05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060025f828254620003b3919062000692565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620004655760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000397565b565b505050565b828054828255905f5260205f20908101928215620004ad579160200282015b82811115620004ad578251829060ff169055916020019190600101906200048b565b50620004bb929150620004bf565b5090565b5b80821115620004bb575f8155600101620004c0565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620004fe57607f821691505b6020821081036200051d57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200046757805f5260205f20601f840160051c810160208510156200054a5750805b601f840160051c820191505b818110156200056b575f815560010162000556565b5050505050565b81516001600160401b038111156200058e576200058e620004d5565b620005a6816200059f8454620004e9565b8462000523565b602080601f831160018114620005dc575f8415620005c45750858301515b5f19600386901b1c1916600185901b17855562000636565b5f85815260208120601f198616915b828110156200060c57888601518255948401946001909101908401620005eb565b50858210156200062a57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176200066c576200066c6200063e565b92915050565b5f826200068d57634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156200066c576200066c6200063e565b6080516120d1620006e45f395f818161050601528181610955015281816109e401528181611c3801528181611cef0152611d2b01526120d15ff3fe60806040526004361061024c575f3560e01c8063735de9f711610134578063a9059cbb116100b3578063d257b34f11610078578063d257b34f14610692578063dd62ed3e146106b1578063e2f45605146106d0578063e992162314610582578063f2fde38b146106e5578063f8b45b0514610704575f80fd5b8063a9059cbb146105f3578063b62496f514610612578063bbc0c74214610640578063c02466681461065e578063c8c8ebe41461067d575f80fd5b80638da5cb5b116100f95780638da5cb5b14610565578063924de9b71461058257806395d89b41146105a15780639a7a23d6146105b5578063a457c2d7146105d4575f80fd5b8063735de9f7146104f55780637571336a1461028157806376be96f3146105285780637aeff7781461053d5780638a8c523c14610551575f80fd5b806349bd5a5e116101cb578063690d832011610190578063690d8320146104425780636d4e219b146104615780636ddd1713146104805780636e63c0351461049957806370a08231146104ad578063715018a6146104e1575f80fd5b806349bd5a5e1461037c5780634bb2c785146103b35780634bdc18de146103e15780634fbee193146103f557806355ee932c14610423575f80fd5b80631f3fed8f116102115780631f3fed8f1461030e57806323b872dd14610323578063313ce56714610342578063395093511461035d5780633aeac4e1146102d1575f80fd5b806306fdde0314610257578063080dd61014610281578063095ea7b3146102a257806316c789cf146102d157806318160ddd146102f0575f80fd5b3661025357005b5f80fd5b348015610262575f80fd5b5061026b610719565b6040516102789190611d9c565b60405180910390f35b34801561028c575f80fd5b506102a061029b366004611e09565b6107a9565b005b3480156102ad575f80fd5b506102c16102bc366004611e40565b610804565b6040519015158152602001610278565b3480156102dc575f80fd5b506102a06102eb366004611e6a565b61081d565b3480156102fb575f80fd5b506002545b604051908152602001610278565b348015610319575f80fd5b50610300600c5481565b34801561032e575f80fd5b506102c161033d366004611e96565b610907565b34801561034d575f80fd5b5060405160128152602001610278565b348015610368575f80fd5b506102c1610377366004611e40565b61092a565b348015610387575f80fd5b5060065461039b906001600160a01b031681565b6040516001600160a01b039091168152602001610278565b3480156103be575f80fd5b506102c16103cd366004611ed4565b60116020525f908152604090205460ff1681565b3480156103ec575f80fd5b506102a061094b565b348015610400575f80fd5b506102c161040f366004611ed4565b60106020525f908152604090205460ff1681565b34801561042e575f80fd5b5061030061043d366004611eef565b610b13565b34801561044d575f80fd5b506102a061045c366004611ed4565b610b32565b34801561046c575f80fd5b5061030061047b366004611eef565b610b99565b34801561048b575f80fd5b50600b546102c19060ff1681565b3480156104a4575f80fd5b506102c1610ba8565b3480156104b8575f80fd5b506103006104c7366004611ed4565b6001600160a01b03165f9081526020819052604090205490565b3480156104ec575f80fd5b506102a0610c65565b348015610500575f80fd5b5061039b7f000000000000000000000000000000000000000000000000000000000000000081565b348015610533575f80fd5b50610300600d5481565b348015610548575f80fd5b50610300610caa565b34801561055c575f80fd5b506102a0610d41565b348015610570575f80fd5b506005546001600160a01b031661039b565b34801561058d575f80fd5b506102a061059c366004611f06565b610d86565b3480156105ac575f80fd5b5061026b610dd6565b3480156105c0575f80fd5b506102a06105cf366004611e09565b610de5565b3480156105df575f80fd5b506102c16105ee366004611e40565b610e8e565b3480156105fe575f80fd5b506102c161060d366004611e40565b610f08565b34801561061d575f80fd5b506102c161062c366004611ed4565b60126020525f908152604090205460ff1681565b34801561064b575f80fd5b50600b546102c190610100900460ff1681565b348015610669575f80fd5b506102a0610678366004611e09565b610f15565b348015610688575f80fd5b5061030060085481565b34801561069d575f80fd5b506102a06106ac366004611eef565b610f7d565b3480156106bc575f80fd5b506103006106cb366004611e6a565b610fba565b3480156106db575f80fd5b5061030060095481565b3480156106f0575f80fd5b506102a06106ff366004611ed4565b610fe4565b34801561070f575f80fd5b50610300600a5481565b60606003805461072890611f21565b80601f016020809104026020016040519081016040528092919081815260200182805461075490611f21565b801561079f5780601f106107765761010080835404028352916020019161079f565b820191905f5260205f20905b81548152906001019060200180831161078257829003601f168201915b5050505050905090565b6107b161105d565b6107bb82826110b7565b816001600160a01b03167fe0a7c1f8826ab3d62a6e242681ccca3828462e5c87816004b9f8d655b22d5f08826040516107f8911515815260200190565b60405180910390a25050565b5f336108118185856110e1565b60019150505b92915050565b61082561105d565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015610869573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061088d9190611f59565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af11580156108dd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109019190611f70565b50505050565b5f33610914858285611204565b61091f858585611276565b506001949350505050565b5f3361081181858561093c8383610fba565b6109469190611f9f565b6110e1565b61095361105d565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109af573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109d39190611fb2565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a3e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a629190611fb2565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610aac573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ad09190611fb2565b600680546001600160a01b0319166001600160a01b03929092169182179055610afa9060016110b7565b600654610b11906001600160a01b031660016118ae565b565b600f8181548110610b22575f80fd5b5f91825260209091200154905081565b610b3a61105d565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610b83576040519150601f19603f3d011682016040523d82523d5f602084013e610b88565b606091505b5050905080610b95575f80fd5b5050565b600e8181548110610b22575f80fd5b5f80600d5443610bb89190611fcd565b90505f600e600381548110610bcf57610bcf611fe0565b905f5260205f200154600e600281548110610bec57610bec611fe0565b905f5260205f200154600e600181548110610c0957610c09611fe0565b905f5260205f200154600e5f81548110610c2557610c25611fe0565b905f5260205f200154610c389190611f9f565b610c429190611f9f565b610c4c9190611f9f565b9050600d545f1480610c5e5750808211155b9250505090565b610c6d61105d565b600b805460ff19169055610c8c61045c6005546001600160a01b031690565b610ca2306102eb6005546001600160a01b031690565b610b11611901565b5f80600d5443610cba9190611fcd565b90505f805b600e54811015610d2557600e8181548110610cdc57610cdc611fe0565b905f5260205f20015482610cf09190611f9f565b9150818311610d1d57600f8181548110610d0c57610d0c611fe0565b905f5260205f200154935050505090565b600101610cbf565b50600d5415610d34575f610d37565b60505b60ff169250505090565b610d4961105d565b600b805461ffff191661010117905543600d556040517f1d97b7cdf6b6f3405cbe398b69512e5419a0ce78232b6e9c6ffbf1466774bd8d905f90a1565b610d8e61105d565b600b805460ff19168215159081179091556040519081527f92e251bc0632b9bdc264274968dfed5bbf41d3b173982b313417f1fd9c08a808906020015b60405180910390a150565b60606004805461072890611f21565b610ded61105d565b6006546001600160a01b0390811690831603610e495760405162461bcd60e51b815260206004820152601660248201527514185a5c8818d85b9b9bdd081899481c995b5bdd995960521b60448201526064015b60405180910390fd5b610e5382826118ae565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab905f90a35050565b5f3381610e9b8286610fba565b905083811015610efb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610e40565b61091f82868684036110e1565b5f33610811818585611276565b610f1d61105d565b6001600160a01b0382165f908152601060205260409020805460ff1916821515179055816001600160a01b03167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516107f8911515815260200190565b610f8561105d565b60098190556040518181527fe82283d0f679a15d3811ecbaa8b6a8afb1b110e22daa33b359c37bcae5a11e4890602001610dcb565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610fec61105d565b6001600160a01b0381166110515760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e40565b61105a8161190e565b50565b6005546001600160a01b03163314610b115760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e40565b6001600160a01b03919091165f908152601160205260409020805460ff1916911515919091179055565b6001600160a01b0383166111435760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610e40565b6001600160a01b0382166111a45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610e40565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f61120f8484610fba565b90505f19811461090157818110156112695760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610e40565b61090184848484036110e1565b6001600160a01b0383166112cc5760405162461bcd60e51b815260206004820152601e60248201527f5472616e736665722066726f6d20746865207a65726f206164647265737300006044820152606401610e40565b6001600160a01b0382166113225760405162461bcd60e51b815260206004820152601c60248201527f5472616e7366657220746f20746865207a65726f2061646472657373000000006044820152606401610e40565b805f036113395761133483835f61195f565b505050565b611341610ba8565b1561168e576005546001600160a01b0384811691161480159061137257506005546001600160a01b03838116911614155b801561138657506001600160a01b03821615155b801561139c5750600654600160a01b900460ff16155b1561168e57600b54610100900460ff16611431576001600160a01b0383165f9081526010602052604090205460ff16806113ed57506001600160a01b0382165f9081526010602052604090205460ff165b6114315760405162461bcd60e51b815260206004820152601560248201527454726164696e67206973206e6f742061637469766560581b6044820152606401610e40565b6001600160a01b0383165f9081526012602052604090205460ff16801561147057506001600160a01b0382165f9081526011602052604090205460ff16155b15611552576008548111156114e45760405162461bcd60e51b815260206004820152603460248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152731b585e151c985b9cd858dd1a5bdb905b5bdd5b9d60621b6064820152608401610e40565b600a546001600160a01b0383165f908152602081905260409020546115099083611f9f565b111561154d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610e40565b61168e565b6001600160a01b0382165f9081526012602052604090205460ff16801561159157506001600160a01b0383165f9081526011602052604090205460ff16155b156116065760085481111561154d5760405162461bcd60e51b815260206004820152603560248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015274081b585e151c985b9cd858dd1a5bdb905b5bdd5b9d605a1b6064820152608401610e40565b6001600160a01b0382165f9081526011602052604090205460ff1661168e57600a546001600160a01b0383165f9081526020819052604090205461164a9083611f9f565b111561168e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610e40565b305f90815260208190526040902054600954811080159081906116b35750600b5460ff165b80156116c95750600654600160a01b900460ff16155b80156116ed57506001600160a01b0385165f9081526012602052604090205460ff16155b801561171157506001600160a01b0385165f9081526010602052604090205460ff16155b801561173557506001600160a01b0384165f9081526010602052604090205460ff16155b15611763576006805460ff60a01b1916600160a01b179055611755611b01565b6006805460ff60a01b191690555b6006546001600160a01b0386165f9081526010602052604090205460ff600160a01b9092048216159116806117af57506001600160a01b0385165f9081526010602052604090205460ff165b156117b757505f5b801561189b575f806117c7610caa565b6001600160a01b0388165f9081526012602052604090205490915060ff1680156117f057505f81115b156118285761180a60646118048884611bc6565b90611bd8565b915081600c5f82825461181d9190611f9f565b9091555061187b9050565b6001600160a01b0388165f9081526012602052604090205460ff16801561184e57505f81115b1561187b5761186260646118048884611bc6565b915081600c5f8282546118759190611f9f565b90915550505b811561188c5761188c88308461195f565b6118968287611fcd565b955050505b6118a686868661195f565b505050505050565b6001600160a01b0382165f81815260126020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b61190961105d565b610b115f5b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166119c35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610e40565b6001600160a01b038216611a255760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610e40565b6001600160a01b0383165f9081526020819052604090205481811015611a9c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610e40565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610901565b305f90815260208190526040812054600c549091821580611b20575081155b15611b2a57505050565b600954611b38906014611ff4565b831115611b5057600954611b4d906014611ff4565b92505b8247611b5b82611be3565b5f611b664783611d91565b5f600c8190556007546040519293506001600160a01b031691839181818185875af1925050503d805f8114611bb6576040519150601f19603f3d011682016040523d82523d5f602084013e611bbb565b606091505b505050505050505050565b5f611bd18284611ff4565b9392505050565b5f611bd1828461200b565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611c1657611c16611fe0565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c92573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611cb69190611fb2565b81600181518110611cc957611cc9611fe0565b60200260200101906001600160a01b031690816001600160a01b031681525050611d14307f0000000000000000000000000000000000000000000000000000000000000000846110e1565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611d689085905f9086903090429060040161202a565b5f604051808303815f87803b158015611d7f575f80fd5b505af11580156118a6573d5f803e3d5ffd5b5f611bd18284611fcd565b5f602080835283518060208501525f5b81811015611dc857858101830151858201604001528201611dac565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461105a575f80fd5b801515811461105a575f80fd5b5f8060408385031215611e1a575f80fd5b8235611e2581611de8565b91506020830135611e3581611dfc565b809150509250929050565b5f8060408385031215611e51575f80fd5b8235611e5c81611de8565b946020939093013593505050565b5f8060408385031215611e7b575f80fd5b8235611e8681611de8565b91506020830135611e3581611de8565b5f805f60608486031215611ea8575f80fd5b8335611eb381611de8565b92506020840135611ec381611de8565b929592945050506040919091013590565b5f60208284031215611ee4575f80fd5b8135611bd181611de8565b5f60208284031215611eff575f80fd5b5035919050565b5f60208284031215611f16575f80fd5b8135611bd181611dfc565b600181811c90821680611f3557607f821691505b602082108103611f5357634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215611f69575f80fd5b5051919050565b5f60208284031215611f80575f80fd5b8151611bd181611dfc565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561081757610817611f8b565b5f60208284031215611fc2575f80fd5b8151611bd181611de8565b8181038181111561081757610817611f8b565b634e487b7160e01b5f52603260045260245ffd5b808202811582820484141761081757610817611f8b565b5f8261202557634e487b7160e01b5f52601260045260245ffd5b500490565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b8181101561207a5784516001600160a01b031683529383019391830191600101612055565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212206914944588d000e1b9e6726f8edac9f55c6dff617dabd288696021e220c3328564736f6c63430008180033
Deployed Bytecode
0x60806040526004361061024c575f3560e01c8063735de9f711610134578063a9059cbb116100b3578063d257b34f11610078578063d257b34f14610692578063dd62ed3e146106b1578063e2f45605146106d0578063e992162314610582578063f2fde38b146106e5578063f8b45b0514610704575f80fd5b8063a9059cbb146105f3578063b62496f514610612578063bbc0c74214610640578063c02466681461065e578063c8c8ebe41461067d575f80fd5b80638da5cb5b116100f95780638da5cb5b14610565578063924de9b71461058257806395d89b41146105a15780639a7a23d6146105b5578063a457c2d7146105d4575f80fd5b8063735de9f7146104f55780637571336a1461028157806376be96f3146105285780637aeff7781461053d5780638a8c523c14610551575f80fd5b806349bd5a5e116101cb578063690d832011610190578063690d8320146104425780636d4e219b146104615780636ddd1713146104805780636e63c0351461049957806370a08231146104ad578063715018a6146104e1575f80fd5b806349bd5a5e1461037c5780634bb2c785146103b35780634bdc18de146103e15780634fbee193146103f557806355ee932c14610423575f80fd5b80631f3fed8f116102115780631f3fed8f1461030e57806323b872dd14610323578063313ce56714610342578063395093511461035d5780633aeac4e1146102d1575f80fd5b806306fdde0314610257578063080dd61014610281578063095ea7b3146102a257806316c789cf146102d157806318160ddd146102f0575f80fd5b3661025357005b5f80fd5b348015610262575f80fd5b5061026b610719565b6040516102789190611d9c565b60405180910390f35b34801561028c575f80fd5b506102a061029b366004611e09565b6107a9565b005b3480156102ad575f80fd5b506102c16102bc366004611e40565b610804565b6040519015158152602001610278565b3480156102dc575f80fd5b506102a06102eb366004611e6a565b61081d565b3480156102fb575f80fd5b506002545b604051908152602001610278565b348015610319575f80fd5b50610300600c5481565b34801561032e575f80fd5b506102c161033d366004611e96565b610907565b34801561034d575f80fd5b5060405160128152602001610278565b348015610368575f80fd5b506102c1610377366004611e40565b61092a565b348015610387575f80fd5b5060065461039b906001600160a01b031681565b6040516001600160a01b039091168152602001610278565b3480156103be575f80fd5b506102c16103cd366004611ed4565b60116020525f908152604090205460ff1681565b3480156103ec575f80fd5b506102a061094b565b348015610400575f80fd5b506102c161040f366004611ed4565b60106020525f908152604090205460ff1681565b34801561042e575f80fd5b5061030061043d366004611eef565b610b13565b34801561044d575f80fd5b506102a061045c366004611ed4565b610b32565b34801561046c575f80fd5b5061030061047b366004611eef565b610b99565b34801561048b575f80fd5b50600b546102c19060ff1681565b3480156104a4575f80fd5b506102c1610ba8565b3480156104b8575f80fd5b506103006104c7366004611ed4565b6001600160a01b03165f9081526020819052604090205490565b3480156104ec575f80fd5b506102a0610c65565b348015610500575f80fd5b5061039b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b348015610533575f80fd5b50610300600d5481565b348015610548575f80fd5b50610300610caa565b34801561055c575f80fd5b506102a0610d41565b348015610570575f80fd5b506005546001600160a01b031661039b565b34801561058d575f80fd5b506102a061059c366004611f06565b610d86565b3480156105ac575f80fd5b5061026b610dd6565b3480156105c0575f80fd5b506102a06105cf366004611e09565b610de5565b3480156105df575f80fd5b506102c16105ee366004611e40565b610e8e565b3480156105fe575f80fd5b506102c161060d366004611e40565b610f08565b34801561061d575f80fd5b506102c161062c366004611ed4565b60126020525f908152604090205460ff1681565b34801561064b575f80fd5b50600b546102c190610100900460ff1681565b348015610669575f80fd5b506102a0610678366004611e09565b610f15565b348015610688575f80fd5b5061030060085481565b34801561069d575f80fd5b506102a06106ac366004611eef565b610f7d565b3480156106bc575f80fd5b506103006106cb366004611e6a565b610fba565b3480156106db575f80fd5b5061030060095481565b3480156106f0575f80fd5b506102a06106ff366004611ed4565b610fe4565b34801561070f575f80fd5b50610300600a5481565b60606003805461072890611f21565b80601f016020809104026020016040519081016040528092919081815260200182805461075490611f21565b801561079f5780601f106107765761010080835404028352916020019161079f565b820191905f5260205f20905b81548152906001019060200180831161078257829003601f168201915b5050505050905090565b6107b161105d565b6107bb82826110b7565b816001600160a01b03167fe0a7c1f8826ab3d62a6e242681ccca3828462e5c87816004b9f8d655b22d5f08826040516107f8911515815260200190565b60405180910390a25050565b5f336108118185856110e1565b60019150505b92915050565b61082561105d565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015610869573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061088d9190611f59565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af11580156108dd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109019190611f70565b50505050565b5f33610914858285611204565b61091f858585611276565b506001949350505050565b5f3361081181858561093c8383610fba565b6109469190611f9f565b6110e1565b61095361105d565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109af573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109d39190611fb2565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a3e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a629190611fb2565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610aac573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ad09190611fb2565b600680546001600160a01b0319166001600160a01b03929092169182179055610afa9060016110b7565b600654610b11906001600160a01b031660016118ae565b565b600f8181548110610b22575f80fd5b5f91825260209091200154905081565b610b3a61105d565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610b83576040519150601f19603f3d011682016040523d82523d5f602084013e610b88565b606091505b5050905080610b95575f80fd5b5050565b600e8181548110610b22575f80fd5b5f80600d5443610bb89190611fcd565b90505f600e600381548110610bcf57610bcf611fe0565b905f5260205f200154600e600281548110610bec57610bec611fe0565b905f5260205f200154600e600181548110610c0957610c09611fe0565b905f5260205f200154600e5f81548110610c2557610c25611fe0565b905f5260205f200154610c389190611f9f565b610c429190611f9f565b610c4c9190611f9f565b9050600d545f1480610c5e5750808211155b9250505090565b610c6d61105d565b600b805460ff19169055610c8c61045c6005546001600160a01b031690565b610ca2306102eb6005546001600160a01b031690565b610b11611901565b5f80600d5443610cba9190611fcd565b90505f805b600e54811015610d2557600e8181548110610cdc57610cdc611fe0565b905f5260205f20015482610cf09190611f9f565b9150818311610d1d57600f8181548110610d0c57610d0c611fe0565b905f5260205f200154935050505090565b600101610cbf565b50600d5415610d34575f610d37565b60505b60ff169250505090565b610d4961105d565b600b805461ffff191661010117905543600d556040517f1d97b7cdf6b6f3405cbe398b69512e5419a0ce78232b6e9c6ffbf1466774bd8d905f90a1565b610d8e61105d565b600b805460ff19168215159081179091556040519081527f92e251bc0632b9bdc264274968dfed5bbf41d3b173982b313417f1fd9c08a808906020015b60405180910390a150565b60606004805461072890611f21565b610ded61105d565b6006546001600160a01b0390811690831603610e495760405162461bcd60e51b815260206004820152601660248201527514185a5c8818d85b9b9bdd081899481c995b5bdd995960521b60448201526064015b60405180910390fd5b610e5382826118ae565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab905f90a35050565b5f3381610e9b8286610fba565b905083811015610efb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610e40565b61091f82868684036110e1565b5f33610811818585611276565b610f1d61105d565b6001600160a01b0382165f908152601060205260409020805460ff1916821515179055816001600160a01b03167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516107f8911515815260200190565b610f8561105d565b60098190556040518181527fe82283d0f679a15d3811ecbaa8b6a8afb1b110e22daa33b359c37bcae5a11e4890602001610dcb565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610fec61105d565b6001600160a01b0381166110515760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e40565b61105a8161190e565b50565b6005546001600160a01b03163314610b115760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e40565b6001600160a01b03919091165f908152601160205260409020805460ff1916911515919091179055565b6001600160a01b0383166111435760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610e40565b6001600160a01b0382166111a45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610e40565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f61120f8484610fba565b90505f19811461090157818110156112695760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610e40565b61090184848484036110e1565b6001600160a01b0383166112cc5760405162461bcd60e51b815260206004820152601e60248201527f5472616e736665722066726f6d20746865207a65726f206164647265737300006044820152606401610e40565b6001600160a01b0382166113225760405162461bcd60e51b815260206004820152601c60248201527f5472616e7366657220746f20746865207a65726f2061646472657373000000006044820152606401610e40565b805f036113395761133483835f61195f565b505050565b611341610ba8565b1561168e576005546001600160a01b0384811691161480159061137257506005546001600160a01b03838116911614155b801561138657506001600160a01b03821615155b801561139c5750600654600160a01b900460ff16155b1561168e57600b54610100900460ff16611431576001600160a01b0383165f9081526010602052604090205460ff16806113ed57506001600160a01b0382165f9081526010602052604090205460ff165b6114315760405162461bcd60e51b815260206004820152601560248201527454726164696e67206973206e6f742061637469766560581b6044820152606401610e40565b6001600160a01b0383165f9081526012602052604090205460ff16801561147057506001600160a01b0382165f9081526011602052604090205460ff16155b15611552576008548111156114e45760405162461bcd60e51b815260206004820152603460248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152731b585e151c985b9cd858dd1a5bdb905b5bdd5b9d60621b6064820152608401610e40565b600a546001600160a01b0383165f908152602081905260409020546115099083611f9f565b111561154d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610e40565b61168e565b6001600160a01b0382165f9081526012602052604090205460ff16801561159157506001600160a01b0383165f9081526011602052604090205460ff16155b156116065760085481111561154d5760405162461bcd60e51b815260206004820152603560248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015274081b585e151c985b9cd858dd1a5bdb905b5bdd5b9d605a1b6064820152608401610e40565b6001600160a01b0382165f9081526011602052604090205460ff1661168e57600a546001600160a01b0383165f9081526020819052604090205461164a9083611f9f565b111561168e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610e40565b305f90815260208190526040902054600954811080159081906116b35750600b5460ff165b80156116c95750600654600160a01b900460ff16155b80156116ed57506001600160a01b0385165f9081526012602052604090205460ff16155b801561171157506001600160a01b0385165f9081526010602052604090205460ff16155b801561173557506001600160a01b0384165f9081526010602052604090205460ff16155b15611763576006805460ff60a01b1916600160a01b179055611755611b01565b6006805460ff60a01b191690555b6006546001600160a01b0386165f9081526010602052604090205460ff600160a01b9092048216159116806117af57506001600160a01b0385165f9081526010602052604090205460ff165b156117b757505f5b801561189b575f806117c7610caa565b6001600160a01b0388165f9081526012602052604090205490915060ff1680156117f057505f81115b156118285761180a60646118048884611bc6565b90611bd8565b915081600c5f82825461181d9190611f9f565b9091555061187b9050565b6001600160a01b0388165f9081526012602052604090205460ff16801561184e57505f81115b1561187b5761186260646118048884611bc6565b915081600c5f8282546118759190611f9f565b90915550505b811561188c5761188c88308461195f565b6118968287611fcd565b955050505b6118a686868661195f565b505050505050565b6001600160a01b0382165f81815260126020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b61190961105d565b610b115f5b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166119c35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610e40565b6001600160a01b038216611a255760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610e40565b6001600160a01b0383165f9081526020819052604090205481811015611a9c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610e40565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610901565b305f90815260208190526040812054600c549091821580611b20575081155b15611b2a57505050565b600954611b38906014611ff4565b831115611b5057600954611b4d906014611ff4565b92505b8247611b5b82611be3565b5f611b664783611d91565b5f600c8190556007546040519293506001600160a01b031691839181818185875af1925050503d805f8114611bb6576040519150601f19603f3d011682016040523d82523d5f602084013e611bbb565b606091505b505050505050505050565b5f611bd18284611ff4565b9392505050565b5f611bd1828461200b565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611c1657611c16611fe0565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c92573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611cb69190611fb2565b81600181518110611cc957611cc9611fe0565b60200260200101906001600160a01b031690816001600160a01b031681525050611d14307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846110e1565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611d689085905f9086903090429060040161202a565b5f604051808303815f87803b158015611d7f575f80fd5b505af11580156118a6573d5f803e3d5ffd5b5f611bd18284611fcd565b5f602080835283518060208501525f5b81811015611dc857858101830151858201604001528201611dac565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461105a575f80fd5b801515811461105a575f80fd5b5f8060408385031215611e1a575f80fd5b8235611e2581611de8565b91506020830135611e3581611dfc565b809150509250929050565b5f8060408385031215611e51575f80fd5b8235611e5c81611de8565b946020939093013593505050565b5f8060408385031215611e7b575f80fd5b8235611e8681611de8565b91506020830135611e3581611de8565b5f805f60608486031215611ea8575f80fd5b8335611eb381611de8565b92506020840135611ec381611de8565b929592945050506040919091013590565b5f60208284031215611ee4575f80fd5b8135611bd181611de8565b5f60208284031215611eff575f80fd5b5035919050565b5f60208284031215611f16575f80fd5b8135611bd181611dfc565b600181811c90821680611f3557607f821691505b602082108103611f5357634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215611f69575f80fd5b5051919050565b5f60208284031215611f80575f80fd5b8151611bd181611dfc565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561081757610817611f8b565b5f60208284031215611fc2575f80fd5b8151611bd181611de8565b8181038181111561081757610817611f8b565b634e487b7160e01b5f52603260045260245ffd5b808202811582820484141761081757610817611f8b565b5f8261202557634e487b7160e01b5f52601260045260245ffd5b500490565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b8181101561207a5784516001600160a01b031683529383019391830191600101612055565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212206914944588d000e1b9e6726f8edac9f55c6dff617dabd288696021e220c3328564736f6c63430008180033
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.