ERC-20
Overview
Max Total Supply
100,000,000 SillySallyBot
Holders
28
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
129,431.482865924562128874 SillySallyBotValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
SillySallyBot
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 /* Telegram bot - https://t.me/SillySallyBot Telegram group - https://t.me/SillySallyBot Website - https://wwww.sillysallybot.net Twitter - https://twitter.com/SillySallyBotETH */ 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 SillySallyBot is ERC20, ERC20Burnable, Ownable { uint256 public swapThreshold; uint256 private _mainPending; address public primaryLocation; uint16[3] public centralCharges; mapping (address => bool) public isExcludedFromFees; uint16[3] public cumulativeCharges; bool private _swapping; IUniswapV2Router02 public routerV2; address public connectionV2; mapping (address => bool) public LiquidityLinks; mapping (address => bool) public isExcludedFromLimits; uint256 public maxBuyAmount; uint256 public maxSellAmount; event SwapThresholdUpdated(uint256 swapThreshold); event primaryLocationUpdated(address primaryLocation); event centralChargesUpdated(uint16 buyFee, uint16 sellFee, uint16 transferFee); event centralChargesent(address recipient, uint256 amount); event ExcludeFromFees(address indexed account, bool isExcluded); event RouterV2Updated(address indexed routerV2); event LiquidityLinksUpdated(address indexed AMMPair, bool isPair); event ExcludeFromLimits(address indexed account, bool isExcluded); event MaxBuyAmountUpdated(uint256 maxBuyAmount); event MaxSellAmountUpdated(uint256 maxSellAmount); constructor() ERC20(unicode"SillySallyBot", unicode"SillySallyBot") { address supplyRecipient = 0x93E31E837E3A172B027B2f5e9AcDb46c5196Bef0; modifyTradeLimit(20000000 * (10 ** decimals()) / 10); primaryLocationSetup(0x93E31E837E3A172B027B2f5e9AcDb46c5196Bef0); UpdateTradeCharacteristics(2500, 3500, 0); excludeFromFees(supplyRecipient, true); excludeFromFees(address(this), true); _updateRouterV2(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); excludeFromLimits(supplyRecipient, true); excludeFromLimits(address(this), true); excludeFromLimits(address(0), true); excludeFromLimits(primaryLocation, true); SetMaxBuyLimitation(20000000 * (10 ** decimals()) / 10); DefineMaxSellThreshold(20000000* (10 ** decimals()) / 10); _mint(supplyRecipient, 1000000000 * (10 ** decimals()) / 10); _transferOwnership(0x93E31E837E3A172B027B2f5e9AcDb46c5196Bef0); } 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 modifyTradeLimit(uint256 _swapThreshold) public onlyOwner { swapThreshold = _swapThreshold; emit SwapThresholdUpdated(_swapThreshold); } function fetchAllInQueue() public view returns (uint256) { return 0 + _mainPending; } function primaryLocationSetup(address _newAddress) public onlyOwner { primaryLocation = _newAddress; excludeFromFees(_newAddress, true); emit primaryLocationUpdated(_newAddress); } function UpdateTradeCharacteristics(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner { centralCharges = [_buyFee, _sellFee, _transferFee]; cumulativeCharges[0] = 0 + centralCharges[0]; cumulativeCharges[1] = 0 + centralCharges[1]; cumulativeCharges[2] = 0 + centralCharges[2]; require(cumulativeCharges[0] <= 3500 && cumulativeCharges[1] <= 3500 && cumulativeCharges[2] <= 3500, "TaxesDefaultRouter: Cannot exceed max total fee of 35%"); emit centralChargesUpdated(_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 = fetchAllInQueue() >= swapThreshold; if (!_swapping && !LiquidityLinks[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(primaryLocation)).call{value: mainPortion}(""); require(success, "TaxesDefaultRouterWalletCoin: Fee transfer error"); emit centralChargesent(primaryLocation, mainPortion); } _mainPending = 0; } _swapping = false; } if (!_swapping && amount > 0 && to != address(routerV2) && !isExcludedFromFees[from] && !isExcludedFromFees[to]) { uint256 fees = 0; uint8 txType = 3; if (LiquidityLinks[from]) { if (cumulativeCharges[0] > 0) txType = 0; } else if (LiquidityLinks[to]) { if (cumulativeCharges[1] > 0) txType = 1; } else if (cumulativeCharges[2] > 0) txType = 2; if (txType < 3) { fees = amount * cumulativeCharges[txType] / 10000; amount -= fees; _mainPending += fees * centralCharges[txType] / cumulativeCharges[txType]; } if (fees > 0) { super._transfer(from, address(this), fees); } } super._transfer(from, to, amount); } function _updateRouterV2(address router) private { routerV2 = IUniswapV2Router02(router); connectionV2 = IUniswapV2Factory(routerV2.factory()).createPair(address(this), routerV2.WETH()); excludeFromLimits(router, true); _setAMMPair(connectionV2, true); emit RouterV2Updated(router); } function setAMMPair(address pair, bool isPair) public onlyOwner { require(pair != connectionV2, "DefaultRouter: Cannot remove initial pair from list"); _setAMMPair(pair, isPair); } function _setAMMPair(address pair, bool isPair) private { LiquidityLinks[pair] = isPair; if (isPair) { excludeFromLimits(pair, true); } emit LiquidityLinksUpdated(pair, isPair); } function excludeFromLimits(address account, bool isExcluded) public onlyOwner { isExcludedFromLimits[account] = isExcluded; emit ExcludeFromLimits(account, isExcluded); } function SetMaxBuyLimitation(uint256 _maxBuyAmount) public onlyOwner { maxBuyAmount = _maxBuyAmount; emit MaxBuyAmountUpdated(_maxBuyAmount); } function DefineMaxSellThreshold(uint256 _maxSellAmount) public onlyOwner { maxSellAmount = _maxSellAmount; emit MaxSellAmountUpdated(_maxSellAmount); } function _beforeTokenTransfer(address from, address to, uint256 amount) internal override { if (LiquidityLinks[from] && !isExcludedFromLimits[to]) { // BUY require(amount <= maxBuyAmount, "MaxTx: Cannot exceed max buy limit"); } if (LiquidityLinks[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 /* Telegram bot - https://t.me/FluffyFlapBot Telegram group - https://t.me/FluffyFlapBot Website - https://wwww.fluffyflapbot.org Twitter - https://twitter.com/fluffyflapboteth */ 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 /* Telegram bot - https://t.me/FluffyFlapBot Telegram group - https://t.me/FluffyFlapBot Website - https://wwww.fluffyflapbot.org Twitter - https://twitter.com/fluffyflapboteth */ 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 /* Telegram bot - https://t.me/FluffyFlapBot Telegram group - https://t.me/FluffyFlapBot Website - https://wwww.fluffyflapbot.org Twitter - https://twitter.com/fluffyflapboteth */ 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 /* Telegram bot - https://t.me/FluffyFlapBot Telegram group - https://t.me/FluffyFlapBot Website - https://wwww.fluffyflapbot.org Twitter - https://twitter.com/fluffyflapboteth */ 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 /* Telegram bot - https://t.me/FluffyFlapBot Telegram group - https://t.me/FluffyFlapBot Website - https://wwww.fluffyflapbot.org Twitter - https://twitter.com/fluffyflapboteth */ // 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 /* Telegram bot - https://t.me/FluffyFlapBot Telegram group - https://t.me/FluffyFlapBot Website - https://wwww.fluffyflapbot.org Twitter - https://twitter.com/fluffyflapboteth */ // 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 /* Telegram bot - https://t.me/FluffyFlapBot Telegram group - https://t.me/FluffyFlapBot Website - https://wwww.fluffyflapbot.org Twitter - https://twitter.com/fluffyflapboteth */ // 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 /* Telegram bot - https://t.me/FluffyFlapBot Telegram group - https://t.me/FluffyFlapBot Website - https://wwww.fluffyflapbot.org Twitter - https://twitter.com/fluffyflapboteth */ // 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 /* Telegram bot - https://t.me/FluffyFlapBot Telegram group - https://t.me/FluffyFlapBot Website - https://wwww.fluffyflapbot.org Twitter - https://twitter.com/fluffyflapboteth */ // 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 /* Telegram bot - https://t.me/FluffyFlapBot Telegram group - https://t.me/FluffyFlapBot Website - https://wwww.fluffyflapbot.org Twitter - https://twitter.com/fluffyflapboteth */ // 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":"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":true,"internalType":"address","name":"AMMPair","type":"address"},{"indexed":false,"internalType":"bool","name":"isPair","type":"bool"}],"name":"LiquidityLinksUpdated","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":"uint16","name":"buyFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"sellFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"transferFee","type":"uint16"}],"name":"centralChargesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"centralChargesent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"primaryLocation","type":"address"}],"name":"primaryLocationUpdated","type":"event"},{"inputs":[{"internalType":"uint256","name":"_maxSellAmount","type":"uint256"}],"name":"DefineMaxSellThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"LiquidityLinks","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBuyAmount","type":"uint256"}],"name":"SetMaxBuyLimitation","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":"UpdateTradeCharacteristics","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"centralCharges","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"connectionV2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"cumulativeCharges","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"fetchAllInQueue","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":"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":[{"internalType":"uint256","name":"_swapThreshold","type":"uint256"}],"name":"modifyTradeLimit","outputs":[],"stateMutability":"nonpayable","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":"primaryLocation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"primaryLocationSetup","outputs":[],"stateMutability":"nonpayable","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":[],"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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600d81526020017f53696c6c7953616c6c79426f74000000000000000000000000000000000000008152506040518060400160405280600d81526020017f53696c6c7953616c6c79426f740000000000000000000000000000000000000081525081600390816200008f919062001532565b508060049081620000a1919062001532565b505050620000c4620000b86200033560201b60201c565b6200033d60201b60201c565b60007393e31e837e3a172b027b2f5e9acdb46c5196bef090506200012a600a620000f36200040360201b60201c565b600a620001019190620017a9565b6301312d00620001129190620017fa565b6200011e919062001874565b6200040c60201b60201c565b6200014f7393e31e837e3a172b027b2f5e9acdb46c5196bef06200045f60201b60201c565b620001676109c4610dac6000620004ff60201b60201c565b6200017a8160016200081360201b60201c565b6200018d3060016200081360201b60201c565b620001b2737a250d5630b4cf539739df2c5dacb4c659f2488d620008ce60201b60201c565b620001c581600162000b8660201b60201c565b620001d830600162000b8660201b60201c565b620001ec6000600162000b8660201b60201c565b62000221600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600162000b8660201b60201c565b6200026e600a620002376200040360201b60201c565b600a620002459190620017a9565b6301312d00620002569190620017fa565b62000262919062001874565b62000c4160201b60201c565b620002bb600a620002846200040360201b60201c565b600a620002929190620017a9565b6301312d00620002a39190620017fa565b620002af919062001874565b62000c9460201b60201c565b6200030981600a620002d26200040360201b60201c565b600a620002e09190620017a9565b633b9aca00620002f19190620017fa565b620002fd919062001874565b62000ce760201b60201c565b6200032e7393e31e837e3a172b027b2f5e9acdb46c5196bef06200033d60201b60201c565b5062001dcb565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b6200041c62000e5460201b60201c565b806006819055507f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647681604051620004549190620018bd565b60405180910390a150565b6200046f62000e5460201b60201c565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004c38160016200081360201b60201c565b7f9f980e2e70f2d8f9f3bd1bc4a167ea77145207456a7daf6917aae293be24eb2681604051620004f491906200191f565b60405180910390a150565b6200050f62000e5460201b60201c565b60405180606001604052808461ffff1661ffff1681526020018361ffff1661ffff1681526020018261ffff1661ffff16815250600990600362000554929190620011f5565b5060096000600381106200056d576200056c6200193c565b5b601091828204019190066002029054906101000a900461ffff16600062000595919062001979565b600b600060038110620005ad57620005ac6200193c565b5b601091828204019190066002026101000a81548161ffff021916908361ffff1602179055506009600160038110620005ea57620005e96200193c565b5b601091828204019190066002029054906101000a900461ffff16600062000612919062001979565b600b6001600381106200062a57620006296200193c565b5b601091828204019190066002026101000a81548161ffff021916908361ffff16021790555060096002600381106200066757620006666200193c565b5b601091828204019190066002029054906101000a900461ffff1660006200068f919062001979565b600b600260038110620006a757620006a66200193c565b5b601091828204019190066002026101000a81548161ffff021916908361ffff160217905550610dac600b600060038110620006e757620006e66200193c565b5b601091828204019190066002029054906101000a900461ffff1661ffff16111580156200074b5750610dac600b6001600381106200072a57620007296200193c565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611155b80156200078f5750610dac600b6002600381106200076e576200076d6200193c565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611155b620007d1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007c89062001a3d565b60405180910390fd5b7fdad5d1b48954838d31250bd9d41da4adc006bea2d3d50d23dde68cc0d998e54a838383604051620008069392919062001a70565b60405180910390a1505050565b6200082362000e5460201b60201c565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620008c2919062001aca565b60405180910390a25050565b80600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200097d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620009a3919062001b1d565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000a2d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000a53919062001b1d565b6040518363ffffffff1660e01b815260040162000a7292919062001b4f565b6020604051808303816000875af115801562000a92573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000ab8919062001b1d565b600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000b0b81600162000b8660201b60201c565b62000b40600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600162000ee560201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff167fbc052db65df144ad4f71f02da93cae3d4401104c30ac374d7cc10d87ee07b60260405160405180910390a250565b62000b9662000e5460201b60201c565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc928260405162000c35919062001aca565b60405180910390a25050565b62000c5162000e5460201b60201c565b806010819055507fd0459d371e1defb856088ceda9d33bfed2a31a105e0bae2113cdc7dcc9e77e9d8160405162000c899190620018bd565b60405180910390a150565b62000ca462000e5460201b60201c565b806011819055507fa0dff8a4e8bcaa27b5a2b64bc312f8b338e362bd6cad89f5fe2ae6b8389fb38a8160405162000cdc9190620018bd565b60405180910390a150565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000d59576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d509062001bcc565b60405180910390fd5b62000d6d6000838362000fab60201b60201c565b806002600082825462000d81919062001bee565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000e349190620018bd565b60405180910390a362000e5060008383620011a960201b60201c565b5050565b62000e646200033560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000e8a620011c160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000ee3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000eda9062001c79565b60405180910390fd5b565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550801562000f575762000f5682600162000b8660201b60201c565b5b8173ffffffffffffffffffffffffffffffffffffffff167fe6d033fd34e3ba36e4eeb7ca53ad4238eac8a8eb42d68fb2b405eedc58d73a878260405162000f9f919062001aca565b60405180910390a25050565b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156200104f5750600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156200109e576010548111156200109d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620010949062001d11565b60405180910390fd5b5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015620011425750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15620011915760115481111562001190576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620011879062001da9565b60405180910390fd5b5b620011a4838383620011eb60201b60201c565b505050565b620011bc838383620011f060201b60201c565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b505050565b505050565b826003600f01601090048101928215620012865791602002820160005b838211156200125457835183826101000a81548161ffff021916908361ffff160217905550926020019260020160208160010104928301926001030262001212565b8015620012845782816101000a81549061ffff021916905560020160208160010104928301926001030262001254565b505b50905062001295919062001299565b5090565b5b80821115620012b45760008160009055506001016200129a565b5090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200133a57607f821691505b60208210810362001350576200134f620012f2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620013ba7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200137b565b620013c686836200137b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620014136200140d6200140784620013de565b620013e8565b620013de565b9050919050565b6000819050919050565b6200142f83620013f2565b620014476200143e826200141a565b84845462001388565b825550505050565b600090565b6200145e6200144f565b6200146b81848462001424565b505050565b5b8181101562001493576200148760008262001454565b60018101905062001471565b5050565b601f821115620014e257620014ac8162001356565b620014b7846200136b565b81016020851015620014c7578190505b620014df620014d6856200136b565b83018262001470565b50505b505050565b600082821c905092915050565b60006200150760001984600802620014e7565b1980831691505092915050565b6000620015228383620014f4565b9150826002028217905092915050565b6200153d82620012b8565b67ffffffffffffffff811115620015595762001558620012c3565b5b62001565825462001321565b6200157282828562001497565b600060209050601f831160018114620015aa576000841562001595578287015190505b620015a1858262001514565b86555062001611565b601f198416620015ba8662001356565b60005b82811015620015e457848901518255600182019150602085019450602081019050620015bd565b8683101562001604578489015162001600601f891682620014f4565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620016a7578086048111156200167f576200167e62001619565b5b60018516156200168f5780820291505b80810290506200169f8562001648565b94506200165f565b94509492505050565b600082620016c2576001905062001795565b81620016d2576000905062001795565b8160018114620016eb5760028114620016f6576200172c565b600191505062001795565b60ff8411156200170b576200170a62001619565b5b8360020a91508482111562001725576200172462001619565b5b5062001795565b5060208310610133831016604e8410600b8410161715620017665782820a90508381111562001760576200175f62001619565b5b62001795565b62001775848484600162001655565b925090508184048111156200178f576200178e62001619565b5b81810290505b9392505050565b600060ff82169050919050565b6000620017b682620013de565b9150620017c3836200179c565b9250620017f27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620016b0565b905092915050565b60006200180782620013de565b91506200181483620013de565b92508282026200182481620013de565b915082820484148315176200183e576200183d62001619565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200188182620013de565b91506200188e83620013de565b925082620018a157620018a062001845565b5b828204905092915050565b620018b781620013de565b82525050565b6000602082019050620018d46000830184620018ac565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200190782620018da565b9050919050565b6200191981620018fa565b82525050565b60006020820190506200193660008301846200190e565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061ffff82169050919050565b600062001986826200196b565b915062001993836200196b565b9250828201905061ffff811115620019b057620019af62001619565b5b92915050565b600082825260208201905092915050565b7f546178657344656661756c74526f757465723a2043616e6e6f7420657863656560008201527f64206d617820746f74616c20666565206f662033352500000000000000000000602082015250565b600062001a25603683620019b6565b915062001a3282620019c7565b604082019050919050565b6000602082019050818103600083015262001a588162001a16565b9050919050565b62001a6a816200196b565b82525050565b600060608201905062001a87600083018662001a5f565b62001a96602083018562001a5f565b62001aa5604083018462001a5f565b949350505050565b60008115159050919050565b62001ac48162001aad565b82525050565b600060208201905062001ae1600083018462001ab9565b92915050565b600080fd5b62001af781620018fa565b811462001b0357600080fd5b50565b60008151905062001b178162001aec565b92915050565b60006020828403121562001b365762001b3562001ae7565b5b600062001b468482850162001b06565b91505092915050565b600060408201905062001b6660008301856200190e565b62001b7560208301846200190e565b9392505050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001bb4601f83620019b6565b915062001bc18262001b7c565b602082019050919050565b6000602082019050818103600083015262001be78162001ba5565b9050919050565b600062001bfb82620013de565b915062001c0883620013de565b925082820190508082111562001c235762001c2262001619565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062001c61602083620019b6565b915062001c6e8262001c29565b602082019050919050565b6000602082019050818103600083015262001c948162001c52565b9050919050565b7f4d617854783a2043616e6e6f7420657863656564206d617820627579206c696d60008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b600062001cf9602283620019b6565b915062001d068262001c9b565b604082019050919050565b6000602082019050818103600083015262001d2c8162001cea565b9050919050565b7f4d617854783a2043616e6e6f7420657863656564206d61782073656c6c206c6960008201527f6d69740000000000000000000000000000000000000000000000000000000000602082015250565b600062001d91602383620019b6565b915062001d9e8262001d33565b604082019050919050565b6000602082019050818103600083015262001dc48162001d82565b9050919050565b613aa48062001ddb6000396000f3fe6080604052600436106102135760003560e01c806366d602ae11610118578063add71038116100a0578063c02466681161006f578063c0246668146107e4578063c0a904a21461080d578063dd62ed3e14610836578063e24724a014610873578063f2fde38b146108b05761021a565b8063add7103814610726578063af215e4314610763578063b8e1693e1461078e578063bf0861c4146107b95761021a565b806388e765ff116100e757806388e765ff1461062b5780638da5cb5b1461065657806395d89b4114610681578063a457c2d7146106ac578063a9059cbb146106e95761021a565b806366d602ae1461058357806370a08231146105ae578063715018a6146105eb57806379cc6790146106025761021a565b806330eeb0ce1161019b5780634e3a65c81161016a5780634e3a65c8146104785780634fbee193146104b5578063502f7446146104f25780635cce86cd1461051d5780635e25508a1461055a5761021a565b806330eeb0ce146103be578063313ce567146103e7578063395093511461041257806342966c681461044f5761021a565b806318160ddd116101e257806318160ddd146102db57806318e7dffb146103065780631e6008e81461032f57806323b872dd146103585780632d99d32e146103955761021a565b80630445b6671461021f57806306fdde031461024a578063095ea7b3146102755780630a6bf65f146102b25761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b506102346108d9565b6040516102419190612875565b60405180910390f35b34801561025657600080fd5b5061025f6108df565b60405161026c9190612920565b60405180910390f35b34801561028157600080fd5b5061029c600480360381019061029791906129d1565b610971565b6040516102a99190612a2c565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d49190612a47565b610994565b005b3480156102e757600080fd5b506102f06109dd565b6040516102fd9190612875565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190612a47565b6109e7565b005b34801561033b57600080fd5b5061035660048036038101906103519190612a47565b610a30565b005b34801561036457600080fd5b5061037f600480360381019061037a9190612a74565b610a79565b60405161038c9190612a2c565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b79190612af3565b610aa8565b005b3480156103ca57600080fd5b506103e560048036038101906103e09190612b6d565b610b4e565b005b3480156103f357600080fd5b506103fc610e30565b6040516104099190612bdc565b60405180910390f35b34801561041e57600080fd5b50610439600480360381019061043491906129d1565b610e39565b6040516104469190612a2c565b60405180910390f35b34801561045b57600080fd5b5061047660048036038101906104719190612a47565b610e70565b005b34801561048457600080fd5b5061049f600480360381019061049a9190612a47565b610e84565b6040516104ac9190612c06565b60405180910390f35b3480156104c157600080fd5b506104dc60048036038101906104d79190612c21565b610eb2565b6040516104e99190612a2c565b60405180910390f35b3480156104fe57600080fd5b50610507610ed2565b6040516105149190612cad565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f9190612c21565b610ef8565b6040516105519190612a2c565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c9190612c21565b610f18565b005b34801561058f57600080fd5b50610598610fa6565b6040516105a59190612875565b60405180910390f35b3480156105ba57600080fd5b506105d560048036038101906105d09190612c21565b610fac565b6040516105e29190612875565b60405180910390f35b3480156105f757600080fd5b50610600610ff4565b005b34801561060e57600080fd5b50610629600480360381019061062491906129d1565b611008565b005b34801561063757600080fd5b50610640611028565b60405161064d9190612875565b60405180910390f35b34801561066257600080fd5b5061066b61102e565b6040516106789190612cd7565b60405180910390f35b34801561068d57600080fd5b50610696611058565b6040516106a39190612920565b60405180910390f35b3480156106b857600080fd5b506106d360048036038101906106ce91906129d1565b6110ea565b6040516106e09190612a2c565b60405180910390f35b3480156106f557600080fd5b50610710600480360381019061070b91906129d1565b611161565b60405161071d9190612a2c565b60405180910390f35b34801561073257600080fd5b5061074d60048036038101906107489190612c21565b611184565b60405161075a9190612a2c565b60405180910390f35b34801561076f57600080fd5b506107786111a4565b6040516107859190612cd7565b60405180910390f35b34801561079a57600080fd5b506107a36111ca565b6040516107b09190612cd7565b60405180910390f35b3480156107c557600080fd5b506107ce6111f0565b6040516107db9190612875565b60405180910390f35b3480156107f057600080fd5b5061080b60048036038101906108069190612af3565b611206565b005b34801561081957600080fd5b50610834600480360381019061082f9190612af3565b6112b7565b005b34801561084257600080fd5b5061085d60048036038101906108589190612cf2565b611368565b60405161086a9190612875565b60405180910390f35b34801561087f57600080fd5b5061089a60048036038101906108959190612a47565b6113ef565b6040516108a79190612c06565b60405180910390f35b3480156108bc57600080fd5b506108d760048036038101906108d29190612c21565b61141d565b005b60065481565b6060600380546108ee90612d61565b80601f016020809104026020016040519081016040528092919081815260200182805461091a90612d61565b80156109675780601f1061093c57610100808354040283529160200191610967565b820191906000526020600020905b81548152906001019060200180831161094a57829003601f168201915b5050505050905090565b60008061097c6114a0565b90506109898185856114a8565b600191505092915050565b61099c611671565b806010819055507fd0459d371e1defb856088ceda9d33bfed2a31a105e0bae2113cdc7dcc9e77e9d816040516109d29190612875565b60405180910390a150565b6000600254905090565b6109ef611671565b806006819055507f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647681604051610a259190612875565b60405180910390a150565b610a38611671565b806011819055507fa0dff8a4e8bcaa27b5a2b64bc312f8b338e362bd6cad89f5fe2ae6b8389fb38a81604051610a6e9190612875565b60405180910390a150565b600080610a846114a0565b9050610a918582856116ef565b610a9c85858561177b565b60019150509392505050565b610ab0611671565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3790612e04565b60405180910390fd5b610b4a8282611d95565b5050565b610b56611671565b60405180606001604052808461ffff1661ffff1681526020018361ffff1661ffff1681526020018261ffff1661ffff168152506009906003610b999291906127a2565b506009600060038110610baf57610bae612e24565b5b601091828204019190066002029054906101000a900461ffff166000610bd59190612e82565b600b600060038110610bea57610be9612e24565b5b601091828204019190066002026101000a81548161ffff021916908361ffff1602179055506009600160038110610c2457610c23612e24565b5b601091828204019190066002029054906101000a900461ffff166000610c4a9190612e82565b600b600160038110610c5f57610c5e612e24565b5b601091828204019190066002026101000a81548161ffff021916908361ffff1602179055506009600260038110610c9957610c98612e24565b5b601091828204019190066002029054906101000a900461ffff166000610cbf9190612e82565b600b600260038110610cd457610cd3612e24565b5b601091828204019190066002026101000a81548161ffff021916908361ffff160217905550610dac600b600060038110610d1157610d10612e24565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611158015610d715750610dac600b600160038110610d5057610d4f612e24565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611155b8015610db15750610dac600b600260038110610d9057610d8f612e24565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611155b610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790612f2a565b60405180910390fd5b7fdad5d1b48954838d31250bd9d41da4adc006bea2d3d50d23dde68cc0d998e54a838383604051610e2393929190612f4a565b60405180910390a1505050565b60006012905090565b600080610e446114a0565b9050610e65818585610e568589611368565b610e609190612f81565b6114a8565b600191505092915050565b610e81610e7b6114a0565b82611e50565b50565b60098160038110610e9457600080fd5b60109182820401919006600202915054906101000a900461ffff1681565b600a6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f6020528060005260406000206000915054906101000a900460ff1681565b610f20611671565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610f6c816001611206565b7f9f980e2e70f2d8f9f3bd1bc4a167ea77145207456a7daf6917aae293be24eb2681604051610f9b9190612cd7565b60405180910390a150565b60115481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ffc611671565b611006600061201d565b565b61101a826110146114a0565b836116ef565b6110248282611e50565b5050565b60105481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461106790612d61565b80601f016020809104026020016040519081016040528092919081815260200182805461109390612d61565b80156110e05780601f106110b5576101008083540402835291602001916110e0565b820191906000526020600020905b8154815290600101906020018083116110c357829003601f168201915b5050505050905090565b6000806110f56114a0565b905060006111038286611368565b905083811015611148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113f90613027565b60405180910390fd5b61115582868684036114a8565b60019250505092915050565b60008061116c6114a0565b905061117981858561177b565b600191505092915050565b600e6020528060005260406000206000915054906101000a900460ff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600060075460006112019190612f81565b905090565b61120e611671565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516112ab9190612a2c565b60405180910390a25050565b6112bf611671565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc928260405161135c9190612a2c565b60405180910390a25050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b81600381106113ff57600080fd5b60109182820401919006600202915054906101000a900461ffff1681565b611425611671565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611494576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148b906130b9565b60405180910390fd5b61149d8161201d565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150e9061314b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157d906131dd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516116649190612875565b60405180910390a3505050565b6116796114a0565b73ffffffffffffffffffffffffffffffffffffffff1661169761102e565b73ffffffffffffffffffffffffffffffffffffffff16146116ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e490613249565b60405180910390fd5b565b60006116fb8484611368565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146117755781811015611767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175e906132b5565b60405180910390fd5b61177484848484036114a8565b5b50505050565b60006006546117886111f0565b10159050600c60009054906101000a900460ff161580156117f35750600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156117fc5750805b156119cc576001600c60006101000a81548160ff02191690831515021790555060008061182b57506000600754115b156119b057600060075460006118419190612f81565b9050600061184e826120e3565b60004790506000836007548361186491906132d5565b61186e9190613346565b905060008111156119a357600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16816040516118bf906133a8565b60006040518083038185875af1925050503d80600081146118fc576040519150601f19603f3d011682016040523d82523d6000602084013e611901565b606091505b50508093505082611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e9061342f565b60405180910390fd5b7f7172b039b781238f7db39abdedd7f0686e26a49f57aa5dcca986928d438452bd600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168260405161199a92919061344f565b60405180910390a15b6000600781905550505050505b6000600c60006101000a81548160ff0219169083151502179055505b600c60009054906101000a900460ff161580156119e95750600082115b8015611a435750600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611a995750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611aef5750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611d845760008060039050600e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611b92576000600b600060038110611b6457611b63612e24565b5b601091828204019190066002029054906101000a900461ffff1661ffff161115611b8d57600090505b611c6b565b600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611c29576000600b600160038110611bfb57611bfa612e24565b5b601091828204019190066002029054906101000a900461ffff1661ffff161115611c2457600190505b611c6a565b6000600b600260038110611c4057611c3f612e24565b5b601091828204019190066002029054906101000a900461ffff1661ffff161115611c6957600290505b5b5b60038160ff161015611d6c57612710600b8260ff1660038110611c9157611c90612e24565b5b601091828204019190066002029054906101000a900461ffff1661ffff1685611cba91906132d5565b611cc49190613346565b91508184611cd29190613478565b9350600b8160ff1660038110611ceb57611cea612e24565b5b601091828204019190066002029054906101000a900461ffff1661ffff1660098260ff1660038110611d2057611d1f612e24565b5b601091828204019190066002029054906101000a900461ffff1661ffff1683611d4991906132d5565b611d539190613346565b60076000828254611d649190612f81565b925050819055505b6000821115611d8157611d80863084612326565b5b50505b611d8f848484612326565b50505050565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015611dfe57611dfd8260016112b7565b5b8173ffffffffffffffffffffffffffffffffffffffff167fe6d033fd34e3ba36e4eeb7ca53ad4238eac8a8eb42d68fb2b405eedc58d73a8782604051611e449190612a2c565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb69061351e565b60405180910390fd5b611ecb8260008361259c565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f48906135b0565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516120049190612875565b60405180910390a361201883600084612788565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600267ffffffffffffffff811115612100576120ff6135d0565b5b60405190808252806020026020018201604052801561212e5781602001602082028036833780820191505090505b509050308160008151811061214657612145612e24565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122119190613614565b8160018151811061222557612224612e24565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061228c30600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846114a8565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016122f095949392919061373a565b600060405180830381600087803b15801561230a57600080fd5b505af115801561231e573d6000803e3d6000fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238c90613806565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fb90613898565b60405180910390fd5b61240f83838361259c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248c9061392a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125839190612875565b60405180910390a3612596848484612788565b50505050565b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561263f5750600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561268a57601054811115612689576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612680906139bc565b60405180910390fd5b5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561272d5750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561277857601154811115612777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276e90613a4e565b60405180910390fd5b5b612783838383612798565b505050565b61279383838361279d565b505050565b505050565b505050565b826003600f0160109004810192821561282e5791602002820160005b838211156127fe57835183826101000a81548161ffff021916908361ffff16021790555092602001926002016020816001010492830192600103026127be565b801561282c5782816101000a81549061ffff02191690556002016020816001010492830192600103026127fe565b505b50905061283b919061283f565b5090565b5b80821115612858576000816000905550600101612840565b5090565b6000819050919050565b61286f8161285c565b82525050565b600060208201905061288a6000830184612866565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128ca5780820151818401526020810190506128af565b60008484015250505050565b6000601f19601f8301169050919050565b60006128f282612890565b6128fc818561289b565b935061290c8185602086016128ac565b612915816128d6565b840191505092915050565b6000602082019050818103600083015261293a81846128e7565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061297282612947565b9050919050565b61298281612967565b811461298d57600080fd5b50565b60008135905061299f81612979565b92915050565b6129ae8161285c565b81146129b957600080fd5b50565b6000813590506129cb816129a5565b92915050565b600080604083850312156129e8576129e7612942565b5b60006129f685828601612990565b9250506020612a07858286016129bc565b9150509250929050565b60008115159050919050565b612a2681612a11565b82525050565b6000602082019050612a416000830184612a1d565b92915050565b600060208284031215612a5d57612a5c612942565b5b6000612a6b848285016129bc565b91505092915050565b600080600060608486031215612a8d57612a8c612942565b5b6000612a9b86828701612990565b9350506020612aac86828701612990565b9250506040612abd868287016129bc565b9150509250925092565b612ad081612a11565b8114612adb57600080fd5b50565b600081359050612aed81612ac7565b92915050565b60008060408385031215612b0a57612b09612942565b5b6000612b1885828601612990565b9250506020612b2985828601612ade565b9150509250929050565b600061ffff82169050919050565b612b4a81612b33565b8114612b5557600080fd5b50565b600081359050612b6781612b41565b92915050565b600080600060608486031215612b8657612b85612942565b5b6000612b9486828701612b58565b9350506020612ba586828701612b58565b9250506040612bb686828701612b58565b9150509250925092565b600060ff82169050919050565b612bd681612bc0565b82525050565b6000602082019050612bf16000830184612bcd565b92915050565b612c0081612b33565b82525050565b6000602082019050612c1b6000830184612bf7565b92915050565b600060208284031215612c3757612c36612942565b5b6000612c4584828501612990565b91505092915050565b6000819050919050565b6000612c73612c6e612c6984612947565b612c4e565b612947565b9050919050565b6000612c8582612c58565b9050919050565b6000612c9782612c7a565b9050919050565b612ca781612c8c565b82525050565b6000602082019050612cc26000830184612c9e565b92915050565b612cd181612967565b82525050565b6000602082019050612cec6000830184612cc8565b92915050565b60008060408385031215612d0957612d08612942565b5b6000612d1785828601612990565b9250506020612d2885828601612990565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612d7957607f821691505b602082108103612d8c57612d8b612d32565b5b50919050565b7f44656661756c74526f757465723a2043616e6e6f742072656d6f766520696e6960008201527f7469616c20706169722066726f6d206c69737400000000000000000000000000602082015250565b6000612dee60338361289b565b9150612df982612d92565b604082019050919050565b60006020820190508181036000830152612e1d81612de1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e8d82612b33565b9150612e9883612b33565b9250828201905061ffff811115612eb257612eb1612e53565b5b92915050565b7f546178657344656661756c74526f757465723a2043616e6e6f7420657863656560008201527f64206d617820746f74616c20666565206f662033352500000000000000000000602082015250565b6000612f1460368361289b565b9150612f1f82612eb8565b604082019050919050565b60006020820190508181036000830152612f4381612f07565b9050919050565b6000606082019050612f5f6000830186612bf7565b612f6c6020830185612bf7565b612f796040830184612bf7565b949350505050565b6000612f8c8261285c565b9150612f978361285c565b9250828201905080821115612faf57612fae612e53565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061301160258361289b565b915061301c82612fb5565b604082019050919050565b6000602082019050818103600083015261304081613004565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130a360268361289b565b91506130ae82613047565b604082019050919050565b600060208201905081810360008301526130d281613096565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061313560248361289b565b9150613140826130d9565b604082019050919050565b6000602082019050818103600083015261316481613128565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006131c760228361289b565b91506131d28261316b565b604082019050919050565b600060208201905081810360008301526131f6816131ba565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061323360208361289b565b915061323e826131fd565b602082019050919050565b6000602082019050818103600083015261326281613226565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061329f601d8361289b565b91506132aa82613269565b602082019050919050565b600060208201905081810360008301526132ce81613292565b9050919050565b60006132e08261285c565b91506132eb8361285c565b92508282026132f98161285c565b915082820484148315176133105761330f612e53565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006133518261285c565b915061335c8361285c565b92508261336c5761336b613317565b5b828204905092915050565b600081905092915050565b50565b6000613392600083613377565b915061339d82613382565b600082019050919050565b60006133b382613385565b9150819050919050565b7f546178657344656661756c74526f7574657257616c6c6574436f696e3a20466560008201527f65207472616e73666572206572726f7200000000000000000000000000000000602082015250565b600061341960308361289b565b9150613424826133bd565b604082019050919050565b600060208201905081810360008301526134488161340c565b9050919050565b60006040820190506134646000830185612cc8565b6134716020830184612866565b9392505050565b60006134838261285c565b915061348e8361285c565b92508282039050818111156134a6576134a5612e53565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061350860218361289b565b9150613513826134ac565b604082019050919050565b60006020820190508181036000830152613537816134fb565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061359a60228361289b565b91506135a58261353e565b604082019050919050565b600060208201905081810360008301526135c98161358d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061360e81612979565b92915050565b60006020828403121561362a57613629612942565b5b6000613638848285016135ff565b91505092915050565b6000819050919050565b600061366661366161365c84613641565b612c4e565b61285c565b9050919050565b6136768161364b565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6136b181612967565b82525050565b60006136c383836136a8565b60208301905092915050565b6000602082019050919050565b60006136e78261367c565b6136f18185613687565b93506136fc83613698565b8060005b8381101561372d57815161371488826136b7565b975061371f836136cf565b925050600181019050613700565b5085935050505092915050565b600060a08201905061374f6000830188612866565b61375c602083018761366d565b818103604083015261376e81866136dc565b905061377d6060830185612cc8565b61378a6080830184612866565b9695505050505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006137f060258361289b565b91506137fb82613794565b604082019050919050565b6000602082019050818103600083015261381f816137e3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061388260238361289b565b915061388d82613826565b604082019050919050565b600060208201905081810360008301526138b181613875565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061391460268361289b565b915061391f826138b8565b604082019050919050565b6000602082019050818103600083015261394381613907565b9050919050565b7f4d617854783a2043616e6e6f7420657863656564206d617820627579206c696d60008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b60006139a660228361289b565b91506139b18261394a565b604082019050919050565b600060208201905081810360008301526139d581613999565b9050919050565b7f4d617854783a2043616e6e6f7420657863656564206d61782073656c6c206c6960008201527f6d69740000000000000000000000000000000000000000000000000000000000602082015250565b6000613a3860238361289b565b9150613a43826139dc565b604082019050919050565b60006020820190508181036000830152613a6781613a2b565b905091905056fea26469706673582212200bb8f39fcea1a5e304a45adc6f2d1c22cda9f95614761115b7aaf8530e1f3ad064736f6c63430008130033
Deployed Bytecode
0x6080604052600436106102135760003560e01c806366d602ae11610118578063add71038116100a0578063c02466681161006f578063c0246668146107e4578063c0a904a21461080d578063dd62ed3e14610836578063e24724a014610873578063f2fde38b146108b05761021a565b8063add7103814610726578063af215e4314610763578063b8e1693e1461078e578063bf0861c4146107b95761021a565b806388e765ff116100e757806388e765ff1461062b5780638da5cb5b1461065657806395d89b4114610681578063a457c2d7146106ac578063a9059cbb146106e95761021a565b806366d602ae1461058357806370a08231146105ae578063715018a6146105eb57806379cc6790146106025761021a565b806330eeb0ce1161019b5780634e3a65c81161016a5780634e3a65c8146104785780634fbee193146104b5578063502f7446146104f25780635cce86cd1461051d5780635e25508a1461055a5761021a565b806330eeb0ce146103be578063313ce567146103e7578063395093511461041257806342966c681461044f5761021a565b806318160ddd116101e257806318160ddd146102db57806318e7dffb146103065780631e6008e81461032f57806323b872dd146103585780632d99d32e146103955761021a565b80630445b6671461021f57806306fdde031461024a578063095ea7b3146102755780630a6bf65f146102b25761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b506102346108d9565b6040516102419190612875565b60405180910390f35b34801561025657600080fd5b5061025f6108df565b60405161026c9190612920565b60405180910390f35b34801561028157600080fd5b5061029c600480360381019061029791906129d1565b610971565b6040516102a99190612a2c565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d49190612a47565b610994565b005b3480156102e757600080fd5b506102f06109dd565b6040516102fd9190612875565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190612a47565b6109e7565b005b34801561033b57600080fd5b5061035660048036038101906103519190612a47565b610a30565b005b34801561036457600080fd5b5061037f600480360381019061037a9190612a74565b610a79565b60405161038c9190612a2c565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b79190612af3565b610aa8565b005b3480156103ca57600080fd5b506103e560048036038101906103e09190612b6d565b610b4e565b005b3480156103f357600080fd5b506103fc610e30565b6040516104099190612bdc565b60405180910390f35b34801561041e57600080fd5b50610439600480360381019061043491906129d1565b610e39565b6040516104469190612a2c565b60405180910390f35b34801561045b57600080fd5b5061047660048036038101906104719190612a47565b610e70565b005b34801561048457600080fd5b5061049f600480360381019061049a9190612a47565b610e84565b6040516104ac9190612c06565b60405180910390f35b3480156104c157600080fd5b506104dc60048036038101906104d79190612c21565b610eb2565b6040516104e99190612a2c565b60405180910390f35b3480156104fe57600080fd5b50610507610ed2565b6040516105149190612cad565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f9190612c21565b610ef8565b6040516105519190612a2c565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c9190612c21565b610f18565b005b34801561058f57600080fd5b50610598610fa6565b6040516105a59190612875565b60405180910390f35b3480156105ba57600080fd5b506105d560048036038101906105d09190612c21565b610fac565b6040516105e29190612875565b60405180910390f35b3480156105f757600080fd5b50610600610ff4565b005b34801561060e57600080fd5b50610629600480360381019061062491906129d1565b611008565b005b34801561063757600080fd5b50610640611028565b60405161064d9190612875565b60405180910390f35b34801561066257600080fd5b5061066b61102e565b6040516106789190612cd7565b60405180910390f35b34801561068d57600080fd5b50610696611058565b6040516106a39190612920565b60405180910390f35b3480156106b857600080fd5b506106d360048036038101906106ce91906129d1565b6110ea565b6040516106e09190612a2c565b60405180910390f35b3480156106f557600080fd5b50610710600480360381019061070b91906129d1565b611161565b60405161071d9190612a2c565b60405180910390f35b34801561073257600080fd5b5061074d60048036038101906107489190612c21565b611184565b60405161075a9190612a2c565b60405180910390f35b34801561076f57600080fd5b506107786111a4565b6040516107859190612cd7565b60405180910390f35b34801561079a57600080fd5b506107a36111ca565b6040516107b09190612cd7565b60405180910390f35b3480156107c557600080fd5b506107ce6111f0565b6040516107db9190612875565b60405180910390f35b3480156107f057600080fd5b5061080b60048036038101906108069190612af3565b611206565b005b34801561081957600080fd5b50610834600480360381019061082f9190612af3565b6112b7565b005b34801561084257600080fd5b5061085d60048036038101906108589190612cf2565b611368565b60405161086a9190612875565b60405180910390f35b34801561087f57600080fd5b5061089a60048036038101906108959190612a47565b6113ef565b6040516108a79190612c06565b60405180910390f35b3480156108bc57600080fd5b506108d760048036038101906108d29190612c21565b61141d565b005b60065481565b6060600380546108ee90612d61565b80601f016020809104026020016040519081016040528092919081815260200182805461091a90612d61565b80156109675780601f1061093c57610100808354040283529160200191610967565b820191906000526020600020905b81548152906001019060200180831161094a57829003601f168201915b5050505050905090565b60008061097c6114a0565b90506109898185856114a8565b600191505092915050565b61099c611671565b806010819055507fd0459d371e1defb856088ceda9d33bfed2a31a105e0bae2113cdc7dcc9e77e9d816040516109d29190612875565b60405180910390a150565b6000600254905090565b6109ef611671565b806006819055507f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647681604051610a259190612875565b60405180910390a150565b610a38611671565b806011819055507fa0dff8a4e8bcaa27b5a2b64bc312f8b338e362bd6cad89f5fe2ae6b8389fb38a81604051610a6e9190612875565b60405180910390a150565b600080610a846114a0565b9050610a918582856116ef565b610a9c85858561177b565b60019150509392505050565b610ab0611671565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3790612e04565b60405180910390fd5b610b4a8282611d95565b5050565b610b56611671565b60405180606001604052808461ffff1661ffff1681526020018361ffff1661ffff1681526020018261ffff1661ffff168152506009906003610b999291906127a2565b506009600060038110610baf57610bae612e24565b5b601091828204019190066002029054906101000a900461ffff166000610bd59190612e82565b600b600060038110610bea57610be9612e24565b5b601091828204019190066002026101000a81548161ffff021916908361ffff1602179055506009600160038110610c2457610c23612e24565b5b601091828204019190066002029054906101000a900461ffff166000610c4a9190612e82565b600b600160038110610c5f57610c5e612e24565b5b601091828204019190066002026101000a81548161ffff021916908361ffff1602179055506009600260038110610c9957610c98612e24565b5b601091828204019190066002029054906101000a900461ffff166000610cbf9190612e82565b600b600260038110610cd457610cd3612e24565b5b601091828204019190066002026101000a81548161ffff021916908361ffff160217905550610dac600b600060038110610d1157610d10612e24565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611158015610d715750610dac600b600160038110610d5057610d4f612e24565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611155b8015610db15750610dac600b600260038110610d9057610d8f612e24565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611155b610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790612f2a565b60405180910390fd5b7fdad5d1b48954838d31250bd9d41da4adc006bea2d3d50d23dde68cc0d998e54a838383604051610e2393929190612f4a565b60405180910390a1505050565b60006012905090565b600080610e446114a0565b9050610e65818585610e568589611368565b610e609190612f81565b6114a8565b600191505092915050565b610e81610e7b6114a0565b82611e50565b50565b60098160038110610e9457600080fd5b60109182820401919006600202915054906101000a900461ffff1681565b600a6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f6020528060005260406000206000915054906101000a900460ff1681565b610f20611671565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610f6c816001611206565b7f9f980e2e70f2d8f9f3bd1bc4a167ea77145207456a7daf6917aae293be24eb2681604051610f9b9190612cd7565b60405180910390a150565b60115481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ffc611671565b611006600061201d565b565b61101a826110146114a0565b836116ef565b6110248282611e50565b5050565b60105481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461106790612d61565b80601f016020809104026020016040519081016040528092919081815260200182805461109390612d61565b80156110e05780601f106110b5576101008083540402835291602001916110e0565b820191906000526020600020905b8154815290600101906020018083116110c357829003601f168201915b5050505050905090565b6000806110f56114a0565b905060006111038286611368565b905083811015611148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113f90613027565b60405180910390fd5b61115582868684036114a8565b60019250505092915050565b60008061116c6114a0565b905061117981858561177b565b600191505092915050565b600e6020528060005260406000206000915054906101000a900460ff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600060075460006112019190612f81565b905090565b61120e611671565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516112ab9190612a2c565b60405180910390a25050565b6112bf611671565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc928260405161135c9190612a2c565b60405180910390a25050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b81600381106113ff57600080fd5b60109182820401919006600202915054906101000a900461ffff1681565b611425611671565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611494576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148b906130b9565b60405180910390fd5b61149d8161201d565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150e9061314b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157d906131dd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516116649190612875565b60405180910390a3505050565b6116796114a0565b73ffffffffffffffffffffffffffffffffffffffff1661169761102e565b73ffffffffffffffffffffffffffffffffffffffff16146116ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e490613249565b60405180910390fd5b565b60006116fb8484611368565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146117755781811015611767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175e906132b5565b60405180910390fd5b61177484848484036114a8565b5b50505050565b60006006546117886111f0565b10159050600c60009054906101000a900460ff161580156117f35750600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156117fc5750805b156119cc576001600c60006101000a81548160ff02191690831515021790555060008061182b57506000600754115b156119b057600060075460006118419190612f81565b9050600061184e826120e3565b60004790506000836007548361186491906132d5565b61186e9190613346565b905060008111156119a357600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16816040516118bf906133a8565b60006040518083038185875af1925050503d80600081146118fc576040519150601f19603f3d011682016040523d82523d6000602084013e611901565b606091505b50508093505082611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e9061342f565b60405180910390fd5b7f7172b039b781238f7db39abdedd7f0686e26a49f57aa5dcca986928d438452bd600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168260405161199a92919061344f565b60405180910390a15b6000600781905550505050505b6000600c60006101000a81548160ff0219169083151502179055505b600c60009054906101000a900460ff161580156119e95750600082115b8015611a435750600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611a995750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611aef5750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611d845760008060039050600e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611b92576000600b600060038110611b6457611b63612e24565b5b601091828204019190066002029054906101000a900461ffff1661ffff161115611b8d57600090505b611c6b565b600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611c29576000600b600160038110611bfb57611bfa612e24565b5b601091828204019190066002029054906101000a900461ffff1661ffff161115611c2457600190505b611c6a565b6000600b600260038110611c4057611c3f612e24565b5b601091828204019190066002029054906101000a900461ffff1661ffff161115611c6957600290505b5b5b60038160ff161015611d6c57612710600b8260ff1660038110611c9157611c90612e24565b5b601091828204019190066002029054906101000a900461ffff1661ffff1685611cba91906132d5565b611cc49190613346565b91508184611cd29190613478565b9350600b8160ff1660038110611ceb57611cea612e24565b5b601091828204019190066002029054906101000a900461ffff1661ffff1660098260ff1660038110611d2057611d1f612e24565b5b601091828204019190066002029054906101000a900461ffff1661ffff1683611d4991906132d5565b611d539190613346565b60076000828254611d649190612f81565b925050819055505b6000821115611d8157611d80863084612326565b5b50505b611d8f848484612326565b50505050565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015611dfe57611dfd8260016112b7565b5b8173ffffffffffffffffffffffffffffffffffffffff167fe6d033fd34e3ba36e4eeb7ca53ad4238eac8a8eb42d68fb2b405eedc58d73a8782604051611e449190612a2c565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb69061351e565b60405180910390fd5b611ecb8260008361259c565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f48906135b0565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516120049190612875565b60405180910390a361201883600084612788565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600267ffffffffffffffff811115612100576120ff6135d0565b5b60405190808252806020026020018201604052801561212e5781602001602082028036833780820191505090505b509050308160008151811061214657612145612e24565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122119190613614565b8160018151811061222557612224612e24565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061228c30600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846114a8565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016122f095949392919061373a565b600060405180830381600087803b15801561230a57600080fd5b505af115801561231e573d6000803e3d6000fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238c90613806565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fb90613898565b60405180910390fd5b61240f83838361259c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248c9061392a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125839190612875565b60405180910390a3612596848484612788565b50505050565b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561263f5750600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561268a57601054811115612689576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612680906139bc565b60405180910390fd5b5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561272d5750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561277857601154811115612777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276e90613a4e565b60405180910390fd5b5b612783838383612798565b505050565b61279383838361279d565b505050565b505050565b505050565b826003600f0160109004810192821561282e5791602002820160005b838211156127fe57835183826101000a81548161ffff021916908361ffff16021790555092602001926002016020816001010492830192600103026127be565b801561282c5782816101000a81549061ffff02191690556002016020816001010492830192600103026127fe565b505b50905061283b919061283f565b5090565b5b80821115612858576000816000905550600101612840565b5090565b6000819050919050565b61286f8161285c565b82525050565b600060208201905061288a6000830184612866565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128ca5780820151818401526020810190506128af565b60008484015250505050565b6000601f19601f8301169050919050565b60006128f282612890565b6128fc818561289b565b935061290c8185602086016128ac565b612915816128d6565b840191505092915050565b6000602082019050818103600083015261293a81846128e7565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061297282612947565b9050919050565b61298281612967565b811461298d57600080fd5b50565b60008135905061299f81612979565b92915050565b6129ae8161285c565b81146129b957600080fd5b50565b6000813590506129cb816129a5565b92915050565b600080604083850312156129e8576129e7612942565b5b60006129f685828601612990565b9250506020612a07858286016129bc565b9150509250929050565b60008115159050919050565b612a2681612a11565b82525050565b6000602082019050612a416000830184612a1d565b92915050565b600060208284031215612a5d57612a5c612942565b5b6000612a6b848285016129bc565b91505092915050565b600080600060608486031215612a8d57612a8c612942565b5b6000612a9b86828701612990565b9350506020612aac86828701612990565b9250506040612abd868287016129bc565b9150509250925092565b612ad081612a11565b8114612adb57600080fd5b50565b600081359050612aed81612ac7565b92915050565b60008060408385031215612b0a57612b09612942565b5b6000612b1885828601612990565b9250506020612b2985828601612ade565b9150509250929050565b600061ffff82169050919050565b612b4a81612b33565b8114612b5557600080fd5b50565b600081359050612b6781612b41565b92915050565b600080600060608486031215612b8657612b85612942565b5b6000612b9486828701612b58565b9350506020612ba586828701612b58565b9250506040612bb686828701612b58565b9150509250925092565b600060ff82169050919050565b612bd681612bc0565b82525050565b6000602082019050612bf16000830184612bcd565b92915050565b612c0081612b33565b82525050565b6000602082019050612c1b6000830184612bf7565b92915050565b600060208284031215612c3757612c36612942565b5b6000612c4584828501612990565b91505092915050565b6000819050919050565b6000612c73612c6e612c6984612947565b612c4e565b612947565b9050919050565b6000612c8582612c58565b9050919050565b6000612c9782612c7a565b9050919050565b612ca781612c8c565b82525050565b6000602082019050612cc26000830184612c9e565b92915050565b612cd181612967565b82525050565b6000602082019050612cec6000830184612cc8565b92915050565b60008060408385031215612d0957612d08612942565b5b6000612d1785828601612990565b9250506020612d2885828601612990565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612d7957607f821691505b602082108103612d8c57612d8b612d32565b5b50919050565b7f44656661756c74526f757465723a2043616e6e6f742072656d6f766520696e6960008201527f7469616c20706169722066726f6d206c69737400000000000000000000000000602082015250565b6000612dee60338361289b565b9150612df982612d92565b604082019050919050565b60006020820190508181036000830152612e1d81612de1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e8d82612b33565b9150612e9883612b33565b9250828201905061ffff811115612eb257612eb1612e53565b5b92915050565b7f546178657344656661756c74526f757465723a2043616e6e6f7420657863656560008201527f64206d617820746f74616c20666565206f662033352500000000000000000000602082015250565b6000612f1460368361289b565b9150612f1f82612eb8565b604082019050919050565b60006020820190508181036000830152612f4381612f07565b9050919050565b6000606082019050612f5f6000830186612bf7565b612f6c6020830185612bf7565b612f796040830184612bf7565b949350505050565b6000612f8c8261285c565b9150612f978361285c565b9250828201905080821115612faf57612fae612e53565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061301160258361289b565b915061301c82612fb5565b604082019050919050565b6000602082019050818103600083015261304081613004565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130a360268361289b565b91506130ae82613047565b604082019050919050565b600060208201905081810360008301526130d281613096565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061313560248361289b565b9150613140826130d9565b604082019050919050565b6000602082019050818103600083015261316481613128565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006131c760228361289b565b91506131d28261316b565b604082019050919050565b600060208201905081810360008301526131f6816131ba565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061323360208361289b565b915061323e826131fd565b602082019050919050565b6000602082019050818103600083015261326281613226565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061329f601d8361289b565b91506132aa82613269565b602082019050919050565b600060208201905081810360008301526132ce81613292565b9050919050565b60006132e08261285c565b91506132eb8361285c565b92508282026132f98161285c565b915082820484148315176133105761330f612e53565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006133518261285c565b915061335c8361285c565b92508261336c5761336b613317565b5b828204905092915050565b600081905092915050565b50565b6000613392600083613377565b915061339d82613382565b600082019050919050565b60006133b382613385565b9150819050919050565b7f546178657344656661756c74526f7574657257616c6c6574436f696e3a20466560008201527f65207472616e73666572206572726f7200000000000000000000000000000000602082015250565b600061341960308361289b565b9150613424826133bd565b604082019050919050565b600060208201905081810360008301526134488161340c565b9050919050565b60006040820190506134646000830185612cc8565b6134716020830184612866565b9392505050565b60006134838261285c565b915061348e8361285c565b92508282039050818111156134a6576134a5612e53565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061350860218361289b565b9150613513826134ac565b604082019050919050565b60006020820190508181036000830152613537816134fb565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061359a60228361289b565b91506135a58261353e565b604082019050919050565b600060208201905081810360008301526135c98161358d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061360e81612979565b92915050565b60006020828403121561362a57613629612942565b5b6000613638848285016135ff565b91505092915050565b6000819050919050565b600061366661366161365c84613641565b612c4e565b61285c565b9050919050565b6136768161364b565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6136b181612967565b82525050565b60006136c383836136a8565b60208301905092915050565b6000602082019050919050565b60006136e78261367c565b6136f18185613687565b93506136fc83613698565b8060005b8381101561372d57815161371488826136b7565b975061371f836136cf565b925050600181019050613700565b5085935050505092915050565b600060a08201905061374f6000830188612866565b61375c602083018761366d565b818103604083015261376e81866136dc565b905061377d6060830185612cc8565b61378a6080830184612866565b9695505050505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006137f060258361289b565b91506137fb82613794565b604082019050919050565b6000602082019050818103600083015261381f816137e3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061388260238361289b565b915061388d82613826565b604082019050919050565b600060208201905081810360008301526138b181613875565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061391460268361289b565b915061391f826138b8565b604082019050919050565b6000602082019050818103600083015261394381613907565b9050919050565b7f4d617854783a2043616e6e6f7420657863656564206d617820627579206c696d60008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b60006139a660228361289b565b91506139b18261394a565b604082019050919050565b600060208201905081810360008301526139d581613999565b9050919050565b7f4d617854783a2043616e6e6f7420657863656564206d61782073656c6c206c6960008201527f6d69740000000000000000000000000000000000000000000000000000000000602082015250565b6000613a3860238361289b565b9150613a43826139dc565b604082019050919050565b60006020820190508181036000830152613a6781613a2b565b905091905056fea26469706673582212200bb8f39fcea1a5e304a45adc6f2d1c22cda9f95614761115b7aaf8530e1f3ad064736f6c63430008130033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.