ERC-20
DeFi
Overview
Max Total Supply
100,000,000 TAOx
Holders
1,280 (0.00%)
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$37,397.00
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
36,701.739384403184336554 TAOxValue
$13.73 ( ~0.00510171287112162 Eth) [0.0367%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|---|---|---|---|---|
1 | Uniswap V2 (Ethereum) | 0X6B96C78D4472031F1FBED2D1C4BD3895E9212344-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2 | $0.0004 0.0000001 Eth | $23.97 63,109.257 0X6B96C78D4472031F1FBED2D1C4BD3895E9212344 | 100.0000% |
Contract Source Code Verified (Exact Match)
Contract Name:
TAOX
Compiler Version
v0.8.23+commit.f704f362
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// Website: https://taox.ai // Twitter: https://x.com/taox_ai // Telegram: https://t.me/taox_ai // SPDX-License-Identifier: MIT pragma solidity 0.8.23; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./interfaces/IUniswapV2Router02.sol"; import "./interfaces/ITAOXDividendTracker.sol"; import "./interfaces/IUniswapV2Factory.sol"; contract TAOX is Ownable, ERC20 { error MaxTxAmountExceeded(); error MaxWalletAmountExceeded(); error NotAuthorized(); event OpenTrading(); event DisableLimits(); event UpdateMarketingWL(address _marketingWallet); event UpdateTreasuryWL(address _treasury); event SwapBack(uint256 amount); event UpdateSwapTokenAt(uint256 amount); ITAOXDividendTracker public dividendTracker; IUniswapV2Router02 immutable router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uint256 _totalSupply = 100_000_000 * 10 ** 18; address public pair; uint256 TAX = 5; uint256 private _initialTax = 30; uint256 private _reduceTaxAt = 20; uint256 private _buyCount = 0; uint256 private _sellCount = 0; uint256 private _maxAmount = _totalSupply / 200; // 0.5% of total supply uint256 private _maxWallet = _maxAmount; // 0.5% of total supply bool private _tradingEnable; address public marketingWallet; address public treasuryWallet; bool public limit = true; uint256 public swapTokenAt = _totalSupply / 1000; mapping(address => bool) private _isExcludedFromFees; bool private _swaping = false; modifier onSwap() { _swaping = true; _; _swaping = false; } constructor( address _dividendTracker, address _treasury ) ERC20("TAOx", "TAOx") { marketingWallet = _msgSender(); treasuryWallet = _treasury; pair = IUniswapV2Factory(router.factory()).createPair( address(this), router.WETH() ); dividendTracker = ITAOXDividendTracker(_dividendTracker); dividendTracker.setup(address(router), pair); _isExcludedFromFees[_msgSender()] = true; _isExcludedFromFees[address(this)] = true; _isExcludedFromFees[address(router)] = true; _isExcludedFromFees[address(dividendTracker)] = true; _mint(_msgSender(), _totalSupply); _approve(_msgSender(), address(router), type(uint256).max); } receive() external payable {} function setSwapTokenAt(uint256 value) external onlyOwner { require( value <= _totalSupply / 50, "Value must be less than or equal to SUPPLY / 50" ); swapTokenAt = value; emit UpdateSwapTokenAt(value); } function openTrading() external onlyOwner { _tradingEnable = true; emit OpenTrading(); } function getIsExcludedFromFees( address _address ) external view returns (bool) { return _isExcludedFromFees[_address]; } function excludedFromFees( address _address, bool _value ) external onlyOwner { _isExcludedFromFees[_address] = _value; } function disableLimits() external onlyOwner { require(limit, "Limits already removed"); limit = false; _maxWallet = _totalSupply; _maxAmount = _totalSupply; emit DisableLimits(); } function _transfer( address from, address to, uint256 amount ) internal override { if ( _isExcludedFromFees[from] || _isExcludedFromFees[to] || (to != pair && from != pair) || _swaping ) { super._transfer(from, to, amount); try dividendTracker.setBalance(from, balanceOf(from)) {} catch {} try dividendTracker.setBalance(to, balanceOf(to)) {} catch {} return; } require(_tradingEnable, "Trading is not open"); if (limit) { if ((from == pair || to == pair) && amount > _maxAmount) { revert MaxTxAmountExceeded(); } if (to != pair && balanceOf(to) + amount > _maxWallet) { revert MaxWalletAmountExceeded(); } } uint256 _totalFees = (amount * TAX) / 100; if (to == pair) { _sellCount += 1; _totalFees = (amount * (_sellCount > (_reduceTaxAt / 2) ? TAX : _initialTax)) / 100; if (balanceOf(address(this)) >= swapTokenAt) { swapBack(); } } if (from == pair) { _buyCount += 1; _totalFees = (amount * (_buyCount > _reduceTaxAt ? TAX : _initialTax)) / 100; } if (_totalFees > 0) { super._transfer(from, address(this), _totalFees); amount = amount - _totalFees; } super._transfer(from, to, amount); try dividendTracker.setBalance(from, balanceOf(from)) {} catch {} try dividendTracker.setBalance(to, balanceOf(to)) {} catch {} } function swapBack() public onSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = router.WETH(); _approve(address(this), address(router), swapTokenAt); router.swapExactTokensForETHSupportingFeeOnTransferTokens( swapTokenAt, 0, path, address(this), block.timestamp ); uint256 balance = address(this).balance; if (balance > 0) { uint256 marketingAmount = balance / 2; uint256 treasuryAmount = balance - marketingAmount; (bool sent, ) = payable(marketingWallet).call{ value: marketingAmount }(""); require(sent, "Failed to send Ether to marketing wallet"); (sent, ) = payable(treasuryWallet).call{value: treasuryAmount}(""); require(sent, "Failed to send Ether to treasury wallet"); } emit SwapBack(swapTokenAt); } function updateDividendTracker(address newAddress) external onlyOwner { require( newAddress != address(dividendTracker), "The dividend tracker already has that address" ); ITAOXDividendTracker newDividendTracker = ITAOXDividendTracker( newAddress ); newDividendTracker.setup(address(router), pair); dividendTracker = newDividendTracker; } function setMarketingWL(address _marketingWallet) external { if (_msgSender() != owner() && _msgSender() != marketingWallet) { revert NotAuthorized(); } marketingWallet = _marketingWallet; emit UpdateMarketingWL(_marketingWallet); } function setTreasuryWL(address _treasury) external { if (_msgSender() != owner() && _msgSender() != marketingWallet) { revert NotAuthorized(); } treasuryWallet = _treasury; emit UpdateTreasuryWL(_treasury); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.23; interface ITAOXDividendTracker { function setup(address router, address pairt) external; function setBalance(address account, uint256 newBalance) external; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.23; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair( address tokenA, address tokenB ) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair( address tokenA, address tokenB ) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.23; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable returns (uint[] memory amounts); function swapTokensForExactETH( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactTokensForETH( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapETHForExactTokens( uint amountOut, address[] calldata path, address to, uint deadline ) external payable returns (uint[] memory amounts); function quote( uint amountA, uint reserveA, uint reserveB ) external pure returns (uint amountB); function getAmountOut( uint amountIn, uint reserveIn, uint reserveOut ) external pure returns (uint amountOut); function getAmountIn( uint amountOut, uint reserveIn, uint reserveOut ) external pure returns (uint amountIn); function getAmountsOut( uint amountIn, address[] calldata path ) external view returns (uint[] memory amounts); function getAmountsIn( uint amountOut, address[] calldata path ) external view returns (uint[] memory amounts); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.23; import "./IUniswapV2Router01.sol"; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_dividendTracker","type":"address"},{"internalType":"address","name":"_treasury","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"MaxTxAmountExceeded","type":"error"},{"inputs":[],"name":"MaxWalletAmountExceeded","type":"error"},{"inputs":[],"name":"NotAuthorized","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":[],"name":"DisableLimits","type":"event"},{"anonymous":false,"inputs":[],"name":"OpenTrading","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":"amount","type":"uint256"}],"name":"SwapBack","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"UpdateMarketingWL","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"UpdateSwapTokenAt","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_treasury","type":"address"}],"name":"UpdateTreasuryWL","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract ITAOXDividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"excludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getIsExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"setMarketingWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setSwapTokenAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasury","type":"address"}],"name":"setTreasuryWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapBack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokenAt","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":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a0604052737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff168152506a52b7d2dcc80cd2e40000006007556005600955601e600a556014600b555f600c555f600d5560c860075462000082919062000b34565b600e55600e54600f556001601160146101000a81548160ff0219169083151502179055506103e8600754620000b8919062000b34565b6012555f60145f6101000a81548160ff021916908315150217905550348015620000e0575f80fd5b506040516200455c3803806200455c833981810160405281019062000106919062000bd0565b6040518060400160405280600481526020017f54414f78000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f54414f78000000000000000000000000000000000000000000000000000000008152506200019262000186620006ce60201b60201c565b620006d560201b60201c565b8160049081620001a3919062000e70565b508060059081620001b5919062000e70565b505050620001c8620006ce60201b60201c565b601060016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060115f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000294573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002ba919062000f54565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000322573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000348919062000f54565b6040518363ffffffff1660e01b81526004016200036792919062000f95565b6020604051808303815f875af115801562000384573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620003aa919062000f54565b60085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632d34ba7960805160085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b8152600401620004aa92919062000f95565b5f604051808303815f87803b158015620004c2575f80fd5b505af1158015620004d5573d5f803e3d5ffd5b50505050600160135f620004ee620006ce60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160135f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160135f60805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160135f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506200068262000673620006ce60201b60201c565b6007546200079660201b60201c565b620006c662000696620006ce60201b60201c565b6080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620008fc60201b60201c565b5050620011cc565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000807576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007fe906200101e565b60405180910390fd5b6200081a5f838362000ac760201b60201c565b8060035f8282546200082d91906200103e565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008dd919062001089565b60405180910390a3620008f85f838362000acc60201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200096d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009649062001118565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009de576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009d590620011ac565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000aba919062001089565b60405180910390a3505050565b505050565b505050565b5f819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000b408262000ad1565b915062000b4d8362000ad1565b92508262000b605762000b5f62000ada565b5b828204905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000b9a8262000b6f565b9050919050565b62000bac8162000b8e565b811462000bb7575f80fd5b50565b5f8151905062000bca8162000ba1565b92915050565b5f806040838503121562000be95762000be862000b6b565b5b5f62000bf88582860162000bba565b925050602062000c0b8582860162000bba565b9150509250929050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000c9157607f821691505b60208210810362000ca75762000ca662000c4c565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000d0b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000cce565b62000d17868362000cce565b95508019841693508086168417925050509392505050565b5f819050919050565b5f62000d5862000d5262000d4c8462000ad1565b62000d2f565b62000ad1565b9050919050565b5f819050919050565b62000d738362000d38565b62000d8b62000d828262000d5f565b84845462000cda565b825550505050565b5f90565b62000da162000d93565b62000dae81848462000d68565b505050565b5b8181101562000dd55762000dc95f8262000d97565b60018101905062000db4565b5050565b601f82111562000e245762000dee8162000cad565b62000df98462000cbf565b8101602085101562000e09578190505b62000e2162000e188562000cbf565b83018262000db3565b50505b505050565b5f82821c905092915050565b5f62000e465f198460080262000e29565b1980831691505092915050565b5f62000e60838362000e35565b9150826002028217905092915050565b62000e7b8262000c15565b67ffffffffffffffff81111562000e975762000e9662000c1f565b5b62000ea3825462000c79565b62000eb082828562000dd9565b5f60209050601f83116001811462000ee6575f841562000ed1578287015190505b62000edd858262000e53565b86555062000f4c565b601f19841662000ef68662000cad565b5f5b8281101562000f1f5784890151825560018201915060208501945060208101905062000ef8565b8683101562000f3f578489015162000f3b601f89168262000e35565b8355505b6001600288020188555050505b505050505050565b5f6020828403121562000f6c5762000f6b62000b6b565b5b5f62000f7b8482850162000bba565b91505092915050565b62000f8f8162000b8e565b82525050565b5f60408201905062000faa5f83018562000f84565b62000fb9602083018462000f84565b9392505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62001006601f8362000fc0565b9150620010138262000fd0565b602082019050919050565b5f6020820190508181035f830152620010378162000ff8565b9050919050565b5f6200104a8262000ad1565b9150620010578362000ad1565b925082820190508082111562001072576200107162000b07565b5b92915050565b620010838162000ad1565b82525050565b5f6020820190506200109e5f83018462001078565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6200110060248362000fc0565b91506200110d82620010a4565b604082019050919050565b5f6020820190508181035f8301526200113181620010f2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6200119460228362000fc0565b9150620011a18262001138565b604082019050919050565b5f6020820190508181035f830152620011c58162001186565b9050919050565b608051613362620011fa5f395f8181610a9e01528181610b7d01528181610ba601526111c801526133625ff3fe6080604052600436106101c5575f3560e01c806375f0a874116100f6578063a457c2d711610094578063c9567bf911610063578063c9567bf914610636578063dd62ed3e1461064c578063f2fde38b14610688578063f928364c146106b0576101cc565b8063a457c2d71461056a578063a4d66daf146105a6578063a8aa1b31146105d0578063a9059cbb146105fa576101cc565b8063864b3167116100d0578063864b3167146104c657806388bdd9be146104ee5780638da5cb5b1461051657806395d89b4114610540576101cc565b806375f0a874146104385780637b16cea0146104625780637fec621e1461049e576101cc565b806332fc4c01116101635780636ac5eeee1161013d5780636ac5eeee146103a657806370a08231146103bc578063715018a6146103f857806373bc5a361461040e576101cc565b806332fc4c011461031857806339509351146103405780634626402b1461037c576101cc565b806318160ddd1161019f57806318160ddd1461025e57806323b872dd146102885780632c1f5216146102c4578063313ce567146102ee576101cc565b806306fdde03146101d0578063095ea7b3146101fa57806316697fc514610236576101cc565b366101cc57005b5f80fd5b3480156101db575f80fd5b506101e46106c6565b6040516101f1919061240e565b60405180910390f35b348015610205575f80fd5b50610220600480360381019061021b91906124bf565b610756565b60405161022d9190612517565b60405180910390f35b348015610241575f80fd5b5061025c6004803603810190610257919061255a565b610778565b005b348015610269575f80fd5b506102726107d8565b60405161027f91906125a7565b60405180910390f35b348015610293575f80fd5b506102ae60048036038101906102a991906125c0565b6107e1565b6040516102bb9190612517565b60405180910390f35b3480156102cf575f80fd5b506102d861080f565b6040516102e5919061266b565b60405180910390f35b3480156102f9575f80fd5b50610302610834565b60405161030f919061269f565b60405180910390f35b348015610323575f80fd5b5061033e600480360381019061033991906126b8565b61083c565b005b34801561034b575f80fd5b50610366600480360381019061036191906124bf565b61098c565b6040516103739190612517565b60405180910390f35b348015610387575f80fd5b506103906109c2565b60405161039d91906126f2565b60405180910390f35b3480156103b1575f80fd5b506103ba6109e7565b005b3480156103c7575f80fd5b506103e260048036038101906103dd91906126b8565b610e4d565b6040516103ef91906125a7565b60405180910390f35b348015610403575f80fd5b5061040c610e93565b005b348015610419575f80fd5b50610422610ea6565b60405161042f91906125a7565b60405180910390f35b348015610443575f80fd5b5061044c610eac565b60405161045991906126f2565b60405180910390f35b34801561046d575f80fd5b50610488600480360381019061048391906126b8565b610ed2565b6040516104959190612517565b60405180910390f35b3480156104a9575f80fd5b506104c460048036038101906104bf91906126b8565b610f24565b005b3480156104d1575f80fd5b506104ec60048036038101906104e7919061270b565b611075565b005b3480156104f9575f80fd5b50610514600480360381019061050f91906126b8565b61110f565b005b348015610521575f80fd5b5061052a611297565b60405161053791906126f2565b60405180910390f35b34801561054b575f80fd5b506105546112be565b604051610561919061240e565b60405180910390f35b348015610575575f80fd5b50610590600480360381019061058b91906124bf565b61134e565b60405161059d9190612517565b60405180910390f35b3480156105b1575f80fd5b506105ba6113c3565b6040516105c79190612517565b60405180910390f35b3480156105db575f80fd5b506105e46113d6565b6040516105f191906126f2565b60405180910390f35b348015610605575f80fd5b50610620600480360381019061061b91906124bf565b6113fb565b60405161062d9190612517565b60405180910390f35b348015610641575f80fd5b5061064a61141d565b005b348015610657575f80fd5b50610672600480360381019061066d9190612736565b61146d565b60405161067f91906125a7565b60405180910390f35b348015610693575f80fd5b506106ae60048036038101906106a991906126b8565b6114ef565b005b3480156106bb575f80fd5b506106c4611571565b005b6060600480546106d5906127a1565b80601f0160208091040260200160405190810160405280929190818152602001828054610701906127a1565b801561074c5780601f106107235761010080835404028352916020019161074c565b820191905f5260205f20905b81548152906001019060200180831161072f57829003601f168201915b5050505050905090565b5f80610760611622565b905061076d818585611629565b600191505092915050565b6107806117ec565b8060135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f600354905090565b5f806107eb611622565b90506107f885828561186a565b6108038585856118f5565b60019150509392505050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b610844611297565b73ffffffffffffffffffffffffffffffffffffffff16610862611622565b73ffffffffffffffffffffffffffffffffffffffff16141580156108db5750601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108c2611622565b73ffffffffffffffffffffffffffffffffffffffff1614155b15610912576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060115f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fbd5aa8e04dbf8cd0c0a2cf0d7f15cab9d94d85af3f5d347dc8359b9194610f028160405161098191906126f2565b60405180910390a150565b5f80610996611622565b90506109b78185856109a8858961146d565b6109b291906127fe565b611629565b600191505092915050565b60115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600160145f6101000a81548160ff0219169083151502179055505f600267ffffffffffffffff811115610a1d57610a1c612831565b5b604051908082528060200260200182016040528015610a4b5781602001602082028036833780820191505090505b50905030815f81518110610a6257610a6161285e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b05573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b29919061289f565b81600181518110610b3d57610b3c61285e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050610ba4307f0000000000000000000000000000000000000000000000000000000000000000601254611629565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9476012545f8430426040518663ffffffff1660e01b8152600401610c079594939291906129ba565b5f604051808303815f87803b158015610c1e575f80fd5b505af1158015610c30573d5f803e3d5ffd5b505050505f4790505f811115610df7575f600282610c4e9190612a3f565b90505f8183610c5d9190612a6f565b90505f601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051610ca690612acf565b5f6040518083038185875af1925050503d805f8114610ce0576040519150601f19603f3d011682016040523d82523d5f602084013e610ce5565b606091505b5050905080610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2090612b53565b60405180910390fd5b60115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610d6e90612acf565b5f6040518083038185875af1925050503d805f8114610da8576040519150601f19603f3d011682016040523d82523d5f602084013e610dad565b606091505b50508091505080610df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dea90612be1565b60405180910390fd5b5050505b7fd851aeb8e2074b285cc12da5e2fbf79e642e38f62ef8e59590790c157491ee05601254604051610e2891906125a7565b60405180910390a150505f60145f6101000a81548160ff021916908315150217905550565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610e9b6117ec565b610ea45f61204a565b565b60125481565b601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60135f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b610f2c611297565b73ffffffffffffffffffffffffffffffffffffffff16610f4a611622565b73ffffffffffffffffffffffffffffffffffffffff1614158015610fc35750601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610faa611622565b73ffffffffffffffffffffffffffffffffffffffff1614155b15610ffa576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80601060016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507ffd0b0a42994d3cda2ac8e0f517a2c764afa4cdebeac6d7cf6da7879ba15b0e728160405161106a91906126f2565b60405180910390a150565b61107d6117ec565b603260075461108c9190612a3f565b8111156110ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c590612c6f565b60405180910390fd5b806012819055507f4cba14fd4026630e64b03f8c6a0130ca310c15a5376cf7f6735c66880bb7bceb8160405161110491906125a7565b60405180910390a150565b6111176117ec565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119d90612cfd565b60405180910390fd5b5f8190508073ffffffffffffffffffffffffffffffffffffffff16632d34ba797f000000000000000000000000000000000000000000000000000000000000000060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b8152600401611226929190612d1b565b5f604051808303815f87803b15801561123d575f80fd5b505af115801561124f573d5f803e3d5ffd5b505050508060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546112cd906127a1565b80601f01602080910402602001604051908101604052809291908181526020018280546112f9906127a1565b80156113445780601f1061131b57610100808354040283529160200191611344565b820191905f5260205f20905b81548152906001019060200180831161132757829003601f168201915b5050505050905090565b5f80611358611622565b90505f611365828661146d565b9050838110156113aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a190612db2565b60405180910390fd5b6113b78286868403611629565b60019250505092915050565b601160149054906101000a900460ff1681565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f80611405611622565b90506114128185856118f5565b600191505092915050565b6114256117ec565b600160105f6101000a81548160ff0219169083151502179055507f51cd7cc33235a1c89f708fecec535bf7cca0f94ed05216751befb052ca83e67960405160405180910390a1565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6114f76117ec565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155c90612e40565b60405180910390fd5b61156e8161204a565b50565b6115796117ec565b601160149054906101000a900460ff166115c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bf90612ea8565b60405180910390fd5b5f601160146101000a81548160ff021916908315150217905550600754600f81905550600754600e819055507fe9070d302280cd857033f56893647494c1410643fe239daabee29e9292199b3d60405160405180910390a1565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e90612f36565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fc90612fc4565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516117df91906125a7565b60405180910390a3505050565b6117f4611622565b73ffffffffffffffffffffffffffffffffffffffff16611812611297565b73ffffffffffffffffffffffffffffffffffffffff1614611868576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185f9061302c565b60405180910390fd5b565b5f611875848461146d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146118ef57818110156118e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d890613094565b60405180910390fd5b6118ee8484848403611629565b5b50505050565b60135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611990575060135f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80611a41575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611a40575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b80611a57575060145f9054906101000a900460ff165b15611b8657611a6783838361210b565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc84611aae86610e4d565b6040518363ffffffff1660e01b8152600401611acb9291906130b2565b5f604051808303815f87803b158015611ae2575f80fd5b505af1925050508015611af3575060015b5060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc83611b3b85610e4d565b6040518363ffffffff1660e01b8152600401611b589291906130b2565b5f604051808303815f87803b158015611b6f575f80fd5b505af1925050508015611b80575060015b50612045565b60105f9054906101000a900460ff16611bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcb90613123565b60405180910390fd5b601160149054906101000a900460ff1615611d7d5760085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611c90575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8015611c9d5750600e5481115b15611cd4576040517f801bc44b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611d455750600f5481611d3984610e4d565b611d4391906127fe565b115b15611d7c576040517fa9a44dff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f606460095483611d8e9190613141565b611d989190612a3f565b905060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e5e576001600d5f828254611e0091906127fe565b9250508190555060646002600b54611e189190612a3f565b600d5411611e2857600a54611e2c565b6009545b83611e379190613141565b611e419190612a3f565b9050601254611e4f30610e4d565b10611e5d57611e5c6109e7565b5b5b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611efc576001600c5f828254611ec491906127fe565b925050819055506064600b54600c5411611ee057600a54611ee4565b6009545b83611eef9190613141565b611ef99190612a3f565b90505b5f811115611f1e57611f0f84308361210b565b8082611f1b9190612a6f565b91505b611f2984848461210b565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc85611f7087610e4d565b6040518363ffffffff1660e01b8152600401611f8d9291906130b2565b5f604051808303815f87803b158015611fa4575f80fd5b505af1925050508015611fb5575060015b5060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc84611ffd86610e4d565b6040518363ffffffff1660e01b815260040161201a9291906130b2565b5f604051808303815f87803b158015612031575f80fd5b505af1925050508015612042575060015b50505b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612179576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612170906131f2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036121e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121de90613280565b60405180910390fd5b6121f283838361237a565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226d9061330e565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161236191906125a7565b60405180910390a361237484848461237f565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156123bb5780820151818401526020810190506123a0565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6123e082612384565b6123ea818561238e565b93506123fa81856020860161239e565b612403816123c6565b840191505092915050565b5f6020820190508181035f83015261242681846123d6565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61245b82612432565b9050919050565b61246b81612451565b8114612475575f80fd5b50565b5f8135905061248681612462565b92915050565b5f819050919050565b61249e8161248c565b81146124a8575f80fd5b50565b5f813590506124b981612495565b92915050565b5f80604083850312156124d5576124d461242e565b5b5f6124e285828601612478565b92505060206124f3858286016124ab565b9150509250929050565b5f8115159050919050565b612511816124fd565b82525050565b5f60208201905061252a5f830184612508565b92915050565b612539816124fd565b8114612543575f80fd5b50565b5f8135905061255481612530565b92915050565b5f80604083850312156125705761256f61242e565b5b5f61257d85828601612478565b925050602061258e85828601612546565b9150509250929050565b6125a18161248c565b82525050565b5f6020820190506125ba5f830184612598565b92915050565b5f805f606084860312156125d7576125d661242e565b5b5f6125e486828701612478565b93505060206125f586828701612478565b9250506040612606868287016124ab565b9150509250925092565b5f819050919050565b5f61263361262e61262984612432565b612610565b612432565b9050919050565b5f61264482612619565b9050919050565b5f6126558261263a565b9050919050565b6126658161264b565b82525050565b5f60208201905061267e5f83018461265c565b92915050565b5f60ff82169050919050565b61269981612684565b82525050565b5f6020820190506126b25f830184612690565b92915050565b5f602082840312156126cd576126cc61242e565b5b5f6126da84828501612478565b91505092915050565b6126ec81612451565b82525050565b5f6020820190506127055f8301846126e3565b92915050565b5f602082840312156127205761271f61242e565b5b5f61272d848285016124ab565b91505092915050565b5f806040838503121561274c5761274b61242e565b5b5f61275985828601612478565b925050602061276a85828601612478565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806127b857607f821691505b6020821081036127cb576127ca612774565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6128088261248c565b91506128138361248c565b925082820190508082111561282b5761282a6127d1565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061289981612462565b92915050565b5f602082840312156128b4576128b361242e565b5b5f6128c18482850161288b565b91505092915050565b5f819050919050565b5f6128ed6128e86128e3846128ca565b612610565b61248c565b9050919050565b6128fd816128d3565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61293581612451565b82525050565b5f612946838361292c565b60208301905092915050565b5f602082019050919050565b5f61296882612903565b612972818561290d565b935061297d8361291d565b805f5b838110156129ad578151612994888261293b565b975061299f83612952565b925050600181019050612980565b5085935050505092915050565b5f60a0820190506129cd5f830188612598565b6129da60208301876128f4565b81810360408301526129ec818661295e565b90506129fb60608301856126e3565b612a086080830184612598565b9695505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612a498261248c565b9150612a548361248c565b925082612a6457612a63612a12565b5b828204905092915050565b5f612a798261248c565b9150612a848361248c565b9250828203905081811115612a9c57612a9b6127d1565b5b92915050565b5f81905092915050565b50565b5f612aba5f83612aa2565b9150612ac582612aac565b5f82019050919050565b5f612ad982612aaf565b9150819050919050565b7f4661696c656420746f2073656e6420457468657220746f206d61726b6574696e5f8201527f672077616c6c6574000000000000000000000000000000000000000000000000602082015250565b5f612b3d60288361238e565b9150612b4882612ae3565b604082019050919050565b5f6020820190508181035f830152612b6a81612b31565b9050919050565b7f4661696c656420746f2073656e6420457468657220746f2074726561737572795f8201527f2077616c6c657400000000000000000000000000000000000000000000000000602082015250565b5f612bcb60278361238e565b9150612bd682612b71565b604082019050919050565b5f6020820190508181035f830152612bf881612bbf565b9050919050565b7f56616c7565206d757374206265206c657373207468616e206f7220657175616c5f8201527f20746f20535550504c59202f2035300000000000000000000000000000000000602082015250565b5f612c59602f8361238e565b9150612c6482612bff565b604082019050919050565b5f6020820190508181035f830152612c8681612c4d565b9050919050565b7f546865206469766964656e6420747261636b657220616c7265616479206861735f8201527f2074686174206164647265737300000000000000000000000000000000000000602082015250565b5f612ce7602d8361238e565b9150612cf282612c8d565b604082019050919050565b5f6020820190508181035f830152612d1481612cdb565b9050919050565b5f604082019050612d2e5f8301856126e3565b612d3b60208301846126e3565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612d9c60258361238e565b9150612da782612d42565b604082019050919050565b5f6020820190508181035f830152612dc981612d90565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612e2a60268361238e565b9150612e3582612dd0565b604082019050919050565b5f6020820190508181035f830152612e5781612e1e565b9050919050565b7f4c696d69747320616c72656164792072656d6f766564000000000000000000005f82015250565b5f612e9260168361238e565b9150612e9d82612e5e565b602082019050919050565b5f6020820190508181035f830152612ebf81612e86565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612f2060248361238e565b9150612f2b82612ec6565b604082019050919050565b5f6020820190508181035f830152612f4d81612f14565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612fae60228361238e565b9150612fb982612f54565b604082019050919050565b5f6020820190508181035f830152612fdb81612fa2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61301660208361238e565b915061302182612fe2565b602082019050919050565b5f6020820190508181035f8301526130438161300a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61307e601d8361238e565b91506130898261304a565b602082019050919050565b5f6020820190508181035f8301526130ab81613072565b9050919050565b5f6040820190506130c55f8301856126e3565b6130d26020830184612598565b9392505050565b7f54726164696e67206973206e6f74206f70656e000000000000000000000000005f82015250565b5f61310d60138361238e565b9150613118826130d9565b602082019050919050565b5f6020820190508181035f83015261313a81613101565b9050919050565b5f61314b8261248c565b91506131568361248c565b92508282026131648161248c565b9150828204841483151761317b5761317a6127d1565b5b5092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6131dc60258361238e565b91506131e782613182565b604082019050919050565b5f6020820190508181035f830152613209816131d0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61326a60238361238e565b915061327582613210565b604082019050919050565b5f6020820190508181035f8301526132978161325e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6132f860268361238e565b91506133038261329e565b604082019050919050565b5f6020820190508181035f830152613325816132ec565b905091905056fea2646970667358221220c6c3390a69240853079134713db3d8ba2f327460f58967f445232467063b928064736f6c63430008170033000000000000000000000000a8a465f7c7ff8c30e9f4e5f213c33db8b0973634000000000000000000000000ed644e2094f3f6e9bad4296a6d70bbde41870c09
Deployed Bytecode
0x6080604052600436106101c5575f3560e01c806375f0a874116100f6578063a457c2d711610094578063c9567bf911610063578063c9567bf914610636578063dd62ed3e1461064c578063f2fde38b14610688578063f928364c146106b0576101cc565b8063a457c2d71461056a578063a4d66daf146105a6578063a8aa1b31146105d0578063a9059cbb146105fa576101cc565b8063864b3167116100d0578063864b3167146104c657806388bdd9be146104ee5780638da5cb5b1461051657806395d89b4114610540576101cc565b806375f0a874146104385780637b16cea0146104625780637fec621e1461049e576101cc565b806332fc4c01116101635780636ac5eeee1161013d5780636ac5eeee146103a657806370a08231146103bc578063715018a6146103f857806373bc5a361461040e576101cc565b806332fc4c011461031857806339509351146103405780634626402b1461037c576101cc565b806318160ddd1161019f57806318160ddd1461025e57806323b872dd146102885780632c1f5216146102c4578063313ce567146102ee576101cc565b806306fdde03146101d0578063095ea7b3146101fa57806316697fc514610236576101cc565b366101cc57005b5f80fd5b3480156101db575f80fd5b506101e46106c6565b6040516101f1919061240e565b60405180910390f35b348015610205575f80fd5b50610220600480360381019061021b91906124bf565b610756565b60405161022d9190612517565b60405180910390f35b348015610241575f80fd5b5061025c6004803603810190610257919061255a565b610778565b005b348015610269575f80fd5b506102726107d8565b60405161027f91906125a7565b60405180910390f35b348015610293575f80fd5b506102ae60048036038101906102a991906125c0565b6107e1565b6040516102bb9190612517565b60405180910390f35b3480156102cf575f80fd5b506102d861080f565b6040516102e5919061266b565b60405180910390f35b3480156102f9575f80fd5b50610302610834565b60405161030f919061269f565b60405180910390f35b348015610323575f80fd5b5061033e600480360381019061033991906126b8565b61083c565b005b34801561034b575f80fd5b50610366600480360381019061036191906124bf565b61098c565b6040516103739190612517565b60405180910390f35b348015610387575f80fd5b506103906109c2565b60405161039d91906126f2565b60405180910390f35b3480156103b1575f80fd5b506103ba6109e7565b005b3480156103c7575f80fd5b506103e260048036038101906103dd91906126b8565b610e4d565b6040516103ef91906125a7565b60405180910390f35b348015610403575f80fd5b5061040c610e93565b005b348015610419575f80fd5b50610422610ea6565b60405161042f91906125a7565b60405180910390f35b348015610443575f80fd5b5061044c610eac565b60405161045991906126f2565b60405180910390f35b34801561046d575f80fd5b50610488600480360381019061048391906126b8565b610ed2565b6040516104959190612517565b60405180910390f35b3480156104a9575f80fd5b506104c460048036038101906104bf91906126b8565b610f24565b005b3480156104d1575f80fd5b506104ec60048036038101906104e7919061270b565b611075565b005b3480156104f9575f80fd5b50610514600480360381019061050f91906126b8565b61110f565b005b348015610521575f80fd5b5061052a611297565b60405161053791906126f2565b60405180910390f35b34801561054b575f80fd5b506105546112be565b604051610561919061240e565b60405180910390f35b348015610575575f80fd5b50610590600480360381019061058b91906124bf565b61134e565b60405161059d9190612517565b60405180910390f35b3480156105b1575f80fd5b506105ba6113c3565b6040516105c79190612517565b60405180910390f35b3480156105db575f80fd5b506105e46113d6565b6040516105f191906126f2565b60405180910390f35b348015610605575f80fd5b50610620600480360381019061061b91906124bf565b6113fb565b60405161062d9190612517565b60405180910390f35b348015610641575f80fd5b5061064a61141d565b005b348015610657575f80fd5b50610672600480360381019061066d9190612736565b61146d565b60405161067f91906125a7565b60405180910390f35b348015610693575f80fd5b506106ae60048036038101906106a991906126b8565b6114ef565b005b3480156106bb575f80fd5b506106c4611571565b005b6060600480546106d5906127a1565b80601f0160208091040260200160405190810160405280929190818152602001828054610701906127a1565b801561074c5780601f106107235761010080835404028352916020019161074c565b820191905f5260205f20905b81548152906001019060200180831161072f57829003601f168201915b5050505050905090565b5f80610760611622565b905061076d818585611629565b600191505092915050565b6107806117ec565b8060135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f600354905090565b5f806107eb611622565b90506107f885828561186a565b6108038585856118f5565b60019150509392505050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b610844611297565b73ffffffffffffffffffffffffffffffffffffffff16610862611622565b73ffffffffffffffffffffffffffffffffffffffff16141580156108db5750601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108c2611622565b73ffffffffffffffffffffffffffffffffffffffff1614155b15610912576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060115f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fbd5aa8e04dbf8cd0c0a2cf0d7f15cab9d94d85af3f5d347dc8359b9194610f028160405161098191906126f2565b60405180910390a150565b5f80610996611622565b90506109b78185856109a8858961146d565b6109b291906127fe565b611629565b600191505092915050565b60115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600160145f6101000a81548160ff0219169083151502179055505f600267ffffffffffffffff811115610a1d57610a1c612831565b5b604051908082528060200260200182016040528015610a4b5781602001602082028036833780820191505090505b50905030815f81518110610a6257610a6161285e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b05573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b29919061289f565b81600181518110610b3d57610b3c61285e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050610ba4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d601254611629565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9476012545f8430426040518663ffffffff1660e01b8152600401610c079594939291906129ba565b5f604051808303815f87803b158015610c1e575f80fd5b505af1158015610c30573d5f803e3d5ffd5b505050505f4790505f811115610df7575f600282610c4e9190612a3f565b90505f8183610c5d9190612a6f565b90505f601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051610ca690612acf565b5f6040518083038185875af1925050503d805f8114610ce0576040519150601f19603f3d011682016040523d82523d5f602084013e610ce5565b606091505b5050905080610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2090612b53565b60405180910390fd5b60115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610d6e90612acf565b5f6040518083038185875af1925050503d805f8114610da8576040519150601f19603f3d011682016040523d82523d5f602084013e610dad565b606091505b50508091505080610df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dea90612be1565b60405180910390fd5b5050505b7fd851aeb8e2074b285cc12da5e2fbf79e642e38f62ef8e59590790c157491ee05601254604051610e2891906125a7565b60405180910390a150505f60145f6101000a81548160ff021916908315150217905550565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610e9b6117ec565b610ea45f61204a565b565b60125481565b601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60135f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b610f2c611297565b73ffffffffffffffffffffffffffffffffffffffff16610f4a611622565b73ffffffffffffffffffffffffffffffffffffffff1614158015610fc35750601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610faa611622565b73ffffffffffffffffffffffffffffffffffffffff1614155b15610ffa576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80601060016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507ffd0b0a42994d3cda2ac8e0f517a2c764afa4cdebeac6d7cf6da7879ba15b0e728160405161106a91906126f2565b60405180910390a150565b61107d6117ec565b603260075461108c9190612a3f565b8111156110ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c590612c6f565b60405180910390fd5b806012819055507f4cba14fd4026630e64b03f8c6a0130ca310c15a5376cf7f6735c66880bb7bceb8160405161110491906125a7565b60405180910390a150565b6111176117ec565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119d90612cfd565b60405180910390fd5b5f8190508073ffffffffffffffffffffffffffffffffffffffff16632d34ba797f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b8152600401611226929190612d1b565b5f604051808303815f87803b15801561123d575f80fd5b505af115801561124f573d5f803e3d5ffd5b505050508060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546112cd906127a1565b80601f01602080910402602001604051908101604052809291908181526020018280546112f9906127a1565b80156113445780601f1061131b57610100808354040283529160200191611344565b820191905f5260205f20905b81548152906001019060200180831161132757829003601f168201915b5050505050905090565b5f80611358611622565b90505f611365828661146d565b9050838110156113aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a190612db2565b60405180910390fd5b6113b78286868403611629565b60019250505092915050565b601160149054906101000a900460ff1681565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f80611405611622565b90506114128185856118f5565b600191505092915050565b6114256117ec565b600160105f6101000a81548160ff0219169083151502179055507f51cd7cc33235a1c89f708fecec535bf7cca0f94ed05216751befb052ca83e67960405160405180910390a1565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6114f76117ec565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155c90612e40565b60405180910390fd5b61156e8161204a565b50565b6115796117ec565b601160149054906101000a900460ff166115c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bf90612ea8565b60405180910390fd5b5f601160146101000a81548160ff021916908315150217905550600754600f81905550600754600e819055507fe9070d302280cd857033f56893647494c1410643fe239daabee29e9292199b3d60405160405180910390a1565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e90612f36565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fc90612fc4565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516117df91906125a7565b60405180910390a3505050565b6117f4611622565b73ffffffffffffffffffffffffffffffffffffffff16611812611297565b73ffffffffffffffffffffffffffffffffffffffff1614611868576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185f9061302c565b60405180910390fd5b565b5f611875848461146d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146118ef57818110156118e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d890613094565b60405180910390fd5b6118ee8484848403611629565b5b50505050565b60135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611990575060135f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80611a41575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611a40575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b80611a57575060145f9054906101000a900460ff165b15611b8657611a6783838361210b565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc84611aae86610e4d565b6040518363ffffffff1660e01b8152600401611acb9291906130b2565b5f604051808303815f87803b158015611ae2575f80fd5b505af1925050508015611af3575060015b5060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc83611b3b85610e4d565b6040518363ffffffff1660e01b8152600401611b589291906130b2565b5f604051808303815f87803b158015611b6f575f80fd5b505af1925050508015611b80575060015b50612045565b60105f9054906101000a900460ff16611bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcb90613123565b60405180910390fd5b601160149054906101000a900460ff1615611d7d5760085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611c90575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8015611c9d5750600e5481115b15611cd4576040517f801bc44b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611d455750600f5481611d3984610e4d565b611d4391906127fe565b115b15611d7c576040517fa9a44dff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f606460095483611d8e9190613141565b611d989190612a3f565b905060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e5e576001600d5f828254611e0091906127fe565b9250508190555060646002600b54611e189190612a3f565b600d5411611e2857600a54611e2c565b6009545b83611e379190613141565b611e419190612a3f565b9050601254611e4f30610e4d565b10611e5d57611e5c6109e7565b5b5b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611efc576001600c5f828254611ec491906127fe565b925050819055506064600b54600c5411611ee057600a54611ee4565b6009545b83611eef9190613141565b611ef99190612a3f565b90505b5f811115611f1e57611f0f84308361210b565b8082611f1b9190612a6f565b91505b611f2984848461210b565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc85611f7087610e4d565b6040518363ffffffff1660e01b8152600401611f8d9291906130b2565b5f604051808303815f87803b158015611fa4575f80fd5b505af1925050508015611fb5575060015b5060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc84611ffd86610e4d565b6040518363ffffffff1660e01b815260040161201a9291906130b2565b5f604051808303815f87803b158015612031575f80fd5b505af1925050508015612042575060015b50505b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612179576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612170906131f2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036121e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121de90613280565b60405180910390fd5b6121f283838361237a565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226d9061330e565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161236191906125a7565b60405180910390a361237484848461237f565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156123bb5780820151818401526020810190506123a0565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6123e082612384565b6123ea818561238e565b93506123fa81856020860161239e565b612403816123c6565b840191505092915050565b5f6020820190508181035f83015261242681846123d6565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61245b82612432565b9050919050565b61246b81612451565b8114612475575f80fd5b50565b5f8135905061248681612462565b92915050565b5f819050919050565b61249e8161248c565b81146124a8575f80fd5b50565b5f813590506124b981612495565b92915050565b5f80604083850312156124d5576124d461242e565b5b5f6124e285828601612478565b92505060206124f3858286016124ab565b9150509250929050565b5f8115159050919050565b612511816124fd565b82525050565b5f60208201905061252a5f830184612508565b92915050565b612539816124fd565b8114612543575f80fd5b50565b5f8135905061255481612530565b92915050565b5f80604083850312156125705761256f61242e565b5b5f61257d85828601612478565b925050602061258e85828601612546565b9150509250929050565b6125a18161248c565b82525050565b5f6020820190506125ba5f830184612598565b92915050565b5f805f606084860312156125d7576125d661242e565b5b5f6125e486828701612478565b93505060206125f586828701612478565b9250506040612606868287016124ab565b9150509250925092565b5f819050919050565b5f61263361262e61262984612432565b612610565b612432565b9050919050565b5f61264482612619565b9050919050565b5f6126558261263a565b9050919050565b6126658161264b565b82525050565b5f60208201905061267e5f83018461265c565b92915050565b5f60ff82169050919050565b61269981612684565b82525050565b5f6020820190506126b25f830184612690565b92915050565b5f602082840312156126cd576126cc61242e565b5b5f6126da84828501612478565b91505092915050565b6126ec81612451565b82525050565b5f6020820190506127055f8301846126e3565b92915050565b5f602082840312156127205761271f61242e565b5b5f61272d848285016124ab565b91505092915050565b5f806040838503121561274c5761274b61242e565b5b5f61275985828601612478565b925050602061276a85828601612478565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806127b857607f821691505b6020821081036127cb576127ca612774565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6128088261248c565b91506128138361248c565b925082820190508082111561282b5761282a6127d1565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061289981612462565b92915050565b5f602082840312156128b4576128b361242e565b5b5f6128c18482850161288b565b91505092915050565b5f819050919050565b5f6128ed6128e86128e3846128ca565b612610565b61248c565b9050919050565b6128fd816128d3565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61293581612451565b82525050565b5f612946838361292c565b60208301905092915050565b5f602082019050919050565b5f61296882612903565b612972818561290d565b935061297d8361291d565b805f5b838110156129ad578151612994888261293b565b975061299f83612952565b925050600181019050612980565b5085935050505092915050565b5f60a0820190506129cd5f830188612598565b6129da60208301876128f4565b81810360408301526129ec818661295e565b90506129fb60608301856126e3565b612a086080830184612598565b9695505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612a498261248c565b9150612a548361248c565b925082612a6457612a63612a12565b5b828204905092915050565b5f612a798261248c565b9150612a848361248c565b9250828203905081811115612a9c57612a9b6127d1565b5b92915050565b5f81905092915050565b50565b5f612aba5f83612aa2565b9150612ac582612aac565b5f82019050919050565b5f612ad982612aaf565b9150819050919050565b7f4661696c656420746f2073656e6420457468657220746f206d61726b6574696e5f8201527f672077616c6c6574000000000000000000000000000000000000000000000000602082015250565b5f612b3d60288361238e565b9150612b4882612ae3565b604082019050919050565b5f6020820190508181035f830152612b6a81612b31565b9050919050565b7f4661696c656420746f2073656e6420457468657220746f2074726561737572795f8201527f2077616c6c657400000000000000000000000000000000000000000000000000602082015250565b5f612bcb60278361238e565b9150612bd682612b71565b604082019050919050565b5f6020820190508181035f830152612bf881612bbf565b9050919050565b7f56616c7565206d757374206265206c657373207468616e206f7220657175616c5f8201527f20746f20535550504c59202f2035300000000000000000000000000000000000602082015250565b5f612c59602f8361238e565b9150612c6482612bff565b604082019050919050565b5f6020820190508181035f830152612c8681612c4d565b9050919050565b7f546865206469766964656e6420747261636b657220616c7265616479206861735f8201527f2074686174206164647265737300000000000000000000000000000000000000602082015250565b5f612ce7602d8361238e565b9150612cf282612c8d565b604082019050919050565b5f6020820190508181035f830152612d1481612cdb565b9050919050565b5f604082019050612d2e5f8301856126e3565b612d3b60208301846126e3565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612d9c60258361238e565b9150612da782612d42565b604082019050919050565b5f6020820190508181035f830152612dc981612d90565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612e2a60268361238e565b9150612e3582612dd0565b604082019050919050565b5f6020820190508181035f830152612e5781612e1e565b9050919050565b7f4c696d69747320616c72656164792072656d6f766564000000000000000000005f82015250565b5f612e9260168361238e565b9150612e9d82612e5e565b602082019050919050565b5f6020820190508181035f830152612ebf81612e86565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612f2060248361238e565b9150612f2b82612ec6565b604082019050919050565b5f6020820190508181035f830152612f4d81612f14565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612fae60228361238e565b9150612fb982612f54565b604082019050919050565b5f6020820190508181035f830152612fdb81612fa2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61301660208361238e565b915061302182612fe2565b602082019050919050565b5f6020820190508181035f8301526130438161300a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61307e601d8361238e565b91506130898261304a565b602082019050919050565b5f6020820190508181035f8301526130ab81613072565b9050919050565b5f6040820190506130c55f8301856126e3565b6130d26020830184612598565b9392505050565b7f54726164696e67206973206e6f74206f70656e000000000000000000000000005f82015250565b5f61310d60138361238e565b9150613118826130d9565b602082019050919050565b5f6020820190508181035f83015261313a81613101565b9050919050565b5f61314b8261248c565b91506131568361248c565b92508282026131648161248c565b9150828204841483151761317b5761317a6127d1565b5b5092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6131dc60258361238e565b91506131e782613182565b604082019050919050565b5f6020820190508181035f830152613209816131d0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61326a60238361238e565b915061327582613210565b604082019050919050565b5f6020820190508181035f8301526132978161325e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6132f860268361238e565b91506133038261329e565b604082019050919050565b5f6020820190508181035f830152613325816132ec565b905091905056fea2646970667358221220c6c3390a69240853079134713db3d8ba2f327460f58967f445232467063b928064736f6c63430008170033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a8a465f7c7ff8c30e9f4e5f213c33db8b0973634000000000000000000000000ed644e2094f3f6e9bad4296a6d70bbde41870c09
-----Decoded View---------------
Arg [0] : _dividendTracker (address): 0xa8a465F7C7fF8c30E9F4E5F213C33DB8B0973634
Arg [1] : _treasury (address): 0xED644E2094f3f6e9bad4296a6d70BbdE41870C09
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000a8a465f7c7ff8c30e9f4e5f213c33db8b0973634
Arg [1] : 000000000000000000000000ed644e2094f3f6e9bad4296a6d70bbde41870c09
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.