ERC-20
Overview
Max Total Supply
1,000,000 SMART
Holders
516
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Token
Compiler Version
v0.8.26+commit.8a97fa7a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-08-29 */ // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; /** * @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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // File: ProofPlatform-main 2/contracts/interfaces/ITeamFinanceLocker.sol pragma solidity ^0.8.24; interface ITeamFinanceLocker { function lockToken( address _tokenAddress, address _withdrawalAddress, uint256 _amount, uint256 _unlockTime, bool _mintNFT, address referrer ) external payable returns (uint256 _id); } // File: ProofPlatform-main 2/contracts/interfaces/IToken.sol pragma solidity ^0.8.24; interface IToken { struct FeeInfo { uint256 main; uint256 secondary; uint256 liquidity; uint256 proof; uint256 total; } struct ProofInfo { address locker; address router; address proofWallet; address proofStaking; } error ExceedsMaxTxAmount(); error ExceedsMaxWalletAmount(); error InvalidConfiguration(); error TradingNotEnabled(); error TransferDelayEnabled(uint256 currentBlock, uint256 delayedUntil); } // File: ProofPlatform-main 2/contracts/ProofStandardStealth.sol pragma solidity ^0.8.24; /// This token was incubated and launched by PROOF: https://proofplatform.io/projects. The smart contract is audited by SourceHat: https://sourcehat.com/ contract Token is IToken, ERC20, Ownable { struct UserInfo { bool isFeeExempt; bool isTxLimitExempt; uint256 lastTxBlock; } IUniswapV2Router02 public immutable uniswapV2Router; address public immutable pair; address payable public mainWallet; address payable public secondaryWallet; address payable public immutable proofWallet; address payable public immutable proofStaking; bool public isTradingEnabled; bool public isAntiSnipeActive = true; uint256 public antiSnipeEndBlock; uint256 public launchedAt; uint256 public maxTxAmount; uint256 public maxWallet; uint256 public initMaxWallet; bool public restrictWhales = true; bool public maxWalletChanged; uint256 public swapping; bool public swapEnabled = true; uint256 public swapTokensAtAmount; FeeInfo public feeTokens; FeeInfo public buyFees; FeeInfo public sellFees; uint256 public restingBuyTotal; uint256 public restingSellTotal; bool public buyTaxesSettled; bool public sellTaxesSettled; bool public proofFeeReduced; bool public proofFeeRemoved; uint256 public lockID; uint256 public immutable lpLockDuration; address public immutable lockerAddress; mapping (address => UserInfo) public userInfo; event SwapAndLiquify(uint256 tokensAutoLiq, uint256 ethAutoLiq); event SwapAndLiquifyEnabledUpdated(bool enabled); constructor( string memory _name, string memory _symbol, uint256 _totalSupply, FeeInfo memory _buyFees, FeeInfo memory _sellFees, uint256 _percentToLP, uint256 _lpLockDuration, uint256 _initMaxWallet, address _mainWallet, address _secondaryWallet, ProofInfo memory _addresses ) ERC20(_name, _symbol) Ownable(msg.sender) payable { if (_lpLockDuration < 30 days || msg.value < 1 ether || _percentToLP < 70 || _initMaxWallet < 1) { revert InvalidConfiguration(); } (_buyFees.proof, _sellFees.proof) = (2,2); _validateFees(_buyFees, _sellFees); restingBuyTotal = _buyFees.total; restingSellTotal = _sellFees.total; _buyFees.main = 15 - _buyFees.proof - _buyFees.secondary - _buyFees.liquidity; _buyFees.total = 15; _sellFees.main = 20 - _sellFees.proof - _sellFees.secondary - _sellFees.liquidity; _sellFees.total = 20; buyFees = _buyFees; sellFees = _sellFees; // set addresses mainWallet = payable(_mainWallet); secondaryWallet = payable(_secondaryWallet); lockerAddress = _addresses.locker; proofWallet = payable(_addresses.proofWallet); proofStaking = payable(_addresses.proofStaking); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(_addresses.router); uniswapV2Router = _uniswapV2Router; pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uint256 amountToPair = _totalSupply * _percentToLP / 100; super._update(address(0), address(this), amountToPair); // mint to contract for liquidity // set basic data lpLockDuration = _lpLockDuration; swapTokensAtAmount = _totalSupply * 5 / 4000; maxTxAmount = _totalSupply * 5 / 1000; initMaxWallet = _initMaxWallet; maxWallet = _totalSupply * _initMaxWallet / 1000; userInfo[address(this)] = UserInfo(true, true, 0); userInfo[pair].isTxLimitExempt = true; super._update(address(0), owner(), _totalSupply - amountToPair); // mint to owner } function launch() external payable onlyOwner lockTheSwap { if (launchedAt != 0) { revert InvalidConfiguration(); } // enable trading antiSnipeEndBlock = block.number + 10; launchedAt = block.timestamp; isTradingEnabled = true; // add liquidity _approve(address(this), address(uniswapV2Router), type(uint256).max); addLiquidity(balanceOf(address(this)), address(this).balance - msg.value, address(this)); // lock liquidity uint256 lpBalance = IERC20(pair).balanceOf(address(this)); IERC20(pair).approve(lockerAddress, lpBalance); lockID = ITeamFinanceLocker(lockerAddress).lockToken{value: msg.value}(pair, msg.sender, lpBalance, block.timestamp + lpLockDuration, false, address(0)); } function cancel() external onlyOwner { if (launchedAt != 0) { revert InvalidConfiguration(); } // send the tokens and eth back to the owner super._update(address(this), owner(), balanceOf(address(this))); address(owner()).call{value: address(this).balance}(""); } function _update( address from, address to, uint256 amount ) internal override { if (!isTradingEnabled) { revert TradingNotEnabled(); } if (swapping == 2 || from == owner() || to == owner() || amount == 0) { super._update(from, to, amount); return; } UserInfo storage sender = userInfo[from]; UserInfo storage recipient = userInfo[to]; // 1 purchase per block for the first 10 blocks if (isAntiSnipeActive) { if (block.number < antiSnipeEndBlock) { UserInfo storage user = userInfo[tx.origin]; uint256 delayedUntil = user.lastTxBlock + 1; if (delayedUntil > block.number) { revert TransferDelayEnabled(block.number, delayedUntil); } user.lastTxBlock = block.number; } else { isAntiSnipeActive = false; } } //start at anywhere from 0.1% to 0.5%, increase by 0.1%, every 10 blocks, until it reaches 1% if (!maxWalletChanged) { uint256 secondsPassed = block.timestamp - launchedAt; uint256 percentage = initMaxWallet + (secondsPassed / 120); if (percentage > 9) { percentage = 10; maxWalletChanged = true; } uint256 newMax = totalSupply() * percentage / 1000; if (newMax != maxWallet) { maxWallet = newMax; } } if (restrictWhales) { if (to == pair && !sender.isTxLimitExempt && amount > maxTxAmount) { revert ExceedsMaxTxAmount(); } if (!recipient.isTxLimitExempt && amount + balanceOf(to) > maxWallet) { revert ExceedsMaxWalletAmount(); } } uint256 total = feeTokens.total; bool canSwap = total >= swapTokensAtAmount; if ( canSwap && swapEnabled && from != pair ) { processFees(total, swapTokensAtAmount); } if (!sender.isFeeExempt && !recipient.isFeeExempt) { FeeInfo storage _buyFees = buyFees; FeeInfo storage _sellFees = sellFees; if (!proofFeeRemoved) { uint256 secondsPassed = block.timestamp - launchedAt; if (!proofFeeReduced && secondsPassed > 1 days) { uint256 totalBuy = _buyFees.total - _buyFees.proof; if (totalBuy == 0) { _buyFees.total = 0; _buyFees.proof = 0; } else { _buyFees.total = totalBuy + 1; _buyFees.proof = 1; } uint256 totalSell = _sellFees.total - _sellFees.proof; if (totalSell == 0) { _sellFees.total = 0; _sellFees.proof = 0; } else { _sellFees.total = totalSell + 1; _sellFees.proof = 1; } proofFeeReduced = true; } else if (secondsPassed > 31 days) { _buyFees.total -= _buyFees.proof; _sellFees.total -= _sellFees.proof; _buyFees.proof = 0; _sellFees.proof = 0; proofFeeRemoved = true; } else { if (!buyTaxesSettled) { uint256 restingTotal = restingBuyTotal; uint256 feeTotal = restingTotal; if (secondsPassed < 1801) { feeTotal = 15 - (secondsPassed / 120); } if (feeTotal <= restingTotal) { _buyFees.total = restingTotal; _buyFees.main = restingTotal - _buyFees.liquidity - _buyFees.secondary - _buyFees.proof; buyTaxesSettled = true; } else if (feeTotal != _buyFees.total) { _buyFees.total = feeTotal; _buyFees.main = feeTotal - _buyFees.liquidity - _buyFees.secondary - _buyFees.proof; } } if (!sellTaxesSettled) { uint256 restingTotal = restingSellTotal; uint256 feeTotal = restingTotal; if (secondsPassed < 2401) { feeTotal = 20 - (secondsPassed / 120); } if (feeTotal <= restingTotal) { _sellFees.total = restingTotal; _sellFees.main = restingTotal - _sellFees.liquidity - _sellFees.secondary - _sellFees.proof; sellTaxesSettled = true; } else if (feeTotal != _sellFees.total) { _sellFees.total = feeTotal; _sellFees.main = feeTotal - _sellFees.liquidity - _sellFees.secondary - _sellFees.proof; } } } } uint256 fees; if (to == pair) { //sell fees = _calculateFees(_sellFees, amount); } else if (from == pair) { //buy fees = _calculateFees(_buyFees, amount); } if (fees > 0) { amount -= fees; super._update(from, address(this), fees); } } super._update(from, to, amount); } function _calculateFees(FeeInfo memory feeRate, uint256 amount) internal returns (uint256 fees) { if (feeRate.total != 0) { fees = amount * feeRate.total / 100; FeeInfo storage _feeTokens = feeTokens; _feeTokens.main += fees * feeRate.main / feeRate.total; _feeTokens.secondary += fees * feeRate.secondary / feeRate.total; _feeTokens.liquidity += fees * feeRate.liquidity / feeRate.total; _feeTokens.proof += fees * feeRate.proof / feeRate.total; _feeTokens.total += fees; } } function processFees(uint256 total, uint256 amountToSwap) internal lockTheSwap { FeeInfo storage _feeTokens = feeTokens; FeeInfo memory swapTokens; swapTokens.main = amountToSwap * _feeTokens.main / total; swapTokens.secondary = amountToSwap * _feeTokens.secondary / total; swapTokens.liquidity = amountToSwap * _feeTokens.liquidity / total; swapTokens.proof = amountToSwap * _feeTokens.proof / total; uint256 amountToPair = swapTokens.liquidity / 2; swapTokens.total = amountToSwap - amountToPair; uint256 ethBalance = swapTokensForETH(swapTokens.total); FeeInfo memory ethSplit; ethSplit.main = ethBalance * swapTokens.main / swapTokens.total; if (ethSplit.main > 0) { address(mainWallet).call{value: ethSplit.main}(""); } ethSplit.secondary = ethBalance * swapTokens.secondary / swapTokens.total; if (ethSplit.secondary > 0) { address(secondaryWallet).call{value: ethSplit.secondary}(""); } ethSplit.proof = ethBalance * swapTokens.proof / swapTokens.total; if (ethSplit.proof > 0) { uint256 revenueSplit = ethSplit.proof / 2; address(proofStaking).call{value: revenueSplit}(""); address(proofWallet).call{value: ethSplit.proof - revenueSplit}(""); } uint256 amountPaired; ethSplit.liquidity = address(this).balance; if (amountToPair > 0 && ethSplit.liquidity > 0) { amountPaired = addLiquidity(amountToPair, ethSplit.liquidity, address(0xdead)); emit SwapAndLiquify(amountToPair, ethSplit.liquidity); } uint256 liquidityAdjustment = swapTokens.liquidity - (amountToPair - amountPaired); _feeTokens.main -= swapTokens.main; _feeTokens.secondary -= swapTokens.secondary; _feeTokens.liquidity -= liquidityAdjustment; _feeTokens.proof -= swapTokens.proof; _feeTokens.total -= swapTokens.main + swapTokens.secondary + swapTokens.proof + liquidityAdjustment; } function swapTokensForETH(uint256 tokenAmount) internal returns (uint256 ethBalance) { uint256 ethBalBefore = address(this).balance; address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); ethBalance = address(this).balance - ethBalBefore; } function addLiquidity(uint256 tokenAmount, uint256 ethAmount, address recipient) private returns (uint256) { (uint256 amountA,,) = uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable recipient, block.timestamp ); return amountA; } function changeFees( uint256 liquidityBuy, uint256 mainBuy, uint256 secondaryBuy, uint256 liquiditySell, uint256 mainSell, uint256 secondarySell ) external onlyOwner { if (!buyTaxesSettled || !sellTaxesSettled) { revert InvalidConfiguration(); } FeeInfo memory _buyFees; _buyFees.liquidity = liquidityBuy; _buyFees.main = mainBuy; _buyFees.secondary = secondaryBuy; FeeInfo memory _sellFees; _sellFees.liquidity = liquiditySell; _sellFees.main = mainSell; _sellFees.secondary = secondarySell; (_buyFees.proof, _sellFees.proof) = launchedAt != 0 ? _calculateProofFee() : (2,2); _validateFees(_buyFees, _sellFees); buyFees = _buyFees; sellFees = _sellFees; } function _calculateProofFee() internal returns (uint256, uint256) { uint256 secondsPassed = block.timestamp - launchedAt; if (secondsPassed > 31 days) { proofFeeRemoved = true; return (0,0); } else if (secondsPassed > 1 days) { proofFeeReduced = true; return (1,1); } else { return (2,2); } } function _validateFees(FeeInfo memory _buyFees, FeeInfo memory _sellFees) internal pure { _buyFees.total = _buyFees.liquidity + _buyFees.main + _buyFees.secondary; if (_buyFees.total == 0) { _buyFees.proof = 0; } else { _buyFees.total += _buyFees.proof; } _sellFees.total = _sellFees.liquidity + _sellFees.main + _sellFees.secondary; if (_sellFees.total == 0) { _sellFees.proof = 0; } else { _sellFees.total += _sellFees.proof; } if (_buyFees.total > 7 || _sellFees.total > 7) { revert InvalidConfiguration(); } } function setMaxTxAmount(uint256 _maxTxAmt) external onlyOwner() { if (launchedAt == 0 || _maxTxAmt < (totalSupply() * 5) / 1000 || _maxTxAmt > (totalSupply() * 3) / 100 ) { revert InvalidConfiguration(); } maxTxAmount = _maxTxAmt; } function setMaxWalletSize(uint256 _maxWalletSize) external onlyOwner() { if (launchedAt == 0 || _maxWalletSize < (totalSupply() * 5) / 1000 || _maxWalletSize > (totalSupply() * 3) / 100 ) { revert InvalidConfiguration(); } maxWallet = _maxWalletSize; maxWalletChanged = true; } function setRestrictWhalesEnabled(bool _enabled) external onlyOwner{ restrictWhales = _enabled; } function setFeeExempt(address account, bool value) public onlyOwner { userInfo[account].isFeeExempt = value; } function setFeeExempt(address[] memory accounts) public onlyOwner { uint256 len = accounts.length; for (uint256 i; i < len; i++) { userInfo[accounts[i]].isFeeExempt = true; } } function setTxLimitExempt(address account, bool value) public onlyOwner { userInfo[account].isTxLimitExempt = value; } function setTxLimitExempt(address[] memory accounts) public onlyOwner { uint256 len = accounts.length; for (uint256 i; i < len; i++) { userInfo[accounts[i]].isTxLimitExempt = true; } } function setMainWallet(address newWallet) external onlyOwner { mainWallet = payable(newWallet); } function setSecondaryWallet(address newWallet) external onlyOwner { secondaryWallet = payable(newWallet); } function setSwapAndLiquifyEnabled(bool _enabled) external onlyOwner { swapEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } function setSwapAtAmount(uint256 amount) external onlyOwner { swapTokensAtAmount = amount; } function withdrawStuckTokens() external onlyOwner { super._update(address(this), _msgSender(), balanceOf(address(this)) - feeTokens.total); } function getCirculatingSupply() external view returns (uint256) { return totalSupply() - balanceOf(address(0xdead)); } modifier lockTheSwap() { swapping = 2; _; swapping = 1; } function decimals() public view virtual override returns (uint8) { return 9; } function version() public pure returns (uint8) { return 1; } receive() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"components":[{"internalType":"uint256","name":"main","type":"uint256"},{"internalType":"uint256","name":"secondary","type":"uint256"},{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"proof","type":"uint256"},{"internalType":"uint256","name":"total","type":"uint256"}],"internalType":"struct IToken.FeeInfo","name":"_buyFees","type":"tuple"},{"components":[{"internalType":"uint256","name":"main","type":"uint256"},{"internalType":"uint256","name":"secondary","type":"uint256"},{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"proof","type":"uint256"},{"internalType":"uint256","name":"total","type":"uint256"}],"internalType":"struct IToken.FeeInfo","name":"_sellFees","type":"tuple"},{"internalType":"uint256","name":"_percentToLP","type":"uint256"},{"internalType":"uint256","name":"_lpLockDuration","type":"uint256"},{"internalType":"uint256","name":"_initMaxWallet","type":"uint256"},{"internalType":"address","name":"_mainWallet","type":"address"},{"internalType":"address","name":"_secondaryWallet","type":"address"},{"components":[{"internalType":"address","name":"locker","type":"address"},{"internalType":"address","name":"router","type":"address"},{"internalType":"address","name":"proofWallet","type":"address"},{"internalType":"address","name":"proofStaking","type":"address"}],"internalType":"struct IToken.ProofInfo","name":"_addresses","type":"tuple"}],"stateMutability":"payable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"ExceedsMaxTxAmount","type":"error"},{"inputs":[],"name":"ExceedsMaxWalletAmount","type":"error"},{"inputs":[],"name":"InvalidConfiguration","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"TradingNotEnabled","type":"error"},{"inputs":[{"internalType":"uint256","name":"currentBlock","type":"uint256"},{"internalType":"uint256","name":"delayedUntil","type":"uint256"}],"name":"TransferDelayEnabled","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensAutoLiq","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethAutoLiq","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","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":[],"name":"antiSnipeEndBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":"buyFees","outputs":[{"internalType":"uint256","name":"main","type":"uint256"},{"internalType":"uint256","name":"secondary","type":"uint256"},{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"proof","type":"uint256"},{"internalType":"uint256","name":"total","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxesSettled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cancel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityBuy","type":"uint256"},{"internalType":"uint256","name":"mainBuy","type":"uint256"},{"internalType":"uint256","name":"secondaryBuy","type":"uint256"},{"internalType":"uint256","name":"liquiditySell","type":"uint256"},{"internalType":"uint256","name":"mainSell","type":"uint256"},{"internalType":"uint256","name":"secondarySell","type":"uint256"}],"name":"changeFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeTokens","outputs":[{"internalType":"uint256","name":"main","type":"uint256"},{"internalType":"uint256","name":"secondary","type":"uint256"},{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"proof","type":"uint256"},{"internalType":"uint256","name":"total","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCirculatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initMaxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAntiSnipeActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"launchedAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpLockDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mainWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletChanged","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"proofFeeReduced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proofFeeRemoved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proofStaking","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proofWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"restingBuyTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"restingSellTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"restrictWhales","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"secondaryWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFees","outputs":[{"internalType":"uint256","name":"main","type":"uint256"},{"internalType":"uint256","name":"secondary","type":"uint256"},{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"proof","type":"uint256"},{"internalType":"uint256","name":"total","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTaxesSettled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setFeeExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"setFeeExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setMainWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmt","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletSize","type":"uint256"}],"name":"setMaxWalletSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setRestrictWhalesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setSecondaryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"setTxLimitExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setTxLimitExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapping","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"bool","name":"isFeeExempt","type":"bool"},{"internalType":"bool","name":"isTxLimitExempt","type":"bool"},{"internalType":"uint256","name":"lastTxBlock","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6101406040526001600760156101000a81548160ff0219169083151502179055506001600d5f6101000a81548160ff0219169083151502179055506001600f5f6101000a81548160ff021916908315150217905550604051615af7380380615af783398181016040528101906100759190610e63565b338b8b81600390816100879190611190565b5080600490816100979190611190565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361010a575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610101919061126e565b60405180910390fd5b6101198161076b60201b60201c565b5062278d008510806101325750670de0b6b3a764000034105b8061013d5750604686105b806101485750600184105b1561017f576040517fc52a9bd300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002808960600189606001828152508281525050506101a4888861082e60201b60201c565b87608001516020819055508660800151602181905550876040015188602001518960600151600f6101d591906112b4565b6101df91906112b4565b6101e991906112b4565b885f018181525050600f886080018181525050866040015187602001518860600151601461021791906112b4565b61022191906112b4565b61022b91906112b4565b875f01818152505060148760800181815250508760165f820151815f01556020820151816001015560408201518160020155606082015181600301556080820151816004015590505086601b5f820151815f0155602082015181600101556040820151816002015560608201518160030155608082015181600401559050508260065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550805f015173ffffffffffffffffffffffffffffffffffffffff166101208173ffffffffffffffffffffffffffffffffffffffff1681525050806040015173ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1681525050806060015173ffffffffffffffffffffffffffffffffffffffff1660e08173ffffffffffffffffffffffffffffffffffffffff16815250505f816020015190508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610457573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061047b91906112e7565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156104e0573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061050491906112e7565b6040518363ffffffff1660e01b8152600401610521929190611312565b6020604051808303815f875af115801561053d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061056191906112e7565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250505f6064888c6105a39190611339565b6105ad91906113a7565b90506105c05f308361094660201b60201c565b866101008181525050610fa060058c6105d99190611339565b6105e391906113a7565b6010819055506103e860058c6105f99190611339565b61060391906113a7565b600a8190555085600c819055506103e8868c61061f9190611339565b61062991906113a7565b600b8190555060405180606001604052806001151581526020016001151581526020015f81525060245f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f820151815f015f6101000a81548160ff0219169083151502179055506020820151815f0160016101000a81548160ff02191690831515021790555060408201518160010155905050600160245f60a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f0160016101000a81548160ff0219169083151502179055506107595f610742610b5f60201b60201c565b838e61074e91906112b4565b61094660201b60201c565b50505050505050505050505050611467565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8160200151825f0151836040015161084691906113d7565b61085091906113d7565b8260800181815250505f826080015103610873575f826060018181525050610891565b81606001518260800181815161088991906113d7565b915081815250505b8060200151815f015182604001516108a991906113d7565b6108b391906113d7565b8160800181815250505f8160800151036108d6575f8160600181815250506108f4565b8060600151816080018181516108ec91906113d7565b915081815250505b60078260800151118061090b575060078160800151115b15610942576040517fc52a9bd300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610996578060025f82825461098a91906113d7565b92505081905550610a64565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610a1f578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610a1693929190611419565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610aab578060025f8282540392505081905550610af5565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b52919061144e565b60405180910390a3505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b610be682610ba0565b810181811067ffffffffffffffff82111715610c0557610c04610bb0565b5b80604052505050565b5f610c17610b87565b9050610c238282610bdd565b919050565b5f67ffffffffffffffff821115610c4257610c41610bb0565b5b610c4b82610ba0565b9050602081019050919050565b8281835e5f83830152505050565b5f610c78610c7384610c28565b610c0e565b905082815260208101848484011115610c9457610c93610b9c565b5b610c9f848285610c58565b509392505050565b5f82601f830112610cbb57610cba610b98565b5b8151610ccb848260208601610c66565b91505092915050565b5f819050919050565b610ce681610cd4565b8114610cf0575f80fd5b50565b5f81519050610d0181610cdd565b92915050565b5f80fd5b5f60a08284031215610d2057610d1f610d07565b5b610d2a60a0610c0e565b90505f610d3984828501610cf3565b5f830152506020610d4c84828501610cf3565b6020830152506040610d6084828501610cf3565b6040830152506060610d7484828501610cf3565b6060830152506080610d8884828501610cf3565b60808301525092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610dbd82610d94565b9050919050565b610dcd81610db3565b8114610dd7575f80fd5b50565b5f81519050610de881610dc4565b92915050565b5f60808284031215610e0357610e02610d07565b5b610e0d6080610c0e565b90505f610e1c84828501610dda565b5f830152506020610e2f84828501610dda565b6020830152506040610e4384828501610dda565b6040830152506060610e5784828501610dda565b60608301525092915050565b5f805f805f805f805f805f6102c08c8e031215610e8357610e82610b90565b5b5f8c015167ffffffffffffffff811115610ea057610e9f610b94565b5b610eac8e828f01610ca7565b9b505060208c015167ffffffffffffffff811115610ecd57610ecc610b94565b5b610ed98e828f01610ca7565b9a50506040610eea8e828f01610cf3565b9950506060610efb8e828f01610d0b565b985050610100610f0d8e828f01610d0b565b9750506101a0610f1f8e828f01610cf3565b9650506101c0610f318e828f01610cf3565b9550506101e0610f438e828f01610cf3565b945050610200610f558e828f01610dda565b935050610220610f678e828f01610dda565b925050610240610f798e828f01610dee565b9150509295989b509295989b9093969950565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610fda57607f821691505b602082108103610fed57610fec610f96565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261104f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611014565b6110598683611014565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61109461108f61108a84610cd4565b611071565b610cd4565b9050919050565b5f819050919050565b6110ad8361107a565b6110c16110b98261109b565b848454611020565b825550505050565b5f90565b6110d56110c9565b6110e08184846110a4565b505050565b5b81811015611103576110f85f826110cd565b6001810190506110e6565b5050565b601f8211156111485761111981610ff3565b61112284611005565b81016020851015611131578190505b61114561113d85611005565b8301826110e5565b50505b505050565b5f82821c905092915050565b5f6111685f198460080261114d565b1980831691505092915050565b5f6111808383611159565b9150826002028217905092915050565b61119982610f8c565b67ffffffffffffffff8111156111b2576111b1610bb0565b5b6111bc8254610fc3565b6111c7828285611107565b5f60209050601f8311600181146111f8575f84156111e6578287015190505b6111f08582611175565b865550611257565b601f19841661120686610ff3565b5f5b8281101561122d57848901518255600182019150602085019450602081019050611208565b8683101561124a5784890151611246601f891682611159565b8355505b6001600288020188555050505b505050505050565b61126881610db3565b82525050565b5f6020820190506112815f83018461125f565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6112be82610cd4565b91506112c983610cd4565b92508282039050818111156112e1576112e0611287565b5b92915050565b5f602082840312156112fc576112fb610b90565b5b5f61130984828501610dda565b91505092915050565b5f6040820190506113255f83018561125f565b611332602083018461125f565b9392505050565b5f61134382610cd4565b915061134e83610cd4565b925082820261135c81610cd4565b9150828204841483151761137357611372611287565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6113b182610cd4565b91506113bc83610cd4565b9250826113cc576113cb61137a565b5b828204905092915050565b5f6113e182610cd4565b91506113ec83610cd4565b925082820190508082111561140457611403611287565b5b92915050565b61141381610cd4565b82525050565b5f60608201905061142c5f83018661125f565b611439602083018561140a565b611446604083018461140a565b949350505050565b5f6020820190506114615f83018461140a565b92915050565b60805160a05160c05160e05161010051610120516145d961151e5f395f8181610f4401528181610fc4015261128501525f818161102401526119a601525f8181611404015261334601525f81816113ce01526133cc01525f8181610e6e01528181610f080152818161100101528181611688015281816129c301528181612b0b01528181612f260152612fc601525f8181610e070152818161118a01528181611e3c0152818161378e015261386901526145d95ff3fe60806040526004361061039a575f3560e01c806387f86db7116101db578063d0a5eb4e11610101578063ea8a1af01161009f578063f8b45b051161006e578063f8b45b0514610cdb578063f8f9892814610d05578063f954662114610d2d578063f9f4bfdd14610d57576103a1565b8063ea8a1af014610c4b578063ec28438a14610c61578063f2fde38b14610c89578063f66a79a014610cb1576103a1565b8063e0f3ccf5116100db578063e0f3ccf514610b9d578063e2f4560514610bcb578063e4748b9e14610bf5578063ea1644d514610c23576103a1565b8063d0a5eb4e14610b0f578063dd62ed3e14610b37578063de35eb2414610b73576103a1565b8063a8aa1b3111610179578063bee0d6ad11610148578063bee0d6ad14610a67578063bf56b37114610a95578063c49b9a8014610abf578063cb29813c14610ae7576103a1565b8063a8aa1b31146109af578063a9059cbb146109d9578063acb52a9814610a15578063baae066614610a3f576103a1565b80638d7a8ba7116101b55780638d7a8ba71461090b5780638da5cb5b146109335780638ebfc7961461095d57806395d89b4114610985576103a1565b806387f86db71461088d57806388cda873146108b75780638c0b5e22146108e1576103a1565b806344de2e4c116102c05780636402511e1161025e578063715018a61161022d578063715018a61461080d5780638183b3c814610823578063838420131461083957806383ebc78d14610863576103a1565b80636402511e1461075557806367dd01791461077d5780636ddd1713146107a757806370a08231146107d1576103a1565b8063530275011161029a57806353027501146106af57806354fd4d50146106d95780635ace1122146107035780636101f1f81461072b576103a1565b806344de2e4c146106335780634a829e791461065d5780634b78286a14610687576103a1565b80631959a002116103385780632ffe729a116103075780632ffe729a1461058b578063313ce567146105b557806332a8db87146105df5780633675f29b14610609576103a1565b80631959a002146104bd57806323b62b75146104fb57806323b872dd146105255780632b112e4914610561576103a1565b8063095ea7b311610374578063095ea7b3146104035780631694505e1461043f5780631732cded1461046957806318160ddd14610493576103a1565b806301339c21146103a5578063064a59d0146103af57806306fdde03146103d9576103a1565b366103a157005b5f80fd5b6103ad610d81565b005b3480156103ba575f80fd5b506103c36110c3565b6040516103d0919061394e565b60405180910390f35b3480156103e4575f80fd5b506103ed6110d6565b6040516103fa91906139d7565b60405180910390f35b34801561040e575f80fd5b5061042960048036038101906104249190613a95565b611166565b604051610436919061394e565b60405180910390f35b34801561044a575f80fd5b50610453611188565b6040516104609190613b2e565b60405180910390f35b348015610474575f80fd5b5061047d6111ac565b60405161048a9190613b56565b60405180910390f35b34801561049e575f80fd5b506104a76111b2565b6040516104b49190613b56565b60405180910390f35b3480156104c8575f80fd5b506104e360048036038101906104de9190613b6f565b6111bb565b6040516104f293929190613b9a565b60405180910390f35b348015610506575f80fd5b5061050f6111f9565b60405161051c9190613bef565b60405180910390f35b348015610530575f80fd5b5061054b60048036038101906105469190613c08565b61121e565b604051610558919061394e565b60405180910390f35b34801561056c575f80fd5b5061057561124c565b6040516105829190613b56565b60405180910390f35b348015610596575f80fd5b5061059f61126f565b6040516105ac9190613b56565b60405180910390f35b3480156105c0575f80fd5b506105c9611275565b6040516105d69190613c73565b60405180910390f35b3480156105ea575f80fd5b506105f361127d565b6040516106009190613b56565b60405180910390f35b348015610614575f80fd5b5061061d611283565b60405161062a9190613c9b565b60405180910390f35b34801561063e575f80fd5b506106476112a7565b604051610654919061394e565b60405180910390f35b348015610668575f80fd5b506106716112b9565b60405161067e919061394e565b60405180910390f35b348015610692575f80fd5b506106ad60048036038101906106a89190613b6f565b6112cc565b005b3480156106ba575f80fd5b506106c3611317565b6040516106d0919061394e565b60405180910390f35b3480156106e4575f80fd5b506106ed611329565b6040516106fa9190613c73565b60405180910390f35b34801561070e575f80fd5b5061072960048036038101906107249190613df4565b611331565b005b348015610736575f80fd5b5061073f6113cc565b60405161074c9190613bef565b60405180910390f35b348015610760575f80fd5b5061077b60048036038101906107769190613e3b565b6113f0565b005b348015610788575f80fd5b50610791611402565b60405161079e9190613bef565b60405180910390f35b3480156107b2575f80fd5b506107bb611426565b6040516107c8919061394e565b60405180910390f35b3480156107dc575f80fd5b506107f760048036038101906107f29190613b6f565b611438565b6040516108049190613b56565b60405180910390f35b348015610818575f80fd5b5061082161147d565b005b34801561082e575f80fd5b50610837611490565b005b348015610844575f80fd5b5061084d6114c4565b60405161085a919061394e565b60405180910390f35b34801561086e575f80fd5b506108776114d7565b6040516108849190613b56565b60405180910390f35b348015610898575f80fd5b506108a16114dd565b6040516108ae919061394e565b60405180910390f35b3480156108c2575f80fd5b506108cb6114f0565b6040516108d8919061394e565b60405180910390f35b3480156108ec575f80fd5b506108f5611503565b6040516109029190613b56565b60405180910390f35b348015610916575f80fd5b50610931600480360381019061092c9190613e90565b611509565b005b34801561093e575f80fd5b5061094761156c565b6040516109549190613c9b565b60405180910390f35b348015610968575f80fd5b50610983600480360381019061097e9190613e90565b611594565b005b348015610990575f80fd5b506109996115f6565b6040516109a691906139d7565b60405180910390f35b3480156109ba575f80fd5b506109c3611686565b6040516109d09190613c9b565b60405180910390f35b3480156109e4575f80fd5b506109ff60048036038101906109fa9190613a95565b6116aa565b604051610a0c919061394e565b60405180910390f35b348015610a20575f80fd5b50610a296116cc565b604051610a369190613b56565b60405180910390f35b348015610a4a575f80fd5b50610a656004803603810190610a609190613ece565b6116d2565b005b348015610a72575f80fd5b50610a7b6116f6565b604051610a8c959493929190613ef9565b60405180910390f35b348015610aa0575f80fd5b50610aa9611719565b604051610ab69190613b56565b60405180910390f35b348015610aca575f80fd5b50610ae56004803603810190610ae09190613ece565b61171f565b005b348015610af2575f80fd5b50610b0d6004803603810190610b089190613f4a565b61177a565b005b348015610b1a575f80fd5b50610b356004803603810190610b309190613b6f565b6118d7565b005b348015610b42575f80fd5b50610b5d6004803603810190610b589190613fd3565b611922565b604051610b6a9190613b56565b60405180910390f35b348015610b7e575f80fd5b50610b876119a4565b604051610b949190613b56565b60405180910390f35b348015610ba8575f80fd5b50610bb16119c8565b604051610bc2959493929190613ef9565b60405180910390f35b348015610bd6575f80fd5b50610bdf6119eb565b604051610bec9190613b56565b60405180910390f35b348015610c00575f80fd5b50610c096119f1565b604051610c1a959493929190613ef9565b60405180910390f35b348015610c2e575f80fd5b50610c496004803603810190610c449190613e3b565b611a14565b005b348015610c56575f80fd5b50610c5f611ad0565b005b348015610c6c575f80fd5b50610c876004803603810190610c829190613e3b565b611b9c565b005b348015610c94575f80fd5b50610caf6004803603810190610caa9190613b6f565b611c3d565b005b348015610cbc575f80fd5b50610cc5611cc1565b604051610cd29190613bef565b60405180910390f35b348015610ce6575f80fd5b50610cef611ce6565b604051610cfc9190613b56565b60405180910390f35b348015610d10575f80fd5b50610d2b6004803603810190610d269190613df4565b611cec565b005b348015610d38575f80fd5b50610d41611d86565b604051610d4e9190613b56565b60405180910390f35b348015610d62575f80fd5b50610d6b611d8c565b604051610d78919061394e565b60405180910390f35b610d89611d9f565b6002600e819055505f60095414610dcc576040517fc52a9bd300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a43610dd9919061403e565b600881905550426009819055506001600760146101000a81548160ff021916908315150217905550610e4c307f00000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611e26565b610e6a610e5830611438565b3447610e649190614071565b30611e38565b505f7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610ec59190613c9b565b602060405180830381865afa158015610ee0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f0491906140b8565b90507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f0000000000000000000000000000000000000000000000000000000000000000836040518363ffffffff1660e01b8152600401610f819291906140e3565b6020604051808303815f875af1158015610f9d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fc1919061411e565b507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16635af06fed347f000000000000000000000000000000000000000000000000000000000000000033857f00000000000000000000000000000000000000000000000000000000000000004261104e919061403e565b5f806040518863ffffffff1660e01b815260040161107196959493929190614149565b60206040518083038185885af115801561108d573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906110b291906140b8565b602381905550506001600e81905550565b600760149054906101000a900460ff1681565b6060600380546110e5906141d5565b80601f0160208091040260200160405190810160405280929190818152602001828054611111906141d5565b801561115c5780601f106111335761010080835404028352916020019161115c565b820191905f5260205f20905b81548152906001019060200180831161113f57829003601f168201915b5050505050905090565b5f80611170611eee565b905061117d818585611e26565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600e5481565b5f600254905090565b6024602052805f5260405f205f91509050805f015f9054906101000a900460ff1690805f0160019054906101000a900460ff16908060010154905083565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f80611228611eee565b9050611235858285611ef5565b611240858585611f87565b60019150509392505050565b5f61125861dead611438565b6112606111b2565b61126a9190614071565b905090565b600c5481565b5f6009905090565b60215481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600d5f9054906101000a900460ff1681565b600d60019054906101000a900460ff1681565b6112d4611d9f565b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60225f9054906101000a900460ff1681565b5f6001905090565b611339611d9f565b5f815190505f5b818110156113c757600160245f8584815181106113605761135f614205565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f0160016101000a81548160ff0219169083151502179055508080600101915050611340565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6113f8611d9f565b8060108190555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600f5f9054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b611485611d9f565b61148e5f612077565b565b611498611d9f565b6114c2306114a4611eee565b6011600401546114b330611438565b6114bd9190614071565b61213a565b565b602260039054906101000a900460ff1681565b60205481565b600760159054906101000a900460ff1681565b602260029054906101000a900460ff1681565b600a5481565b611511611d9f565b8060245f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f0160016101000a81548160ff0219169083151502179055505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61159c611d9f565b8060245f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f6101000a81548160ff0219169083151502179055505050565b606060048054611605906141d5565b80601f0160208091040260200160405190810160405280929190818152602001828054611631906141d5565b801561167c5780601f106116535761010080835404028352916020019161167c565b820191905f5260205f20905b81548152906001019060200180831161165f57829003601f168201915b5050505050905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f806116b4611eee565b90506116c1818585611f87565b600191505092915050565b60085481565b6116da611d9f565b80600d5f6101000a81548160ff02191690831515021790555050565b6011805f0154908060010154908060020154908060030154908060040154905085565b60095481565b611727611d9f565b80600f5f6101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405161176f919061394e565b60405180910390a150565b611782611d9f565b60225f9054906101000a900460ff1615806117aa5750602260019054906101000a900460ff16155b156117e1576040517fc52a9bd300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117e961390a565b8681604001818152505085815f0181815250508481602001818152505061180e61390a565b8481604001818152505083815f018181525050828160200181815250505f6009540361183c57600280611845565b611844612353565b5b83606001836060018281525082815250505061186182826123d8565b8160165f820151815f01556020820151816001015560408201518160020155606082015181600301556080820151816004015590505080601b5f820151815f0155602082015181600101556040820151816002015560608201518160030155608082015181600401559050505050505050505050565b6118df611d9f565b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601b805f0154908060010154908060020154908060030154908060040154905085565b60105481565b6016805f0154908060010154908060020154908060030154908060040154905085565b611a1c611d9f565b5f6009541480611a4b57506103e86005611a346111b2565b611a3e9190614232565b611a4891906142a0565b81105b80611a74575060646003611a5d6111b2565b611a679190614232565b611a7191906142a0565b81115b15611aab576040517fc52a9bd300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b819055506001600d60016101000a81548160ff02191690831515021790555050565b611ad8611d9f565b5f60095414611b13576040517fc52a9bd300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b2d30611b1f61156c565b611b2830611438565b61213a565b611b3561156c565b73ffffffffffffffffffffffffffffffffffffffff1647604051611b58906142fd565b5f6040518083038185875af1925050503d805f8114611b92576040519150601f19603f3d011682016040523d82523d5f602084013e611b97565b606091505b505050565b611ba4611d9f565b5f6009541480611bd357506103e86005611bbc6111b2565b611bc69190614232565b611bd091906142a0565b81105b80611bfc575060646003611be56111b2565b611bef9190614232565b611bf991906142a0565b81115b15611c33576040517fc52a9bd300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a8190555050565b611c45611d9f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611cb5575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401611cac9190613c9b565b60405180910390fd5b611cbe81612077565b50565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b611cf4611d9f565b5f815190505f5b81811015611d8157600160245f858481518110611d1b57611d1a614205565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f6101000a81548160ff0219169083151502179055508080600101915050611cfb565b505050565b60235481565b602260019054906101000a900460ff1681565b611da7611eee565b73ffffffffffffffffffffffffffffffffffffffff16611dc561156c565b73ffffffffffffffffffffffffffffffffffffffff1614611e2457611de8611eee565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611e1b9190613c9b565b60405180910390fd5b565b611e3383838360016124f0565b505050565b5f807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198530885f8089426040518863ffffffff1660e01b8152600401611e9e9695949392919061434a565b60606040518083038185885af1158015611eba573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611edf91906143a9565b50509050809150509392505050565b5f33905090565b5f611f008484611922565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611f815781811015611f72578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401611f69939291906143f9565b60405180910390fd5b611f8084848484035f6124f0565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ff7575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611fee9190613c9b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612067575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161205e9190613c9b565b60405180910390fd5b6120728383836126bf565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361218a578060025f82825461217e919061403e565b92505081905550612258565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612213578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161220a939291906143f9565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361229f578060025f82825403925050819055506122e9565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516123469190613b56565b60405180910390a3505050565b5f805f600954426123649190614071565b90506228de80811115612398576001602260036101000a81548160ff0219169083151502179055505f8092509250506123d4565b620151808111156123cb576001602260026101000a81548160ff02191690831515021790555060018092509250506123d4565b60028092509250505b9091565b8160200151825f015183604001516123f0919061403e565b6123fa919061403e565b8260800181815250505f82608001510361241d575f82606001818152505061243b565b816060015182608001818151612433919061403e565b915081815250505b8060200151815f01518260400151612453919061403e565b61245d919061403e565b8160800181815250505f816080015103612480575f81606001818152505061249e565b806060015181608001818151612496919061403e565b915081815250505b6007826080015111806124b5575060078160800151115b156124ec576040517fc52a9bd300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612560575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016125579190613c9b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036125d0575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016125c79190613c9b565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156126b9578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516126b09190613b56565b60405180910390a35b50505050565b600760149054906101000a900460ff16612705576040517f12f1f92300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002600e541480612748575061271961156c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80612785575061275661156c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8061278f57505f81145b156127a45761279f83838361213a565b613097565b5f60245f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2090505f60245f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f209050600760159054906101000a900460ff161561290a576008544310156128ee575f60245f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2090505f60018260010154612895919061403e565b9050438111156128de5743816040517f4a24f3d20000000000000000000000000000000000000000000000000000000081526004016128d592919061442e565b60405180910390fd5b4382600101819055505050612909565b5f600760156101000a81548160ff0219169083151502179055505b5b600d60019054906101000a900460ff166129ad575f6009544261292d9190614071565b90505f60788261293d91906142a0565b600c5461294a919061403e565b9050600981111561297557600a90506001600d60016101000a81548160ff0219169083151502179055505b5f6103e8826129826111b2565b61298c9190614232565b61299691906142a0565b9050600b5481146129a95780600b819055505b5050505b600d5f9054906101000a900460ff1615612ad8577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015612a2a5750815f0160019054906101000a900460ff16155b8015612a375750600a5483115b15612a6e576040517fa504b6d400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f0160019054906101000a900460ff16158015612aa05750600b54612a9385611438565b84612a9e919061403e565b115b15612ad7576040517ffd42866100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f60116004015490505f6010548210159050808015612b025750600f5f9054906101000a900460ff165b8015612b5a57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614155b15612b6c57612b6b8260105461309c565b5b835f015f9054906101000a900460ff16158015612b965750825f015f9054906101000a900460ff16155b15613087575f601690505f601b9050602260039054906101000a900460ff16612f23575f60095442612bc89190614071565b9050602260029054906101000a900460ff16158015612be957506201518081115b15612cba575f83600301548460040154612c039190614071565b90505f8103612c23575f84600401819055505f8460030181905550612c43565b600181612c30919061403e565b8460040181905550600184600301819055505b5f83600301548460040154612c589190614071565b90505f8103612c78575f84600401819055505f8460030181905550612c98565b600181612c85919061403e565b8460040181905550600184600301819055505b6001602260026101000a81548160ff0219169083151502179055505050612f21565b6228de80811115612d33578260030154836004015f828254612cdc9190614071565b925050819055508160030154826004015f828254612cfa9190614071565b925050819055505f83600301819055505f82600301819055506001602260036101000a81548160ff021916908315150217905550612f20565b60225f9054906101000a900460ff16612e28575f60205490505f819050610709831015612d7657607883612d6791906142a0565b600f612d739190614071565b90505b818111612dda5781856004018190555084600301548560010154866002015484612da09190614071565b612daa9190614071565b612db49190614071565b855f0181905550600160225f6101000a81548160ff021916908315150217905550612e25565b84600401548114612e245780856004018190555084600301548560010154866002015483612e089190614071565b612e129190614071565b612e1c9190614071565b855f01819055505b5b50505b602260019054906101000a900460ff16612f1f575f60215490505f819050610961831015612e6c57607883612e5d91906142a0565b6014612e699190614071565b90505b818111612ed15781846004018190555083600301548460010154856002015484612e969190614071565b612ea09190614071565b612eaa9190614071565b845f01819055506001602260016101000a81548160ff021916908315150217905550612f1c565b83600401548114612f1b5780846004018190555083600301548460010154856002015483612eff9190614071565b612f099190614071565b612f139190614071565b845f01819055505b5b50505b5b5b505b5f7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1603612fc457612fbd826040518060a00160405290815f8201548152602001600182015481526020016002820154815260200160038201548152602001600482015481525050896135bd565b9050613061565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff16036130605761305d836040518060a00160405290815f8201548152602001600182015481526020016002820154815260200160038201548152602001600482015481525050896135bd565b90505b5b5f8111156130835780886130759190614071565b97506130828a308361213a565b5b5050505b61309287878761213a565b505050505b505050565b6002600e819055505f601190506130b161390a565b83825f0154846130c19190614232565b6130cb91906142a0565b815f018181525050838260010154846130e49190614232565b6130ee91906142a0565b816020018181525050838260020154846131089190614232565b61311291906142a0565b8160400181815250508382600301548461312c9190614232565b61313691906142a0565b8160600181815250505f6002826040015161315191906142a0565b9050808461315f9190614071565b8260800181815250505f61317683608001516136ec565b905061318061390a565b8360800151845f0151836131949190614232565b61319e91906142a0565b815f0181815250505f815f0151111561323c5760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815f01516040516131f9906142fd565b5f6040518083038185875af1925050503d805f8114613233576040519150601f19603f3d011682016040523d82523d5f602084013e613238565b606091505b5050505b83608001518460200151836132519190614232565b61325b91906142a0565b8160200181815250505f816020015111156132fc5760075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681602001516040516132b9906142fd565b5f6040518083038185875af1925050503d805f81146132f3576040519150601f19603f3d011682016040523d82523d5f602084013e6132f8565b606091505b5050505b83608001518460600151836133119190614232565b61331b91906142a0565b8160600181815250505f81606001511115613461575f6002826060015161334291906142a0565b90507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1681604051613388906142fd565b5f6040518083038185875af1925050503d805f81146133c2576040519150601f19603f3d011682016040523d82523d5f602084013e6133c7565b606091505b5050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168183606001516134119190614071565b60405161341d906142fd565b5f6040518083038185875af1925050503d805f8114613457576040519150601f19603f3d011682016040523d82523d5f602084013e61345c565b606091505b505050505b5f478260400181815250505f8411801561347e57505f8260400151115b156134d45761349484836040015161dead611e38565b90507f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f83814868483604001516040516134cb92919061442e565b60405180910390a15b5f81856134e19190614071565b86604001516134f09190614071565b9050855f0151875f015f8282546135079190614071565b925050819055508560200151876001015f8282546135259190614071565b9250508190555080876002015f82825461353f9190614071565b925050819055508560600151876003015f82825461355d9190614071565b925050819055508086606001518760200151885f015161357d919061403e565b613587919061403e565b613591919061403e565b876004015f8282546135a39190614071565b92505081905550505050505050506001600e819055505050565b5f808360800151146136e65760648360800151836135db9190614232565b6135e591906142a0565b90505f601190508360800151845f0151836136009190614232565b61360a91906142a0565b815f015f82825461361b919061403e565b9250508190555083608001518460200151836136379190614232565b61364191906142a0565b816001015f828254613653919061403e565b92505081905550836080015184604001518361366f9190614232565b61367991906142a0565b816002015f82825461368b919061403e565b9250508190555083608001518460600151836136a79190614232565b6136b191906142a0565b816003015f8282546136c3919061403e565b9250508190555081816004015f8282546136dd919061403e565b92505081905550505b92915050565b5f804790505f600267ffffffffffffffff81111561370d5761370c613cb8565b5b60405190808252806020026020018201604052801561373b5781602001602082028036833780820191505090505b50905030815f8151811061375257613751614205565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156137f5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138199190614469565b8160018151811061382d5761382c614205565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947855f8430426040518663ffffffff1660e01b81526004016138c895949392919061454b565b5f604051808303815f87803b1580156138df575f80fd5b505af11580156138f1573d5f803e3d5ffd5b5050505081476139019190614071565b92505050919050565b6040518060a001604052805f81526020015f81526020015f81526020015f81526020015f81525090565b5f8115159050919050565b61394881613934565b82525050565b5f6020820190506139615f83018461393f565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6139a982613967565b6139b38185613971565b93506139c3818560208601613981565b6139cc8161398f565b840191505092915050565b5f6020820190508181035f8301526139ef818461399f565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f613a3182613a08565b9050919050565b613a4181613a27565b8114613a4b575f80fd5b50565b5f81359050613a5c81613a38565b92915050565b5f819050919050565b613a7481613a62565b8114613a7e575f80fd5b50565b5f81359050613a8f81613a6b565b92915050565b5f8060408385031215613aab57613aaa613a00565b5b5f613ab885828601613a4e565b9250506020613ac985828601613a81565b9150509250929050565b5f819050919050565b5f613af6613af1613aec84613a08565b613ad3565b613a08565b9050919050565b5f613b0782613adc565b9050919050565b5f613b1882613afd565b9050919050565b613b2881613b0e565b82525050565b5f602082019050613b415f830184613b1f565b92915050565b613b5081613a62565b82525050565b5f602082019050613b695f830184613b47565b92915050565b5f60208284031215613b8457613b83613a00565b5b5f613b9184828501613a4e565b91505092915050565b5f606082019050613bad5f83018661393f565b613bba602083018561393f565b613bc76040830184613b47565b949350505050565b5f613bd982613a08565b9050919050565b613be981613bcf565b82525050565b5f602082019050613c025f830184613be0565b92915050565b5f805f60608486031215613c1f57613c1e613a00565b5b5f613c2c86828701613a4e565b9350506020613c3d86828701613a4e565b9250506040613c4e86828701613a81565b9150509250925092565b5f60ff82169050919050565b613c6d81613c58565b82525050565b5f602082019050613c865f830184613c64565b92915050565b613c9581613a27565b82525050565b5f602082019050613cae5f830184613c8c565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b613cee8261398f565b810181811067ffffffffffffffff82111715613d0d57613d0c613cb8565b5b80604052505050565b5f613d1f6139f7565b9050613d2b8282613ce5565b919050565b5f67ffffffffffffffff821115613d4a57613d49613cb8565b5b602082029050602081019050919050565b5f80fd5b5f613d71613d6c84613d30565b613d16565b90508083825260208201905060208402830185811115613d9457613d93613d5b565b5b835b81811015613dbd5780613da98882613a4e565b845260208401935050602081019050613d96565b5050509392505050565b5f82601f830112613ddb57613dda613cb4565b5b8135613deb848260208601613d5f565b91505092915050565b5f60208284031215613e0957613e08613a00565b5b5f82013567ffffffffffffffff811115613e2657613e25613a04565b5b613e3284828501613dc7565b91505092915050565b5f60208284031215613e5057613e4f613a00565b5b5f613e5d84828501613a81565b91505092915050565b613e6f81613934565b8114613e79575f80fd5b50565b5f81359050613e8a81613e66565b92915050565b5f8060408385031215613ea657613ea5613a00565b5b5f613eb385828601613a4e565b9250506020613ec485828601613e7c565b9150509250929050565b5f60208284031215613ee357613ee2613a00565b5b5f613ef084828501613e7c565b91505092915050565b5f60a082019050613f0c5f830188613b47565b613f196020830187613b47565b613f266040830186613b47565b613f336060830185613b47565b613f406080830184613b47565b9695505050505050565b5f805f805f8060c08789031215613f6457613f63613a00565b5b5f613f7189828a01613a81565b9650506020613f8289828a01613a81565b9550506040613f9389828a01613a81565b9450506060613fa489828a01613a81565b9350506080613fb589828a01613a81565b92505060a0613fc689828a01613a81565b9150509295509295509295565b5f8060408385031215613fe957613fe8613a00565b5b5f613ff685828601613a4e565b925050602061400785828601613a4e565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61404882613a62565b915061405383613a62565b925082820190508082111561406b5761406a614011565b5b92915050565b5f61407b82613a62565b915061408683613a62565b925082820390508181111561409e5761409d614011565b5b92915050565b5f815190506140b281613a6b565b92915050565b5f602082840312156140cd576140cc613a00565b5b5f6140da848285016140a4565b91505092915050565b5f6040820190506140f65f830185613c8c565b6141036020830184613b47565b9392505050565b5f8151905061411881613e66565b92915050565b5f6020828403121561413357614132613a00565b5b5f6141408482850161410a565b91505092915050565b5f60c08201905061415c5f830189613c8c565b6141696020830188613c8c565b6141766040830187613b47565b6141836060830186613b47565b614190608083018561393f565b61419d60a0830184613c8c565b979650505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806141ec57607f821691505b6020821081036141ff576141fe6141a8565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f61423c82613a62565b915061424783613a62565b925082820261425581613a62565b9150828204841483151761426c5761426b614011565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6142aa82613a62565b91506142b583613a62565b9250826142c5576142c4614273565b5b828204905092915050565b5f81905092915050565b50565b5f6142e85f836142d0565b91506142f3826142da565b5f82019050919050565b5f614307826142dd565b9150819050919050565b5f819050919050565b5f61433461432f61432a84614311565b613ad3565b613a62565b9050919050565b6143448161431a565b82525050565b5f60c08201905061435d5f830189613c8c565b61436a6020830188613b47565b614377604083018761433b565b614384606083018661433b565b6143916080830185613c8c565b61439e60a0830184613b47565b979650505050505050565b5f805f606084860312156143c0576143bf613a00565b5b5f6143cd868287016140a4565b93505060206143de868287016140a4565b92505060406143ef868287016140a4565b9150509250925092565b5f60608201905061440c5f830186613c8c565b6144196020830185613b47565b6144266040830184613b47565b949350505050565b5f6040820190506144415f830185613b47565b61444e6020830184613b47565b9392505050565b5f8151905061446381613a38565b92915050565b5f6020828403121561447e5761447d613a00565b5b5f61448b84828501614455565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6144c681613a27565b82525050565b5f6144d783836144bd565b60208301905092915050565b5f602082019050919050565b5f6144f982614494565b614503818561449e565b935061450e836144ae565b805f5b8381101561453e57815161452588826144cc565b9750614530836144e3565b925050600181019050614511565b5085935050505092915050565b5f60a08201905061455e5f830188613b47565b61456b602083018761433b565b818103604083015261457d81866144ef565b905061458c6060830185613c8c565b6145996080830184613b47565b969550505050505056fea2646970667358221220072a19d3871dcc9bc0ca059b7e4bd9d07a225e68abd6403e6aa9cfc99a16a27264736f6c634300081a003300000000000000000000000000000000000000000000000000000000000002c0000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000038d7ea4c68000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000001e1338000000000000000000000000000000000000000000000000000000000000000050000000000000000000000008dd870e2b708da2e3dde9c8e7c433260f17a6c98000000000000000000000000771ec061cddabaef3a0eee24672d9e8864d2f2ef000000000000000000000000e2fe530c047f2d85298b07d9333c05737f1435fb0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000e9b4d32f829951a3ce145d2caa84cf66af56ca5e000000000000000000000000377e168af6a06075423aede50856de177efaac3e0000000000000000000000000000000000000000000000000000000000000008536d6172744875620000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005534d415254000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061039a575f3560e01c806387f86db7116101db578063d0a5eb4e11610101578063ea8a1af01161009f578063f8b45b051161006e578063f8b45b0514610cdb578063f8f9892814610d05578063f954662114610d2d578063f9f4bfdd14610d57576103a1565b8063ea8a1af014610c4b578063ec28438a14610c61578063f2fde38b14610c89578063f66a79a014610cb1576103a1565b8063e0f3ccf5116100db578063e0f3ccf514610b9d578063e2f4560514610bcb578063e4748b9e14610bf5578063ea1644d514610c23576103a1565b8063d0a5eb4e14610b0f578063dd62ed3e14610b37578063de35eb2414610b73576103a1565b8063a8aa1b3111610179578063bee0d6ad11610148578063bee0d6ad14610a67578063bf56b37114610a95578063c49b9a8014610abf578063cb29813c14610ae7576103a1565b8063a8aa1b31146109af578063a9059cbb146109d9578063acb52a9814610a15578063baae066614610a3f576103a1565b80638d7a8ba7116101b55780638d7a8ba71461090b5780638da5cb5b146109335780638ebfc7961461095d57806395d89b4114610985576103a1565b806387f86db71461088d57806388cda873146108b75780638c0b5e22146108e1576103a1565b806344de2e4c116102c05780636402511e1161025e578063715018a61161022d578063715018a61461080d5780638183b3c814610823578063838420131461083957806383ebc78d14610863576103a1565b80636402511e1461075557806367dd01791461077d5780636ddd1713146107a757806370a08231146107d1576103a1565b8063530275011161029a57806353027501146106af57806354fd4d50146106d95780635ace1122146107035780636101f1f81461072b576103a1565b806344de2e4c146106335780634a829e791461065d5780634b78286a14610687576103a1565b80631959a002116103385780632ffe729a116103075780632ffe729a1461058b578063313ce567146105b557806332a8db87146105df5780633675f29b14610609576103a1565b80631959a002146104bd57806323b62b75146104fb57806323b872dd146105255780632b112e4914610561576103a1565b8063095ea7b311610374578063095ea7b3146104035780631694505e1461043f5780631732cded1461046957806318160ddd14610493576103a1565b806301339c21146103a5578063064a59d0146103af57806306fdde03146103d9576103a1565b366103a157005b5f80fd5b6103ad610d81565b005b3480156103ba575f80fd5b506103c36110c3565b6040516103d0919061394e565b60405180910390f35b3480156103e4575f80fd5b506103ed6110d6565b6040516103fa91906139d7565b60405180910390f35b34801561040e575f80fd5b5061042960048036038101906104249190613a95565b611166565b604051610436919061394e565b60405180910390f35b34801561044a575f80fd5b50610453611188565b6040516104609190613b2e565b60405180910390f35b348015610474575f80fd5b5061047d6111ac565b60405161048a9190613b56565b60405180910390f35b34801561049e575f80fd5b506104a76111b2565b6040516104b49190613b56565b60405180910390f35b3480156104c8575f80fd5b506104e360048036038101906104de9190613b6f565b6111bb565b6040516104f293929190613b9a565b60405180910390f35b348015610506575f80fd5b5061050f6111f9565b60405161051c9190613bef565b60405180910390f35b348015610530575f80fd5b5061054b60048036038101906105469190613c08565b61121e565b604051610558919061394e565b60405180910390f35b34801561056c575f80fd5b5061057561124c565b6040516105829190613b56565b60405180910390f35b348015610596575f80fd5b5061059f61126f565b6040516105ac9190613b56565b60405180910390f35b3480156105c0575f80fd5b506105c9611275565b6040516105d69190613c73565b60405180910390f35b3480156105ea575f80fd5b506105f361127d565b6040516106009190613b56565b60405180910390f35b348015610614575f80fd5b5061061d611283565b60405161062a9190613c9b565b60405180910390f35b34801561063e575f80fd5b506106476112a7565b604051610654919061394e565b60405180910390f35b348015610668575f80fd5b506106716112b9565b60405161067e919061394e565b60405180910390f35b348015610692575f80fd5b506106ad60048036038101906106a89190613b6f565b6112cc565b005b3480156106ba575f80fd5b506106c3611317565b6040516106d0919061394e565b60405180910390f35b3480156106e4575f80fd5b506106ed611329565b6040516106fa9190613c73565b60405180910390f35b34801561070e575f80fd5b5061072960048036038101906107249190613df4565b611331565b005b348015610736575f80fd5b5061073f6113cc565b60405161074c9190613bef565b60405180910390f35b348015610760575f80fd5b5061077b60048036038101906107769190613e3b565b6113f0565b005b348015610788575f80fd5b50610791611402565b60405161079e9190613bef565b60405180910390f35b3480156107b2575f80fd5b506107bb611426565b6040516107c8919061394e565b60405180910390f35b3480156107dc575f80fd5b506107f760048036038101906107f29190613b6f565b611438565b6040516108049190613b56565b60405180910390f35b348015610818575f80fd5b5061082161147d565b005b34801561082e575f80fd5b50610837611490565b005b348015610844575f80fd5b5061084d6114c4565b60405161085a919061394e565b60405180910390f35b34801561086e575f80fd5b506108776114d7565b6040516108849190613b56565b60405180910390f35b348015610898575f80fd5b506108a16114dd565b6040516108ae919061394e565b60405180910390f35b3480156108c2575f80fd5b506108cb6114f0565b6040516108d8919061394e565b60405180910390f35b3480156108ec575f80fd5b506108f5611503565b6040516109029190613b56565b60405180910390f35b348015610916575f80fd5b50610931600480360381019061092c9190613e90565b611509565b005b34801561093e575f80fd5b5061094761156c565b6040516109549190613c9b565b60405180910390f35b348015610968575f80fd5b50610983600480360381019061097e9190613e90565b611594565b005b348015610990575f80fd5b506109996115f6565b6040516109a691906139d7565b60405180910390f35b3480156109ba575f80fd5b506109c3611686565b6040516109d09190613c9b565b60405180910390f35b3480156109e4575f80fd5b506109ff60048036038101906109fa9190613a95565b6116aa565b604051610a0c919061394e565b60405180910390f35b348015610a20575f80fd5b50610a296116cc565b604051610a369190613b56565b60405180910390f35b348015610a4a575f80fd5b50610a656004803603810190610a609190613ece565b6116d2565b005b348015610a72575f80fd5b50610a7b6116f6565b604051610a8c959493929190613ef9565b60405180910390f35b348015610aa0575f80fd5b50610aa9611719565b604051610ab69190613b56565b60405180910390f35b348015610aca575f80fd5b50610ae56004803603810190610ae09190613ece565b61171f565b005b348015610af2575f80fd5b50610b0d6004803603810190610b089190613f4a565b61177a565b005b348015610b1a575f80fd5b50610b356004803603810190610b309190613b6f565b6118d7565b005b348015610b42575f80fd5b50610b5d6004803603810190610b589190613fd3565b611922565b604051610b6a9190613b56565b60405180910390f35b348015610b7e575f80fd5b50610b876119a4565b604051610b949190613b56565b60405180910390f35b348015610ba8575f80fd5b50610bb16119c8565b604051610bc2959493929190613ef9565b60405180910390f35b348015610bd6575f80fd5b50610bdf6119eb565b604051610bec9190613b56565b60405180910390f35b348015610c00575f80fd5b50610c096119f1565b604051610c1a959493929190613ef9565b60405180910390f35b348015610c2e575f80fd5b50610c496004803603810190610c449190613e3b565b611a14565b005b348015610c56575f80fd5b50610c5f611ad0565b005b348015610c6c575f80fd5b50610c876004803603810190610c829190613e3b565b611b9c565b005b348015610c94575f80fd5b50610caf6004803603810190610caa9190613b6f565b611c3d565b005b348015610cbc575f80fd5b50610cc5611cc1565b604051610cd29190613bef565b60405180910390f35b348015610ce6575f80fd5b50610cef611ce6565b604051610cfc9190613b56565b60405180910390f35b348015610d10575f80fd5b50610d2b6004803603810190610d269190613df4565b611cec565b005b348015610d38575f80fd5b50610d41611d86565b604051610d4e9190613b56565b60405180910390f35b348015610d62575f80fd5b50610d6b611d8c565b604051610d78919061394e565b60405180910390f35b610d89611d9f565b6002600e819055505f60095414610dcc576040517fc52a9bd300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a43610dd9919061403e565b600881905550426009819055506001600760146101000a81548160ff021916908315150217905550610e4c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611e26565b610e6a610e5830611438565b3447610e649190614071565b30611e38565b505f7f000000000000000000000000150c17c6c3b413cfe63b8d0108fa1a20a25017c973ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610ec59190613c9b565b602060405180830381865afa158015610ee0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f0491906140b8565b90507f000000000000000000000000150c17c6c3b413cfe63b8d0108fa1a20a25017c973ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f000000000000000000000000e2fe530c047f2d85298b07d9333c05737f1435fb836040518363ffffffff1660e01b8152600401610f819291906140e3565b6020604051808303815f875af1158015610f9d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fc1919061411e565b507f000000000000000000000000e2fe530c047f2d85298b07d9333c05737f1435fb73ffffffffffffffffffffffffffffffffffffffff16635af06fed347f000000000000000000000000150c17c6c3b413cfe63b8d0108fa1a20a25017c933857f0000000000000000000000000000000000000000000000000000000001e133804261104e919061403e565b5f806040518863ffffffff1660e01b815260040161107196959493929190614149565b60206040518083038185885af115801561108d573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906110b291906140b8565b602381905550506001600e81905550565b600760149054906101000a900460ff1681565b6060600380546110e5906141d5565b80601f0160208091040260200160405190810160405280929190818152602001828054611111906141d5565b801561115c5780601f106111335761010080835404028352916020019161115c565b820191905f5260205f20905b81548152906001019060200180831161113f57829003601f168201915b5050505050905090565b5f80611170611eee565b905061117d818585611e26565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600e5481565b5f600254905090565b6024602052805f5260405f205f91509050805f015f9054906101000a900460ff1690805f0160019054906101000a900460ff16908060010154905083565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f80611228611eee565b9050611235858285611ef5565b611240858585611f87565b60019150509392505050565b5f61125861dead611438565b6112606111b2565b61126a9190614071565b905090565b600c5481565b5f6009905090565b60215481565b7f000000000000000000000000e2fe530c047f2d85298b07d9333c05737f1435fb81565b600d5f9054906101000a900460ff1681565b600d60019054906101000a900460ff1681565b6112d4611d9f565b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60225f9054906101000a900460ff1681565b5f6001905090565b611339611d9f565b5f815190505f5b818110156113c757600160245f8584815181106113605761135f614205565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f0160016101000a81548160ff0219169083151502179055508080600101915050611340565b505050565b7f000000000000000000000000e9b4d32f829951a3ce145d2caa84cf66af56ca5e81565b6113f8611d9f565b8060108190555050565b7f000000000000000000000000377e168af6a06075423aede50856de177efaac3e81565b600f5f9054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b611485611d9f565b61148e5f612077565b565b611498611d9f565b6114c2306114a4611eee565b6011600401546114b330611438565b6114bd9190614071565b61213a565b565b602260039054906101000a900460ff1681565b60205481565b600760159054906101000a900460ff1681565b602260029054906101000a900460ff1681565b600a5481565b611511611d9f565b8060245f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f0160016101000a81548160ff0219169083151502179055505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61159c611d9f565b8060245f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f6101000a81548160ff0219169083151502179055505050565b606060048054611605906141d5565b80601f0160208091040260200160405190810160405280929190818152602001828054611631906141d5565b801561167c5780601f106116535761010080835404028352916020019161167c565b820191905f5260205f20905b81548152906001019060200180831161165f57829003601f168201915b5050505050905090565b7f000000000000000000000000150c17c6c3b413cfe63b8d0108fa1a20a25017c981565b5f806116b4611eee565b90506116c1818585611f87565b600191505092915050565b60085481565b6116da611d9f565b80600d5f6101000a81548160ff02191690831515021790555050565b6011805f0154908060010154908060020154908060030154908060040154905085565b60095481565b611727611d9f565b80600f5f6101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405161176f919061394e565b60405180910390a150565b611782611d9f565b60225f9054906101000a900460ff1615806117aa5750602260019054906101000a900460ff16155b156117e1576040517fc52a9bd300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117e961390a565b8681604001818152505085815f0181815250508481602001818152505061180e61390a565b8481604001818152505083815f018181525050828160200181815250505f6009540361183c57600280611845565b611844612353565b5b83606001836060018281525082815250505061186182826123d8565b8160165f820151815f01556020820151816001015560408201518160020155606082015181600301556080820151816004015590505080601b5f820151815f0155602082015181600101556040820151816002015560608201518160030155608082015181600401559050505050505050505050565b6118df611d9f565b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b7f0000000000000000000000000000000000000000000000000000000001e1338081565b601b805f0154908060010154908060020154908060030154908060040154905085565b60105481565b6016805f0154908060010154908060020154908060030154908060040154905085565b611a1c611d9f565b5f6009541480611a4b57506103e86005611a346111b2565b611a3e9190614232565b611a4891906142a0565b81105b80611a74575060646003611a5d6111b2565b611a679190614232565b611a7191906142a0565b81115b15611aab576040517fc52a9bd300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b819055506001600d60016101000a81548160ff02191690831515021790555050565b611ad8611d9f565b5f60095414611b13576040517fc52a9bd300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b2d30611b1f61156c565b611b2830611438565b61213a565b611b3561156c565b73ffffffffffffffffffffffffffffffffffffffff1647604051611b58906142fd565b5f6040518083038185875af1925050503d805f8114611b92576040519150601f19603f3d011682016040523d82523d5f602084013e611b97565b606091505b505050565b611ba4611d9f565b5f6009541480611bd357506103e86005611bbc6111b2565b611bc69190614232565b611bd091906142a0565b81105b80611bfc575060646003611be56111b2565b611bef9190614232565b611bf991906142a0565b81115b15611c33576040517fc52a9bd300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a8190555050565b611c45611d9f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611cb5575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401611cac9190613c9b565b60405180910390fd5b611cbe81612077565b50565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b611cf4611d9f565b5f815190505f5b81811015611d8157600160245f858481518110611d1b57611d1a614205565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f6101000a81548160ff0219169083151502179055508080600101915050611cfb565b505050565b60235481565b602260019054906101000a900460ff1681565b611da7611eee565b73ffffffffffffffffffffffffffffffffffffffff16611dc561156c565b73ffffffffffffffffffffffffffffffffffffffff1614611e2457611de8611eee565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611e1b9190613c9b565b60405180910390fd5b565b611e3383838360016124f0565b505050565b5f807f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198530885f8089426040518863ffffffff1660e01b8152600401611e9e9695949392919061434a565b60606040518083038185885af1158015611eba573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611edf91906143a9565b50509050809150509392505050565b5f33905090565b5f611f008484611922565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611f815781811015611f72578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401611f69939291906143f9565b60405180910390fd5b611f8084848484035f6124f0565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ff7575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611fee9190613c9b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612067575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161205e9190613c9b565b60405180910390fd5b6120728383836126bf565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361218a578060025f82825461217e919061403e565b92505081905550612258565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612213578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161220a939291906143f9565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361229f578060025f82825403925050819055506122e9565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516123469190613b56565b60405180910390a3505050565b5f805f600954426123649190614071565b90506228de80811115612398576001602260036101000a81548160ff0219169083151502179055505f8092509250506123d4565b620151808111156123cb576001602260026101000a81548160ff02191690831515021790555060018092509250506123d4565b60028092509250505b9091565b8160200151825f015183604001516123f0919061403e565b6123fa919061403e565b8260800181815250505f82608001510361241d575f82606001818152505061243b565b816060015182608001818151612433919061403e565b915081815250505b8060200151815f01518260400151612453919061403e565b61245d919061403e565b8160800181815250505f816080015103612480575f81606001818152505061249e565b806060015181608001818151612496919061403e565b915081815250505b6007826080015111806124b5575060078160800151115b156124ec576040517fc52a9bd300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612560575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016125579190613c9b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036125d0575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016125c79190613c9b565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156126b9578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516126b09190613b56565b60405180910390a35b50505050565b600760149054906101000a900460ff16612705576040517f12f1f92300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002600e541480612748575061271961156c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80612785575061275661156c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8061278f57505f81145b156127a45761279f83838361213a565b613097565b5f60245f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2090505f60245f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f209050600760159054906101000a900460ff161561290a576008544310156128ee575f60245f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2090505f60018260010154612895919061403e565b9050438111156128de5743816040517f4a24f3d20000000000000000000000000000000000000000000000000000000081526004016128d592919061442e565b60405180910390fd5b4382600101819055505050612909565b5f600760156101000a81548160ff0219169083151502179055505b5b600d60019054906101000a900460ff166129ad575f6009544261292d9190614071565b90505f60788261293d91906142a0565b600c5461294a919061403e565b9050600981111561297557600a90506001600d60016101000a81548160ff0219169083151502179055505b5f6103e8826129826111b2565b61298c9190614232565b61299691906142a0565b9050600b5481146129a95780600b819055505b5050505b600d5f9054906101000a900460ff1615612ad8577f000000000000000000000000150c17c6c3b413cfe63b8d0108fa1a20a25017c973ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015612a2a5750815f0160019054906101000a900460ff16155b8015612a375750600a5483115b15612a6e576040517fa504b6d400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f0160019054906101000a900460ff16158015612aa05750600b54612a9385611438565b84612a9e919061403e565b115b15612ad7576040517ffd42866100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f60116004015490505f6010548210159050808015612b025750600f5f9054906101000a900460ff165b8015612b5a57507f000000000000000000000000150c17c6c3b413cfe63b8d0108fa1a20a25017c973ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614155b15612b6c57612b6b8260105461309c565b5b835f015f9054906101000a900460ff16158015612b965750825f015f9054906101000a900460ff16155b15613087575f601690505f601b9050602260039054906101000a900460ff16612f23575f60095442612bc89190614071565b9050602260029054906101000a900460ff16158015612be957506201518081115b15612cba575f83600301548460040154612c039190614071565b90505f8103612c23575f84600401819055505f8460030181905550612c43565b600181612c30919061403e565b8460040181905550600184600301819055505b5f83600301548460040154612c589190614071565b90505f8103612c78575f84600401819055505f8460030181905550612c98565b600181612c85919061403e565b8460040181905550600184600301819055505b6001602260026101000a81548160ff0219169083151502179055505050612f21565b6228de80811115612d33578260030154836004015f828254612cdc9190614071565b925050819055508160030154826004015f828254612cfa9190614071565b925050819055505f83600301819055505f82600301819055506001602260036101000a81548160ff021916908315150217905550612f20565b60225f9054906101000a900460ff16612e28575f60205490505f819050610709831015612d7657607883612d6791906142a0565b600f612d739190614071565b90505b818111612dda5781856004018190555084600301548560010154866002015484612da09190614071565b612daa9190614071565b612db49190614071565b855f0181905550600160225f6101000a81548160ff021916908315150217905550612e25565b84600401548114612e245780856004018190555084600301548560010154866002015483612e089190614071565b612e129190614071565b612e1c9190614071565b855f01819055505b5b50505b602260019054906101000a900460ff16612f1f575f60215490505f819050610961831015612e6c57607883612e5d91906142a0565b6014612e699190614071565b90505b818111612ed15781846004018190555083600301548460010154856002015484612e969190614071565b612ea09190614071565b612eaa9190614071565b845f01819055506001602260016101000a81548160ff021916908315150217905550612f1c565b83600401548114612f1b5780846004018190555083600301548460010154856002015483612eff9190614071565b612f099190614071565b612f139190614071565b845f01819055505b5b50505b5b5b505b5f7f000000000000000000000000150c17c6c3b413cfe63b8d0108fa1a20a25017c973ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1603612fc457612fbd826040518060a00160405290815f8201548152602001600182015481526020016002820154815260200160038201548152602001600482015481525050896135bd565b9050613061565b7f000000000000000000000000150c17c6c3b413cfe63b8d0108fa1a20a25017c973ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff16036130605761305d836040518060a00160405290815f8201548152602001600182015481526020016002820154815260200160038201548152602001600482015481525050896135bd565b90505b5b5f8111156130835780886130759190614071565b97506130828a308361213a565b5b5050505b61309287878761213a565b505050505b505050565b6002600e819055505f601190506130b161390a565b83825f0154846130c19190614232565b6130cb91906142a0565b815f018181525050838260010154846130e49190614232565b6130ee91906142a0565b816020018181525050838260020154846131089190614232565b61311291906142a0565b8160400181815250508382600301548461312c9190614232565b61313691906142a0565b8160600181815250505f6002826040015161315191906142a0565b9050808461315f9190614071565b8260800181815250505f61317683608001516136ec565b905061318061390a565b8360800151845f0151836131949190614232565b61319e91906142a0565b815f0181815250505f815f0151111561323c5760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815f01516040516131f9906142fd565b5f6040518083038185875af1925050503d805f8114613233576040519150601f19603f3d011682016040523d82523d5f602084013e613238565b606091505b5050505b83608001518460200151836132519190614232565b61325b91906142a0565b8160200181815250505f816020015111156132fc5760075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681602001516040516132b9906142fd565b5f6040518083038185875af1925050503d805f81146132f3576040519150601f19603f3d011682016040523d82523d5f602084013e6132f8565b606091505b5050505b83608001518460600151836133119190614232565b61331b91906142a0565b8160600181815250505f81606001511115613461575f6002826060015161334291906142a0565b90507f000000000000000000000000377e168af6a06075423aede50856de177efaac3e73ffffffffffffffffffffffffffffffffffffffff1681604051613388906142fd565b5f6040518083038185875af1925050503d805f81146133c2576040519150601f19603f3d011682016040523d82523d5f602084013e6133c7565b606091505b5050507f000000000000000000000000e9b4d32f829951a3ce145d2caa84cf66af56ca5e73ffffffffffffffffffffffffffffffffffffffff168183606001516134119190614071565b60405161341d906142fd565b5f6040518083038185875af1925050503d805f8114613457576040519150601f19603f3d011682016040523d82523d5f602084013e61345c565b606091505b505050505b5f478260400181815250505f8411801561347e57505f8260400151115b156134d45761349484836040015161dead611e38565b90507f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f83814868483604001516040516134cb92919061442e565b60405180910390a15b5f81856134e19190614071565b86604001516134f09190614071565b9050855f0151875f015f8282546135079190614071565b925050819055508560200151876001015f8282546135259190614071565b9250508190555080876002015f82825461353f9190614071565b925050819055508560600151876003015f82825461355d9190614071565b925050819055508086606001518760200151885f015161357d919061403e565b613587919061403e565b613591919061403e565b876004015f8282546135a39190614071565b92505081905550505050505050506001600e819055505050565b5f808360800151146136e65760648360800151836135db9190614232565b6135e591906142a0565b90505f601190508360800151845f0151836136009190614232565b61360a91906142a0565b815f015f82825461361b919061403e565b9250508190555083608001518460200151836136379190614232565b61364191906142a0565b816001015f828254613653919061403e565b92505081905550836080015184604001518361366f9190614232565b61367991906142a0565b816002015f82825461368b919061403e565b9250508190555083608001518460600151836136a79190614232565b6136b191906142a0565b816003015f8282546136c3919061403e565b9250508190555081816004015f8282546136dd919061403e565b92505081905550505b92915050565b5f804790505f600267ffffffffffffffff81111561370d5761370c613cb8565b5b60405190808252806020026020018201604052801561373b5781602001602082028036833780820191505090505b50905030815f8151811061375257613751614205565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156137f5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138199190614469565b8160018151811061382d5761382c614205565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947855f8430426040518663ffffffff1660e01b81526004016138c895949392919061454b565b5f604051808303815f87803b1580156138df575f80fd5b505af11580156138f1573d5f803e3d5ffd5b5050505081476139019190614071565b92505050919050565b6040518060a001604052805f81526020015f81526020015f81526020015f81526020015f81525090565b5f8115159050919050565b61394881613934565b82525050565b5f6020820190506139615f83018461393f565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6139a982613967565b6139b38185613971565b93506139c3818560208601613981565b6139cc8161398f565b840191505092915050565b5f6020820190508181035f8301526139ef818461399f565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f613a3182613a08565b9050919050565b613a4181613a27565b8114613a4b575f80fd5b50565b5f81359050613a5c81613a38565b92915050565b5f819050919050565b613a7481613a62565b8114613a7e575f80fd5b50565b5f81359050613a8f81613a6b565b92915050565b5f8060408385031215613aab57613aaa613a00565b5b5f613ab885828601613a4e565b9250506020613ac985828601613a81565b9150509250929050565b5f819050919050565b5f613af6613af1613aec84613a08565b613ad3565b613a08565b9050919050565b5f613b0782613adc565b9050919050565b5f613b1882613afd565b9050919050565b613b2881613b0e565b82525050565b5f602082019050613b415f830184613b1f565b92915050565b613b5081613a62565b82525050565b5f602082019050613b695f830184613b47565b92915050565b5f60208284031215613b8457613b83613a00565b5b5f613b9184828501613a4e565b91505092915050565b5f606082019050613bad5f83018661393f565b613bba602083018561393f565b613bc76040830184613b47565b949350505050565b5f613bd982613a08565b9050919050565b613be981613bcf565b82525050565b5f602082019050613c025f830184613be0565b92915050565b5f805f60608486031215613c1f57613c1e613a00565b5b5f613c2c86828701613a4e565b9350506020613c3d86828701613a4e565b9250506040613c4e86828701613a81565b9150509250925092565b5f60ff82169050919050565b613c6d81613c58565b82525050565b5f602082019050613c865f830184613c64565b92915050565b613c9581613a27565b82525050565b5f602082019050613cae5f830184613c8c565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b613cee8261398f565b810181811067ffffffffffffffff82111715613d0d57613d0c613cb8565b5b80604052505050565b5f613d1f6139f7565b9050613d2b8282613ce5565b919050565b5f67ffffffffffffffff821115613d4a57613d49613cb8565b5b602082029050602081019050919050565b5f80fd5b5f613d71613d6c84613d30565b613d16565b90508083825260208201905060208402830185811115613d9457613d93613d5b565b5b835b81811015613dbd5780613da98882613a4e565b845260208401935050602081019050613d96565b5050509392505050565b5f82601f830112613ddb57613dda613cb4565b5b8135613deb848260208601613d5f565b91505092915050565b5f60208284031215613e0957613e08613a00565b5b5f82013567ffffffffffffffff811115613e2657613e25613a04565b5b613e3284828501613dc7565b91505092915050565b5f60208284031215613e5057613e4f613a00565b5b5f613e5d84828501613a81565b91505092915050565b613e6f81613934565b8114613e79575f80fd5b50565b5f81359050613e8a81613e66565b92915050565b5f8060408385031215613ea657613ea5613a00565b5b5f613eb385828601613a4e565b9250506020613ec485828601613e7c565b9150509250929050565b5f60208284031215613ee357613ee2613a00565b5b5f613ef084828501613e7c565b91505092915050565b5f60a082019050613f0c5f830188613b47565b613f196020830187613b47565b613f266040830186613b47565b613f336060830185613b47565b613f406080830184613b47565b9695505050505050565b5f805f805f8060c08789031215613f6457613f63613a00565b5b5f613f7189828a01613a81565b9650506020613f8289828a01613a81565b9550506040613f9389828a01613a81565b9450506060613fa489828a01613a81565b9350506080613fb589828a01613a81565b92505060a0613fc689828a01613a81565b9150509295509295509295565b5f8060408385031215613fe957613fe8613a00565b5b5f613ff685828601613a4e565b925050602061400785828601613a4e565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61404882613a62565b915061405383613a62565b925082820190508082111561406b5761406a614011565b5b92915050565b5f61407b82613a62565b915061408683613a62565b925082820390508181111561409e5761409d614011565b5b92915050565b5f815190506140b281613a6b565b92915050565b5f602082840312156140cd576140cc613a00565b5b5f6140da848285016140a4565b91505092915050565b5f6040820190506140f65f830185613c8c565b6141036020830184613b47565b9392505050565b5f8151905061411881613e66565b92915050565b5f6020828403121561413357614132613a00565b5b5f6141408482850161410a565b91505092915050565b5f60c08201905061415c5f830189613c8c565b6141696020830188613c8c565b6141766040830187613b47565b6141836060830186613b47565b614190608083018561393f565b61419d60a0830184613c8c565b979650505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806141ec57607f821691505b6020821081036141ff576141fe6141a8565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f61423c82613a62565b915061424783613a62565b925082820261425581613a62565b9150828204841483151761426c5761426b614011565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6142aa82613a62565b91506142b583613a62565b9250826142c5576142c4614273565b5b828204905092915050565b5f81905092915050565b50565b5f6142e85f836142d0565b91506142f3826142da565b5f82019050919050565b5f614307826142dd565b9150819050919050565b5f819050919050565b5f61433461432f61432a84614311565b613ad3565b613a62565b9050919050565b6143448161431a565b82525050565b5f60c08201905061435d5f830189613c8c565b61436a6020830188613b47565b614377604083018761433b565b614384606083018661433b565b6143916080830185613c8c565b61439e60a0830184613b47565b979650505050505050565b5f805f606084860312156143c0576143bf613a00565b5b5f6143cd868287016140a4565b93505060206143de868287016140a4565b92505060406143ef868287016140a4565b9150509250925092565b5f60608201905061440c5f830186613c8c565b6144196020830185613b47565b6144266040830184613b47565b949350505050565b5f6040820190506144415f830185613b47565b61444e6020830184613b47565b9392505050565b5f8151905061446381613a38565b92915050565b5f6020828403121561447e5761447d613a00565b5b5f61448b84828501614455565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6144c681613a27565b82525050565b5f6144d783836144bd565b60208301905092915050565b5f602082019050919050565b5f6144f982614494565b614503818561449e565b935061450e836144ae565b805f5b8381101561453e57815161452588826144cc565b9750614530836144e3565b925050600181019050614511565b5085935050505092915050565b5f60a08201905061455e5f830188613b47565b61456b602083018761433b565b818103604083015261457d81866144ef565b905061458c6060830185613c8c565b6145996080830184613b47565b969550505050505056fea2646970667358221220072a19d3871dcc9bc0ca059b7e4bd9d07a225e68abd6403e6aa9cfc99a16a27264736f6c634300081a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000002c0000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000038d7ea4c68000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000001e1338000000000000000000000000000000000000000000000000000000000000000050000000000000000000000008dd870e2b708da2e3dde9c8e7c433260f17a6c98000000000000000000000000771ec061cddabaef3a0eee24672d9e8864d2f2ef000000000000000000000000e2fe530c047f2d85298b07d9333c05737f1435fb0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000e9b4d32f829951a3ce145d2caa84cf66af56ca5e000000000000000000000000377e168af6a06075423aede50856de177efaac3e0000000000000000000000000000000000000000000000000000000000000008536d6172744875620000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005534d415254000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): SmartHub
Arg [1] : _symbol (string): SMART
Arg [2] : _totalSupply (uint256): 1000000000000000
Arg [3] : _buyFees (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [4] : _sellFees (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [5] : _percentToLP (uint256): 80
Arg [6] : _lpLockDuration (uint256): 31536000
Arg [7] : _initMaxWallet (uint256): 5
Arg [8] : _mainWallet (address): 0x8DD870e2b708Da2e3ddE9c8e7c433260f17A6C98
Arg [9] : _secondaryWallet (address): 0x771ec061CdDabaef3a0eeE24672D9E8864d2f2ef
Arg [10] : _addresses (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
-----Encoded View---------------
26 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000002c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000300
Arg [2] : 00000000000000000000000000000000000000000000000000038d7ea4c68000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [14] : 0000000000000000000000000000000000000000000000000000000001e13380
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [16] : 0000000000000000000000008dd870e2b708da2e3dde9c8e7c433260f17a6c98
Arg [17] : 000000000000000000000000771ec061cddabaef3a0eee24672d9e8864d2f2ef
Arg [18] : 000000000000000000000000e2fe530c047f2d85298b07d9333c05737f1435fb
Arg [19] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [20] : 000000000000000000000000e9b4d32f829951a3ce145d2caa84cf66af56ca5e
Arg [21] : 000000000000000000000000377e168af6a06075423aede50856de177efaac3e
Arg [22] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [23] : 536d617274487562000000000000000000000000000000000000000000000000
Arg [24] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [25] : 534d415254000000000000000000000000000000000000000000000000000000
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.