ERC-20
Overview
Max Total Supply
1,000,000,000 MEGAM
Holders
214
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
10,464.113212355589919363 MEGAMValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
MegaMoon
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity =0.8.19; /* MEGAMOON $MEGAM Website: https://megamooncoin.com/ Twitter: https://twitter.com/MEGAMOON_eth Telegram: https://t.me/MEGAMOON_eth */ import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "./interfaces/IUniswapV2Factory.sol"; import "./interfaces/IUniswapV2Router02.sol"; import "./interfaces/IDynamicThresholdOracle.sol"; contract MegaMoon is IERC20, Ownable { using Address for address payable; mapping (address => uint) private _rOwned; mapping (address => uint) private _tOwned; mapping (address => mapping (address => uint)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private _isExcluded; address[] private _excluded; bool public swapEnabled; bool private swapping; bool public tradingEnabled; IUniswapV2Router02 public router; IDynamicThresholdOracle public oracle; address public pair; address public buybackWallet; address public marketingWallet; uint8 private constant _decimals = 18; uint private constant MAX = ~uint(0); uint private _tTotal = 1_000_000_000 * 10**_decimals; uint private _rTotal = (MAX - (MAX % _tTotal)); uint public totalRfi; uint public swapThreshold = 2 * _tTotal / 1000; // 0.2% uint public maxTxAmount = 10 * _tTotal / 1000; // 1.0% uint public maxWalletAmount = 20 * _tTotal / 1000; // 2.0% uint public staticBuyThreshold = _tTotal / 1000; // 0.1% uint public startBlock; uint public offlineBlocks = 5; uint public buyTax = 150; // 15% during offline blocks uint public sellTax = 150; // 15% max sell tax uint public dynamicTax = 30; // 3% -> 0%, 3%, 6%, 9%, 12%, 15% uint public maxSellTax = 150; // 15% string private constant _name = "MEGAMOON"; string private constant _symbol = "MEGAM"; struct TaxesPercentage { uint rfi; uint buyback; uint marketing; } TaxesPercentage public taxesPercentage = TaxesPercentage(40, 40, 20); struct valuesFromGetValues { uint rAmount; uint rTransferAmount; uint rRfi; uint rSwap; uint tTransferAmount; uint tRfi; uint tSwap; } modifier lockTheSwap { swapping = true; _; swapping = false; } modifier onlyOwnerOrOracle { require( msg.sender == owner() || msg.sender == address(oracle), "Only the owner or oracle can make this call!" ); _; } constructor ( address _routerAddress, address _buybackWallet, address _marketingWallet ) { IUniswapV2Router02 _router = IUniswapV2Router02(_routerAddress); address _pair = IUniswapV2Factory(_router.factory()) .createPair(address(this), _router.WETH()); router = _router; pair = _pair; excludeFromReward(pair); excludeFromReward(address(0xdead)); _rOwned[msg.sender] = _rTotal; _isExcludedFromFee[msg.sender] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[address(0xdead)] = true; _isExcludedFromFee[_marketingWallet]=true; _isExcludedFromFee[_buybackWallet] = true; marketingWallet = _marketingWallet; buybackWallet = _buybackWallet; emit Transfer(address(0), msg.sender, _tTotal); } function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint) { return _tTotal; } function balanceOf(address account) public view override returns (uint) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint) { return _allowances[owner][spender]; } function approve(address spender, uint amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); return true; } function increaseAllowance(address spender, uint addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } function decreaseAllowance(address spender, uint subtractedValue) public virtual returns (bool) { uint currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } function isExcludedFromReward(address account) public view returns (bool) { return _isExcluded[account]; } function tokenFromReflection(uint rAmount) public view returns(uint) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint currentRate = _getRate(); return rAmount / currentRate; } function excludeFromReward(address account) public onlyOwner { require(!_isExcluded[account], "Account is already excluded"); if(_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeInReward(address account) external onlyOwner { require(_isExcluded[account], "Account is not excluded"); for (uint i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function excludeFromFee(address account, bool status) public onlyOwner { _isExcludedFromFee[account] = status; } function isExcludedFromFee(address account) public view returns (bool) { return _isExcludedFromFee[account]; } function buyThreshold() public view returns (uint) { return address(oracle) != address(0x0) ? oracle.getBuyThreshold() : staticBuyThreshold; } function _reflectRfi(uint rRfi, uint tRfi) private { _rTotal -= rRfi; totalRfi += tRfi; } function _takeSwapFees(uint rValue, uint tValue) private { if (_isExcluded[address(this)]) { _tOwned[address(this)]+= tValue; } _rOwned[address(this)] += rValue; } function _getValues(uint tAmount, bool takeFee, bool isSell) private view returns (valuesFromGetValues memory to_return) { to_return = _getTValues(tAmount, takeFee, isSell); (to_return.rAmount, to_return.rTransferAmount, to_return.rRfi, to_return.rSwap) = _getRValues(to_return, tAmount, takeFee, _getRate()); return to_return; } function _getTValues(uint tAmount, bool takeFee, bool isSell) private view returns (valuesFromGetValues memory s) { if (!takeFee) { s.tTransferAmount = tAmount; return s; } uint tempTax = isSell ? sellTax : buyTax; uint rfiTax = tempTax * taxesPercentage.rfi / 100; uint swapTax = tempTax * (100 - taxesPercentage.rfi) / 100; s.tRfi = tAmount * rfiTax / 1000; s.tSwap = tAmount * swapTax / 1000; s.tTransferAmount = tAmount - s.tRfi - s.tSwap; return s; } function _getRValues(valuesFromGetValues memory s, uint tAmount, bool takeFee, uint currentRate) private pure returns (uint rAmount, uint rTransferAmount, uint rRfi, uint rSwap) { rAmount = tAmount*currentRate; if (!takeFee) { return (rAmount, rAmount, 0, 0); } rRfi = s.tRfi * currentRate; rSwap = s.tSwap * currentRate; rTransferAmount = rAmount - rRfi - rSwap; return (rAmount, rTransferAmount, rRfi, rSwap); } function _getRate() private view returns (uint) { (uint rSupply, uint tSupply) = _getCurrentSupply(); return rSupply / tSupply; } function _getCurrentSupply() private view returns (uint, uint) { uint rSupply = _rTotal; uint tSupply = _tTotal; for (uint i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply-_rOwned[_excluded[i]]; tSupply = tSupply-_tOwned[_excluded[i]]; } if (rSupply < _rTotal / _tTotal) return (_rTotal, _tTotal); return (rSupply, tSupply); } function _approve(address owner, address spender, uint amount) private { 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); } function _transfer(address from, address to, uint amount) private { require(from != address(0), "ERC20: transfer from the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); require(amount <= balanceOf(from), "You are trying to transfer more than your balance"); if (buyTax != 0 && tradingEnabled) { if (startBlock + offlineBlocks < block.number) buyTax = 0; } bool takeFee = false; if (!_isExcludedFromFee[from] && !_isExcludedFromFee[to]) { require(tradingEnabled, "Liquidity has not been added yet"); require(amount <= maxTxAmount, "You are exceeding maxTxAmount"); if (to != pair) require(balanceOf(to) + amount <= maxWalletAmount, "You are exceeding maxWalletAmount"); takeFee = true; if (from == pair && startBlock + offlineBlocks < block.number) { takeFee = false; if (amount >= buyThreshold()) { if (sellTax >= dynamicTax) sellTax -= dynamicTax; else sellTax = 0; } } } bool canSwap = balanceOf(address(this)) >= swapThreshold; if (!swapping && swapEnabled && canSwap && from != pair && !_isExcludedFromFee[from] && !_isExcludedFromFee[to]) { swapTokensForFees(swapThreshold); } _tokenTransfer(from, to, amount, takeFee); } function _tokenTransfer(address sender, address recipient, uint tAmount, bool takeFee) private { bool isSell = recipient == pair ? true : false; valuesFromGetValues memory s = _getValues(tAmount, takeFee, isSell); if (isSell && takeFee && startBlock + offlineBlocks < block.number) { if (sellTax + dynamicTax > maxSellTax) sellTax = maxSellTax; else sellTax += dynamicTax; } if (_isExcluded[sender] ) { _tOwned[sender] = _tOwned[sender] - tAmount; } if (_isExcluded[recipient]) { _tOwned[recipient] = _tOwned[recipient] + s.tTransferAmount; } _rOwned[sender] = _rOwned[sender] - s.rAmount; _rOwned[recipient] = _rOwned[recipient] + s.rTransferAmount; if (s.rRfi > 0 || s.tRfi > 0) _reflectRfi(s.rRfi, s.tRfi); if (s.rSwap > 0 || s.tSwap > 0) _takeSwapFees(s.rSwap, s.tSwap); emit Transfer(sender, recipient, s.tTransferAmount); emit Transfer(sender, address(this), s.tSwap); } function swapTokensForFees(uint tokens) private lockTheSwap { uint initialBalance = address(this).balance; swapTokensForETH(tokens); uint deltaBalance = address(this).balance - initialBalance; uint totalPercent = 100 - taxesPercentage.rfi; if (totalPercent == 0) return; uint marketingAmount = deltaBalance * taxesPercentage.marketing / totalPercent; if (marketingAmount > 0) payable(marketingWallet).sendValue(marketingAmount); uint buybackAmount = deltaBalance - marketingAmount; if (buybackAmount > 0) payable(buybackWallet).sendValue(buybackAmount); } function swapTokensForETH(uint tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = router.WETH(); _approve(address(this), address(router), tokenAmount); router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function enableTrading() external onlyOwner { tradingEnabled = true; swapEnabled = true; startBlock = block.number; } function updateOracle(address newOracle) external onlyOwnerOrOracle { oracle = IDynamicThresholdOracle(newOracle); } function updateMarketingWallet(address newWallet) external onlyOwner { marketingWallet = newWallet; _isExcludedFromFee[marketingWallet] = true; } function updateBuybackWallet(address newWallet) external onlyOwner { buybackWallet = newWallet; _isExcludedFromFee[buybackWallet] = true; } function setTaxesPercentage(uint _rfi, uint _buyback, uint _marketing) external onlyOwner { require(_rfi + _buyback + _marketing == 100, "Total must be 100"); taxesPercentage = TaxesPercentage(_rfi, _buyback, _marketing); } function updateThreshold(uint amount) external onlyOwner { staticBuyThreshold = amount * 10**_decimals; } function updateMaxTxAmount(uint amount) external onlyOwner { maxTxAmount = amount * 10**_decimals; } function updateMaxWallet(uint amount) external onlyOwner { maxWalletAmount = amount * 10**_decimals; } function updateSwapThreshold(uint amount) external onlyOwner { swapThreshold = amount * 10**_decimals; } function updateSwapEnabled(bool _enabled) external onlyOwner { swapEnabled = _enabled; } function updatePair(address newRouter, address newPair) external onlyOwner { router = IUniswapV2Router02(newRouter); pair = newPair; } function updateDynamicTax(uint amount) external onlyOwner { dynamicTax = amount; } function updateMaxSellTax(uint amount) external onlyOwner { maxSellTax = amount; } function rescueETH() external onlyOwner { payable(msg.sender).transfer(address(this).balance); } function rescueTokens(address _token) external onlyOwner { require(_token != address(this), "Can not rescue own token!"); IERC20(_token).transfer(owner(), IERC20(_token).balanceOf(address(this))); } function distributeAirdrop(address[] calldata recipients, uint[] calldata amounts) external onlyOwner { require(recipients.length == amounts.length, "Error in arrays!"); for (uint256 i = 0; i < recipients.length; i++) { _transfer(_msgSender(), recipients[i], amounts[i] * 10**_decimals); } } receive() external payable {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// 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.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IDynamicThresholdOracle { function getBuyThreshold() external view returns (uint); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.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 pragma solidity ^0.8.0; interface IUniswapV2Router02 { 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 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; }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_routerAddress","type":"address"},{"internalType":"address","name":"_buybackWallet","type":"address"},{"internalType":"address","name":"_marketingWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buybackWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"distributeAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dynamicTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"offlineBlocks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oracle","outputs":[{"internalType":"contract IDynamicThresholdOracle","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"rescueTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rfi","type":"uint256"},{"internalType":"uint256","name":"_buyback","type":"uint256"},{"internalType":"uint256","name":"_marketing","type":"uint256"}],"name":"setTaxesPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"staticBuyThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"taxesPercentage","outputs":[{"internalType":"uint256","name":"rfi","type":"uint256"},{"internalType":"uint256","name":"buyback","type":"uint256"},{"internalType":"uint256","name":"marketing","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalRfi","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateBuybackWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"updateDynamicTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"updateMaxSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"updateMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"updateMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOracle","type":"address"}],"name":"updateOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"},{"internalType":"address","name":"newPair","type":"address"}],"name":"updatePair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"updateSwapThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"updateThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526012600a62000014919062000f59565b633b9aca0062000025919062000faa565b600c55600c546000196200003a919062001024565b6000196200004991906200105c565b600d556103e8600c54600262000060919062000faa565b6200006c919062001097565b600f556103e8600c54600a62000083919062000faa565b6200008f919062001097565b6010556103e8600c546014620000a6919062000faa565b620000b2919062001097565b6011556103e8600c54620000c7919062001097565b601255600560145560966015556096601655601e6017556096601855604051806060016040528060288152602001602881526020016014815250601960008201518160000155602082015181600101556040820151816002015550503480156200013057600080fd5b506040516200669c3803806200669c833981810160405281019062000156919062001139565b620001766200016a620006a360201b60201c565b620006ab60201b60201c565b600083905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001c9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ef919062001195565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000257573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027d919062001195565b6040518363ffffffff1660e01b81526004016200029c929190620011d8565b6020604051808303816000875af1158015620002bc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e2919062001195565b905081600760036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000399600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200076f60201b60201c565b620003ac61dead6200076f60201b60201c565b600d54600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506001600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016004600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555082600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600c5460405162000690919062001216565b60405180910390a350505050506200143c565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200077f620009aa60201b60201c565b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156200080f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008069062001294565b60405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115620008ec57620008a8600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000a3b60201b60201c565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b620009ba620006a360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620009e062000aaf60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000a39576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a309062001306565b60405180910390fd5b565b6000600d5482111562000a85576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a7c906200139e565b60405180910390fd5b600062000a9762000ad860201b60201c565b9050808362000aa7919062001097565b915050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080600062000aed62000b0660201b60201c565b91509150808262000aff919062001097565b9250505090565b6000806000600d5490506000600c54905060005b60068054905081101562000d855782600160006006848154811062000b445762000b43620013c0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054118062000c36575081600260006006848154811062000bce5762000bcd620013c0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1562000c4f57600d54600c549450945050505062000dbb565b600160006006838154811062000c6a5762000c69620013c0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548362000cdd91906200105c565b9250600260006006838154811062000cfa5762000cf9620013c0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548262000d6d91906200105c565b9150808062000d7c90620013ef565b91505062000b1a565b50600c54600d5462000d98919062001097565b82101562000db257600d54600c5493509350505062000dbb565b81819350935050505b9091565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000e4d5780860481111562000e255762000e2462000dbf565b5b600185161562000e355780820291505b808102905062000e458562000dee565b945062000e05565b94509492505050565b60008262000e68576001905062000f3b565b8162000e78576000905062000f3b565b816001811462000e91576002811462000e9c5762000ed2565b600191505062000f3b565b60ff84111562000eb15762000eb062000dbf565b5b8360020a91508482111562000ecb5762000eca62000dbf565b5b5062000f3b565b5060208310610133831016604e8410600b841016171562000f0c5782820a90508381111562000f065762000f0562000dbf565b5b62000f3b565b62000f1b848484600162000dfb565b9250905081840481111562000f355762000f3462000dbf565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000f668262000f42565b915062000f738362000f4c565b925062000fa27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000e56565b905092915050565b600062000fb78262000f42565b915062000fc48362000f42565b925082820262000fd48162000f42565b9150828204841483151762000fee5762000fed62000dbf565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010318262000f42565b91506200103e8362000f42565b92508262001051576200105062000ff5565b5b828206905092915050565b6000620010698262000f42565b9150620010768362000f42565b925082820390508181111562001091576200109062000dbf565b5b92915050565b6000620010a48262000f42565b9150620010b18362000f42565b925082620010c457620010c362000ff5565b5b828204905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200110182620010d4565b9050919050565b6200111381620010f4565b81146200111f57600080fd5b50565b600081519050620011338162001108565b92915050565b600080600060608486031215620011555762001154620010cf565b5b6000620011658682870162001122565b9350506020620011788682870162001122565b92505060406200118b8682870162001122565b9150509250925092565b600060208284031215620011ae57620011ad620010cf565b5b6000620011be8482850162001122565b91505092915050565b620011d281620010f4565b82525050565b6000604082019050620011ef6000830185620011c7565b620011fe6020830184620011c7565b9392505050565b620012108162000f42565b82525050565b60006020820190506200122d600083018462001205565b92915050565b600082825260208201905092915050565b7f4163636f756e7420697320616c7265616479206578636c756465640000000000600082015250565b60006200127c601b8362001233565b9150620012898262001244565b602082019050919050565b60006020820190508181036000830152620012af816200126d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620012ee60208362001233565b9150620012fb82620012b6565b602082019050919050565b600060208201905081810360008301526200132181620012df565b9050919050565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b600062001386602a8362001233565b9150620013938262001328565b604082019050919050565b60006020820190508181036000830152620013b98162001377565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000620013fc8262000f42565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820362001431576200143062000dbf565b5b600182019050919050565b615250806200144c6000396000f3fe60806040526004361061036e5760003560e01c8063715018a6116101c6578063aa4bde28116100f7578063dd92459411610095578063e5067d6e1161006f578063e5067d6e14610c8e578063f13cff4114610cb9578063f2fde38b14610ce4578063f887ea4014610d0d57610375565b8063dd92459414610c11578063deab8aea14610c3a578063df8408fe14610c6557610375565b8063cc1776d3116100d1578063cc1776d314610b57578063cc274b2914610b82578063d7d7442f14610bab578063dd62ed3e14610bd457610375565b8063aa4bde2814610ada578063aacebbe314610b05578063c069019214610b2e57610375565b8063924de9b711610164578063a411209a1161013e578063a411209a14610a0a578063a457c2d714610a35578063a8aa1b3114610a72578063a9059cbb14610a9d57610375565b8063924de9b71461098d57806395d89b41146109b6578063963fbc50146109e157610375565b806388f82020116101a057806388f82020146108e35780638a8c523c146109205780638c0b5e22146109375780638da5cb5b1461096257610375565b8063715018a61461087657806375f0a8741461088d5780637dc0d1d0146108b857610375565b80632d838119116102a05780634f7041a51161023e5780636256d181116102185780636256d181146107ba578063649011c8146107e35780636ddd17131461080e57806370a082311461083957610375565b80634f7041a51461072957806352390c02146107545780635342acb41461077d57610375565b8063395093511161027a578063395093511461066b57806348cd4cb1146106a85780634ada218b146106d35780634da86156146106fe57610375565b80632d838119146105da578063313ce567146106175780633685d4191461064257610375565b8063095ea7b31161030d5780631c499ab0116102e75780631c499ab0146105345780631cb44dfc1461055d57806320800a001461058657806323b872dd1461059d57610375565b8063095ea7b3146104a157806318160ddd146104de5780631a6611811461050957610375565b806304dacd501161034957806304dacd50146103fb57806306fdde0314610424578063079bf8671461044f5780630858fa351461047857610375565b8062ae3bf81461037a578063029514f7146103a35780630445b667146103d057610375565b3661037557005b600080fd5b34801561038657600080fd5b506103a1600480360381019061039c9190613b77565b610d38565b005b3480156103af57600080fd5b506103b8610eb0565b6040516103c793929190613bbd565b60405180910390f35b3480156103dc57600080fd5b506103e5610ec8565b6040516103f29190613bf4565b60405180910390f35b34801561040757600080fd5b50610422600480360381019061041d9190613b77565b610ece565b005b34801561043057600080fd5b50610439610f94565b6040516104469190613c9f565b60405180910390f35b34801561045b57600080fd5b5061047660048036038101906104719190613ced565b610fd1565b005b34801561048457600080fd5b5061049f600480360381019061049a9190613d1a565b610fe3565b005b3480156104ad57600080fd5b506104c860048036038101906104c39190613d6d565b611087565b6040516104d59190613dc8565b60405180910390f35b3480156104ea57600080fd5b506104f36110a5565b6040516105009190613bf4565b60405180910390f35b34801561051557600080fd5b5061051e6110af565b60405161052b9190613bf4565b60405180910390f35b34801561054057600080fd5b5061055b60048036038101906105569190613ced565b6110b5565b005b34801561056957600080fd5b50610584600480360381019061057f9190613b77565b6110df565b005b34801561059257600080fd5b5061059b6111f0565b005b3480156105a957600080fd5b506105c460048036038101906105bf9190613de3565b611241565b6040516105d19190613dc8565b60405180910390f35b3480156105e657600080fd5b5061060160048036038101906105fc9190613ced565b611342565b60405161060e9190613bf4565b60405180910390f35b34801561062357600080fd5b5061062c6113a9565b6040516106399190613e52565b60405180910390f35b34801561064e57600080fd5b5061066960048036038101906106649190613b77565b6113b2565b005b34801561067757600080fd5b50610692600480360381019061068d9190613d6d565b611673565b60405161069f9190613dc8565b60405180910390f35b3480156106b457600080fd5b506106bd61171f565b6040516106ca9190613bf4565b60405180910390f35b3480156106df57600080fd5b506106e8611725565b6040516106f59190613dc8565b60405180910390f35b34801561070a57600080fd5b50610713611738565b6040516107209190613bf4565b60405180910390f35b34801561073557600080fd5b5061073e61173e565b60405161074b9190613bf4565b60405180910390f35b34801561076057600080fd5b5061077b60048036038101906107769190613b77565b611744565b005b34801561078957600080fd5b506107a4600480360381019061079f9190613b77565b61196b565b6040516107b19190613dc8565b60405180910390f35b3480156107c657600080fd5b506107e160048036038101906107dc9190613ced565b6119c1565b005b3480156107ef57600080fd5b506107f86119eb565b6040516108059190613bf4565b60405180910390f35b34801561081a57600080fd5b506108236119f1565b6040516108309190613dc8565b60405180910390f35b34801561084557600080fd5b50610860600480360381019061085b9190613b77565b611a04565b60405161086d9190613bf4565b60405180910390f35b34801561088257600080fd5b5061088b611aef565b005b34801561089957600080fd5b506108a2611b03565b6040516108af9190613e7c565b60405180910390f35b3480156108c457600080fd5b506108cd611b29565b6040516108da9190613ef6565b60405180910390f35b3480156108ef57600080fd5b5061090a60048036038101906109059190613b77565b611b4f565b6040516109179190613dc8565b60405180910390f35b34801561092c57600080fd5b50610935611ba5565b005b34801561094357600080fd5b5061094c611bec565b6040516109599190613bf4565b60405180910390f35b34801561096e57600080fd5b50610977611bf2565b6040516109849190613e7c565b60405180910390f35b34801561099957600080fd5b506109b460048036038101906109af9190613f3d565b611c1b565b005b3480156109c257600080fd5b506109cb611c40565b6040516109d89190613c9f565b60405180910390f35b3480156109ed57600080fd5b50610a086004803603810190610a039190613ced565b611c7d565b005b348015610a1657600080fd5b50610a1f611c8f565b604051610a2c9190613bf4565b60405180910390f35b348015610a4157600080fd5b50610a5c6004803603810190610a579190613d6d565b611c95565b604051610a699190613dc8565b60405180910390f35b348015610a7e57600080fd5b50610a87611d89565b604051610a949190613e7c565b60405180910390f35b348015610aa957600080fd5b50610ac46004803603810190610abf9190613d6d565b611daf565b604051610ad19190613dc8565b60405180910390f35b348015610ae657600080fd5b50610aef611dcd565b604051610afc9190613bf4565b60405180910390f35b348015610b1157600080fd5b50610b2c6004803603810190610b279190613b77565b611dd3565b005b348015610b3a57600080fd5b50610b556004803603810190610b509190613f6a565b611e99565b005b348015610b6357600080fd5b50610b6c611f27565b604051610b799190613bf4565b60405180910390f35b348015610b8e57600080fd5b50610ba96004803603810190610ba49190613ced565b611f2d565b005b348015610bb757600080fd5b50610bd26004803603810190610bcd9190613ced565b611f57565b005b348015610be057600080fd5b50610bfb6004803603810190610bf69190613f6a565b611f81565b604051610c089190613bf4565b60405180910390f35b348015610c1d57600080fd5b50610c386004803603810190610c339190614065565b612008565b005b348015610c4657600080fd5b50610c4f6120ea565b604051610c5c9190613e7c565b60405180910390f35b348015610c7157600080fd5b50610c8c6004803603810190610c8791906140e6565b612110565b005b348015610c9a57600080fd5b50610ca3612173565b604051610cb09190613bf4565b60405180910390f35b348015610cc557600080fd5b50610cce612179565b604051610cdb9190613bf4565b60405180910390f35b348015610cf057600080fd5b50610d0b6004803603810190610d069190613b77565b61226f565b005b348015610d1957600080fd5b50610d226122f2565b604051610d2f9190614147565b60405180910390f35b610d40612318565b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da5906141ae565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610dd2611bf2565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610e0b9190613e7c565b602060405180830381865afa158015610e28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e4c91906141e3565b6040518363ffffffff1660e01b8152600401610e69929190614210565b6020604051808303816000875af1158015610e88573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eac919061424e565b5050565b60198060000154908060010154908060020154905083565b600f5481565b610ed6612318565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160046000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60606040518060400160405280600881526020017f4d4547414d4f4f4e000000000000000000000000000000000000000000000000815250905090565b610fd9612318565b8060188190555050565b610feb612318565b6064818385610ffa91906142aa565b61100491906142aa565b14611044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103b9061432a565b60405180910390fd5b6040518060600160405280848152602001838152602001828152506019600082015181600001556020820151816001015560408201518160020155905050505050565b600061109b611094612396565b848461239e565b6001905092915050565b6000600c54905090565b600e5481565b6110bd612318565b6012600a6110cb919061447d565b816110d691906144c8565b60118190555050565b6110e7611bf2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061116d5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a39061457c565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6111f8612318565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561123e573d6000803e3d6000fd5b50565b600061124e848484612567565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611299612396565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611319576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113109061460e565b60405180910390fd5b61133685611325612396565b8584611331919061462e565b61239e565b60019150509392505050565b6000600d54821115611389576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611380906146d4565b60405180910390fd5b6000611393612ac1565b905080836113a19190614723565b915050919050565b60006012905090565b6113ba612318565b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611446576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143d906147a0565b60405180910390fd5b60005b60068054905081101561166f578173ffffffffffffffffffffffffffffffffffffffff1660068281548110611481576114806147c0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361165c57600660016006805490506114db919061462e565b815481106114ec576114eb6147c0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166006828154811061152b5761152a6147c0565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006805480611622576116216147ef565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561166f565b80806116679061481e565b915050611449565b5050565b6000611715611680612396565b84846003600061168e612396565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461171091906142aa565b61239e565b6001905092915050565b60135481565b600760029054906101000a900460ff1681565b60175481565b60155481565b61174c612318565b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d0906148b2565b60405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156118ad57611869600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611342565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6119c9612318565b6012600a6119d7919061447d565b816119e291906144c8565b60108190555050565b60145481565b600760009054906101000a900460ff1681565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a9f57600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611aea565b611ae7600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611342565b90505b919050565b611af7612318565b611b016000612ae5565b565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611bad612318565b6001600760026101000a81548160ff0219169083151502179055506001600760006101000a81548160ff02191690831515021790555043601381905550565b60105481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611c23612318565b80600760006101000a81548160ff02191690831515021790555050565b60606040518060400160405280600581526020017f4d4547414d000000000000000000000000000000000000000000000000000000815250905090565b611c85612318565b8060178190555050565b60185481565b60008060036000611ca4612396565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5890614944565b60405180910390fd5b611d7e611d6c612396565b858584611d79919061462e565b61239e565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611dc3611dbc612396565b8484612567565b6001905092915050565b60115481565b611ddb612318565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160046000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611ea1612318565b81600760036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60165481565b611f35612318565b6012600a611f43919061447d565b81611f4e91906144c8565b600f8190555050565b611f5f612318565b6012600a611f6d919061447d565b81611f7891906144c8565b60128190555050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612010612318565b818190508484905014612058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204f906149b0565b60405180910390fd5b60005b848490508110156120e3576120d0612071612396565b868684818110612084576120836147c0565b5b90506020020160208101906120999190613b77565b6012600a6120a7919061447d565b8686868181106120ba576120b96147c0565b5b905060200201356120cb91906144c8565b612567565b80806120db9061481e565b91505061205b565b5050505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612118612318565b80600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60125481565b60008073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036121d85760125461226a565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636ac097dd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612245573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061226991906141e3565b5b905090565b612277612318565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036122e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dd90614a42565b60405180910390fd5b6122ef81612ae5565b50565b600760039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612320612396565b73ffffffffffffffffffffffffffffffffffffffff1661233e611bf2565b73ffffffffffffffffffffffffffffffffffffffff1614612394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238b90614aae565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361240d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240490614b40565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361247c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247390614bd2565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161255a9190613bf4565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036125d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cd90614c64565b60405180910390fd5b60008111612619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261090614cf6565b60405180910390fd5b61262283611a04565b811115612664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265b90614d88565b60405180910390fd5b6000601554141580156126835750600760029054906101000a900460ff165b156126a9574360145460135461269991906142aa565b10156126a85760006015819055505b5b6000600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561274f5750600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561295357600760029054906101000a900460ff166127a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279a90614df4565b60405180910390fd5b6010548211156127e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127df90614e60565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612896576011548261284a85611a04565b61285491906142aa565b1115612895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288c90614ef2565b60405180910390fd5b5b60019050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561290557504360145460135461290391906142aa565b105b156129525760009050612916612179565b82106129515760175460165410612947576017546016600082825461293b919061462e565b92505081905550612950565b60006016819055505b5b5b5b6000600f5461296130611a04565b10159050600760019054906101000a900460ff1615801561298e5750600760009054906101000a900460ff165b80156129975750805b80156129f15750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015612a475750600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a9d5750600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612aae57612aad600f54612ba9565b5b612aba85858585612d06565b5050505050565b6000806000612ace613207565b915091508082612ade9190614723565b9250505090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600760016101000a81548160ff0219169083151502179055506000479050612bd2826134a5565b60008147612be0919061462e565b905060006019600001546064612bf6919061462e565b905060008103612c0857505050612ce8565b60008160196002015484612c1c91906144c8565b612c269190614723565b90506000811115612c7d57612c7c81600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166136e890919063ffffffff16565b5b60008184612c8b919061462e565b90506000811115612ce257612ce181600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166136e890919063ffffffff16565b5b50505050505b6000600760016101000a81548160ff02191690831515021790555050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612d64576000612d67565b60015b90506000612d768484846137dc565b9050818015612d825750825b8015612d9c575043601454601354612d9a91906142aa565b105b15612de557601854601754601654612db491906142aa565b1115612dc857601854601681905550612de4565b60175460166000828254612ddc91906142aa565b925050819055505b5b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612ec65783600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612e82919061462e565b600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612fab578060800151600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f6791906142aa565b600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8060000151600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ffa919061462e565b600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508060200151600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461308c91906142aa565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000816040015111806130e6575060008160a00151115b156130fe576130fd81604001518260a0015161382f565b5b600081606001511180613115575060008160c00151115b1561312d5761312c81606001518260c00151613865565b5b8473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836080015160405161318e9190613bf4565b60405180910390a33073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360c001516040516131f79190613bf4565b60405180910390a3505050505050565b6000806000600d5490506000600c54905060005b60068054905081101561346f57826001600060068481548110613241576132406147c0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054118061332f57508160026000600684815481106132c7576132c66147c0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1561334657600d54600c54945094505050506134a1565b600160006006838154811061335e5761335d6147c0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836133cf919061462e565b925060026000600683815481106133e9576133e86147c0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548261345a919061462e565b915080806134679061481e565b91505061321b565b50600c54600d546134809190614723565b82101561349857600d54600c549350935050506134a1565b81819350935050505b9091565b6000600267ffffffffffffffff8111156134c2576134c1614f12565b5b6040519080825280602002602001820160405280156134f05781602001602082028036833780820191505090505b5090503081600081518110613508576135076147c0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156135af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135d39190614f56565b816001815181106135e7576135e66147c0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061364e30600760039054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461239e565b600760039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016136b295949392919061507c565b600060405180830381600087803b1580156136cc57600080fd5b505af11580156136e0573d6000803e3d6000fd5b505050505050565b8047101561372b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372290615122565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161375190615173565b60006040518083038185875af1925050503d806000811461378e576040519150601f19603f3d011682016040523d82523d6000602084013e613793565b606091505b50509050806137d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137ce906151fa565b60405180910390fd5b505050565b6137e4613ad2565b6137ef848484613968565b90506138048185856137ff612ac1565b613a5e565b8460000185602001866040018760600184815250848152508481525084815250505050509392505050565b81600d6000828254613841919061462e565b9250508190555080600e600082825461385a91906142aa565b925050819055505050565b600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561390e5780600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461390691906142aa565b925050819055505b81600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461395d91906142aa565b925050819055505050565b613970613ad2565b826139845783816080018181525050613a57565b60008261399357601554613997565b6016545b905060006064601960000154836139ae91906144c8565b6139b89190614723565b90506000606460196000015460646139d0919061462e565b846139db91906144c8565b6139e59190614723565b90506103e882886139f691906144c8565b613a009190614723565b8460a00181815250506103e88188613a1891906144c8565b613a229190614723565b8460c00181815250508360c001518460a0015188613a40919061462e565b613a4a919061462e565b8460800181815250505050505b9392505050565b6000806000808487613a7091906144c8565b935085613a895783846000809350935093509350613ac7565b848860a00151613a9991906144c8565b9150848860c00151613aab91906144c8565b9050808285613aba919061462e565b613ac4919061462e565b92505b945094509450949050565b6040518060e00160405280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b4482613b19565b9050919050565b613b5481613b39565b8114613b5f57600080fd5b50565b600081359050613b7181613b4b565b92915050565b600060208284031215613b8d57613b8c613b0f565b5b6000613b9b84828501613b62565b91505092915050565b6000819050919050565b613bb781613ba4565b82525050565b6000606082019050613bd26000830186613bae565b613bdf6020830185613bae565b613bec6040830184613bae565b949350505050565b6000602082019050613c096000830184613bae565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c49578082015181840152602081019050613c2e565b60008484015250505050565b6000601f19601f8301169050919050565b6000613c7182613c0f565b613c7b8185613c1a565b9350613c8b818560208601613c2b565b613c9481613c55565b840191505092915050565b60006020820190508181036000830152613cb98184613c66565b905092915050565b613cca81613ba4565b8114613cd557600080fd5b50565b600081359050613ce781613cc1565b92915050565b600060208284031215613d0357613d02613b0f565b5b6000613d1184828501613cd8565b91505092915050565b600080600060608486031215613d3357613d32613b0f565b5b6000613d4186828701613cd8565b9350506020613d5286828701613cd8565b9250506040613d6386828701613cd8565b9150509250925092565b60008060408385031215613d8457613d83613b0f565b5b6000613d9285828601613b62565b9250506020613da385828601613cd8565b9150509250929050565b60008115159050919050565b613dc281613dad565b82525050565b6000602082019050613ddd6000830184613db9565b92915050565b600080600060608486031215613dfc57613dfb613b0f565b5b6000613e0a86828701613b62565b9350506020613e1b86828701613b62565b9250506040613e2c86828701613cd8565b9150509250925092565b600060ff82169050919050565b613e4c81613e36565b82525050565b6000602082019050613e676000830184613e43565b92915050565b613e7681613b39565b82525050565b6000602082019050613e916000830184613e6d565b92915050565b6000819050919050565b6000613ebc613eb7613eb284613b19565b613e97565b613b19565b9050919050565b6000613ece82613ea1565b9050919050565b6000613ee082613ec3565b9050919050565b613ef081613ed5565b82525050565b6000602082019050613f0b6000830184613ee7565b92915050565b613f1a81613dad565b8114613f2557600080fd5b50565b600081359050613f3781613f11565b92915050565b600060208284031215613f5357613f52613b0f565b5b6000613f6184828501613f28565b91505092915050565b60008060408385031215613f8157613f80613b0f565b5b6000613f8f85828601613b62565b9250506020613fa085828601613b62565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112613fcf57613fce613faa565b5b8235905067ffffffffffffffff811115613fec57613feb613faf565b5b60208301915083602082028301111561400857614007613fb4565b5b9250929050565b60008083601f84011261402557614024613faa565b5b8235905067ffffffffffffffff81111561404257614041613faf565b5b60208301915083602082028301111561405e5761405d613fb4565b5b9250929050565b6000806000806040858703121561407f5761407e613b0f565b5b600085013567ffffffffffffffff81111561409d5761409c613b14565b5b6140a987828801613fb9565b9450945050602085013567ffffffffffffffff8111156140cc576140cb613b14565b5b6140d88782880161400f565b925092505092959194509250565b600080604083850312156140fd576140fc613b0f565b5b600061410b85828601613b62565b925050602061411c85828601613f28565b9150509250929050565b600061413182613ec3565b9050919050565b61414181614126565b82525050565b600060208201905061415c6000830184614138565b92915050565b7f43616e206e6f7420726573637565206f776e20746f6b656e2100000000000000600082015250565b6000614198601983613c1a565b91506141a382614162565b602082019050919050565b600060208201905081810360008301526141c78161418b565b9050919050565b6000815190506141dd81613cc1565b92915050565b6000602082840312156141f9576141f8613b0f565b5b6000614207848285016141ce565b91505092915050565b60006040820190506142256000830185613e6d565b6142326020830184613bae565b9392505050565b60008151905061424881613f11565b92915050565b60006020828403121561426457614263613b0f565b5b600061427284828501614239565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006142b582613ba4565b91506142c083613ba4565b92508282019050808211156142d8576142d761427b565b5b92915050565b7f546f74616c206d75737420626520313030000000000000000000000000000000600082015250565b6000614314601183613c1a565b915061431f826142de565b602082019050919050565b6000602082019050818103600083015261434381614307565b9050919050565b60008160011c9050919050565b6000808291508390505b60018511156143a15780860481111561437d5761437c61427b565b5b600185161561438c5780820291505b808102905061439a8561434a565b9450614361565b94509492505050565b6000826143ba5760019050614476565b816143c85760009050614476565b81600181146143de57600281146143e857614417565b6001915050614476565b60ff8411156143fa576143f961427b565b5b8360020a9150848211156144115761441061427b565b5b50614476565b5060208310610133831016604e8410600b841016171561444c5782820a9050838111156144475761444661427b565b5b614476565b6144598484846001614357565b925090508184048111156144705761446f61427b565b5b81810290505b9392505050565b600061448882613ba4565b915061449383613e36565b92506144c07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846143aa565b905092915050565b60006144d382613ba4565b91506144de83613ba4565b92508282026144ec81613ba4565b915082820484148315176145035761450261427b565b5b5092915050565b7f4f6e6c7920746865206f776e6572206f72206f7261636c652063616e206d616b60008201527f6520746869732063616c6c210000000000000000000000000000000000000000602082015250565b6000614566602c83613c1a565b91506145718261450a565b604082019050919050565b6000602082019050818103600083015261459581614559565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006145f8602883613c1a565b91506146038261459c565b604082019050919050565b60006020820190508181036000830152614627816145eb565b9050919050565b600061463982613ba4565b915061464483613ba4565b925082820390508181111561465c5761465b61427b565b5b92915050565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b60006146be602a83613c1a565b91506146c982614662565b604082019050919050565b600060208201905081810360008301526146ed816146b1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061472e82613ba4565b915061473983613ba4565b925082614749576147486146f4565b5b828204905092915050565b7f4163636f756e74206973206e6f74206578636c75646564000000000000000000600082015250565b600061478a601783613c1a565b915061479582614754565b602082019050919050565b600060208201905081810360008301526147b98161477d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600061482982613ba4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361485b5761485a61427b565b5b600182019050919050565b7f4163636f756e7420697320616c7265616479206578636c756465640000000000600082015250565b600061489c601b83613c1a565b91506148a782614866565b602082019050919050565b600060208201905081810360008301526148cb8161488f565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061492e602583613c1a565b9150614939826148d2565b604082019050919050565b6000602082019050818103600083015261495d81614921565b9050919050565b7f4572726f7220696e206172726179732100000000000000000000000000000000600082015250565b600061499a601083613c1a565b91506149a582614964565b602082019050919050565b600060208201905081810360008301526149c98161498d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a2c602683613c1a565b9150614a37826149d0565b604082019050919050565b60006020820190508181036000830152614a5b81614a1f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614a98602083613c1a565b9150614aa382614a62565b602082019050919050565b60006020820190508181036000830152614ac781614a8b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b2a602483613c1a565b9150614b3582614ace565b604082019050919050565b60006020820190508181036000830152614b5981614b1d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614bbc602283613c1a565b9150614bc782614b60565b604082019050919050565b60006020820190508181036000830152614beb81614baf565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614c4e602583613c1a565b9150614c5982614bf2565b604082019050919050565b60006020820190508181036000830152614c7d81614c41565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000614ce0602983613c1a565b9150614ceb82614c84565b604082019050919050565b60006020820190508181036000830152614d0f81614cd3565b9050919050565b7f596f752061726520747279696e6720746f207472616e73666572206d6f72652060008201527f7468616e20796f75722062616c616e6365000000000000000000000000000000602082015250565b6000614d72603183613c1a565b9150614d7d82614d16565b604082019050919050565b60006020820190508181036000830152614da181614d65565b9050919050565b7f4c697175696469747920686173206e6f74206265656e20616464656420796574600082015250565b6000614dde602083613c1a565b9150614de982614da8565b602082019050919050565b60006020820190508181036000830152614e0d81614dd1565b9050919050565b7f596f752061726520657863656564696e67206d61785478416d6f756e74000000600082015250565b6000614e4a601d83613c1a565b9150614e5582614e14565b602082019050919050565b60006020820190508181036000830152614e7981614e3d565b9050919050565b7f596f752061726520657863656564696e67206d617857616c6c6574416d6f756e60008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b6000614edc602183613c1a565b9150614ee782614e80565b604082019050919050565b60006020820190508181036000830152614f0b81614ecf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050614f5081613b4b565b92915050565b600060208284031215614f6c57614f6b613b0f565b5b6000614f7a84828501614f41565b91505092915050565b6000819050919050565b6000614fa8614fa3614f9e84614f83565b613e97565b613ba4565b9050919050565b614fb881614f8d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614ff381613b39565b82525050565b60006150058383614fea565b60208301905092915050565b6000602082019050919050565b600061502982614fbe565b6150338185614fc9565b935061503e83614fda565b8060005b8381101561506f5781516150568882614ff9565b975061506183615011565b925050600181019050615042565b5085935050505092915050565b600060a0820190506150916000830188613bae565b61509e6020830187614faf565b81810360408301526150b0818661501e565b90506150bf6060830185613e6d565b6150cc6080830184613bae565b9695505050505050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b600061510c601d83613c1a565b9150615117826150d6565b602082019050919050565b6000602082019050818103600083015261513b816150ff565b9050919050565b600081905092915050565b50565b600061515d600083615142565b91506151688261514d565b600082019050919050565b600061517e82615150565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b60006151e4603a83613c1a565b91506151ef82615188565b604082019050919050565b60006020820190508181036000830152615213816151d7565b905091905056fea2646970667358221220dfdc0a76bb4ed337373086f074447177b4212620e19887b4794c2687d98e0b1d64736f6c634300081300330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000015d0e1afa6351eddd3505db600e79e2f96c85920000000000000000000000000c7424cc3a700cc946f8840b96e5f42d7a59f3269
Deployed Bytecode
0x60806040526004361061036e5760003560e01c8063715018a6116101c6578063aa4bde28116100f7578063dd92459411610095578063e5067d6e1161006f578063e5067d6e14610c8e578063f13cff4114610cb9578063f2fde38b14610ce4578063f887ea4014610d0d57610375565b8063dd92459414610c11578063deab8aea14610c3a578063df8408fe14610c6557610375565b8063cc1776d3116100d1578063cc1776d314610b57578063cc274b2914610b82578063d7d7442f14610bab578063dd62ed3e14610bd457610375565b8063aa4bde2814610ada578063aacebbe314610b05578063c069019214610b2e57610375565b8063924de9b711610164578063a411209a1161013e578063a411209a14610a0a578063a457c2d714610a35578063a8aa1b3114610a72578063a9059cbb14610a9d57610375565b8063924de9b71461098d57806395d89b41146109b6578063963fbc50146109e157610375565b806388f82020116101a057806388f82020146108e35780638a8c523c146109205780638c0b5e22146109375780638da5cb5b1461096257610375565b8063715018a61461087657806375f0a8741461088d5780637dc0d1d0146108b857610375565b80632d838119116102a05780634f7041a51161023e5780636256d181116102185780636256d181146107ba578063649011c8146107e35780636ddd17131461080e57806370a082311461083957610375565b80634f7041a51461072957806352390c02146107545780635342acb41461077d57610375565b8063395093511161027a578063395093511461066b57806348cd4cb1146106a85780634ada218b146106d35780634da86156146106fe57610375565b80632d838119146105da578063313ce567146106175780633685d4191461064257610375565b8063095ea7b31161030d5780631c499ab0116102e75780631c499ab0146105345780631cb44dfc1461055d57806320800a001461058657806323b872dd1461059d57610375565b8063095ea7b3146104a157806318160ddd146104de5780631a6611811461050957610375565b806304dacd501161034957806304dacd50146103fb57806306fdde0314610424578063079bf8671461044f5780630858fa351461047857610375565b8062ae3bf81461037a578063029514f7146103a35780630445b667146103d057610375565b3661037557005b600080fd5b34801561038657600080fd5b506103a1600480360381019061039c9190613b77565b610d38565b005b3480156103af57600080fd5b506103b8610eb0565b6040516103c793929190613bbd565b60405180910390f35b3480156103dc57600080fd5b506103e5610ec8565b6040516103f29190613bf4565b60405180910390f35b34801561040757600080fd5b50610422600480360381019061041d9190613b77565b610ece565b005b34801561043057600080fd5b50610439610f94565b6040516104469190613c9f565b60405180910390f35b34801561045b57600080fd5b5061047660048036038101906104719190613ced565b610fd1565b005b34801561048457600080fd5b5061049f600480360381019061049a9190613d1a565b610fe3565b005b3480156104ad57600080fd5b506104c860048036038101906104c39190613d6d565b611087565b6040516104d59190613dc8565b60405180910390f35b3480156104ea57600080fd5b506104f36110a5565b6040516105009190613bf4565b60405180910390f35b34801561051557600080fd5b5061051e6110af565b60405161052b9190613bf4565b60405180910390f35b34801561054057600080fd5b5061055b60048036038101906105569190613ced565b6110b5565b005b34801561056957600080fd5b50610584600480360381019061057f9190613b77565b6110df565b005b34801561059257600080fd5b5061059b6111f0565b005b3480156105a957600080fd5b506105c460048036038101906105bf9190613de3565b611241565b6040516105d19190613dc8565b60405180910390f35b3480156105e657600080fd5b5061060160048036038101906105fc9190613ced565b611342565b60405161060e9190613bf4565b60405180910390f35b34801561062357600080fd5b5061062c6113a9565b6040516106399190613e52565b60405180910390f35b34801561064e57600080fd5b5061066960048036038101906106649190613b77565b6113b2565b005b34801561067757600080fd5b50610692600480360381019061068d9190613d6d565b611673565b60405161069f9190613dc8565b60405180910390f35b3480156106b457600080fd5b506106bd61171f565b6040516106ca9190613bf4565b60405180910390f35b3480156106df57600080fd5b506106e8611725565b6040516106f59190613dc8565b60405180910390f35b34801561070a57600080fd5b50610713611738565b6040516107209190613bf4565b60405180910390f35b34801561073557600080fd5b5061073e61173e565b60405161074b9190613bf4565b60405180910390f35b34801561076057600080fd5b5061077b60048036038101906107769190613b77565b611744565b005b34801561078957600080fd5b506107a4600480360381019061079f9190613b77565b61196b565b6040516107b19190613dc8565b60405180910390f35b3480156107c657600080fd5b506107e160048036038101906107dc9190613ced565b6119c1565b005b3480156107ef57600080fd5b506107f86119eb565b6040516108059190613bf4565b60405180910390f35b34801561081a57600080fd5b506108236119f1565b6040516108309190613dc8565b60405180910390f35b34801561084557600080fd5b50610860600480360381019061085b9190613b77565b611a04565b60405161086d9190613bf4565b60405180910390f35b34801561088257600080fd5b5061088b611aef565b005b34801561089957600080fd5b506108a2611b03565b6040516108af9190613e7c565b60405180910390f35b3480156108c457600080fd5b506108cd611b29565b6040516108da9190613ef6565b60405180910390f35b3480156108ef57600080fd5b5061090a60048036038101906109059190613b77565b611b4f565b6040516109179190613dc8565b60405180910390f35b34801561092c57600080fd5b50610935611ba5565b005b34801561094357600080fd5b5061094c611bec565b6040516109599190613bf4565b60405180910390f35b34801561096e57600080fd5b50610977611bf2565b6040516109849190613e7c565b60405180910390f35b34801561099957600080fd5b506109b460048036038101906109af9190613f3d565b611c1b565b005b3480156109c257600080fd5b506109cb611c40565b6040516109d89190613c9f565b60405180910390f35b3480156109ed57600080fd5b50610a086004803603810190610a039190613ced565b611c7d565b005b348015610a1657600080fd5b50610a1f611c8f565b604051610a2c9190613bf4565b60405180910390f35b348015610a4157600080fd5b50610a5c6004803603810190610a579190613d6d565b611c95565b604051610a699190613dc8565b60405180910390f35b348015610a7e57600080fd5b50610a87611d89565b604051610a949190613e7c565b60405180910390f35b348015610aa957600080fd5b50610ac46004803603810190610abf9190613d6d565b611daf565b604051610ad19190613dc8565b60405180910390f35b348015610ae657600080fd5b50610aef611dcd565b604051610afc9190613bf4565b60405180910390f35b348015610b1157600080fd5b50610b2c6004803603810190610b279190613b77565b611dd3565b005b348015610b3a57600080fd5b50610b556004803603810190610b509190613f6a565b611e99565b005b348015610b6357600080fd5b50610b6c611f27565b604051610b799190613bf4565b60405180910390f35b348015610b8e57600080fd5b50610ba96004803603810190610ba49190613ced565b611f2d565b005b348015610bb757600080fd5b50610bd26004803603810190610bcd9190613ced565b611f57565b005b348015610be057600080fd5b50610bfb6004803603810190610bf69190613f6a565b611f81565b604051610c089190613bf4565b60405180910390f35b348015610c1d57600080fd5b50610c386004803603810190610c339190614065565b612008565b005b348015610c4657600080fd5b50610c4f6120ea565b604051610c5c9190613e7c565b60405180910390f35b348015610c7157600080fd5b50610c8c6004803603810190610c8791906140e6565b612110565b005b348015610c9a57600080fd5b50610ca3612173565b604051610cb09190613bf4565b60405180910390f35b348015610cc557600080fd5b50610cce612179565b604051610cdb9190613bf4565b60405180910390f35b348015610cf057600080fd5b50610d0b6004803603810190610d069190613b77565b61226f565b005b348015610d1957600080fd5b50610d226122f2565b604051610d2f9190614147565b60405180910390f35b610d40612318565b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da5906141ae565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610dd2611bf2565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610e0b9190613e7c565b602060405180830381865afa158015610e28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e4c91906141e3565b6040518363ffffffff1660e01b8152600401610e69929190614210565b6020604051808303816000875af1158015610e88573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eac919061424e565b5050565b60198060000154908060010154908060020154905083565b600f5481565b610ed6612318565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160046000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60606040518060400160405280600881526020017f4d4547414d4f4f4e000000000000000000000000000000000000000000000000815250905090565b610fd9612318565b8060188190555050565b610feb612318565b6064818385610ffa91906142aa565b61100491906142aa565b14611044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103b9061432a565b60405180910390fd5b6040518060600160405280848152602001838152602001828152506019600082015181600001556020820151816001015560408201518160020155905050505050565b600061109b611094612396565b848461239e565b6001905092915050565b6000600c54905090565b600e5481565b6110bd612318565b6012600a6110cb919061447d565b816110d691906144c8565b60118190555050565b6110e7611bf2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061116d5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a39061457c565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6111f8612318565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561123e573d6000803e3d6000fd5b50565b600061124e848484612567565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611299612396565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611319576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113109061460e565b60405180910390fd5b61133685611325612396565b8584611331919061462e565b61239e565b60019150509392505050565b6000600d54821115611389576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611380906146d4565b60405180910390fd5b6000611393612ac1565b905080836113a19190614723565b915050919050565b60006012905090565b6113ba612318565b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611446576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143d906147a0565b60405180910390fd5b60005b60068054905081101561166f578173ffffffffffffffffffffffffffffffffffffffff1660068281548110611481576114806147c0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361165c57600660016006805490506114db919061462e565b815481106114ec576114eb6147c0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166006828154811061152b5761152a6147c0565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006805480611622576116216147ef565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561166f565b80806116679061481e565b915050611449565b5050565b6000611715611680612396565b84846003600061168e612396565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461171091906142aa565b61239e565b6001905092915050565b60135481565b600760029054906101000a900460ff1681565b60175481565b60155481565b61174c612318565b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d0906148b2565b60405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156118ad57611869600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611342565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6119c9612318565b6012600a6119d7919061447d565b816119e291906144c8565b60108190555050565b60145481565b600760009054906101000a900460ff1681565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a9f57600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611aea565b611ae7600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611342565b90505b919050565b611af7612318565b611b016000612ae5565b565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611bad612318565b6001600760026101000a81548160ff0219169083151502179055506001600760006101000a81548160ff02191690831515021790555043601381905550565b60105481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611c23612318565b80600760006101000a81548160ff02191690831515021790555050565b60606040518060400160405280600581526020017f4d4547414d000000000000000000000000000000000000000000000000000000815250905090565b611c85612318565b8060178190555050565b60185481565b60008060036000611ca4612396565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5890614944565b60405180910390fd5b611d7e611d6c612396565b858584611d79919061462e565b61239e565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611dc3611dbc612396565b8484612567565b6001905092915050565b60115481565b611ddb612318565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160046000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611ea1612318565b81600760036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60165481565b611f35612318565b6012600a611f43919061447d565b81611f4e91906144c8565b600f8190555050565b611f5f612318565b6012600a611f6d919061447d565b81611f7891906144c8565b60128190555050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612010612318565b818190508484905014612058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204f906149b0565b60405180910390fd5b60005b848490508110156120e3576120d0612071612396565b868684818110612084576120836147c0565b5b90506020020160208101906120999190613b77565b6012600a6120a7919061447d565b8686868181106120ba576120b96147c0565b5b905060200201356120cb91906144c8565b612567565b80806120db9061481e565b91505061205b565b5050505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612118612318565b80600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60125481565b60008073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036121d85760125461226a565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636ac097dd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612245573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061226991906141e3565b5b905090565b612277612318565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036122e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dd90614a42565b60405180910390fd5b6122ef81612ae5565b50565b600760039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612320612396565b73ffffffffffffffffffffffffffffffffffffffff1661233e611bf2565b73ffffffffffffffffffffffffffffffffffffffff1614612394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238b90614aae565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361240d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240490614b40565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361247c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247390614bd2565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161255a9190613bf4565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036125d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cd90614c64565b60405180910390fd5b60008111612619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261090614cf6565b60405180910390fd5b61262283611a04565b811115612664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265b90614d88565b60405180910390fd5b6000601554141580156126835750600760029054906101000a900460ff165b156126a9574360145460135461269991906142aa565b10156126a85760006015819055505b5b6000600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561274f5750600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561295357600760029054906101000a900460ff166127a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279a90614df4565b60405180910390fd5b6010548211156127e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127df90614e60565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612896576011548261284a85611a04565b61285491906142aa565b1115612895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288c90614ef2565b60405180910390fd5b5b60019050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561290557504360145460135461290391906142aa565b105b156129525760009050612916612179565b82106129515760175460165410612947576017546016600082825461293b919061462e565b92505081905550612950565b60006016819055505b5b5b5b6000600f5461296130611a04565b10159050600760019054906101000a900460ff1615801561298e5750600760009054906101000a900460ff165b80156129975750805b80156129f15750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015612a475750600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a9d5750600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612aae57612aad600f54612ba9565b5b612aba85858585612d06565b5050505050565b6000806000612ace613207565b915091508082612ade9190614723565b9250505090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600760016101000a81548160ff0219169083151502179055506000479050612bd2826134a5565b60008147612be0919061462e565b905060006019600001546064612bf6919061462e565b905060008103612c0857505050612ce8565b60008160196002015484612c1c91906144c8565b612c269190614723565b90506000811115612c7d57612c7c81600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166136e890919063ffffffff16565b5b60008184612c8b919061462e565b90506000811115612ce257612ce181600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166136e890919063ffffffff16565b5b50505050505b6000600760016101000a81548160ff02191690831515021790555050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612d64576000612d67565b60015b90506000612d768484846137dc565b9050818015612d825750825b8015612d9c575043601454601354612d9a91906142aa565b105b15612de557601854601754601654612db491906142aa565b1115612dc857601854601681905550612de4565b60175460166000828254612ddc91906142aa565b925050819055505b5b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612ec65783600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612e82919061462e565b600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612fab578060800151600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f6791906142aa565b600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8060000151600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ffa919061462e565b600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508060200151600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461308c91906142aa565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000816040015111806130e6575060008160a00151115b156130fe576130fd81604001518260a0015161382f565b5b600081606001511180613115575060008160c00151115b1561312d5761312c81606001518260c00151613865565b5b8473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836080015160405161318e9190613bf4565b60405180910390a33073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360c001516040516131f79190613bf4565b60405180910390a3505050505050565b6000806000600d5490506000600c54905060005b60068054905081101561346f57826001600060068481548110613241576132406147c0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054118061332f57508160026000600684815481106132c7576132c66147c0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1561334657600d54600c54945094505050506134a1565b600160006006838154811061335e5761335d6147c0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836133cf919061462e565b925060026000600683815481106133e9576133e86147c0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548261345a919061462e565b915080806134679061481e565b91505061321b565b50600c54600d546134809190614723565b82101561349857600d54600c549350935050506134a1565b81819350935050505b9091565b6000600267ffffffffffffffff8111156134c2576134c1614f12565b5b6040519080825280602002602001820160405280156134f05781602001602082028036833780820191505090505b5090503081600081518110613508576135076147c0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156135af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135d39190614f56565b816001815181106135e7576135e66147c0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061364e30600760039054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461239e565b600760039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016136b295949392919061507c565b600060405180830381600087803b1580156136cc57600080fd5b505af11580156136e0573d6000803e3d6000fd5b505050505050565b8047101561372b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372290615122565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161375190615173565b60006040518083038185875af1925050503d806000811461378e576040519150601f19603f3d011682016040523d82523d6000602084013e613793565b606091505b50509050806137d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137ce906151fa565b60405180910390fd5b505050565b6137e4613ad2565b6137ef848484613968565b90506138048185856137ff612ac1565b613a5e565b8460000185602001866040018760600184815250848152508481525084815250505050509392505050565b81600d6000828254613841919061462e565b9250508190555080600e600082825461385a91906142aa565b925050819055505050565b600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561390e5780600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461390691906142aa565b925050819055505b81600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461395d91906142aa565b925050819055505050565b613970613ad2565b826139845783816080018181525050613a57565b60008261399357601554613997565b6016545b905060006064601960000154836139ae91906144c8565b6139b89190614723565b90506000606460196000015460646139d0919061462e565b846139db91906144c8565b6139e59190614723565b90506103e882886139f691906144c8565b613a009190614723565b8460a00181815250506103e88188613a1891906144c8565b613a229190614723565b8460c00181815250508360c001518460a0015188613a40919061462e565b613a4a919061462e565b8460800181815250505050505b9392505050565b6000806000808487613a7091906144c8565b935085613a895783846000809350935093509350613ac7565b848860a00151613a9991906144c8565b9150848860c00151613aab91906144c8565b9050808285613aba919061462e565b613ac4919061462e565b92505b945094509450949050565b6040518060e00160405280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b4482613b19565b9050919050565b613b5481613b39565b8114613b5f57600080fd5b50565b600081359050613b7181613b4b565b92915050565b600060208284031215613b8d57613b8c613b0f565b5b6000613b9b84828501613b62565b91505092915050565b6000819050919050565b613bb781613ba4565b82525050565b6000606082019050613bd26000830186613bae565b613bdf6020830185613bae565b613bec6040830184613bae565b949350505050565b6000602082019050613c096000830184613bae565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c49578082015181840152602081019050613c2e565b60008484015250505050565b6000601f19601f8301169050919050565b6000613c7182613c0f565b613c7b8185613c1a565b9350613c8b818560208601613c2b565b613c9481613c55565b840191505092915050565b60006020820190508181036000830152613cb98184613c66565b905092915050565b613cca81613ba4565b8114613cd557600080fd5b50565b600081359050613ce781613cc1565b92915050565b600060208284031215613d0357613d02613b0f565b5b6000613d1184828501613cd8565b91505092915050565b600080600060608486031215613d3357613d32613b0f565b5b6000613d4186828701613cd8565b9350506020613d5286828701613cd8565b9250506040613d6386828701613cd8565b9150509250925092565b60008060408385031215613d8457613d83613b0f565b5b6000613d9285828601613b62565b9250506020613da385828601613cd8565b9150509250929050565b60008115159050919050565b613dc281613dad565b82525050565b6000602082019050613ddd6000830184613db9565b92915050565b600080600060608486031215613dfc57613dfb613b0f565b5b6000613e0a86828701613b62565b9350506020613e1b86828701613b62565b9250506040613e2c86828701613cd8565b9150509250925092565b600060ff82169050919050565b613e4c81613e36565b82525050565b6000602082019050613e676000830184613e43565b92915050565b613e7681613b39565b82525050565b6000602082019050613e916000830184613e6d565b92915050565b6000819050919050565b6000613ebc613eb7613eb284613b19565b613e97565b613b19565b9050919050565b6000613ece82613ea1565b9050919050565b6000613ee082613ec3565b9050919050565b613ef081613ed5565b82525050565b6000602082019050613f0b6000830184613ee7565b92915050565b613f1a81613dad565b8114613f2557600080fd5b50565b600081359050613f3781613f11565b92915050565b600060208284031215613f5357613f52613b0f565b5b6000613f6184828501613f28565b91505092915050565b60008060408385031215613f8157613f80613b0f565b5b6000613f8f85828601613b62565b9250506020613fa085828601613b62565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112613fcf57613fce613faa565b5b8235905067ffffffffffffffff811115613fec57613feb613faf565b5b60208301915083602082028301111561400857614007613fb4565b5b9250929050565b60008083601f84011261402557614024613faa565b5b8235905067ffffffffffffffff81111561404257614041613faf565b5b60208301915083602082028301111561405e5761405d613fb4565b5b9250929050565b6000806000806040858703121561407f5761407e613b0f565b5b600085013567ffffffffffffffff81111561409d5761409c613b14565b5b6140a987828801613fb9565b9450945050602085013567ffffffffffffffff8111156140cc576140cb613b14565b5b6140d88782880161400f565b925092505092959194509250565b600080604083850312156140fd576140fc613b0f565b5b600061410b85828601613b62565b925050602061411c85828601613f28565b9150509250929050565b600061413182613ec3565b9050919050565b61414181614126565b82525050565b600060208201905061415c6000830184614138565b92915050565b7f43616e206e6f7420726573637565206f776e20746f6b656e2100000000000000600082015250565b6000614198601983613c1a565b91506141a382614162565b602082019050919050565b600060208201905081810360008301526141c78161418b565b9050919050565b6000815190506141dd81613cc1565b92915050565b6000602082840312156141f9576141f8613b0f565b5b6000614207848285016141ce565b91505092915050565b60006040820190506142256000830185613e6d565b6142326020830184613bae565b9392505050565b60008151905061424881613f11565b92915050565b60006020828403121561426457614263613b0f565b5b600061427284828501614239565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006142b582613ba4565b91506142c083613ba4565b92508282019050808211156142d8576142d761427b565b5b92915050565b7f546f74616c206d75737420626520313030000000000000000000000000000000600082015250565b6000614314601183613c1a565b915061431f826142de565b602082019050919050565b6000602082019050818103600083015261434381614307565b9050919050565b60008160011c9050919050565b6000808291508390505b60018511156143a15780860481111561437d5761437c61427b565b5b600185161561438c5780820291505b808102905061439a8561434a565b9450614361565b94509492505050565b6000826143ba5760019050614476565b816143c85760009050614476565b81600181146143de57600281146143e857614417565b6001915050614476565b60ff8411156143fa576143f961427b565b5b8360020a9150848211156144115761441061427b565b5b50614476565b5060208310610133831016604e8410600b841016171561444c5782820a9050838111156144475761444661427b565b5b614476565b6144598484846001614357565b925090508184048111156144705761446f61427b565b5b81810290505b9392505050565b600061448882613ba4565b915061449383613e36565b92506144c07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846143aa565b905092915050565b60006144d382613ba4565b91506144de83613ba4565b92508282026144ec81613ba4565b915082820484148315176145035761450261427b565b5b5092915050565b7f4f6e6c7920746865206f776e6572206f72206f7261636c652063616e206d616b60008201527f6520746869732063616c6c210000000000000000000000000000000000000000602082015250565b6000614566602c83613c1a565b91506145718261450a565b604082019050919050565b6000602082019050818103600083015261459581614559565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006145f8602883613c1a565b91506146038261459c565b604082019050919050565b60006020820190508181036000830152614627816145eb565b9050919050565b600061463982613ba4565b915061464483613ba4565b925082820390508181111561465c5761465b61427b565b5b92915050565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b60006146be602a83613c1a565b91506146c982614662565b604082019050919050565b600060208201905081810360008301526146ed816146b1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061472e82613ba4565b915061473983613ba4565b925082614749576147486146f4565b5b828204905092915050565b7f4163636f756e74206973206e6f74206578636c75646564000000000000000000600082015250565b600061478a601783613c1a565b915061479582614754565b602082019050919050565b600060208201905081810360008301526147b98161477d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600061482982613ba4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361485b5761485a61427b565b5b600182019050919050565b7f4163636f756e7420697320616c7265616479206578636c756465640000000000600082015250565b600061489c601b83613c1a565b91506148a782614866565b602082019050919050565b600060208201905081810360008301526148cb8161488f565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061492e602583613c1a565b9150614939826148d2565b604082019050919050565b6000602082019050818103600083015261495d81614921565b9050919050565b7f4572726f7220696e206172726179732100000000000000000000000000000000600082015250565b600061499a601083613c1a565b91506149a582614964565b602082019050919050565b600060208201905081810360008301526149c98161498d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a2c602683613c1a565b9150614a37826149d0565b604082019050919050565b60006020820190508181036000830152614a5b81614a1f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614a98602083613c1a565b9150614aa382614a62565b602082019050919050565b60006020820190508181036000830152614ac781614a8b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b2a602483613c1a565b9150614b3582614ace565b604082019050919050565b60006020820190508181036000830152614b5981614b1d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614bbc602283613c1a565b9150614bc782614b60565b604082019050919050565b60006020820190508181036000830152614beb81614baf565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614c4e602583613c1a565b9150614c5982614bf2565b604082019050919050565b60006020820190508181036000830152614c7d81614c41565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000614ce0602983613c1a565b9150614ceb82614c84565b604082019050919050565b60006020820190508181036000830152614d0f81614cd3565b9050919050565b7f596f752061726520747279696e6720746f207472616e73666572206d6f72652060008201527f7468616e20796f75722062616c616e6365000000000000000000000000000000602082015250565b6000614d72603183613c1a565b9150614d7d82614d16565b604082019050919050565b60006020820190508181036000830152614da181614d65565b9050919050565b7f4c697175696469747920686173206e6f74206265656e20616464656420796574600082015250565b6000614dde602083613c1a565b9150614de982614da8565b602082019050919050565b60006020820190508181036000830152614e0d81614dd1565b9050919050565b7f596f752061726520657863656564696e67206d61785478416d6f756e74000000600082015250565b6000614e4a601d83613c1a565b9150614e5582614e14565b602082019050919050565b60006020820190508181036000830152614e7981614e3d565b9050919050565b7f596f752061726520657863656564696e67206d617857616c6c6574416d6f756e60008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b6000614edc602183613c1a565b9150614ee782614e80565b604082019050919050565b60006020820190508181036000830152614f0b81614ecf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050614f5081613b4b565b92915050565b600060208284031215614f6c57614f6b613b0f565b5b6000614f7a84828501614f41565b91505092915050565b6000819050919050565b6000614fa8614fa3614f9e84614f83565b613e97565b613ba4565b9050919050565b614fb881614f8d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614ff381613b39565b82525050565b60006150058383614fea565b60208301905092915050565b6000602082019050919050565b600061502982614fbe565b6150338185614fc9565b935061503e83614fda565b8060005b8381101561506f5781516150568882614ff9565b975061506183615011565b925050600181019050615042565b5085935050505092915050565b600060a0820190506150916000830188613bae565b61509e6020830187614faf565b81810360408301526150b0818661501e565b90506150bf6060830185613e6d565b6150cc6080830184613bae565b9695505050505050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b600061510c601d83613c1a565b9150615117826150d6565b602082019050919050565b6000602082019050818103600083015261513b816150ff565b9050919050565b600081905092915050565b50565b600061515d600083615142565b91506151688261514d565b600082019050919050565b600061517e82615150565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b60006151e4603a83613c1a565b91506151ef82615188565b604082019050919050565b60006020820190508181036000830152615213816151d7565b905091905056fea2646970667358221220dfdc0a76bb4ed337373086f074447177b4212620e19887b4794c2687d98e0b1d64736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000015d0e1afa6351eddd3505db600e79e2f96c85920000000000000000000000000c7424cc3a700cc946f8840b96e5f42d7a59f3269
-----Decoded View---------------
Arg [0] : _routerAddress (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : _buybackWallet (address): 0x15d0e1aFA6351eddD3505db600E79e2f96c85920
Arg [2] : _marketingWallet (address): 0xC7424cC3A700CC946F8840B96e5F42D7a59f3269
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 00000000000000000000000015d0e1afa6351eddd3505db600e79e2f96c85920
Arg [2] : 000000000000000000000000c7424cc3a700cc946f8840b96e5f42d7a59f3269
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.