Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
250,000,000 ROBO
Holders
905
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
66,123.000959900710814058 ROBOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Robotrade
Compiler Version
v0.8.22+commit.4fc1097e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** * Robotrade ($ROBO) * * Website: https://robotrade.ai * Telegram: https://t.me/robotrade_public & https://t.me/RobotradeAI_Bot * Twitter: https://twitter.com/Robotrade_ai * ****#***#############*###############################################################**#** ****#****####*****#******##****###############################****##*****###########***#** ****#******##********++*********##****#################*#**##*****##**********#####****#** ***********#*******=: .-=++*****#******##*****##****##******#******+=:..-+*****###*****#** ***********#*******- .-=+***********#******##*****#***********+=: .=******##*****#** ***********#*******+: .=++*********#***********************++-. .-+******###*****#** ***********#********+=: :-++******************************+-. .=*********#******#** ***********#********+++- :++************************++++=: .-+**********#******#** *********************+++=:. .-++++++++++++++++++++++++++=-. .=+++*********#******#** **********************+++==: ..................... :=++++*********#********* ********************+++++===: :=++++******************* *******************++++=:... :-=++****************** ****************++++==-. :=++**************** **************+++==-: :=+++************* ************+++==. :--++*********** ********+*+++==. :+++********* ******++++++=:. -=+++******* ******++++=: .-+++***** *****++++. .... .:::.. .:-++**** ***+*++:. --====-: :======: :++**** ++++*+=. .-++=+++==. -==+++==== .=++*** ++++*+- -====++===: ==+++++===. .+++*** ++++*+- -===+=====. :-=======- .=++*++ ++++*+= .======- .---=-:. .=+**++ ++++*+- .::. .++**+* ++++*+- .=+**** ++++*+-. .:++**** **++*++=-. .-++++**** +++**++++=:. :=++******* ++++*++++++=: :=+++******** ++++**++++++=-:: :-+++********** ************+++==. .-++************* ************+++++--:. .--=++************** **************++++++=:: .:::-=++***************** ***************+++++++==---:. .....-+++++******************** *******************++++++++==----------------==============+++++++++********************** *********************+++++++++++++++++++++++++++++++++++++++++++++++********************** *******************++++++++++++++++++++++++++++++++++++++++++++++++++++++***************** *******************++++++++++++++++++++++++++++++++===============-------=++************** ****************++++==+==========--------::::::........ .++************** **************+++-... .++************** **************++=: .+++************* **************++=: .+++************* **************++=: .+++************* **************++=: .+++************* *************+++=: .+++************* *************+++=: .+++************* **************++=: .+++************* *************+++=: .++++************ *************+++=: .+++************* *************++++: .+++************* **************+++: .+++************* *************++++: .+++************* **************+++: .+++************* **************+++: .+++************* ***************++: .++++************ **************+++: .+++************* ***************+=: .+++************* ***************+=: .+++************* ***************+=: .++************** ***************+=: .++************** ***************+=. ....::::--=+**************** ***************+=. :=+++++++++++***************** ***************++-::::--------: :+++++************************ *****************++++++++++++=- :+++++************************ **********************++++++++- :+++++************************ **************************++++- :++++************************* ***************************+++- :++*************************** ***************************+++- .....:::::----++**************************** */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import { Ownable } from "openzeppelin/contracts/token/ERC20/Ownable.sol"; import { ERC20 } from "openzeppelin/contracts/token/ERC20/ERC20.sol"; import { IERC20 } from "openzeppelin/contracts/token/ERC20/IERC20.sol"; import { Context } from "openzeppelin/contracts/token/ERC20/Context.sol"; import { IUniswapV2Factory } from "uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import { IUniswapV2Router02 } from "uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; contract Robotrade is ERC20, Ownable { uint256 public constant TOTAL_SUPPLY = 250_000_000 * 1e18; IUniswapV2Router02 public immutable uniswapV2Router; address public uniswapV2Pair; uint256 public tradeLimit; uint256 public walletLimit; uint256 public feeSwapThreshold; bool public tradingEnabled; bool public transferDelayEnabled = true; bool public limitsEnabled = true; uint256 public sellFee = 500; // 5% uint256 public buyFee = 500; // 5% address payable internal _teamWallet; bool private _isSwapping; mapping(address => bool) public pools; mapping(address => bool) internal _exemptFromLimits; mapping(address => bool) internal _exemptFromFees; mapping(address => uint256) internal _lastTransferBlock; // EVENTS event FeeExemption(address indexed account, bool isExempt); event PoolUpdate(address indexed pair, bool indexed value); // ERRORS error CannotRemoveDefaultPair(); error MaximumFee(); error MinimumLimit(); error MinimumSwapThreshold(); error MaximumSwapThreshold(); error TradingDisabled(); error AlreadyInitialized(); error BlockTransferLimit(); error TradeLimitExceeded(); error WalletLimitExceeded(); // -------------- // INIT constructor() ERC20("Robotrade", "ROBO") { uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); tradeLimit = _applyBasisPoints(TOTAL_SUPPLY, 100); // 1% walletLimit = _applyBasisPoints(TOTAL_SUPPLY, 100); // 1% feeSwapThreshold = _applyBasisPoints(TOTAL_SUPPLY, 5); // 0.05% _teamWallet = payable(owner()); _exemptFromLimits[address(uniswapV2Router)] = true; _exemptFromLimits[owner()] = true; _exemptFromLimits[address(this)] = true; _exemptFromFees[owner()] = true; _exemptFromFees[address(this)] = true; _mint(msg.sender, TOTAL_SUPPLY); } function openTrading() external onlyOwner { if (tradingEnabled) revert AlreadyInitialized(); _approve(address(this), address(uniswapV2Router), TOTAL_SUPPLY); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()); IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint256).max); pools[address(uniswapV2Pair)] = true; _exemptFromLimits[address(uniswapV2Pair)] = true; uniswapV2Router.addLiquidityETH{ value: address(this).balance }( address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp ); tradingEnabled = true; } receive() external payable { } // -------------- // TRANSFER function _transfer(address from, address to, uint256 amount) internal override { /* solhint-disable reason-string */ require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); /* solhint-enable reason-string */ if (amount == 0) { super._transfer(from, to, 0); return; } _handleLimits(from, to, amount); uint256 finalAmount = _chargeFees(from, to, amount); _handleFeeSwap(from, to); super._transfer(from, to, finalAmount); } // -------------- // LIMITS function _handleLimits(address from, address to, uint256 amount) internal { if (!limitsEnabled || _isSwapping || from == owner() || to == owner()) { return; } if (!tradingEnabled && !_exemptFromLimits[from] && !_exemptFromLimits[to]) { revert TradingDisabled(); } _applyTransferDelay(to); _applyLimits(from, to, amount); } /// @dev Limit buys to one per block function _applyTransferDelay(address to) internal { if (!transferDelayEnabled) { return; } if (to == address(uniswapV2Router) || to == address(uniswapV2Pair)) { return; } if (_lastTransferBlock[to] >= block.number) { revert BlockTransferLimit(); } _lastTransferBlock[to] = block.number; } /// @dev Apply trade and balance limits function _applyLimits(address from, address to, uint256 amount) internal view { // buy if (pools[from] && !_exemptFromLimits[to]) { if (amount > tradeLimit) revert TradeLimitExceeded(); if (amount + balanceOf(to) > walletLimit) revert WalletLimitExceeded(); } // sell else if (pools[to] && !_exemptFromLimits[from]) { if (amount > tradeLimit) revert TradeLimitExceeded(); } // transfer else if (!_exemptFromLimits[to]) { if (amount + balanceOf(to) > walletLimit) revert WalletLimitExceeded(); } } // -------------- // FEES function _chargeFees(address from, address to, uint256 amount) internal returns (uint256) { if (_isSwapping || _exemptFromFees[from] || _exemptFromFees[to]) { return amount; } uint256 fees = 0; if (pools[to] && sellFee > 0) { fees = _applyBasisPoints(amount, sellFee); } else if (pools[from] && buyFee > 0) { fees = _applyBasisPoints(amount, buyFee); } if (fees > 0) { super._transfer(from, address(this), fees); } return amount - fees; } /// @dev swaps and distributes accumulated fees function _handleFeeSwap(address from, address to) internal { bool canSwap = balanceOf(address(this)) >= feeSwapThreshold; // non-exempt sellers trigger fee swaps if (canSwap && !_isSwapping && !pools[from] && pools[to] && !_exemptFromFees[from]) { _isSwapping = true; _swapAndDistributeFees(); _isSwapping = false; } } function _swapAndDistributeFees() internal { uint256 contractBalance = balanceOf(address(this)); if (contractBalance == 0) { return; } if (contractBalance > feeSwapThreshold * 20) { contractBalance = feeSwapThreshold * 20; } _swapTokensForEth(contractBalance); (bool sent,) = _teamWallet.call{ value: address(this).balance }(""); require(sent, "send failed"); } // -------------- // ADMIN function removeLimits() external onlyOwner { limitsEnabled = false; } function disableTransferDelay() external onlyOwner { transferDelayEnabled = false; } /// @notice Set swap size limit to `amount` tokens (in token units) function setTradeLimit(uint256 amount) external onlyOwner { // minimim 0.1% of supply amount *= 1e18; if (amount < _applyBasisPoints(TOTAL_SUPPLY, 10)) revert MinimumLimit(); tradeLimit = amount; } /// @notice Set wallet balance limit to `amount` tokens (in token units) function setWalletLimit(uint256 amount) external onlyOwner { // minimim 0.1% of supply amount *= 1e18; if (amount < _applyBasisPoints(TOTAL_SUPPLY, 10)) revert MinimumLimit(); walletLimit = amount; } function setExemptFromFees(address addr, bool exempt) external onlyOwner { _exemptFromFees[addr] = exempt; emit FeeExemption(addr, exempt); } function setExemptFromLimits(address addr, bool exempt) external onlyOwner { _exemptFromLimits[addr] = exempt; } /// Set buy fee in basis points function setBuyFee(uint256 fee) external onlyOwner { if (fee > 500) revert MaximumFee(); // 5% buyFee = fee; } /// Set sell fee in basis points function setSellFee(uint256 fee) external onlyOwner { if (fee > 500) revert MaximumFee(); // 5% sellFee = fee; } function setPool(address pool, bool value) external onlyOwner { if (pool == uniswapV2Pair) revert CannotRemoveDefaultPair(); _setPool(pool, value); } function _setPool(address pool, bool value) private { pools[pool] = value; emit PoolUpdate(pool, value); } /// @notice Set fee swap threshold to `basisPoints` as a fraction of total supply /// Set to 10000 to disable fee swaps function setFeeSwapThreshold(uint256 basisPoints) external onlyOwner { if (basisPoints < 1) revert MinimumSwapThreshold(); if (basisPoints > 10_000) revert MaximumSwapThreshold(); feeSwapThreshold = _applyBasisPoints(TOTAL_SUPPLY, basisPoints); } function setTeamWallet(address addr) external onlyOwner { _teamWallet = payable(addr); } // -------------- // HELPERS function _applyBasisPoints(uint256 amount, uint256 basisPoints) internal pure returns (uint256) { return (amount * basisPoints) / 10_000; } function _swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; 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; }
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 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; } }
// SPDX-License-Identifier: MIT // 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import { Context } from "openzeppelin/contracts/token/ERC20/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]. * * 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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import { Context } from "openzeppelin/contracts/token/ERC20/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 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); } }
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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ 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": false, "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"},{"inputs":[],"name":"AlreadyInitialized","type":"error"},{"inputs":[],"name":"BlockTransferLimit","type":"error"},{"inputs":[],"name":"CannotRemoveDefaultPair","type":"error"},{"inputs":[],"name":"MaximumFee","type":"error"},{"inputs":[],"name":"MaximumSwapThreshold","type":"error"},{"inputs":[],"name":"MinimumLimit","type":"error"},{"inputs":[],"name":"MinimumSwapThreshold","type":"error"},{"inputs":[],"name":"TradeLimitExceeded","type":"error"},{"inputs":[],"name":"TradingDisabled","type":"error"},{"inputs":[],"name":"WalletLimitExceeded","type":"error"},{"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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExempt","type":"bool"}],"name":"FeeExemption","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":"PoolUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"buyFee","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":"disableTransferDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeSwapThreshold","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":[],"name":"limitsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"pools","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"exempt","type":"bool"}],"name":"setExemptFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"exempt","type":"bool"}],"name":"setExemptFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"basisPoints","type":"uint256"}],"name":"setFeeSwapThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setTradeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setWalletLimit","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":[],"name":"tradeLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"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"},{"inputs":[],"name":"walletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a06040526001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff0219169083151502179055506101f4600b556101f4600c5534801562000052575f80fd5b506040518060400160405280600981526020017f526f626f747261646500000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f524f424f000000000000000000000000000000000000000000000000000000008152508160039081620000d09190620008df565b508060049081620000e29190620008df565b50505062000105620000f9620003f460201b60201c565b620003fb60201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506200016b6acecb8f27f4200f3a0000006064620004be60201b60201c565b6007819055506200018f6acecb8f27f4200f3a0000006064620004be60201b60201c565b600881905550620001b36acecb8f27f4200f3a0000006005620004be60201b60201c565b600981905550620001c9620004e460201b60201c565b600d5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600f5f60805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600f5f62000274620004e460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600f5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160105f6200032d620004e460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160105f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550620003ee336acecb8f27f4200f3a0000006200050c60201b60201c565b62000b82565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6127108284620004d09190620009f0565b620004dc919062000a67565b905092915050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200057d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005749062000afc565b60405180910390fd5b620005905f83836200067160201b60201c565b8060025f828254620005a3919062000b1c565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000652919062000b67565b60405180910390a36200066d5f83836200067660201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620006f757607f821691505b6020821081036200070d576200070c620006b2565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620007717fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000734565b6200077d868362000734565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620007c7620007c1620007bb8462000795565b6200079e565b62000795565b9050919050565b5f819050919050565b620007e283620007a7565b620007fa620007f182620007ce565b84845462000740565b825550505050565b5f90565b6200081062000802565b6200081d818484620007d7565b505050565b5b818110156200084457620008385f8262000806565b60018101905062000823565b5050565b601f82111562000893576200085d8162000713565b620008688462000725565b8101602085101562000878578190505b62000890620008878562000725565b83018262000822565b50505b505050565b5f82821c905092915050565b5f620008b55f198460080262000898565b1980831691505092915050565b5f620008cf8383620008a4565b9150826002028217905092915050565b620008ea826200067b565b67ffffffffffffffff81111562000906576200090562000685565b5b620009128254620006df565b6200091f82828562000848565b5f60209050601f83116001811462000955575f841562000940578287015190505b6200094c8582620008c2565b865550620009bb565b601f198416620009658662000713565b5f5b828110156200098e5784890151825560018201915060208501945060208101905062000967565b86831015620009ae5784890151620009aa601f891682620008a4565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620009fc8262000795565b915062000a098362000795565b925082820262000a198162000795565b9150828204841483151762000a335762000a32620009c3565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000a738262000795565b915062000a808362000795565b92508262000a935762000a9262000a3a565b5b828204905092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000ae4601f8362000a9e565b915062000af18262000aae565b602082019050919050565b5f6020820190508181035f83015262000b158162000ad6565b9050919050565b5f62000b288262000795565b915062000b358362000795565b925082820190508082111562000b505762000b4f620009c3565b5b92915050565b62000b618162000795565b82525050565b5f60208201905062000b7c5f83018462000b56565b92915050565b60805161392162000bda5f395f81816109e80152818161104b0152818161107d015281816111260152818161128c01528181611418015281816123780152818161294b01528181612a2a0152612a5101526139215ff3fe608060405260043610610228575f3560e01c8063751039fc11610122578063a4063dbc116100aa578063dd62ed3e1161006e578063dd62ed3e146107cf578063de2870711461080b578063e884f26014610835578063f1d5f5171461084b578063f2fde38b146108735761022f565b8063a4063dbc146106db578063a457c2d714610717578063a9059cbb14610753578063c876d0b91461078f578063c9567bf9146107b95761022f565b80638b4cee08116100f15780638b4cee081461060d5780638da5cb5b14610635578063902d55a51461065f57806395d89b4114610689578063a13d1a2b146106b35761022f565b8063751039fc1461057f57806377b27d1f14610595578063793e75cd146105bd5780637d55efda146105e55761022f565b80632fec2704116101b0578063470624021161017457806347062402146104af57806349bd5a5e146104d95780634ada218b1461050357806370a082311461052d578063715018a6146105695761022f565b80632fec2704146103cb578063313ce567146103f55780633582ad231461041f57806339509351146104495780633c8463a1146104855761022f565b80631694505e116101f75780631694505e146102e957806318160ddd1461031357806320bec12c1461033d57806323b872dd146103655780632b14ca56146103a15761022f565b806306fdde0314610233578063095ea7b31461025d5780630cc835a3146102995780631525ff7d146102c15761022f565b3661022f57005b5f80fd5b34801561023e575f80fd5b5061024761089b565b6040516102549190612b6b565b60405180910390f35b348015610268575f80fd5b50610283600480360381019061027e9190612c1c565b61092b565b6040516102909190612c74565b60405180910390f35b3480156102a4575f80fd5b506102bf60048036038101906102ba9190612c8d565b61094d565b005b3480156102cc575f80fd5b506102e760048036038101906102e29190612cb8565b61099b565b005b3480156102f4575f80fd5b506102fd6109e6565b60405161030a9190612d3e565b60405180910390f35b34801561031e575f80fd5b50610327610a0a565b6040516103349190612d66565b60405180910390f35b348015610348575f80fd5b50610363600480360381019061035e9190612da9565b610a13565b005b348015610370575f80fd5b5061038b60048036038101906103869190612de7565b610aaf565b6040516103989190612c74565b60405180910390f35b3480156103ac575f80fd5b506103b5610add565b6040516103c29190612d66565b60405180910390f35b3480156103d6575f80fd5b506103df610ae3565b6040516103ec9190612d66565b60405180910390f35b348015610400575f80fd5b50610409610ae9565b6040516104169190612e52565b60405180910390f35b34801561042a575f80fd5b50610433610af1565b6040516104409190612c74565b60405180910390f35b348015610454575f80fd5b5061046f600480360381019061046a9190612c1c565b610b04565b60405161047c9190612c74565b60405180910390f35b348015610490575f80fd5b50610499610b3a565b6040516104a69190612d66565b60405180910390f35b3480156104ba575f80fd5b506104c3610b40565b6040516104d09190612d66565b60405180910390f35b3480156104e4575f80fd5b506104ed610b46565b6040516104fa9190612e7a565b60405180910390f35b34801561050e575f80fd5b50610517610b6b565b6040516105249190612c74565b60405180910390f35b348015610538575f80fd5b50610553600480360381019061054e9190612cb8565b610b7d565b6040516105609190612d66565b60405180910390f35b348015610574575f80fd5b5061057d610bc2565b005b34801561058a575f80fd5b50610593610bd5565b005b3480156105a0575f80fd5b506105bb60048036038101906105b69190612da9565b610bf9565b005b3480156105c8575f80fd5b506105e360048036038101906105de9190612c8d565b610ca7565b005b3480156105f0575f80fd5b5061060b60048036038101906106069190612c8d565b610d1e565b005b348015610618575f80fd5b50610633600480360381019061062e9190612c8d565b610dbb565b005b348015610640575f80fd5b50610649610e09565b6040516106569190612e7a565b60405180910390f35b34801561066a575f80fd5b50610673610e31565b6040516106809190612d66565b60405180910390f35b348015610694575f80fd5b5061069d610e40565b6040516106aa9190612b6b565b60405180910390f35b3480156106be575f80fd5b506106d960048036038101906106d49190612da9565b610ed0565b005b3480156106e6575f80fd5b5061070160048036038101906106fc9190612cb8565b610f30565b60405161070e9190612c74565b60405180910390f35b348015610722575f80fd5b5061073d60048036038101906107389190612c1c565b610f4d565b60405161074a9190612c74565b60405180910390f35b34801561075e575f80fd5b5061077960048036038101906107749190612c1c565b610fc2565b6040516107869190612c74565b60405180910390f35b34801561079a575f80fd5b506107a3610fe4565b6040516107b09190612c74565b60405180910390f35b3480156107c4575f80fd5b506107cd610ff7565b005b3480156107da575f80fd5b506107f560048036038101906107f09190612e93565b6114e9565b6040516108029190612d66565b60405180910390f35b348015610816575f80fd5b5061081f61156b565b60405161082c9190612d66565b60405180910390f35b348015610840575f80fd5b50610849611571565b005b348015610856575f80fd5b50610871600480360381019061086c9190612c8d565b611595565b005b34801561087e575f80fd5b5061089960048036038101906108949190612cb8565b61160c565b005b6060600380546108aa90612efe565b80601f01602080910402602001604051908101604052809291908181526020018280546108d690612efe565b80156109215780601f106108f857610100808354040283529160200191610921565b820191905f5260205f20905b81548152906001019060200180831161090457829003601f168201915b5050505050905090565b5f8061093561168e565b9050610942818585611695565b600191505092915050565b610955611858565b6101f4811115610991576040517fbafb3c5700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c8190555050565b6109a3611858565b80600d5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b610a1b611858565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610aa1576040517f2e4479d000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610aab82826118d6565b5050565b5f80610ab961168e565b9050610ac6858285611974565b610ad18585856119ff565b60019150509392505050565b600b5481565b60075481565b5f6012905090565b600a60029054906101000a900460ff1681565b5f80610b0e61168e565b9050610b2f818585610b2085896114e9565b610b2a9190612f5b565b611695565b600191505092915050565b60085481565b600c5481565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5f9054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610bca611858565b610bd35f611b27565b565b610bdd611858565b5f600a60026101000a81548160ff021916908315150217905550565b610c01611858565b8060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167ff39897000beaac558924c501ba3ebd842aac4c20c0f2540cbd7f36eee731e58082604051610c9b9190612c74565b60405180910390a25050565b610caf611858565b670de0b6b3a764000081610cc39190612f8e565b9050610cdb6acecb8f27f4200f3a000000600a611bea565b811015610d14576040517f3b210adc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060078190555050565b610d26611858565b6001811015610d61576040517f789288f100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612710811115610d9d576040517f5d62a18500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610db26acecb8f27f4200f3a00000082611bea565b60098190555050565b610dc3611858565b6101f4811115610dff576040517fbafb3c5700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b8190555050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6acecb8f27f4200f3a00000081565b606060048054610e4f90612efe565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7b90612efe565b8015610ec65780601f10610e9d57610100808354040283529160200191610ec6565b820191905f5260205f20905b815481529060010190602001808311610ea957829003601f168201915b5050505050905090565b610ed8611858565b80600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b600e602052805f5260405f205f915054906101000a900460ff1681565b5f80610f5761168e565b90505f610f6482866114e9565b905083811015610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa09061303f565b60405180910390fd5b610fb68286868403611695565b60019250505092915050565b5f80610fcc61168e565b9050610fd98185856119ff565b600191505092915050565b600a60019054906101000a900460ff1681565b610fff611858565b600a5f9054906101000a900460ff1615611045576040517f0dc149f000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61107b307f00000000000000000000000000000000000000000000000000000000000000006acecb8f27f4200f3a000000611695565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110e4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111089190613071565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561118d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111b19190613071565b6040518363ffffffff1660e01b81526004016111ce92919061309c565b6020604051808303815f875af11580156111ea573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061120e9190613071565b60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f00000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016112e99291906130c3565b6020604051808303815f875af1158015611305573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061132991906130fe565b506001600e5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600f5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719473061145d30610b7d565b5f80611467610e09565b426040518863ffffffff1660e01b815260040161148996959493929190613162565b60606040518083038185885af11580156114a5573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906114ca91906131d5565b5050506001600a5f6101000a81548160ff021916908315150217905550565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60095481565b611579611858565b5f600a60016101000a81548160ff021916908315150217905550565b61159d611858565b670de0b6b3a7640000816115b19190612f8e565b90506115c96acecb8f27f4200f3a000000600a611bea565b811015611602576040517f3b210adc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060088190555050565b611614611858565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167990613295565b60405180910390fd5b61168b81611b27565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fa90613323565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611771576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611768906133b1565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161184b9190612d66565b60405180910390a3505050565b61186061168e565b73ffffffffffffffffffffffffffffffffffffffff1661187e610e09565b73ffffffffffffffffffffffffffffffffffffffff16146118d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cb90613419565b60405180910390fd5b565b80600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fda8433dc2b32d1308609c08b02e4f1691c51a5ff9e5b2d4a15f990856bd31abe60405160405180910390a35050565b5f61197f84846114e9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119f957818110156119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e290613481565b60405180910390fd5b6119f88484848403611695565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a649061350f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad29061359d565b60405180910390fd5b5f8103611af257611aed83835f611c0c565b611b22565b611afd838383611e78565b5f611b09848484612025565b9050611b1584846121ec565b611b20848483611c0c565b505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6127108284611bfa9190612f8e565b611c0491906135e8565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c719061350f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ce8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdf9061359d565b60405180910390fd5b611cf3838383612357565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6d90613688565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611e5f9190612d66565b60405180910390a3611e7284848461235c565b50505050565b600a60029054906101000a900460ff161580611ea05750600d60149054906101000a900460ff165b80611edd5750611eae610e09565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80611f1a5750611eeb610e09565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b61202057600a5f9054906101000a900460ff16158015611f815750600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611fd45750600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561200b576040517fbcb8b8fb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61201482612361565b61201f8383836124dc565b5b505050565b5f600d60149054906101000a900460ff1680612087575060105f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b806120d8575060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156120e5578190506121e5565b5f600e5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561213d57505f600b54115b156121555761214e83600b54611bea565b90506121c1565b600e5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156121ac57505f600c54115b156121c0576121bd83600c54611bea565b90505b5b5f8111156121d5576121d4853083611c0c565b5b80836121e191906136a6565b9150505b9392505050565b5f6009546121f930610b7d565b101590508080156122175750600d60149054906101000a900460ff16155b801561226a5750600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156122bc5750600e5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b801561230f575060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612352576001600d60146101000a81548160ff021916908315150217905550612337612796565b5f600d60146101000a81548160ff0219169083151502179055505b505050565b505050565b505050565b600a60019054906101000a900460ff16156124d9577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16148061241c575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b6124d9574360115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410612496576040517f954883f000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b4360115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b50565b600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156125795750600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561260e576007548111156125ba576040517f31598d3200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008546125c683610b7d565b826125d19190612f5b565b1115612609576040517f746f460700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612791565b600e5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156126ab5750600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156126f1576007548111156126ec576040517f31598d3200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612790565b600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661278f5760085461274b83610b7d565b826127569190612f5b565b111561278e576040517f746f460700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b5b505050565b5f6127a030610b7d565b90505f81036127af57506128ac565b60146009546127be9190612f8e565b8111156127d75760146009546127d49190612f8e565b90505b6127e0816128ae565b5f600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161282690613706565b5f6040518083038185875af1925050503d805f8114612860576040519150601f19603f3d011682016040523d82523d5f602084013e612865565b606091505b50509050806128a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a090613764565b60405180910390fd5b50505b565b5f600267ffffffffffffffff8111156128ca576128c9613782565b5b6040519080825280602002602001820160405280156128f85781602001602082028036833780820191505090505b50905030815f8151811061290f5761290e6137af565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156129b2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129d69190613071565b816001815181106129ea576129e96137af565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612a4f307f000000000000000000000000000000000000000000000000000000000000000084611695565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612ab0959493929190613893565b5f604051808303815f87803b158015612ac7575f80fd5b505af1158015612ad9573d5f803e3d5ffd5b505050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612b18578082015181840152602081019050612afd565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612b3d82612ae1565b612b478185612aeb565b9350612b57818560208601612afb565b612b6081612b23565b840191505092915050565b5f6020820190508181035f830152612b838184612b33565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612bb882612b8f565b9050919050565b612bc881612bae565b8114612bd2575f80fd5b50565b5f81359050612be381612bbf565b92915050565b5f819050919050565b612bfb81612be9565b8114612c05575f80fd5b50565b5f81359050612c1681612bf2565b92915050565b5f8060408385031215612c3257612c31612b8b565b5b5f612c3f85828601612bd5565b9250506020612c5085828601612c08565b9150509250929050565b5f8115159050919050565b612c6e81612c5a565b82525050565b5f602082019050612c875f830184612c65565b92915050565b5f60208284031215612ca257612ca1612b8b565b5b5f612caf84828501612c08565b91505092915050565b5f60208284031215612ccd57612ccc612b8b565b5b5f612cda84828501612bd5565b91505092915050565b5f819050919050565b5f612d06612d01612cfc84612b8f565b612ce3565b612b8f565b9050919050565b5f612d1782612cec565b9050919050565b5f612d2882612d0d565b9050919050565b612d3881612d1e565b82525050565b5f602082019050612d515f830184612d2f565b92915050565b612d6081612be9565b82525050565b5f602082019050612d795f830184612d57565b92915050565b612d8881612c5a565b8114612d92575f80fd5b50565b5f81359050612da381612d7f565b92915050565b5f8060408385031215612dbf57612dbe612b8b565b5b5f612dcc85828601612bd5565b9250506020612ddd85828601612d95565b9150509250929050565b5f805f60608486031215612dfe57612dfd612b8b565b5b5f612e0b86828701612bd5565b9350506020612e1c86828701612bd5565b9250506040612e2d86828701612c08565b9150509250925092565b5f60ff82169050919050565b612e4c81612e37565b82525050565b5f602082019050612e655f830184612e43565b92915050565b612e7481612bae565b82525050565b5f602082019050612e8d5f830184612e6b565b92915050565b5f8060408385031215612ea957612ea8612b8b565b5b5f612eb685828601612bd5565b9250506020612ec785828601612bd5565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612f1557607f821691505b602082108103612f2857612f27612ed1565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612f6582612be9565b9150612f7083612be9565b9250828201905080821115612f8857612f87612f2e565b5b92915050565b5f612f9882612be9565b9150612fa383612be9565b9250828202612fb181612be9565b91508282048414831517612fc857612fc7612f2e565b5b5092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613029602583612aeb565b915061303482612fcf565b604082019050919050565b5f6020820190508181035f8301526130568161301d565b9050919050565b5f8151905061306b81612bbf565b92915050565b5f6020828403121561308657613085612b8b565b5b5f6130938482850161305d565b91505092915050565b5f6040820190506130af5f830185612e6b565b6130bc6020830184612e6b565b9392505050565b5f6040820190506130d65f830185612e6b565b6130e36020830184612d57565b9392505050565b5f815190506130f881612d7f565b92915050565b5f6020828403121561311357613112612b8b565b5b5f613120848285016130ea565b91505092915050565b5f819050919050565b5f61314c61314761314284613129565b612ce3565b612be9565b9050919050565b61315c81613132565b82525050565b5f60c0820190506131755f830189612e6b565b6131826020830188612d57565b61318f6040830187613153565b61319c6060830186613153565b6131a96080830185612e6b565b6131b660a0830184612d57565b979650505050505050565b5f815190506131cf81612bf2565b92915050565b5f805f606084860312156131ec576131eb612b8b565b5b5f6131f9868287016131c1565b935050602061320a868287016131c1565b925050604061321b868287016131c1565b9150509250925092565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61327f602683612aeb565b915061328a82613225565b604082019050919050565b5f6020820190508181035f8301526132ac81613273565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61330d602483612aeb565b9150613318826132b3565b604082019050919050565b5f6020820190508181035f83015261333a81613301565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61339b602283612aeb565b91506133a682613341565b604082019050919050565b5f6020820190508181035f8301526133c88161338f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613403602083612aeb565b915061340e826133cf565b602082019050919050565b5f6020820190508181035f830152613430816133f7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61346b601d83612aeb565b915061347682613437565b602082019050919050565b5f6020820190508181035f8301526134988161345f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6134f9602583612aeb565b91506135048261349f565b604082019050919050565b5f6020820190508181035f830152613526816134ed565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613587602383612aeb565b91506135928261352d565b604082019050919050565b5f6020820190508181035f8301526135b48161357b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6135f282612be9565b91506135fd83612be9565b92508261360d5761360c6135bb565b5b828204905092915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613672602683612aeb565b915061367d82613618565b604082019050919050565b5f6020820190508181035f83015261369f81613666565b9050919050565b5f6136b082612be9565b91506136bb83612be9565b92508282039050818111156136d3576136d2612f2e565b5b92915050565b5f81905092915050565b50565b5f6136f15f836136d9565b91506136fc826136e3565b5f82019050919050565b5f613710826136e6565b9150819050919050565b7f73656e64206661696c65640000000000000000000000000000000000000000005f82015250565b5f61374e600b83612aeb565b91506137598261371a565b602082019050919050565b5f6020820190508181035f83015261377b81613742565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61380e81612bae565b82525050565b5f61381f8383613805565b60208301905092915050565b5f602082019050919050565b5f613841826137dc565b61384b81856137e6565b9350613856836137f6565b805f5b8381101561388657815161386d8882613814565b97506138788361382b565b925050600181019050613859565b5085935050505092915050565b5f60a0820190506138a65f830188612d57565b6138b36020830187613153565b81810360408301526138c58186613837565b90506138d46060830185612e6b565b6138e16080830184612d57565b969550505050505056fea2646970667358221220c87eb749d1b44d26a93dc59dae7989ae5ac8c8a5636e3df4a875c2231a47ee5864736f6c63430008160033
Deployed Bytecode
0x608060405260043610610228575f3560e01c8063751039fc11610122578063a4063dbc116100aa578063dd62ed3e1161006e578063dd62ed3e146107cf578063de2870711461080b578063e884f26014610835578063f1d5f5171461084b578063f2fde38b146108735761022f565b8063a4063dbc146106db578063a457c2d714610717578063a9059cbb14610753578063c876d0b91461078f578063c9567bf9146107b95761022f565b80638b4cee08116100f15780638b4cee081461060d5780638da5cb5b14610635578063902d55a51461065f57806395d89b4114610689578063a13d1a2b146106b35761022f565b8063751039fc1461057f57806377b27d1f14610595578063793e75cd146105bd5780637d55efda146105e55761022f565b80632fec2704116101b0578063470624021161017457806347062402146104af57806349bd5a5e146104d95780634ada218b1461050357806370a082311461052d578063715018a6146105695761022f565b80632fec2704146103cb578063313ce567146103f55780633582ad231461041f57806339509351146104495780633c8463a1146104855761022f565b80631694505e116101f75780631694505e146102e957806318160ddd1461031357806320bec12c1461033d57806323b872dd146103655780632b14ca56146103a15761022f565b806306fdde0314610233578063095ea7b31461025d5780630cc835a3146102995780631525ff7d146102c15761022f565b3661022f57005b5f80fd5b34801561023e575f80fd5b5061024761089b565b6040516102549190612b6b565b60405180910390f35b348015610268575f80fd5b50610283600480360381019061027e9190612c1c565b61092b565b6040516102909190612c74565b60405180910390f35b3480156102a4575f80fd5b506102bf60048036038101906102ba9190612c8d565b61094d565b005b3480156102cc575f80fd5b506102e760048036038101906102e29190612cb8565b61099b565b005b3480156102f4575f80fd5b506102fd6109e6565b60405161030a9190612d3e565b60405180910390f35b34801561031e575f80fd5b50610327610a0a565b6040516103349190612d66565b60405180910390f35b348015610348575f80fd5b50610363600480360381019061035e9190612da9565b610a13565b005b348015610370575f80fd5b5061038b60048036038101906103869190612de7565b610aaf565b6040516103989190612c74565b60405180910390f35b3480156103ac575f80fd5b506103b5610add565b6040516103c29190612d66565b60405180910390f35b3480156103d6575f80fd5b506103df610ae3565b6040516103ec9190612d66565b60405180910390f35b348015610400575f80fd5b50610409610ae9565b6040516104169190612e52565b60405180910390f35b34801561042a575f80fd5b50610433610af1565b6040516104409190612c74565b60405180910390f35b348015610454575f80fd5b5061046f600480360381019061046a9190612c1c565b610b04565b60405161047c9190612c74565b60405180910390f35b348015610490575f80fd5b50610499610b3a565b6040516104a69190612d66565b60405180910390f35b3480156104ba575f80fd5b506104c3610b40565b6040516104d09190612d66565b60405180910390f35b3480156104e4575f80fd5b506104ed610b46565b6040516104fa9190612e7a565b60405180910390f35b34801561050e575f80fd5b50610517610b6b565b6040516105249190612c74565b60405180910390f35b348015610538575f80fd5b50610553600480360381019061054e9190612cb8565b610b7d565b6040516105609190612d66565b60405180910390f35b348015610574575f80fd5b5061057d610bc2565b005b34801561058a575f80fd5b50610593610bd5565b005b3480156105a0575f80fd5b506105bb60048036038101906105b69190612da9565b610bf9565b005b3480156105c8575f80fd5b506105e360048036038101906105de9190612c8d565b610ca7565b005b3480156105f0575f80fd5b5061060b60048036038101906106069190612c8d565b610d1e565b005b348015610618575f80fd5b50610633600480360381019061062e9190612c8d565b610dbb565b005b348015610640575f80fd5b50610649610e09565b6040516106569190612e7a565b60405180910390f35b34801561066a575f80fd5b50610673610e31565b6040516106809190612d66565b60405180910390f35b348015610694575f80fd5b5061069d610e40565b6040516106aa9190612b6b565b60405180910390f35b3480156106be575f80fd5b506106d960048036038101906106d49190612da9565b610ed0565b005b3480156106e6575f80fd5b5061070160048036038101906106fc9190612cb8565b610f30565b60405161070e9190612c74565b60405180910390f35b348015610722575f80fd5b5061073d60048036038101906107389190612c1c565b610f4d565b60405161074a9190612c74565b60405180910390f35b34801561075e575f80fd5b5061077960048036038101906107749190612c1c565b610fc2565b6040516107869190612c74565b60405180910390f35b34801561079a575f80fd5b506107a3610fe4565b6040516107b09190612c74565b60405180910390f35b3480156107c4575f80fd5b506107cd610ff7565b005b3480156107da575f80fd5b506107f560048036038101906107f09190612e93565b6114e9565b6040516108029190612d66565b60405180910390f35b348015610816575f80fd5b5061081f61156b565b60405161082c9190612d66565b60405180910390f35b348015610840575f80fd5b50610849611571565b005b348015610856575f80fd5b50610871600480360381019061086c9190612c8d565b611595565b005b34801561087e575f80fd5b5061089960048036038101906108949190612cb8565b61160c565b005b6060600380546108aa90612efe565b80601f01602080910402602001604051908101604052809291908181526020018280546108d690612efe565b80156109215780601f106108f857610100808354040283529160200191610921565b820191905f5260205f20905b81548152906001019060200180831161090457829003601f168201915b5050505050905090565b5f8061093561168e565b9050610942818585611695565b600191505092915050565b610955611858565b6101f4811115610991576040517fbafb3c5700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c8190555050565b6109a3611858565b80600d5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b610a1b611858565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610aa1576040517f2e4479d000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610aab82826118d6565b5050565b5f80610ab961168e565b9050610ac6858285611974565b610ad18585856119ff565b60019150509392505050565b600b5481565b60075481565b5f6012905090565b600a60029054906101000a900460ff1681565b5f80610b0e61168e565b9050610b2f818585610b2085896114e9565b610b2a9190612f5b565b611695565b600191505092915050565b60085481565b600c5481565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5f9054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610bca611858565b610bd35f611b27565b565b610bdd611858565b5f600a60026101000a81548160ff021916908315150217905550565b610c01611858565b8060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167ff39897000beaac558924c501ba3ebd842aac4c20c0f2540cbd7f36eee731e58082604051610c9b9190612c74565b60405180910390a25050565b610caf611858565b670de0b6b3a764000081610cc39190612f8e565b9050610cdb6acecb8f27f4200f3a000000600a611bea565b811015610d14576040517f3b210adc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060078190555050565b610d26611858565b6001811015610d61576040517f789288f100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612710811115610d9d576040517f5d62a18500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610db26acecb8f27f4200f3a00000082611bea565b60098190555050565b610dc3611858565b6101f4811115610dff576040517fbafb3c5700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b8190555050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6acecb8f27f4200f3a00000081565b606060048054610e4f90612efe565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7b90612efe565b8015610ec65780601f10610e9d57610100808354040283529160200191610ec6565b820191905f5260205f20905b815481529060010190602001808311610ea957829003601f168201915b5050505050905090565b610ed8611858565b80600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b600e602052805f5260405f205f915054906101000a900460ff1681565b5f80610f5761168e565b90505f610f6482866114e9565b905083811015610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa09061303f565b60405180910390fd5b610fb68286868403611695565b60019250505092915050565b5f80610fcc61168e565b9050610fd98185856119ff565b600191505092915050565b600a60019054906101000a900460ff1681565b610fff611858565b600a5f9054906101000a900460ff1615611045576040517f0dc149f000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61107b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6acecb8f27f4200f3a000000611695565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110e4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111089190613071565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561118d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111b19190613071565b6040518363ffffffff1660e01b81526004016111ce92919061309c565b6020604051808303815f875af11580156111ea573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061120e9190613071565b60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016112e99291906130c3565b6020604051808303815f875af1158015611305573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061132991906130fe565b506001600e5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600f5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719473061145d30610b7d565b5f80611467610e09565b426040518863ffffffff1660e01b815260040161148996959493929190613162565b60606040518083038185885af11580156114a5573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906114ca91906131d5565b5050506001600a5f6101000a81548160ff021916908315150217905550565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60095481565b611579611858565b5f600a60016101000a81548160ff021916908315150217905550565b61159d611858565b670de0b6b3a7640000816115b19190612f8e565b90506115c96acecb8f27f4200f3a000000600a611bea565b811015611602576040517f3b210adc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060088190555050565b611614611858565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167990613295565b60405180910390fd5b61168b81611b27565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fa90613323565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611771576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611768906133b1565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161184b9190612d66565b60405180910390a3505050565b61186061168e565b73ffffffffffffffffffffffffffffffffffffffff1661187e610e09565b73ffffffffffffffffffffffffffffffffffffffff16146118d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cb90613419565b60405180910390fd5b565b80600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fda8433dc2b32d1308609c08b02e4f1691c51a5ff9e5b2d4a15f990856bd31abe60405160405180910390a35050565b5f61197f84846114e9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119f957818110156119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e290613481565b60405180910390fd5b6119f88484848403611695565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a649061350f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad29061359d565b60405180910390fd5b5f8103611af257611aed83835f611c0c565b611b22565b611afd838383611e78565b5f611b09848484612025565b9050611b1584846121ec565b611b20848483611c0c565b505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6127108284611bfa9190612f8e565b611c0491906135e8565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c719061350f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ce8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdf9061359d565b60405180910390fd5b611cf3838383612357565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6d90613688565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611e5f9190612d66565b60405180910390a3611e7284848461235c565b50505050565b600a60029054906101000a900460ff161580611ea05750600d60149054906101000a900460ff165b80611edd5750611eae610e09565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80611f1a5750611eeb610e09565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b61202057600a5f9054906101000a900460ff16158015611f815750600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611fd45750600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561200b576040517fbcb8b8fb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61201482612361565b61201f8383836124dc565b5b505050565b5f600d60149054906101000a900460ff1680612087575060105f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b806120d8575060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156120e5578190506121e5565b5f600e5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561213d57505f600b54115b156121555761214e83600b54611bea565b90506121c1565b600e5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156121ac57505f600c54115b156121c0576121bd83600c54611bea565b90505b5b5f8111156121d5576121d4853083611c0c565b5b80836121e191906136a6565b9150505b9392505050565b5f6009546121f930610b7d565b101590508080156122175750600d60149054906101000a900460ff16155b801561226a5750600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156122bc5750600e5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b801561230f575060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612352576001600d60146101000a81548160ff021916908315150217905550612337612796565b5f600d60146101000a81548160ff0219169083151502179055505b505050565b505050565b505050565b600a60019054906101000a900460ff16156124d9577f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16148061241c575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b6124d9574360115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410612496576040517f954883f000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b4360115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b50565b600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156125795750600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561260e576007548111156125ba576040517f31598d3200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008546125c683610b7d565b826125d19190612f5b565b1115612609576040517f746f460700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612791565b600e5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156126ab5750600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156126f1576007548111156126ec576040517f31598d3200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612790565b600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661278f5760085461274b83610b7d565b826127569190612f5b565b111561278e576040517f746f460700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b5b505050565b5f6127a030610b7d565b90505f81036127af57506128ac565b60146009546127be9190612f8e565b8111156127d75760146009546127d49190612f8e565b90505b6127e0816128ae565b5f600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161282690613706565b5f6040518083038185875af1925050503d805f8114612860576040519150601f19603f3d011682016040523d82523d5f602084013e612865565b606091505b50509050806128a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a090613764565b60405180910390fd5b50505b565b5f600267ffffffffffffffff8111156128ca576128c9613782565b5b6040519080825280602002602001820160405280156128f85781602001602082028036833780820191505090505b50905030815f8151811061290f5761290e6137af565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156129b2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129d69190613071565b816001815181106129ea576129e96137af565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612a4f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611695565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612ab0959493929190613893565b5f604051808303815f87803b158015612ac7575f80fd5b505af1158015612ad9573d5f803e3d5ffd5b505050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612b18578082015181840152602081019050612afd565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612b3d82612ae1565b612b478185612aeb565b9350612b57818560208601612afb565b612b6081612b23565b840191505092915050565b5f6020820190508181035f830152612b838184612b33565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612bb882612b8f565b9050919050565b612bc881612bae565b8114612bd2575f80fd5b50565b5f81359050612be381612bbf565b92915050565b5f819050919050565b612bfb81612be9565b8114612c05575f80fd5b50565b5f81359050612c1681612bf2565b92915050565b5f8060408385031215612c3257612c31612b8b565b5b5f612c3f85828601612bd5565b9250506020612c5085828601612c08565b9150509250929050565b5f8115159050919050565b612c6e81612c5a565b82525050565b5f602082019050612c875f830184612c65565b92915050565b5f60208284031215612ca257612ca1612b8b565b5b5f612caf84828501612c08565b91505092915050565b5f60208284031215612ccd57612ccc612b8b565b5b5f612cda84828501612bd5565b91505092915050565b5f819050919050565b5f612d06612d01612cfc84612b8f565b612ce3565b612b8f565b9050919050565b5f612d1782612cec565b9050919050565b5f612d2882612d0d565b9050919050565b612d3881612d1e565b82525050565b5f602082019050612d515f830184612d2f565b92915050565b612d6081612be9565b82525050565b5f602082019050612d795f830184612d57565b92915050565b612d8881612c5a565b8114612d92575f80fd5b50565b5f81359050612da381612d7f565b92915050565b5f8060408385031215612dbf57612dbe612b8b565b5b5f612dcc85828601612bd5565b9250506020612ddd85828601612d95565b9150509250929050565b5f805f60608486031215612dfe57612dfd612b8b565b5b5f612e0b86828701612bd5565b9350506020612e1c86828701612bd5565b9250506040612e2d86828701612c08565b9150509250925092565b5f60ff82169050919050565b612e4c81612e37565b82525050565b5f602082019050612e655f830184612e43565b92915050565b612e7481612bae565b82525050565b5f602082019050612e8d5f830184612e6b565b92915050565b5f8060408385031215612ea957612ea8612b8b565b5b5f612eb685828601612bd5565b9250506020612ec785828601612bd5565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612f1557607f821691505b602082108103612f2857612f27612ed1565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612f6582612be9565b9150612f7083612be9565b9250828201905080821115612f8857612f87612f2e565b5b92915050565b5f612f9882612be9565b9150612fa383612be9565b9250828202612fb181612be9565b91508282048414831517612fc857612fc7612f2e565b5b5092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613029602583612aeb565b915061303482612fcf565b604082019050919050565b5f6020820190508181035f8301526130568161301d565b9050919050565b5f8151905061306b81612bbf565b92915050565b5f6020828403121561308657613085612b8b565b5b5f6130938482850161305d565b91505092915050565b5f6040820190506130af5f830185612e6b565b6130bc6020830184612e6b565b9392505050565b5f6040820190506130d65f830185612e6b565b6130e36020830184612d57565b9392505050565b5f815190506130f881612d7f565b92915050565b5f6020828403121561311357613112612b8b565b5b5f613120848285016130ea565b91505092915050565b5f819050919050565b5f61314c61314761314284613129565b612ce3565b612be9565b9050919050565b61315c81613132565b82525050565b5f60c0820190506131755f830189612e6b565b6131826020830188612d57565b61318f6040830187613153565b61319c6060830186613153565b6131a96080830185612e6b565b6131b660a0830184612d57565b979650505050505050565b5f815190506131cf81612bf2565b92915050565b5f805f606084860312156131ec576131eb612b8b565b5b5f6131f9868287016131c1565b935050602061320a868287016131c1565b925050604061321b868287016131c1565b9150509250925092565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61327f602683612aeb565b915061328a82613225565b604082019050919050565b5f6020820190508181035f8301526132ac81613273565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61330d602483612aeb565b9150613318826132b3565b604082019050919050565b5f6020820190508181035f83015261333a81613301565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61339b602283612aeb565b91506133a682613341565b604082019050919050565b5f6020820190508181035f8301526133c88161338f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613403602083612aeb565b915061340e826133cf565b602082019050919050565b5f6020820190508181035f830152613430816133f7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61346b601d83612aeb565b915061347682613437565b602082019050919050565b5f6020820190508181035f8301526134988161345f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6134f9602583612aeb565b91506135048261349f565b604082019050919050565b5f6020820190508181035f830152613526816134ed565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613587602383612aeb565b91506135928261352d565b604082019050919050565b5f6020820190508181035f8301526135b48161357b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6135f282612be9565b91506135fd83612be9565b92508261360d5761360c6135bb565b5b828204905092915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613672602683612aeb565b915061367d82613618565b604082019050919050565b5f6020820190508181035f83015261369f81613666565b9050919050565b5f6136b082612be9565b91506136bb83612be9565b92508282039050818111156136d3576136d2612f2e565b5b92915050565b5f81905092915050565b50565b5f6136f15f836136d9565b91506136fc826136e3565b5f82019050919050565b5f613710826136e6565b9150819050919050565b7f73656e64206661696c65640000000000000000000000000000000000000000005f82015250565b5f61374e600b83612aeb565b91506137598261371a565b602082019050919050565b5f6020820190508181035f83015261377b81613742565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61380e81612bae565b82525050565b5f61381f8383613805565b60208301905092915050565b5f602082019050919050565b5f613841826137dc565b61384b81856137e6565b9350613856836137f6565b805f5b8381101561388657815161386d8882613814565b97506138788361382b565b925050600181019050613859565b5085935050505092915050565b5f60a0820190506138a65f830188612d57565b6138b36020830187613153565b81810360408301526138c58186613837565b90506138d46060830185612e6b565b6138e16080830184612d57565b969550505050505056fea2646970667358221220c87eb749d1b44d26a93dc59dae7989ae5ac8c8a5636e3df4a875c2231a47ee5864736f6c63430008160033
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.