More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 15 from a total of 15 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Renounce Ownersh... | 17922816 | 462 days ago | IN | 0 ETH | 0.00064439 | ||||
Update Trading F... | 17922814 | 462 days ago | IN | 0 ETH | 0.00130454 | ||||
Update Trading F... | 17922795 | 462 days ago | IN | 0 ETH | 0.00145642 | ||||
Approve | 17922785 | 462 days ago | IN | 0 ETH | 0.0019662 | ||||
Approve | 17922785 | 462 days ago | IN | 0 ETH | 0.00182439 | ||||
Approve | 17922785 | 462 days ago | IN | 0 ETH | 0.00182439 | ||||
Approve | 17922785 | 462 days ago | IN | 0 ETH | 0.00182439 | ||||
Approve | 17922755 | 462 days ago | IN | 0 ETH | 0.00142501 | ||||
Approve | 17922716 | 462 days ago | IN | 0 ETH | 0.00164413 | ||||
Approve | 17922716 | 462 days ago | IN | 0 ETH | 0.00164413 | ||||
Approve | 17922716 | 462 days ago | IN | 0 ETH | 0.00164413 | ||||
Approve | 17922713 | 462 days ago | IN | 0 ETH | 0.00160107 | ||||
Approve | 17922713 | 462 days ago | IN | 0 ETH | 0.00160107 | ||||
Approve | 17922713 | 462 days ago | IN | 0 ETH | 0.00160107 | ||||
0x60806040 | 17922707 | 462 days ago | IN | 0 ETH | 0.20640813 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
FutureTechBot
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: No License /* https://t.me/FutureTechBotEth https://t.me/FutureTechBotEth https://t.me/FutureTechBotEth */ pragma solidity 0.8.19; import "./ERC20.sol"; import "./ERC20Burnable.sol"; import "./Ownable.sol"; import "./IUniswapV2Factory.sol"; import "./IUniswapV2Pair.sol"; import "./IUniswapV2Router01.sol"; import "./IUniswapV2Router02.sol"; contract FutureTechBot is ERC20, ERC20Burnable, Ownable { uint256 public swapThreshold; uint256 private _mainPending; address public mainAddress; uint16[3] public mainFees; mapping (address => bool) public isExcludedFromFees; uint16[3] public totalFees; bool private _swapping; IUniswapV2Router02 public routerV2; address public pairV2; mapping (address => bool) public AMMPairs; mapping (address => bool) public isExcludedFromLimits; uint256 public maxBuyAmount; uint256 public maxSellAmount; event SwapThresholdUpdated(uint256 swapThreshold); event mainAddressUpdated(address mainAddress); event mainFeesUpdated(uint16 buyFee, uint16 sellFee, uint16 transferFee); event mainFeeSent(address recipient, uint256 amount); event ExcludeFromFees(address indexed account, bool isExcluded); event RouterV2Updated(address indexed routerV2); event AMMPairsUpdated(address indexed AMMPair, bool isPair); event ExcludeFromLimits(address indexed account, bool isExcluded); event MaxBuyAmountUpdated(uint256 maxBuyAmount); event MaxSellAmountUpdated(uint256 maxSellAmount); constructor() ERC20(unicode"FutureTechBot", unicode"FutureTechBot") { address supplyRecipient = 0x7d8037A77155Ead05A4d1d74279eD3bb8Fe2eB2C; updateSwapThreshold(9999999 * (10 ** decimals()) / 10); mainAddressSetup(0x7d8037A77155Ead05A4d1d74279eD3bb8Fe2eB2C); UpdateTradingFeatures(2000, 3500, 0); excludeFromFees(supplyRecipient, true); excludeFromFees(address(this), true); _updateRouterV2(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); excludeFromLimits(supplyRecipient, true); excludeFromLimits(address(this), true); excludeFromLimits(address(0), true); excludeFromLimits(mainAddress, true); SetMaxBuyLimitAmount(1000000 * (10 ** decimals()) / 10); SetMaxSellLimitAmount(1000000* (10 ** decimals()) / 10); _mint(supplyRecipient, 1000000 * (10 ** decimals()) / 10); _transferOwnership(0x7d8037A77155Ead05A4d1d74279eD3bb8Fe2eB2C); } receive() external payable {} function decimals() public pure override returns (uint8) { return 18; } function _swapTokensForCoin(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = routerV2.WETH(); _approve(address(this), address(routerV2), tokenAmount); routerV2.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount, 0, path, address(this), block.timestamp); } function updateSwapThreshold(uint256 _swapThreshold) public onlyOwner { swapThreshold = _swapThreshold; emit SwapThresholdUpdated(_swapThreshold); } function getAllPending() public view returns (uint256) { return 0 + _mainPending; } function mainAddressSetup(address _newAddress) public onlyOwner { mainAddress = _newAddress; excludeFromFees(_newAddress, true); emit mainAddressUpdated(_newAddress); } function UpdateTradingFeatures(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner { mainFees = [_buyFee, _sellFee, _transferFee]; totalFees[0] = 0 + mainFees[0]; totalFees[1] = 0 + mainFees[1]; totalFees[2] = 0 + mainFees[2]; require(totalFees[0] <= 3500 && totalFees[1] <= 3500 && totalFees[2] <= 3500, "TaxesDefaultRouter: Cannot exceed max total fee of 35%"); emit mainFeesUpdated(_buyFee, _sellFee, _transferFee); } function excludeFromFees(address account, bool isExcluded) public onlyOwner { isExcludedFromFees[account] = isExcluded; emit ExcludeFromFees(account, isExcluded); } function _transfer( address from, address to, uint256 amount ) internal override { bool canSwap = getAllPending() >= swapThreshold; if (!_swapping && !AMMPairs[from] && canSwap) { _swapping = true; if (false || _mainPending > 0) { uint256 token2Swap = 0 + _mainPending; bool success = false; _swapTokensForCoin(token2Swap); uint256 coinsReceived = address(this).balance; uint256 mainPortion = coinsReceived * _mainPending / token2Swap; if (mainPortion > 0) { (success,) = payable(address(mainAddress)).call{value: mainPortion}(""); require(success, "TaxesDefaultRouterWalletCoin: Fee transfer error"); emit mainFeeSent(mainAddress, mainPortion); } _mainPending = 0; } _swapping = false; } if (!_swapping && amount > 0 && to != address(routerV2) && !isExcludedFromFees[from] && !isExcludedFromFees[to]) { uint256 fees = 0; uint8 txType = 3; if (AMMPairs[from]) { if (totalFees[0] > 0) txType = 0; } else if (AMMPairs[to]) { if (totalFees[1] > 0) txType = 1; } else if (totalFees[2] > 0) txType = 2; if (txType < 3) { fees = amount * totalFees[txType] / 10000; amount -= fees; _mainPending += fees * mainFees[txType] / totalFees[txType]; } if (fees > 0) { super._transfer(from, address(this), fees); } } super._transfer(from, to, amount); } function _updateRouterV2(address router) private { routerV2 = IUniswapV2Router02(router); pairV2 = IUniswapV2Factory(routerV2.factory()).createPair(address(this), routerV2.WETH()); excludeFromLimits(router, true); _setAMMPair(pairV2, true); emit RouterV2Updated(router); } function setAMMPair(address pair, bool isPair) public onlyOwner { require(pair != pairV2, "DefaultRouter: Cannot remove initial pair from list"); _setAMMPair(pair, isPair); } function _setAMMPair(address pair, bool isPair) private { AMMPairs[pair] = isPair; if (isPair) { excludeFromLimits(pair, true); } emit AMMPairsUpdated(pair, isPair); } function excludeFromLimits(address account, bool isExcluded) public onlyOwner { isExcludedFromLimits[account] = isExcluded; emit ExcludeFromLimits(account, isExcluded); } function SetMaxBuyLimitAmount(uint256 _maxBuyAmount) public onlyOwner { maxBuyAmount = _maxBuyAmount; emit MaxBuyAmountUpdated(_maxBuyAmount); } function SetMaxSellLimitAmount(uint256 _maxSellAmount) public onlyOwner { maxSellAmount = _maxSellAmount; emit MaxSellAmountUpdated(_maxSellAmount); } function _beforeTokenTransfer(address from, address to, uint256 amount) internal override { if (AMMPairs[from] && !isExcludedFromLimits[to]) { // BUY require(amount <= maxBuyAmount, "MaxTx: Cannot exceed max buy limit"); } if (AMMPairs[to] && !isExcludedFromLimits[from]) { // SELL require(amount <= maxSellAmount, "MaxTx: Cannot exceed max sell limit"); } super._beforeTokenTransfer(from, to, amount); } function _afterTokenTransfer(address from, address to, uint256 amount) internal override { super._afterTokenTransfer(from, to, amount); } }
// SPDX-License-Identifier: No License /* https://t.me/FutureTechBotEth https://t.me/FutureTechBotEth https://t.me/FutureTechBotEth */ pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
// SPDX-License-Identifier: No License /* https://t.me/FutureTechBotEth https://t.me/FutureTechBotEth https://t.me/FutureTechBotEth */ pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
// SPDX-License-Identifier: No License /* https://t.me/FutureTechBotEth https://t.me/FutureTechBotEth https://t.me/FutureTechBotEth */ pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; }
// SPDX-License-Identifier: No License /* https://t.me/FutureTechBotEth https://t.me/FutureTechBotEth https://t.me/FutureTechBotEth */ pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
// SPDX-License-Identifier: No License /* https://t.me/FutureTechBotEth https://t.me/FutureTechBotEth https://t.me/FutureTechBotEth */ // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: No License /* https://t.me/FutureTechBotEth https://t.me/FutureTechBotEth https://t.me/FutureTechBotEth */ // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; import "./ERC20.sol"; import "./Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } }
// SPDX-License-Identifier: No License /* https://t.me/FutureTechBotEth https://t.me/FutureTechBotEth https://t.me/FutureTechBotEth */ // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./IERC20Metadata.sol"; import "./Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: No License /* https://t.me/FutureTechBotEth https://t.me/FutureTechBotEth https://t.me/FutureTechBotEth */ // 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: No License /* https://t.me/FutureTechBotEth https://t.me/FutureTechBotEth https://t.me/FutureTechBotEth */ // 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: No License /* https://t.me/FutureTechBotEth https://t.me/FutureTechBotEth https://t.me/FutureTechBotEth */ // 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"AMMPair","type":"address"},{"indexed":false,"internalType":"bool","name":"isPair","type":"bool"}],"name":"AMMPairsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxBuyAmount","type":"uint256"}],"name":"MaxBuyAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxSellAmount","type":"uint256"}],"name":"MaxSellAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"routerV2","type":"address"}],"name":"RouterV2Updated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"swapThreshold","type":"uint256"}],"name":"SwapThresholdUpdated","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":"mainAddress","type":"address"}],"name":"mainAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mainFeeSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"buyFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"sellFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"transferFee","type":"uint16"}],"name":"mainFeesUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"AMMPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBuyAmount","type":"uint256"}],"name":"SetMaxBuyLimitAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSellAmount","type":"uint256"}],"name":"SetMaxSellLimitAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_buyFee","type":"uint16"},{"internalType":"uint16","name":"_sellFee","type":"uint16"},{"internalType":"uint16","name":"_transferFee","type":"uint16"}],"name":"UpdateTradingFeatures","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"excludeFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAllPending","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mainAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"mainAddressSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mainFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairV2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"routerV2","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"isPair","type":"bool"}],"name":"setAMMPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"totalFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":[{"internalType":"uint256","name":"_swapThreshold","type":"uint256"}],"name":"updateSwapThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600d81526020017f46757475726554656368426f74000000000000000000000000000000000000008152506040518060400160405280600d81526020017f46757475726554656368426f740000000000000000000000000000000000000081525081600390816200008f91906200152e565b508060049081620000a191906200152e565b505050620000c4620000b86200033160201b60201c565b6200033960201b60201c565b6000737d8037a77155ead05a4d1d74279ed3bb8fe2eb2c905062000129600a620000f3620003ff60201b60201c565b600a620001019190620017a5565b6298967f620001119190620017f6565b6200011d919062001870565b6200040860201b60201c565b6200014e737d8037a77155ead05a4d1d74279ed3bb8fe2eb2c6200045b60201b60201c565b620001666107d0610dac6000620004fb60201b60201c565b620001798160016200080f60201b60201c565b6200018c3060016200080f60201b60201c565b620001b1737a250d5630b4cf539739df2c5dacb4c659f2488d620008ca60201b60201c565b620001c481600162000b8260201b60201c565b620001d730600162000b8260201b60201c565b620001eb6000600162000b8260201b60201c565b62000220600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600162000b8260201b60201c565b6200026c600a62000236620003ff60201b60201c565b600a620002449190620017a5565b620f4240620002549190620017f6565b62000260919062001870565b62000c3d60201b60201c565b620002b8600a62000282620003ff60201b60201c565b600a620002909190620017a5565b620f4240620002a09190620017f6565b620002ac919062001870565b62000c9060201b60201c565b6200030581600a620002cf620003ff60201b60201c565b600a620002dd9190620017a5565b620f4240620002ed9190620017f6565b620002f9919062001870565b62000ce360201b60201c565b6200032a737d8037a77155ead05a4d1d74279ed3bb8fe2eb2c6200033960201b60201c565b5062001dc7565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b6200041862000e5060201b60201c565b806006819055507f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647681604051620004509190620018b9565b60405180910390a150565b6200046b62000e5060201b60201c565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004bf8160016200080f60201b60201c565b7fe7215540a19d10a0780a8d581ae6d35d43689c1db1500fdf1ff5587fff9082c981604051620004f091906200191b565b60405180910390a150565b6200050b62000e5060201b60201c565b60405180606001604052808461ffff1661ffff1681526020018361ffff1661ffff1681526020018261ffff1661ffff16815250600990600362000550929190620011f1565b50600960006003811062000569576200056862001938565b5b601091828204019190066002029054906101000a900461ffff16600062000591919062001975565b600b600060038110620005a957620005a862001938565b5b601091828204019190066002026101000a81548161ffff021916908361ffff1602179055506009600160038110620005e657620005e562001938565b5b601091828204019190066002029054906101000a900461ffff1660006200060e919062001975565b600b60016003811062000626576200062562001938565b5b601091828204019190066002026101000a81548161ffff021916908361ffff160217905550600960026003811062000663576200066262001938565b5b601091828204019190066002029054906101000a900461ffff1660006200068b919062001975565b600b600260038110620006a357620006a262001938565b5b601091828204019190066002026101000a81548161ffff021916908361ffff160217905550610dac600b600060038110620006e357620006e262001938565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611158015620007475750610dac600b60016003811062000726576200072562001938565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611155b80156200078b5750610dac600b6002600381106200076a576200076962001938565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611155b620007cd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007c49062001a39565b60405180910390fd5b7fceb843e633963197bc698f33bff13c2fe41fe4c08aa6750e42b57116d8d92c7a838383604051620008029392919062001a6c565b60405180910390a1505050565b6200081f62000e5060201b60201c565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620008be919062001ac6565b60405180910390a25050565b80600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000979573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200099f919062001b19565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000a29573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000a4f919062001b19565b6040518363ffffffff1660e01b815260040162000a6e92919062001b4b565b6020604051808303816000875af115801562000a8e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000ab4919062001b19565b600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000b0781600162000b8260201b60201c565b62000b3c600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600162000ee160201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff167fbc052db65df144ad4f71f02da93cae3d4401104c30ac374d7cc10d87ee07b60260405160405180910390a250565b62000b9262000e5060201b60201c565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc928260405162000c31919062001ac6565b60405180910390a25050565b62000c4d62000e5060201b60201c565b806010819055507fd0459d371e1defb856088ceda9d33bfed2a31a105e0bae2113cdc7dcc9e77e9d8160405162000c859190620018b9565b60405180910390a150565b62000ca062000e5060201b60201c565b806011819055507fa0dff8a4e8bcaa27b5a2b64bc312f8b338e362bd6cad89f5fe2ae6b8389fb38a8160405162000cd89190620018b9565b60405180910390a150565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000d55576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d4c9062001bc8565b60405180910390fd5b62000d696000838362000fa760201b60201c565b806002600082825462000d7d919062001bea565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000e309190620018b9565b60405180910390a362000e4c60008383620011a560201b60201c565b5050565b62000e606200033160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000e86620011bd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000edf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ed69062001c75565b60405180910390fd5b565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550801562000f535762000f5282600162000b8260201b60201c565b5b8173ffffffffffffffffffffffffffffffffffffffff167f911aa18ddbbbc33c9b4c704a71bdaa0984b0aa2e82726a7f51e64bad0b0a84558260405162000f9b919062001ac6565b60405180910390a25050565b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156200104b5750600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156200109a5760105481111562001099576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620010909062001d0d565b60405180910390fd5b5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156200113e5750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156200118d576011548111156200118c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620011839062001da5565b60405180910390fd5b5b620011a0838383620011e760201b60201c565b505050565b620011b8838383620011ec60201b60201c565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b505050565b505050565b826003600f01601090048101928215620012825791602002820160005b838211156200125057835183826101000a81548161ffff021916908361ffff16021790555092602001926002016020816001010492830192600103026200120e565b8015620012805782816101000a81549061ffff021916905560020160208160010104928301926001030262001250565b505b50905062001291919062001295565b5090565b5b80821115620012b057600081600090555060010162001296565b5090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200133657607f821691505b6020821081036200134c576200134b620012ee565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620013b67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262001377565b620013c2868362001377565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200140f620014096200140384620013da565b620013e4565b620013da565b9050919050565b6000819050919050565b6200142b83620013ee565b620014436200143a8262001416565b84845462001384565b825550505050565b600090565b6200145a6200144b565b6200146781848462001420565b505050565b5b818110156200148f576200148360008262001450565b6001810190506200146d565b5050565b601f821115620014de57620014a88162001352565b620014b38462001367565b81016020851015620014c3578190505b620014db620014d28562001367565b8301826200146c565b50505b505050565b600082821c905092915050565b60006200150360001984600802620014e3565b1980831691505092915050565b60006200151e8383620014f0565b9150826002028217905092915050565b6200153982620012b4565b67ffffffffffffffff811115620015555762001554620012bf565b5b6200156182546200131d565b6200156e82828562001493565b600060209050601f831160018114620015a6576000841562001591578287015190505b6200159d858262001510565b8655506200160d565b601f198416620015b68662001352565b60005b82811015620015e057848901518255600182019150602085019450602081019050620015b9565b86831015620016005784890151620015fc601f891682620014f0565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620016a3578086048111156200167b576200167a62001615565b5b60018516156200168b5780820291505b80810290506200169b8562001644565b94506200165b565b94509492505050565b600082620016be576001905062001791565b81620016ce576000905062001791565b8160018114620016e75760028114620016f25762001728565b600191505062001791565b60ff84111562001707576200170662001615565b5b8360020a91508482111562001721576200172062001615565b5b5062001791565b5060208310610133831016604e8410600b8410161715620017625782820a9050838111156200175c576200175b62001615565b5b62001791565b62001771848484600162001651565b925090508184048111156200178b576200178a62001615565b5b81810290505b9392505050565b600060ff82169050919050565b6000620017b282620013da565b9150620017bf8362001798565b9250620017ee7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620016ac565b905092915050565b60006200180382620013da565b91506200181083620013da565b92508282026200182081620013da565b915082820484148315176200183a576200183962001615565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200187d82620013da565b91506200188a83620013da565b9250826200189d576200189c62001841565b5b828204905092915050565b620018b381620013da565b82525050565b6000602082019050620018d06000830184620018a8565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200190382620018d6565b9050919050565b6200191581620018f6565b82525050565b60006020820190506200193260008301846200190a565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061ffff82169050919050565b6000620019828262001967565b91506200198f8362001967565b9250828201905061ffff811115620019ac57620019ab62001615565b5b92915050565b600082825260208201905092915050565b7f546178657344656661756c74526f757465723a2043616e6e6f7420657863656560008201527f64206d617820746f74616c20666565206f662033352500000000000000000000602082015250565b600062001a21603683620019b2565b915062001a2e82620019c3565b604082019050919050565b6000602082019050818103600083015262001a548162001a12565b9050919050565b62001a668162001967565b82525050565b600060608201905062001a83600083018662001a5b565b62001a92602083018562001a5b565b62001aa1604083018462001a5b565b949350505050565b60008115159050919050565b62001ac08162001aa9565b82525050565b600060208201905062001add600083018462001ab5565b92915050565b600080fd5b62001af381620018f6565b811462001aff57600080fd5b50565b60008151905062001b138162001ae8565b92915050565b60006020828403121562001b325762001b3162001ae3565b5b600062001b428482850162001b02565b91505092915050565b600060408201905062001b6260008301856200190a565b62001b7160208301846200190a565b9392505050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001bb0601f83620019b2565b915062001bbd8262001b78565b602082019050919050565b6000602082019050818103600083015262001be38162001ba1565b9050919050565b600062001bf782620013da565b915062001c0483620013da565b925082820190508082111562001c1f5762001c1e62001615565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062001c5d602083620019b2565b915062001c6a8262001c25565b602082019050919050565b6000602082019050818103600083015262001c908162001c4e565b9050919050565b7f4d617854783a2043616e6e6f7420657863656564206d617820627579206c696d60008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b600062001cf5602283620019b2565b915062001d028262001c97565b604082019050919050565b6000602082019050818103600083015262001d288162001ce6565b9050919050565b7f4d617854783a2043616e6e6f7420657863656564206d61782073656c6c206c6960008201527f6d69740000000000000000000000000000000000000000000000000000000000602082015250565b600062001d8d602383620019b2565b915062001d9a8262001d2f565b604082019050919050565b6000602082019050818103600083015262001dc08162001d7e565b9050919050565b613aa48062001dd76000396000f3fe6080604052600436106102135760003560e01c8063715018a611610118578063a457c2d7116100a0578063c0a904a21161006f578063c0a904a2146107f6578063cc274b291461081f578063dd62ed3e14610848578063f112ba7214610885578063f2fde38b146108b05761021a565b8063a457c2d71461072a578063a9059cbb14610767578063aac10033146107a4578063c0246668146107cd5761021a565b806388e765ff116100e757806388e765ff146106555780638da5cb5b146106805780638fffabed146106ab57806394e45501146106d657806395d89b41146106ff5761021a565b8063715018a6146105af57806376856557146105c657806379cc6790146106035780637fac66841461062c5761021a565b8063408ccbdf1161019b578063502f74461161016a578063502f7446146104a25780635524555d146104cd5780635cce86cd1461050a57806366d602ae1461054757806370a08231146105725761021a565b8063408ccbdf146103d657806342966c681461041357806347313c4b1461043c5780634fbee193146104655761021a565b806318160ddd116101e257806318160ddd146102dd57806323b872dd146103085780632d99d32e14610345578063313ce5671461036e57806339509351146103995761021a565b80630445b6671461021f57806306fdde031461024a578063095ea7b3146102755780630cdd4234146102b25761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b506102346108d9565b6040516102419190612875565b60405180910390f35b34801561025657600080fd5b5061025f6108df565b60405161026c9190612920565b60405180910390f35b34801561028157600080fd5b5061029c600480360381019061029791906129d1565b610971565b6040516102a99190612a2c565b60405180910390f35b3480156102be57600080fd5b506102c7610994565b6040516102d49190612a56565b60405180910390f35b3480156102e957600080fd5b506102f26109ba565b6040516102ff9190612875565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a9190612a71565b6109c4565b60405161033c9190612a2c565b60405180910390f35b34801561035157600080fd5b5061036c60048036038101906103679190612af0565b6109f3565b005b34801561037a57600080fd5b50610383610a99565b6040516103909190612b4c565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb91906129d1565b610aa2565b6040516103cd9190612a2c565b60405180910390f35b3480156103e257600080fd5b506103fd60048036038101906103f89190612b67565b610ad9565b60405161040a9190612bb1565b60405180910390f35b34801561041f57600080fd5b5061043a60048036038101906104359190612b67565b610b07565b005b34801561044857600080fd5b50610463600480360381019061045e9190612bcc565b610b1b565b005b34801561047157600080fd5b5061048c60048036038101906104879190612bcc565b610ba9565b6040516104999190612a2c565b60405180910390f35b3480156104ae57600080fd5b506104b7610bc9565b6040516104c49190612c58565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef9190612b67565b610bef565b6040516105019190612bb1565b60405180910390f35b34801561051657600080fd5b50610531600480360381019061052c9190612bcc565b610c1d565b60405161053e9190612a2c565b60405180910390f35b34801561055357600080fd5b5061055c610c3d565b6040516105699190612875565b60405180910390f35b34801561057e57600080fd5b5061059960048036038101906105949190612bcc565b610c43565b6040516105a69190612875565b60405180910390f35b3480156105bb57600080fd5b506105c4610c8b565b005b3480156105d257600080fd5b506105ed60048036038101906105e89190612bcc565b610c9f565b6040516105fa9190612a2c565b60405180910390f35b34801561060f57600080fd5b5061062a600480360381019061062591906129d1565b610cbf565b005b34801561063857600080fd5b50610653600480360381019061064e9190612b67565b610cdf565b005b34801561066157600080fd5b5061066a610d28565b6040516106779190612875565b60405180910390f35b34801561068c57600080fd5b50610695610d2e565b6040516106a29190612a56565b60405180910390f35b3480156106b757600080fd5b506106c0610d58565b6040516106cd9190612a56565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f89190612c9f565b610d7e565b005b34801561070b57600080fd5b50610714611060565b6040516107219190612920565b60405180910390f35b34801561073657600080fd5b50610751600480360381019061074c91906129d1565b6110f2565b60405161075e9190612a2c565b60405180910390f35b34801561077357600080fd5b5061078e600480360381019061078991906129d1565b611169565b60405161079b9190612a2c565b60405180910390f35b3480156107b057600080fd5b506107cb60048036038101906107c69190612b67565b61118c565b005b3480156107d957600080fd5b506107f460048036038101906107ef9190612af0565b6111d5565b005b34801561080257600080fd5b5061081d60048036038101906108189190612af0565b611286565b005b34801561082b57600080fd5b5061084660048036038101906108419190612b67565b611337565b005b34801561085457600080fd5b5061086f600480360381019061086a9190612cf2565b611380565b60405161087c9190612875565b60405180910390f35b34801561089157600080fd5b5061089a611407565b6040516108a79190612875565b60405180910390f35b3480156108bc57600080fd5b506108d760048036038101906108d29190612bcc565b61141d565b005b60065481565b6060600380546108ee90612d61565b80601f016020809104026020016040519081016040528092919081815260200182805461091a90612d61565b80156109675780601f1061093c57610100808354040283529160200191610967565b820191906000526020600020905b81548152906001019060200180831161094a57829003601f168201915b5050505050905090565b60008061097c6114a0565b90506109898185856114a8565b600191505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6000806109cf6114a0565b90506109dc858285611671565b6109e78585856116fd565b60019150509392505050565b6109fb611d17565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8290612e04565b60405180910390fd5b610a958282611d95565b5050565b60006012905090565b600080610aad6114a0565b9050610ace818585610abf8589611380565b610ac99190612e53565b6114a8565b600191505092915050565b600b8160038110610ae957600080fd5b60109182820401919006600202915054906101000a900461ffff1681565b610b18610b126114a0565b82611e50565b50565b610b23611d17565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610b6f8160016111d5565b7fe7215540a19d10a0780a8d581ae6d35d43689c1db1500fdf1ff5587fff9082c981604051610b9e9190612a56565b60405180910390a150565b600a6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60098160038110610bff57600080fd5b60109182820401919006600202915054906101000a900461ffff1681565b600f6020528060005260406000206000915054906101000a900460ff1681565b60115481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c93611d17565b610c9d600061201d565b565b600e6020528060005260406000206000915054906101000a900460ff1681565b610cd182610ccb6114a0565b83611671565b610cdb8282611e50565b5050565b610ce7611d17565b806010819055507fd0459d371e1defb856088ceda9d33bfed2a31a105e0bae2113cdc7dcc9e77e9d81604051610d1d9190612875565b60405180910390a150565b60105481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d86611d17565b60405180606001604052808461ffff1661ffff1681526020018361ffff1661ffff1681526020018261ffff1661ffff168152506009906003610dc99291906127a2565b506009600060038110610ddf57610dde612e87565b5b601091828204019190066002029054906101000a900461ffff166000610e059190612eb6565b600b600060038110610e1a57610e19612e87565b5b601091828204019190066002026101000a81548161ffff021916908361ffff1602179055506009600160038110610e5457610e53612e87565b5b601091828204019190066002029054906101000a900461ffff166000610e7a9190612eb6565b600b600160038110610e8f57610e8e612e87565b5b601091828204019190066002026101000a81548161ffff021916908361ffff1602179055506009600260038110610ec957610ec8612e87565b5b601091828204019190066002029054906101000a900461ffff166000610eef9190612eb6565b600b600260038110610f0457610f03612e87565b5b601091828204019190066002026101000a81548161ffff021916908361ffff160217905550610dac600b600060038110610f4157610f40612e87565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611158015610fa15750610dac600b600160038110610f8057610f7f612e87565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611155b8015610fe15750610dac600b600260038110610fc057610fbf612e87565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611155b611020576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101790612f5e565b60405180910390fd5b7fceb843e633963197bc698f33bff13c2fe41fe4c08aa6750e42b57116d8d92c7a83838360405161105393929190612f7e565b60405180910390a1505050565b60606004805461106f90612d61565b80601f016020809104026020016040519081016040528092919081815260200182805461109b90612d61565b80156110e85780601f106110bd576101008083540402835291602001916110e8565b820191906000526020600020905b8154815290600101906020018083116110cb57829003601f168201915b5050505050905090565b6000806110fd6114a0565b9050600061110b8286611380565b905083811015611150576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114790613027565b60405180910390fd5b61115d82868684036114a8565b60019250505092915050565b6000806111746114a0565b90506111818185856116fd565b600191505092915050565b611194611d17565b806011819055507fa0dff8a4e8bcaa27b5a2b64bc312f8b338e362bd6cad89f5fe2ae6b8389fb38a816040516111ca9190612875565b60405180910390a150565b6111dd611d17565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161127a9190612a2c565b60405180910390a25050565b61128e611d17565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc928260405161132b9190612a2c565b60405180910390a25050565b61133f611d17565b806006819055507f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd06476816040516113759190612875565b60405180910390a150565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600060075460006114189190612e53565b905090565b611425611d17565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611494576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148b906130b9565b60405180910390fd5b61149d8161201d565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150e9061314b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157d906131dd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516116649190612875565b60405180910390a3505050565b600061167d8484611380565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116f757818110156116e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e090613249565b60405180910390fd5b6116f684848484036114a8565b5b50505050565b600060065461170a611407565b10159050600c60009054906101000a900460ff161580156117755750600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561177e5750805b1561194e576001600c60006101000a81548160ff0219169083151502179055506000806117ad57506000600754115b1561193257600060075460006117c39190612e53565b905060006117d0826120e3565b6000479050600083600754836117e69190613269565b6117f091906132da565b9050600081111561192557600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16816040516118419061333c565b60006040518083038185875af1925050503d806000811461187e576040519150601f19603f3d011682016040523d82523d6000602084013e611883565b606091505b505080935050826118c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c0906133c3565b60405180910390fd5b7f6d151df43ef23095d368ed2fb3be0747859f30bc60493acca2c79149c8ec46ad600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168260405161191c9291906133e3565b60405180910390a15b6000600781905550505050505b6000600c60006101000a81548160ff0219169083151502179055505b600c60009054906101000a900460ff1615801561196b5750600082115b80156119c55750600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611a1b5750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611a715750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611d065760008060039050600e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611b14576000600b600060038110611ae657611ae5612e87565b5b601091828204019190066002029054906101000a900461ffff1661ffff161115611b0f57600090505b611bed565b600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611bab576000600b600160038110611b7d57611b7c612e87565b5b601091828204019190066002029054906101000a900461ffff1661ffff161115611ba657600190505b611bec565b6000600b600260038110611bc257611bc1612e87565b5b601091828204019190066002029054906101000a900461ffff1661ffff161115611beb57600290505b5b5b60038160ff161015611cee57612710600b8260ff1660038110611c1357611c12612e87565b5b601091828204019190066002029054906101000a900461ffff1661ffff1685611c3c9190613269565b611c4691906132da565b91508184611c54919061340c565b9350600b8160ff1660038110611c6d57611c6c612e87565b5b601091828204019190066002029054906101000a900461ffff1661ffff1660098260ff1660038110611ca257611ca1612e87565b5b601091828204019190066002029054906101000a900461ffff1661ffff1683611ccb9190613269565b611cd591906132da565b60076000828254611ce69190612e53565b925050819055505b6000821115611d0357611d02863084612326565b5b50505b611d11848484612326565b50505050565b611d1f6114a0565b73ffffffffffffffffffffffffffffffffffffffff16611d3d610d2e565b73ffffffffffffffffffffffffffffffffffffffff1614611d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8a9061348c565b60405180910390fd5b565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015611dfe57611dfd826001611286565b5b8173ffffffffffffffffffffffffffffffffffffffff167f911aa18ddbbbc33c9b4c704a71bdaa0984b0aa2e82726a7f51e64bad0b0a845582604051611e449190612a2c565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb69061351e565b60405180910390fd5b611ecb8260008361259c565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f48906135b0565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516120049190612875565b60405180910390a361201883600084612788565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600267ffffffffffffffff811115612100576120ff6135d0565b5b60405190808252806020026020018201604052801561212e5781602001602082028036833780820191505090505b509050308160008151811061214657612145612e87565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122119190613614565b8160018151811061222557612224612e87565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061228c30600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846114a8565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016122f095949392919061373a565b600060405180830381600087803b15801561230a57600080fd5b505af115801561231e573d6000803e3d6000fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238c90613806565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fb90613898565b60405180910390fd5b61240f83838361259c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248c9061392a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125839190612875565b60405180910390a3612596848484612788565b50505050565b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561263f5750600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561268a57601054811115612689576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612680906139bc565b60405180910390fd5b5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561272d5750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561277857601154811115612777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276e90613a4e565b60405180910390fd5b5b612783838383612798565b505050565b61279383838361279d565b505050565b505050565b505050565b826003600f0160109004810192821561282e5791602002820160005b838211156127fe57835183826101000a81548161ffff021916908361ffff16021790555092602001926002016020816001010492830192600103026127be565b801561282c5782816101000a81549061ffff02191690556002016020816001010492830192600103026127fe565b505b50905061283b919061283f565b5090565b5b80821115612858576000816000905550600101612840565b5090565b6000819050919050565b61286f8161285c565b82525050565b600060208201905061288a6000830184612866565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128ca5780820151818401526020810190506128af565b60008484015250505050565b6000601f19601f8301169050919050565b60006128f282612890565b6128fc818561289b565b935061290c8185602086016128ac565b612915816128d6565b840191505092915050565b6000602082019050818103600083015261293a81846128e7565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061297282612947565b9050919050565b61298281612967565b811461298d57600080fd5b50565b60008135905061299f81612979565b92915050565b6129ae8161285c565b81146129b957600080fd5b50565b6000813590506129cb816129a5565b92915050565b600080604083850312156129e8576129e7612942565b5b60006129f685828601612990565b9250506020612a07858286016129bc565b9150509250929050565b60008115159050919050565b612a2681612a11565b82525050565b6000602082019050612a416000830184612a1d565b92915050565b612a5081612967565b82525050565b6000602082019050612a6b6000830184612a47565b92915050565b600080600060608486031215612a8a57612a89612942565b5b6000612a9886828701612990565b9350506020612aa986828701612990565b9250506040612aba868287016129bc565b9150509250925092565b612acd81612a11565b8114612ad857600080fd5b50565b600081359050612aea81612ac4565b92915050565b60008060408385031215612b0757612b06612942565b5b6000612b1585828601612990565b9250506020612b2685828601612adb565b9150509250929050565b600060ff82169050919050565b612b4681612b30565b82525050565b6000602082019050612b616000830184612b3d565b92915050565b600060208284031215612b7d57612b7c612942565b5b6000612b8b848285016129bc565b91505092915050565b600061ffff82169050919050565b612bab81612b94565b82525050565b6000602082019050612bc66000830184612ba2565b92915050565b600060208284031215612be257612be1612942565b5b6000612bf084828501612990565b91505092915050565b6000819050919050565b6000612c1e612c19612c1484612947565b612bf9565b612947565b9050919050565b6000612c3082612c03565b9050919050565b6000612c4282612c25565b9050919050565b612c5281612c37565b82525050565b6000602082019050612c6d6000830184612c49565b92915050565b612c7c81612b94565b8114612c8757600080fd5b50565b600081359050612c9981612c73565b92915050565b600080600060608486031215612cb857612cb7612942565b5b6000612cc686828701612c8a565b9350506020612cd786828701612c8a565b9250506040612ce886828701612c8a565b9150509250925092565b60008060408385031215612d0957612d08612942565b5b6000612d1785828601612990565b9250506020612d2885828601612990565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612d7957607f821691505b602082108103612d8c57612d8b612d32565b5b50919050565b7f44656661756c74526f757465723a2043616e6e6f742072656d6f766520696e6960008201527f7469616c20706169722066726f6d206c69737400000000000000000000000000602082015250565b6000612dee60338361289b565b9150612df982612d92565b604082019050919050565b60006020820190508181036000830152612e1d81612de1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e5e8261285c565b9150612e698361285c565b9250828201905080821115612e8157612e80612e24565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612ec182612b94565b9150612ecc83612b94565b9250828201905061ffff811115612ee657612ee5612e24565b5b92915050565b7f546178657344656661756c74526f757465723a2043616e6e6f7420657863656560008201527f64206d617820746f74616c20666565206f662033352500000000000000000000602082015250565b6000612f4860368361289b565b9150612f5382612eec565b604082019050919050565b60006020820190508181036000830152612f7781612f3b565b9050919050565b6000606082019050612f936000830186612ba2565b612fa06020830185612ba2565b612fad6040830184612ba2565b949350505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061301160258361289b565b915061301c82612fb5565b604082019050919050565b6000602082019050818103600083015261304081613004565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130a360268361289b565b91506130ae82613047565b604082019050919050565b600060208201905081810360008301526130d281613096565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061313560248361289b565b9150613140826130d9565b604082019050919050565b6000602082019050818103600083015261316481613128565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006131c760228361289b565b91506131d28261316b565b604082019050919050565b600060208201905081810360008301526131f6816131ba565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613233601d8361289b565b915061323e826131fd565b602082019050919050565b6000602082019050818103600083015261326281613226565b9050919050565b60006132748261285c565b915061327f8361285c565b925082820261328d8161285c565b915082820484148315176132a4576132a3612e24565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006132e58261285c565b91506132f08361285c565b925082613300576132ff6132ab565b5b828204905092915050565b600081905092915050565b50565b600061332660008361330b565b915061333182613316565b600082019050919050565b600061334782613319565b9150819050919050565b7f546178657344656661756c74526f7574657257616c6c6574436f696e3a20466560008201527f65207472616e73666572206572726f7200000000000000000000000000000000602082015250565b60006133ad60308361289b565b91506133b882613351565b604082019050919050565b600060208201905081810360008301526133dc816133a0565b9050919050565b60006040820190506133f86000830185612a47565b6134056020830184612866565b9392505050565b60006134178261285c565b91506134228361285c565b925082820390508181111561343a57613439612e24565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061347660208361289b565b915061348182613440565b602082019050919050565b600060208201905081810360008301526134a581613469565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061350860218361289b565b9150613513826134ac565b604082019050919050565b60006020820190508181036000830152613537816134fb565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061359a60228361289b565b91506135a58261353e565b604082019050919050565b600060208201905081810360008301526135c98161358d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061360e81612979565b92915050565b60006020828403121561362a57613629612942565b5b6000613638848285016135ff565b91505092915050565b6000819050919050565b600061366661366161365c84613641565b612bf9565b61285c565b9050919050565b6136768161364b565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6136b181612967565b82525050565b60006136c383836136a8565b60208301905092915050565b6000602082019050919050565b60006136e78261367c565b6136f18185613687565b93506136fc83613698565b8060005b8381101561372d57815161371488826136b7565b975061371f836136cf565b925050600181019050613700565b5085935050505092915050565b600060a08201905061374f6000830188612866565b61375c602083018761366d565b818103604083015261376e81866136dc565b905061377d6060830185612a47565b61378a6080830184612866565b9695505050505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006137f060258361289b565b91506137fb82613794565b604082019050919050565b6000602082019050818103600083015261381f816137e3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061388260238361289b565b915061388d82613826565b604082019050919050565b600060208201905081810360008301526138b181613875565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061391460268361289b565b915061391f826138b8565b604082019050919050565b6000602082019050818103600083015261394381613907565b9050919050565b7f4d617854783a2043616e6e6f7420657863656564206d617820627579206c696d60008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b60006139a660228361289b565b91506139b18261394a565b604082019050919050565b600060208201905081810360008301526139d581613999565b9050919050565b7f4d617854783a2043616e6e6f7420657863656564206d61782073656c6c206c6960008201527f6d69740000000000000000000000000000000000000000000000000000000000602082015250565b6000613a3860238361289b565b9150613a43826139dc565b604082019050919050565b60006020820190508181036000830152613a6781613a2b565b905091905056fea2646970667358221220e5319e89b045542e6663da5a117d807fb534640b405e24561ddfd2706f47bf7664736f6c63430008130033
Deployed Bytecode
0x6080604052600436106102135760003560e01c8063715018a611610118578063a457c2d7116100a0578063c0a904a21161006f578063c0a904a2146107f6578063cc274b291461081f578063dd62ed3e14610848578063f112ba7214610885578063f2fde38b146108b05761021a565b8063a457c2d71461072a578063a9059cbb14610767578063aac10033146107a4578063c0246668146107cd5761021a565b806388e765ff116100e757806388e765ff146106555780638da5cb5b146106805780638fffabed146106ab57806394e45501146106d657806395d89b41146106ff5761021a565b8063715018a6146105af57806376856557146105c657806379cc6790146106035780637fac66841461062c5761021a565b8063408ccbdf1161019b578063502f74461161016a578063502f7446146104a25780635524555d146104cd5780635cce86cd1461050a57806366d602ae1461054757806370a08231146105725761021a565b8063408ccbdf146103d657806342966c681461041357806347313c4b1461043c5780634fbee193146104655761021a565b806318160ddd116101e257806318160ddd146102dd57806323b872dd146103085780632d99d32e14610345578063313ce5671461036e57806339509351146103995761021a565b80630445b6671461021f57806306fdde031461024a578063095ea7b3146102755780630cdd4234146102b25761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b506102346108d9565b6040516102419190612875565b60405180910390f35b34801561025657600080fd5b5061025f6108df565b60405161026c9190612920565b60405180910390f35b34801561028157600080fd5b5061029c600480360381019061029791906129d1565b610971565b6040516102a99190612a2c565b60405180910390f35b3480156102be57600080fd5b506102c7610994565b6040516102d49190612a56565b60405180910390f35b3480156102e957600080fd5b506102f26109ba565b6040516102ff9190612875565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a9190612a71565b6109c4565b60405161033c9190612a2c565b60405180910390f35b34801561035157600080fd5b5061036c60048036038101906103679190612af0565b6109f3565b005b34801561037a57600080fd5b50610383610a99565b6040516103909190612b4c565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb91906129d1565b610aa2565b6040516103cd9190612a2c565b60405180910390f35b3480156103e257600080fd5b506103fd60048036038101906103f89190612b67565b610ad9565b60405161040a9190612bb1565b60405180910390f35b34801561041f57600080fd5b5061043a60048036038101906104359190612b67565b610b07565b005b34801561044857600080fd5b50610463600480360381019061045e9190612bcc565b610b1b565b005b34801561047157600080fd5b5061048c60048036038101906104879190612bcc565b610ba9565b6040516104999190612a2c565b60405180910390f35b3480156104ae57600080fd5b506104b7610bc9565b6040516104c49190612c58565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef9190612b67565b610bef565b6040516105019190612bb1565b60405180910390f35b34801561051657600080fd5b50610531600480360381019061052c9190612bcc565b610c1d565b60405161053e9190612a2c565b60405180910390f35b34801561055357600080fd5b5061055c610c3d565b6040516105699190612875565b60405180910390f35b34801561057e57600080fd5b5061059960048036038101906105949190612bcc565b610c43565b6040516105a69190612875565b60405180910390f35b3480156105bb57600080fd5b506105c4610c8b565b005b3480156105d257600080fd5b506105ed60048036038101906105e89190612bcc565b610c9f565b6040516105fa9190612a2c565b60405180910390f35b34801561060f57600080fd5b5061062a600480360381019061062591906129d1565b610cbf565b005b34801561063857600080fd5b50610653600480360381019061064e9190612b67565b610cdf565b005b34801561066157600080fd5b5061066a610d28565b6040516106779190612875565b60405180910390f35b34801561068c57600080fd5b50610695610d2e565b6040516106a29190612a56565b60405180910390f35b3480156106b757600080fd5b506106c0610d58565b6040516106cd9190612a56565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f89190612c9f565b610d7e565b005b34801561070b57600080fd5b50610714611060565b6040516107219190612920565b60405180910390f35b34801561073657600080fd5b50610751600480360381019061074c91906129d1565b6110f2565b60405161075e9190612a2c565b60405180910390f35b34801561077357600080fd5b5061078e600480360381019061078991906129d1565b611169565b60405161079b9190612a2c565b60405180910390f35b3480156107b057600080fd5b506107cb60048036038101906107c69190612b67565b61118c565b005b3480156107d957600080fd5b506107f460048036038101906107ef9190612af0565b6111d5565b005b34801561080257600080fd5b5061081d60048036038101906108189190612af0565b611286565b005b34801561082b57600080fd5b5061084660048036038101906108419190612b67565b611337565b005b34801561085457600080fd5b5061086f600480360381019061086a9190612cf2565b611380565b60405161087c9190612875565b60405180910390f35b34801561089157600080fd5b5061089a611407565b6040516108a79190612875565b60405180910390f35b3480156108bc57600080fd5b506108d760048036038101906108d29190612bcc565b61141d565b005b60065481565b6060600380546108ee90612d61565b80601f016020809104026020016040519081016040528092919081815260200182805461091a90612d61565b80156109675780601f1061093c57610100808354040283529160200191610967565b820191906000526020600020905b81548152906001019060200180831161094a57829003601f168201915b5050505050905090565b60008061097c6114a0565b90506109898185856114a8565b600191505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6000806109cf6114a0565b90506109dc858285611671565b6109e78585856116fd565b60019150509392505050565b6109fb611d17565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8290612e04565b60405180910390fd5b610a958282611d95565b5050565b60006012905090565b600080610aad6114a0565b9050610ace818585610abf8589611380565b610ac99190612e53565b6114a8565b600191505092915050565b600b8160038110610ae957600080fd5b60109182820401919006600202915054906101000a900461ffff1681565b610b18610b126114a0565b82611e50565b50565b610b23611d17565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610b6f8160016111d5565b7fe7215540a19d10a0780a8d581ae6d35d43689c1db1500fdf1ff5587fff9082c981604051610b9e9190612a56565b60405180910390a150565b600a6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60098160038110610bff57600080fd5b60109182820401919006600202915054906101000a900461ffff1681565b600f6020528060005260406000206000915054906101000a900460ff1681565b60115481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c93611d17565b610c9d600061201d565b565b600e6020528060005260406000206000915054906101000a900460ff1681565b610cd182610ccb6114a0565b83611671565b610cdb8282611e50565b5050565b610ce7611d17565b806010819055507fd0459d371e1defb856088ceda9d33bfed2a31a105e0bae2113cdc7dcc9e77e9d81604051610d1d9190612875565b60405180910390a150565b60105481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d86611d17565b60405180606001604052808461ffff1661ffff1681526020018361ffff1661ffff1681526020018261ffff1661ffff168152506009906003610dc99291906127a2565b506009600060038110610ddf57610dde612e87565b5b601091828204019190066002029054906101000a900461ffff166000610e059190612eb6565b600b600060038110610e1a57610e19612e87565b5b601091828204019190066002026101000a81548161ffff021916908361ffff1602179055506009600160038110610e5457610e53612e87565b5b601091828204019190066002029054906101000a900461ffff166000610e7a9190612eb6565b600b600160038110610e8f57610e8e612e87565b5b601091828204019190066002026101000a81548161ffff021916908361ffff1602179055506009600260038110610ec957610ec8612e87565b5b601091828204019190066002029054906101000a900461ffff166000610eef9190612eb6565b600b600260038110610f0457610f03612e87565b5b601091828204019190066002026101000a81548161ffff021916908361ffff160217905550610dac600b600060038110610f4157610f40612e87565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611158015610fa15750610dac600b600160038110610f8057610f7f612e87565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611155b8015610fe15750610dac600b600260038110610fc057610fbf612e87565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611155b611020576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101790612f5e565b60405180910390fd5b7fceb843e633963197bc698f33bff13c2fe41fe4c08aa6750e42b57116d8d92c7a83838360405161105393929190612f7e565b60405180910390a1505050565b60606004805461106f90612d61565b80601f016020809104026020016040519081016040528092919081815260200182805461109b90612d61565b80156110e85780601f106110bd576101008083540402835291602001916110e8565b820191906000526020600020905b8154815290600101906020018083116110cb57829003601f168201915b5050505050905090565b6000806110fd6114a0565b9050600061110b8286611380565b905083811015611150576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114790613027565b60405180910390fd5b61115d82868684036114a8565b60019250505092915050565b6000806111746114a0565b90506111818185856116fd565b600191505092915050565b611194611d17565b806011819055507fa0dff8a4e8bcaa27b5a2b64bc312f8b338e362bd6cad89f5fe2ae6b8389fb38a816040516111ca9190612875565b60405180910390a150565b6111dd611d17565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161127a9190612a2c565b60405180910390a25050565b61128e611d17565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc928260405161132b9190612a2c565b60405180910390a25050565b61133f611d17565b806006819055507f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd06476816040516113759190612875565b60405180910390a150565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600060075460006114189190612e53565b905090565b611425611d17565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611494576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148b906130b9565b60405180910390fd5b61149d8161201d565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150e9061314b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157d906131dd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516116649190612875565b60405180910390a3505050565b600061167d8484611380565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116f757818110156116e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e090613249565b60405180910390fd5b6116f684848484036114a8565b5b50505050565b600060065461170a611407565b10159050600c60009054906101000a900460ff161580156117755750600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561177e5750805b1561194e576001600c60006101000a81548160ff0219169083151502179055506000806117ad57506000600754115b1561193257600060075460006117c39190612e53565b905060006117d0826120e3565b6000479050600083600754836117e69190613269565b6117f091906132da565b9050600081111561192557600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16816040516118419061333c565b60006040518083038185875af1925050503d806000811461187e576040519150601f19603f3d011682016040523d82523d6000602084013e611883565b606091505b505080935050826118c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c0906133c3565b60405180910390fd5b7f6d151df43ef23095d368ed2fb3be0747859f30bc60493acca2c79149c8ec46ad600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168260405161191c9291906133e3565b60405180910390a15b6000600781905550505050505b6000600c60006101000a81548160ff0219169083151502179055505b600c60009054906101000a900460ff1615801561196b5750600082115b80156119c55750600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611a1b5750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611a715750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611d065760008060039050600e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611b14576000600b600060038110611ae657611ae5612e87565b5b601091828204019190066002029054906101000a900461ffff1661ffff161115611b0f57600090505b611bed565b600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611bab576000600b600160038110611b7d57611b7c612e87565b5b601091828204019190066002029054906101000a900461ffff1661ffff161115611ba657600190505b611bec565b6000600b600260038110611bc257611bc1612e87565b5b601091828204019190066002029054906101000a900461ffff1661ffff161115611beb57600290505b5b5b60038160ff161015611cee57612710600b8260ff1660038110611c1357611c12612e87565b5b601091828204019190066002029054906101000a900461ffff1661ffff1685611c3c9190613269565b611c4691906132da565b91508184611c54919061340c565b9350600b8160ff1660038110611c6d57611c6c612e87565b5b601091828204019190066002029054906101000a900461ffff1661ffff1660098260ff1660038110611ca257611ca1612e87565b5b601091828204019190066002029054906101000a900461ffff1661ffff1683611ccb9190613269565b611cd591906132da565b60076000828254611ce69190612e53565b925050819055505b6000821115611d0357611d02863084612326565b5b50505b611d11848484612326565b50505050565b611d1f6114a0565b73ffffffffffffffffffffffffffffffffffffffff16611d3d610d2e565b73ffffffffffffffffffffffffffffffffffffffff1614611d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8a9061348c565b60405180910390fd5b565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015611dfe57611dfd826001611286565b5b8173ffffffffffffffffffffffffffffffffffffffff167f911aa18ddbbbc33c9b4c704a71bdaa0984b0aa2e82726a7f51e64bad0b0a845582604051611e449190612a2c565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb69061351e565b60405180910390fd5b611ecb8260008361259c565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f48906135b0565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516120049190612875565b60405180910390a361201883600084612788565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600267ffffffffffffffff811115612100576120ff6135d0565b5b60405190808252806020026020018201604052801561212e5781602001602082028036833780820191505090505b509050308160008151811061214657612145612e87565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122119190613614565b8160018151811061222557612224612e87565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061228c30600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846114a8565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016122f095949392919061373a565b600060405180830381600087803b15801561230a57600080fd5b505af115801561231e573d6000803e3d6000fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238c90613806565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fb90613898565b60405180910390fd5b61240f83838361259c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248c9061392a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125839190612875565b60405180910390a3612596848484612788565b50505050565b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561263f5750600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561268a57601054811115612689576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612680906139bc565b60405180910390fd5b5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561272d5750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561277857601154811115612777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276e90613a4e565b60405180910390fd5b5b612783838383612798565b505050565b61279383838361279d565b505050565b505050565b505050565b826003600f0160109004810192821561282e5791602002820160005b838211156127fe57835183826101000a81548161ffff021916908361ffff16021790555092602001926002016020816001010492830192600103026127be565b801561282c5782816101000a81549061ffff02191690556002016020816001010492830192600103026127fe565b505b50905061283b919061283f565b5090565b5b80821115612858576000816000905550600101612840565b5090565b6000819050919050565b61286f8161285c565b82525050565b600060208201905061288a6000830184612866565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128ca5780820151818401526020810190506128af565b60008484015250505050565b6000601f19601f8301169050919050565b60006128f282612890565b6128fc818561289b565b935061290c8185602086016128ac565b612915816128d6565b840191505092915050565b6000602082019050818103600083015261293a81846128e7565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061297282612947565b9050919050565b61298281612967565b811461298d57600080fd5b50565b60008135905061299f81612979565b92915050565b6129ae8161285c565b81146129b957600080fd5b50565b6000813590506129cb816129a5565b92915050565b600080604083850312156129e8576129e7612942565b5b60006129f685828601612990565b9250506020612a07858286016129bc565b9150509250929050565b60008115159050919050565b612a2681612a11565b82525050565b6000602082019050612a416000830184612a1d565b92915050565b612a5081612967565b82525050565b6000602082019050612a6b6000830184612a47565b92915050565b600080600060608486031215612a8a57612a89612942565b5b6000612a9886828701612990565b9350506020612aa986828701612990565b9250506040612aba868287016129bc565b9150509250925092565b612acd81612a11565b8114612ad857600080fd5b50565b600081359050612aea81612ac4565b92915050565b60008060408385031215612b0757612b06612942565b5b6000612b1585828601612990565b9250506020612b2685828601612adb565b9150509250929050565b600060ff82169050919050565b612b4681612b30565b82525050565b6000602082019050612b616000830184612b3d565b92915050565b600060208284031215612b7d57612b7c612942565b5b6000612b8b848285016129bc565b91505092915050565b600061ffff82169050919050565b612bab81612b94565b82525050565b6000602082019050612bc66000830184612ba2565b92915050565b600060208284031215612be257612be1612942565b5b6000612bf084828501612990565b91505092915050565b6000819050919050565b6000612c1e612c19612c1484612947565b612bf9565b612947565b9050919050565b6000612c3082612c03565b9050919050565b6000612c4282612c25565b9050919050565b612c5281612c37565b82525050565b6000602082019050612c6d6000830184612c49565b92915050565b612c7c81612b94565b8114612c8757600080fd5b50565b600081359050612c9981612c73565b92915050565b600080600060608486031215612cb857612cb7612942565b5b6000612cc686828701612c8a565b9350506020612cd786828701612c8a565b9250506040612ce886828701612c8a565b9150509250925092565b60008060408385031215612d0957612d08612942565b5b6000612d1785828601612990565b9250506020612d2885828601612990565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612d7957607f821691505b602082108103612d8c57612d8b612d32565b5b50919050565b7f44656661756c74526f757465723a2043616e6e6f742072656d6f766520696e6960008201527f7469616c20706169722066726f6d206c69737400000000000000000000000000602082015250565b6000612dee60338361289b565b9150612df982612d92565b604082019050919050565b60006020820190508181036000830152612e1d81612de1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e5e8261285c565b9150612e698361285c565b9250828201905080821115612e8157612e80612e24565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612ec182612b94565b9150612ecc83612b94565b9250828201905061ffff811115612ee657612ee5612e24565b5b92915050565b7f546178657344656661756c74526f757465723a2043616e6e6f7420657863656560008201527f64206d617820746f74616c20666565206f662033352500000000000000000000602082015250565b6000612f4860368361289b565b9150612f5382612eec565b604082019050919050565b60006020820190508181036000830152612f7781612f3b565b9050919050565b6000606082019050612f936000830186612ba2565b612fa06020830185612ba2565b612fad6040830184612ba2565b949350505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061301160258361289b565b915061301c82612fb5565b604082019050919050565b6000602082019050818103600083015261304081613004565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130a360268361289b565b91506130ae82613047565b604082019050919050565b600060208201905081810360008301526130d281613096565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061313560248361289b565b9150613140826130d9565b604082019050919050565b6000602082019050818103600083015261316481613128565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006131c760228361289b565b91506131d28261316b565b604082019050919050565b600060208201905081810360008301526131f6816131ba565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613233601d8361289b565b915061323e826131fd565b602082019050919050565b6000602082019050818103600083015261326281613226565b9050919050565b60006132748261285c565b915061327f8361285c565b925082820261328d8161285c565b915082820484148315176132a4576132a3612e24565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006132e58261285c565b91506132f08361285c565b925082613300576132ff6132ab565b5b828204905092915050565b600081905092915050565b50565b600061332660008361330b565b915061333182613316565b600082019050919050565b600061334782613319565b9150819050919050565b7f546178657344656661756c74526f7574657257616c6c6574436f696e3a20466560008201527f65207472616e73666572206572726f7200000000000000000000000000000000602082015250565b60006133ad60308361289b565b91506133b882613351565b604082019050919050565b600060208201905081810360008301526133dc816133a0565b9050919050565b60006040820190506133f86000830185612a47565b6134056020830184612866565b9392505050565b60006134178261285c565b91506134228361285c565b925082820390508181111561343a57613439612e24565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061347660208361289b565b915061348182613440565b602082019050919050565b600060208201905081810360008301526134a581613469565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061350860218361289b565b9150613513826134ac565b604082019050919050565b60006020820190508181036000830152613537816134fb565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061359a60228361289b565b91506135a58261353e565b604082019050919050565b600060208201905081810360008301526135c98161358d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061360e81612979565b92915050565b60006020828403121561362a57613629612942565b5b6000613638848285016135ff565b91505092915050565b6000819050919050565b600061366661366161365c84613641565b612bf9565b61285c565b9050919050565b6136768161364b565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6136b181612967565b82525050565b60006136c383836136a8565b60208301905092915050565b6000602082019050919050565b60006136e78261367c565b6136f18185613687565b93506136fc83613698565b8060005b8381101561372d57815161371488826136b7565b975061371f836136cf565b925050600181019050613700565b5085935050505092915050565b600060a08201905061374f6000830188612866565b61375c602083018761366d565b818103604083015261376e81866136dc565b905061377d6060830185612a47565b61378a6080830184612866565b9695505050505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006137f060258361289b565b91506137fb82613794565b604082019050919050565b6000602082019050818103600083015261381f816137e3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061388260238361289b565b915061388d82613826565b604082019050919050565b600060208201905081810360008301526138b181613875565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061391460268361289b565b915061391f826138b8565b604082019050919050565b6000602082019050818103600083015261394381613907565b9050919050565b7f4d617854783a2043616e6e6f7420657863656564206d617820627579206c696d60008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b60006139a660228361289b565b91506139b18261394a565b604082019050919050565b600060208201905081810360008301526139d581613999565b9050919050565b7f4d617854783a2043616e6e6f7420657863656564206d61782073656c6c206c6960008201527f6d69740000000000000000000000000000000000000000000000000000000000602082015250565b6000613a3860238361289b565b9150613a43826139dc565b604082019050919050565b60006020820190508181036000830152613a6781613a2b565b905091905056fea2646970667358221220e5319e89b045542e6663da5a117d807fb534640b405e24561ddfd2706f47bf7664736f6c63430008130033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.