Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
90,000,000 HANDZ
Holders
293
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000000837488 HANDZValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Handz
Compiler Version
v0.8.21+commit.d9974bed
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.21; import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol"; import { SafeMath } from "@openzeppelin/contracts/utils/math/SafeMath.sol"; import { ERC20 } from "./ERC20.sol"; import { IUniswapV2Factory } from "./uniswap/IUniswapV2Factory.sol"; import { IUniswapV2Pair } from "./uniswap/IUniswapV2Pair.sol"; import { IUniswapV2Router02 } from "./uniswap/IUniswapV2Router02.sol"; contract Handz is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public uniswapV2Router; //address data-sets address public autoBuyAddress = address(0x099f8d9e004cE139c6F46572ea99c0DB71889A78); address public constant deadAddress = address(0xdead); address public teamWallet; address public uniswapV2Pair; //bool data-sets bool public isLimitActive; bool public isTradingOpen; bool public swapEnabled; bool private swapping; //int data-sets uint256 public _buyAutobuyFee = 3; uint256 public _buyLpFee = 2; uint256 public _buyTeamFee = 0; uint256 public buyTotalFees = _buyLpFee + _buyTeamFee + _buyAutobuyFee; uint256 public _sellAutobuyFee = 3; uint256 public _sellLpFee = 1; uint256 public _sellTeamFee = 1; uint256 public sellTotalFees = _sellLpFee + _sellTeamFee + _sellAutobuyFee; uint256 public _autoBuyTokenShare; uint256 public _LpTokenShare; uint256 public _teamTokenShare; uint256 public teamAllocate; uint256 public teamAllocateReleaseTime; uint256 constant teamAllocatePeriod = 365 days; uint256 public txMaxperWallet; uint256 public maxTokenPerWallet; uint256 public swapTokensAtAmount; //mapping data-sets mapping(address => bool) blacklisted; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isTxMaxExcluded; mapping(address => bool) public automatedMarketMakerPairs; event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("HANDZ", "HANDZ") { uint256 totalSupply = 100_000_000 * 1e18; teamAllocate = totalSupply / 10; teamAllocateReleaseTime = block.timestamp + teamAllocatePeriod; uint256 ownerTokens = totalSupply - teamAllocate; _mint(msg.sender, ownerTokens); } // dataset function initContract() external onlyOwner { uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair( address(this), uniswapV2Router.WETH() ); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); isLimitActive = true; isTradingOpen = false; swapEnabled = false; txMaxperWallet = 1_000_000 * 1e18; maxTokenPerWallet = 1_000_000 * 1e18; swapTokensAtAmount = (this.totalSupply() * 5) / 10000; excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); _excludeFromMaxTx(owner(), true); _excludeFromMaxTx(address(this), true); _excludeFromMaxTx(address(0xdead), true); _excludeFromMaxTx(address(uniswapV2Router), true); _excludeFromMaxTx(address(uniswapV2Pair), true); } function launchHandz() external onlyOwner { isTradingOpen = true; swapEnabled = true; } function setLimit() external onlyOwner returns (bool) { isLimitActive = false; return true; } function setDegenMaxWallet(uint256 amt) external onlyOwner { require( amt >= ((totalSupply() * 10) / 1000) / 1e18, "Max number must be bigger than 1.0%" ); maxTokenPerWallet = amt * (10**18); } function setTxMax(uint256 amt) external onlyOwner { require( amt >= ((totalSupply() * 5) / 1000) / 1e18, "must be bigger than 0.5%" ); txMaxperWallet = amt * (10**18); } function setSwapLimit(uint256 amt) external onlyOwner returns (bool) { require( amt >= (totalSupply() * 1) / 100000, "Swap limit must be higher than 0.001% total supply." ); require( amt <= (totalSupply() * 5) / 1000, "Swap limit cannot be higher than 0.5% total supply." ); swapTokensAtAmount = amt; return true; } //setswap action function setSwapEnabled(bool action) external onlyOwner { swapEnabled = action; } function _excludeFromMaxTx(address newAdd, bool action) public onlyOwner { _isTxMaxExcluded[newAdd] = action; } function setBuyFees( uint256 _autoFee, uint256 _lpFee, uint256 _teamFee ) external onlyOwner { _buyAutobuyFee = _autoFee; _buyLpFee = _lpFee; _buyTeamFee = _teamFee; buyTotalFees = _buyAutobuyFee + _buyLpFee + _buyTeamFee; require(buyTotalFees <= 5, "Buy fee max should 5%"); } function setSellFees( uint256 _autoFee, uint256 _lpFee, uint256 _teamFee ) external onlyOwner { _sellAutobuyFee = _autoFee; _sellLpFee = _lpFee; _sellTeamFee = _teamFee; sellTotalFees = _sellAutobuyFee + _sellLpFee + _sellTeamFee; require(sellTotalFees <= 5, "Sell Max must be 5%"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function setTeamAddress(address newAdd) external onlyOwner { teamWallet = newAdd; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function isBlacklisted(address account) public view returns (bool) { return blacklisted[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!blacklisted[from], "Sender blacklisted"); require(!blacklisted[to], "Receiver blacklisted"); if (amount == 0) { super._transfer(from, to, 0); return; } if (isLimitActive) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!isTradingOpen) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // buying if (automatedMarketMakerPairs[from] && !_isTxMaxExcluded[to]) { require( amount <= txMaxperWallet, "Buy transfer amount exceeds the txMaxperWallet." ); require( amount + balanceOf(to) <= maxTokenPerWallet, "Max wallet exceeded" ); } //selling else if ( automatedMarketMakerPairs[to] && !_isTxMaxExcluded[from] ) { require( amount <= txMaxperWallet, "Sell transfer amount exceeds the txMaxperWallet." ); } else if (!_isTxMaxExcluded[to]) { require( amount + balanceOf(to) <= maxTokenPerWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; SwapNow(); swapping = false; } bool takeFee = !swapping; if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); _LpTokenShare += (fees * _sellLpFee) / sellTotalFees; _teamTokenShare += (fees * _sellTeamFee) / sellTotalFees; _autoBuyTokenShare += (fees * _sellAutobuyFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); _LpTokenShare += (fees * _buyLpFee) / buyTotalFees; _teamTokenShare += (fees * _buyTeamFee) / buyTotalFees; _autoBuyTokenShare += (fees * _buyAutobuyFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, owner(), block.timestamp ); } function _autoBuy(uint256 ethAmt) private { if (ethAmt > 0) { address[] memory path = new address[](2); path[0] = uniswapV2Router.WETH(); path[1] = autoBuyAddress; uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{ value: ethAmt }(0, path, teamWallet, block.timestamp); } } function SwapNow() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = _LpTokenShare + _autoBuyTokenShare + _teamTokenShare; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } uint256 liquidityTokens = (contractBalance * _LpTokenShare) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForTeam = ethBalance.mul(_teamTokenShare).div( totalTokensToSwap - (_LpTokenShare / 2) ); uint256 ethForBuyback = ethBalance.mul(_autoBuyTokenShare).div( totalTokensToSwap - (_LpTokenShare / 2) ); uint256 ethForLiquidity = ethBalance - ethForBuyback - ethForTeam; _LpTokenShare = 0; _autoBuyTokenShare = 0; _teamTokenShare = 0; (success, ) = address(teamWallet).call{value: ethForTeam}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, _LpTokenShare ); } _autoBuy(ethForBuyback); } function changeUniswapRouterv2(address newAdd) public onlyOwner { uniswapV2Router = IUniswapV2Router02(newAdd); } function changeAutoBuyAddress(address newAdd) public onlyOwner { autoBuyAddress = address(newAdd); } function blacklist(address newAdd) public onlyOwner { blacklisted[newAdd] = true; } function unblacklist(address newAdd) public onlyOwner { blacklisted[newAdd] = false; } function withdrawTeamAllocate() external { require(teamAllocateReleaseTime <= block.timestamp, "Tokens are locked"); _mint(teamWallet, teamAllocate); teamAllocate = 0; } function withdrawEth(address newAdd) external onlyOwner { (bool success, ) = newAdd.call{value: address(this).balance}(""); require(success); } receive() external payable {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.21; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import { IERC20Metadata } from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol"; import { Context } from "@openzeppelin/contracts/utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * 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}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * 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 value {ERC20} uses, unless this function is * 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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require( currentAllowance >= amount, "ERC20: transfer amount exceeds allowance" ); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve( _msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require( senderBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, 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; _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; } _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 Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity 0.8.21; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); 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(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.21; interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 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 (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 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 (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); 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 (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.21; interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_LpTokenShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_autoBuyTokenShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_buyAutobuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_buyLpFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_buyTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAdd","type":"address"},{"internalType":"bool","name":"action","type":"bool"}],"name":"_excludeFromMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isTxMaxExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellAutobuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellLpFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_teamTokenShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"autoBuyAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAdd","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAdd","type":"address"}],"name":"changeAutoBuyAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAdd","type":"address"}],"name":"changeUniswapRouterv2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLimitActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchHandz","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTokenPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_autoFee","type":"uint256"},{"internalType":"uint256","name":"_lpFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"setDegenMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_autoFee","type":"uint256"},{"internalType":"uint256","name":"_lpFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"action","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"setSwapLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAdd","type":"address"}],"name":"setTeamAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"setTxMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamAllocate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamAllocateReleaseTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"txMaxperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAdd","type":"address"}],"name":"unblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAdd","type":"address"}],"name":"withdrawEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawTeamAllocate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405273099f8d9e004ce139c6f46572ea99c0db71889a7860075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506003600a556002600b555f600c55600a54600c54600b546200007b91906200045f565b6200008791906200045f565b600d556003600e556001600f556001601055600e54601054600f54620000ae91906200045f565b620000ba91906200045f565b601155348015620000c9575f80fd5b506040518060400160405280600581526020017f48414e445a0000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f48414e445a0000000000000000000000000000000000000000000000000000008152508160039081620001479190620006f4565b508060049081620001599190620006f4565b5050506200017c62000170620001e560201b60201c565b620001ec60201b60201c565b5f6a52b7d2dcc80cd2e40000009050600a816200019a919062000805565b6015819055506301e1338042620001b291906200045f565b6016819055505f60155482620001c991906200083c565b9050620001dd3382620002af60201b60201c565b505062000920565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000320576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200031790620008d4565b60405180910390fd5b620003335f83836200041f60201b60201c565b8060025f8282546200034691906200045f565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546200039a91906200045f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000400919062000905565b60405180910390a36200041b5f83836200042460201b60201c565b5050565b505050565b505050565b5f819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6200046b8262000429565b9150620004788362000429565b925082820190508082111562000493576200049262000432565b5b92915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200051557607f821691505b6020821081036200052b576200052a620004d0565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200058f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000552565b6200059b868362000552565b95508019841693508086168417925050509392505050565b5f819050919050565b5f620005dc620005d6620005d08462000429565b620005b3565b62000429565b9050919050565b5f819050919050565b620005f783620005bc565b6200060f6200060682620005e3565b8484546200055e565b825550505050565b5f90565b6200062562000617565b62000632818484620005ec565b505050565b5b8181101562000659576200064d5f826200061b565b60018101905062000638565b5050565b601f821115620006a857620006728162000531565b6200067d8462000543565b810160208510156200068d578190505b620006a56200069c8562000543565b83018262000637565b50505b505050565b5f82821c905092915050565b5f620006ca5f1984600802620006ad565b1980831691505092915050565b5f620006e48383620006b9565b9150826002028217905092915050565b620006ff8262000499565b67ffffffffffffffff8111156200071b576200071a620004a3565b5b620007278254620004fd565b620007348282856200065d565b5f60209050601f8311600181146200076a575f841562000755578287015190505b620007618582620006d7565b865550620007d0565b601f1984166200077a8662000531565b5f5b82811015620007a3578489015182556001820191506020850194506020810190506200077c565b86831015620007c35784890151620007bf601f891682620006b9565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f620008118262000429565b91506200081e8362000429565b925082620008315762000830620007d8565b5b828204905092915050565b5f620008488262000429565b9150620008558362000429565b925082820390508181111562000870576200086f62000432565b5b92915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f620008bc601f8362000876565b9150620008c98262000886565b602082019050919050565b5f6020820190508181035f830152620008ed81620008ae565b9050919050565b620008ff8162000429565b82525050565b5f6020820190506200091a5f830184620008f4565b92915050565b6152af806200092e5f395ff3fe6080604052600436106103a5575f3560e01c8063693d0e50116101e6578063a650f5751161010c578063dd62ed3e1161009f578063f2fde38b1161006e578063f2fde38b14610d54578063f9f92be414610d7c578063fc772b5014610da4578063fe575a8714610de0576103ac565b8063dd62ed3e14610cb0578063e01af92c14610cec578063e2f4560514610d14578063e35eeee214610d3e576103ac565b8063c469b6dd116100db578063c469b6dd14610c08578063cab0347114610c32578063d85ba06314610c5c578063da1fa38b14610c86576103ac565b8063a650f57514610b3e578063a9059cbb14610b68578063b62496f514610ba4578063c024666814610be0576103ac565b80637a8baf52116101845780639a7a23d6116101535780639a7a23d614610a88578063a053f16c14610ab0578063a370037814610ada578063a457c2d714610b02576103ac565b80637a8baf52146109f45780638203f5fe14610a1e5780638da5cb5b14610a3457806395d89b4114610a5e576103ac565b806370a08231116101c057806370a0823114610950578063715018a61461098c57806375ca7969146109a257806375e3661e146109cc576103ac565b8063693d0e50146108d25780636a486a8e146108fc5780636ddd171314610926576103ac565b8063313ce567116102cb5780634fbee193116102695780635b6cbd4b116102385780635b6cbd4b146108405780636606cfcb146108565780636690864e1461088057806368849ed2146108a8576103ac565b80634fbee1931461078857806354713731146107c457806356a060a2146107ec5780635992704414610816576103ac565b80633ac0fc7e116102a55780633ac0fc7e146106d057806349bd5a5e146106fa5780634b46e301146107245780634d28337514610760576103ac565b8063313ce567146106405780633384a40d1461066a5780633950935114610694576103ac565b80631694505e11610343578063182c425c11610312578063182c425c1461058857806323b872dd146105b257806325e16063146105ee57806327c8f83514610616576103ac565b80631694505e146104e2578063177286921461050c578063177288b51461053457806318160ddd1461055e576103ac565b8063095ea7b31161037f578063095ea7b31461042e5780630d075d9c1461046a5780630d595ef4146104925780630f683e90146104ba576103ac565b80630178bcf3146103b05780630615102d146103da57806306fdde0314610404576103ac565b366103ac57005b5f80fd5b3480156103bb575f80fd5b506103c4610e1c565b6040516103d19190613d0e565b60405180910390f35b3480156103e5575f80fd5b506103ee610e22565b6040516103fb9190613d0e565b60405180910390f35b34801561040f575f80fd5b50610418610e28565b6040516104259190613db1565b60405180910390f35b348015610439575f80fd5b50610454600480360381019061044f9190613e59565b610eb8565b6040516104619190613eb1565b60405180910390f35b348015610475575f80fd5b50610490600480360381019061048b9190613eca565b610ed5565b005b34801561049d575f80fd5b506104b860048036038101906104b39190613f1a565b610f60565b005b3480156104c5575f80fd5b506104e060048036038101906104db9190613eca565b610ffb565b005b3480156104ed575f80fd5b506104f6611086565b6040516105039190613fa0565b60405180910390f35b348015610517575f80fd5b50610532600480360381019061052d9190613fb9565b6110ab565b005b34801561053f575f80fd5b506105486110f6565b6040516105559190613d0e565b60405180910390f35b348015610569575f80fd5b506105726110fc565b60405161057f9190613d0e565b60405180910390f35b348015610593575f80fd5b5061059c611105565b6040516105a99190613d0e565b60405180910390f35b3480156105bd575f80fd5b506105d860048036038101906105d39190613fe4565b61110b565b6040516105e59190613eb1565b60405180910390f35b3480156105f9575f80fd5b50610614600480360381019061060f9190613fb9565b6111fd565b005b348015610621575f80fd5b5061062a61127a565b6040516106379190614043565b60405180910390f35b34801561064b575f80fd5b50610654611280565b6040516106619190614077565b60405180910390f35b348015610675575f80fd5b5061067e611288565b60405161068b9190613d0e565b60405180910390f35b34801561069f575f80fd5b506106ba60048036038101906106b59190613e59565b61128e565b6040516106c79190613eb1565b60405180910390f35b3480156106db575f80fd5b506106e4611335565b6040516106f19190613d0e565b60405180910390f35b348015610705575f80fd5b5061070e61133b565b60405161071b9190614043565b60405180910390f35b34801561072f575f80fd5b5061074a60048036038101906107459190613f1a565b611360565b6040516107579190613eb1565b60405180910390f35b34801561076b575f80fd5b50610786600480360381019061078191906140ba565b611440565b005b348015610793575f80fd5b506107ae60048036038101906107a99190613fb9565b6114a0565b6040516107bb9190613eb1565b60405180910390f35b3480156107cf575f80fd5b506107ea60048036038101906107e59190613fb9565b6114f2565b005b3480156107f7575f80fd5b5061080061153d565b60405161080d9190613eb1565b60405180910390f35b348015610821575f80fd5b5061082a611550565b6040516108379190614043565b60405180910390f35b34801561084b575f80fd5b50610854611575565b005b348015610861575f80fd5b5061086a6115b5565b6040516108779190614043565b60405180910390f35b34801561088b575f80fd5b506108a660048036038101906108a19190613fb9565b6115da565b005b3480156108b3575f80fd5b506108bc611625565b6040516108c99190613eb1565b60405180910390f35b3480156108dd575f80fd5b506108e661164f565b6040516108f39190613d0e565b60405180910390f35b348015610907575f80fd5b50610910611655565b60405161091d9190613d0e565b60405180910390f35b348015610931575f80fd5b5061093a61165b565b6040516109479190613eb1565b60405180910390f35b34801561095b575f80fd5b5061097660048036038101906109719190613fb9565b61166e565b6040516109839190613d0e565b60405180910390f35b348015610997575f80fd5b506109a06116b3565b005b3480156109ad575f80fd5b506109b66116c6565b6040516109c39190613d0e565b60405180910390f35b3480156109d7575f80fd5b506109f260048036038101906109ed9190613fb9565b6116cc565b005b3480156109ff575f80fd5b50610a0861172b565b604051610a159190613d0e565b60405180910390f35b348015610a29575f80fd5b50610a32611731565b005b348015610a3f575f80fd5b50610a48611b38565b604051610a559190614043565b60405180910390f35b348015610a69575f80fd5b50610a72611b60565b604051610a7f9190613db1565b60405180910390f35b348015610a93575f80fd5b50610aae6004803603810190610aa991906140ba565b611bf0565b005b348015610abb575f80fd5b50610ac4611c95565b604051610ad19190613d0e565b60405180910390f35b348015610ae5575f80fd5b50610b006004803603810190610afb9190613f1a565b611c9b565b005b348015610b0d575f80fd5b50610b286004803603810190610b239190613e59565b611d36565b604051610b359190613eb1565b60405180910390f35b348015610b49575f80fd5b50610b52611e1c565b604051610b5f9190613eb1565b60405180910390f35b348015610b73575f80fd5b50610b8e6004803603810190610b899190613e59565b611e2f565b604051610b9b9190613eb1565b60405180910390f35b348015610baf575f80fd5b50610bca6004803603810190610bc59190613fb9565b611e4c565b604051610bd79190613eb1565b60405180910390f35b348015610beb575f80fd5b50610c066004803603810190610c0191906140ba565b611e69565b005b348015610c13575f80fd5b50610c1c611f17565b604051610c299190613d0e565b60405180910390f35b348015610c3d575f80fd5b50610c46611f1d565b604051610c539190613d0e565b60405180910390f35b348015610c67575f80fd5b50610c70611f23565b604051610c7d9190613d0e565b60405180910390f35b348015610c91575f80fd5b50610c9a611f29565b604051610ca79190613d0e565b60405180910390f35b348015610cbb575f80fd5b50610cd66004803603810190610cd191906140f8565b611f2f565b604051610ce39190613d0e565b60405180910390f35b348015610cf7575f80fd5b50610d126004803603810190610d0d9190614136565b611fb1565b005b348015610d1f575f80fd5b50610d28611fd6565b604051610d359190613d0e565b60405180910390f35b348015610d49575f80fd5b50610d52611fdc565b005b348015610d5f575f80fd5b50610d7a6004803603810190610d759190613fb9565b612057565b005b348015610d87575f80fd5b50610da26004803603810190610d9d9190613fb9565b6120d9565b005b348015610daf575f80fd5b50610dca6004803603810190610dc59190613fb9565b612139565b604051610dd79190613eb1565b60405180910390f35b348015610deb575f80fd5b50610e066004803603810190610e019190613fb9565b612156565b604051610e139190613eb1565b60405180910390f35b60145481565b600f5481565b606060038054610e379061418e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e639061418e565b8015610eae5780601f10610e8557610100808354040283529160200191610eae565b820191905f5260205f20905b815481529060010190602001808311610e9157829003601f168201915b5050505050905090565b5f610ecb610ec46121a8565b84846121af565b6001905092915050565b610edd612372565b82600a8190555081600b8190555080600c81905550600c54600b54600a54610f0591906141eb565b610f0f91906141eb565b600d819055506005600d541115610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5290614268565b60405180910390fd5b505050565b610f68612372565b670de0b6b3a76400006103e8600a610f7e6110fc565b610f889190614286565b610f9291906142f4565b610f9c91906142f4565b811015610fde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd590614394565b60405180910390fd5b670de0b6b3a764000081610ff29190614286565b60188190555050565b611003612372565b82600e8190555081600f8190555080601081905550601054600f54600e5461102b91906141eb565b61103591906141eb565b60118190555060056011541115611081576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611078906143fc565b60405180910390fd5b505050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6110b3612372565b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60175481565b5f600254905090565b600b5481565b5f6111178484846123f0565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61115e6121a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d49061448a565b60405180910390fd5b6111f1856111e96121a8565b8584036121af565b60019150509392505050565b611205612372565b5f8173ffffffffffffffffffffffffffffffffffffffff164760405161122a906144d5565b5f6040518083038185875af1925050503d805f8114611264576040519150601f19603f3d011682016040523d82523d5f602084013e611269565b606091505b5050905080611276575f80fd5b5050565b61dead81565b5f6012905090565b600a5481565b5f61132b61129a6121a8565b848460015f6112a76121a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461132691906141eb565b6121af565b6001905092915050565b60135481565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f611369612372565b620186a060016113776110fc565b6113819190614286565b61138b91906142f4565b8210156113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c490614559565b60405180910390fd5b6103e860056113da6110fc565b6113e49190614286565b6113ee91906142f4565b821115611430576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611427906145e7565b60405180910390fd5b8160198190555060019050919050565b611448612372565b80601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b6114fa612372565b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600960159054906101000a900460ff1681565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61157d612372565b6001600960156101000a81548160ff0219169083151502179055506001600960166101000a81548160ff021916908315150217905550565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6115e2612372565b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f61162e612372565b5f600960146101000a81548160ff0219169083151502179055506001905090565b60165481565b60115481565b600960169054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6116bb612372565b6116c45f612f95565b565b60125481565b6116d4612372565b5f601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60185481565b611739612372565b737a250d5630b4cf539739df2c5dacb4c659f2488d60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117f7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061181b9190614619565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118a1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118c59190614619565b6040518363ffffffff1660e01b81526004016118e2929190614644565b6020604051808303815f875af11580156118fe573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119229190614619565b60095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061198d60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001613058565b6001600960146101000a81548160ff0219169083151502179055505f600960156101000a81548160ff0219169083151502179055505f600960166101000a81548160ff02191690831515021790555069d3c21bcecceda100000060178190555069d3c21bcecceda100000060188190555061271060053073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a4c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a70919061467f565b611a7a9190614286565b611a8491906142f4565b601981905550611a9c611a95611b38565b6001611e69565b611aa7306001611e69565b611ab461dead6001611e69565b611ac6611abf611b38565b6001611440565b611ad1306001611440565b611ade61dead6001611440565b611b0a60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001611440565b611b3660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001611440565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054611b6f9061418e565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9b9061418e565b8015611be65780601f10611bbd57610100808354040283529160200191611be6565b820191905f5260205f20905b815481529060010190602001808311611bc957829003601f168201915b5050505050905090565b611bf8612372565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7e9061471a565b60405180910390fd5b611c918282613058565b5050565b600e5481565b611ca3612372565b670de0b6b3a76400006103e86005611cb96110fc565b611cc39190614286565b611ccd91906142f4565b611cd791906142f4565b811015611d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1090614782565b60405180910390fd5b670de0b6b3a764000081611d2d9190614286565b60178190555050565b5f8060015f611d436121a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df490614810565b60405180910390fd5b611e11611e086121a8565b858584036121af565b600191505092915050565b600960149054906101000a900460ff1681565b5f611e42611e3b6121a8565b84846123f0565b6001905092915050565b601d602052805f5260405f205f915054906101000a900460ff1681565b611e71612372565b80601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f0b9190613eb1565b60405180910390a25050565b600c5481565b60105481565b600d5481565b60155481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b611fb9612372565b80600960166101000a81548160ff02191690831515021790555050565b60195481565b426016541115612021576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201890614878565b60405180910390fd5b61204e60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166015546130f6565b5f601581905550565b61205f612372565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036120cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c490614906565b60405180910390fd5b6120d681612f95565b50565b6120e1612372565b6001601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b601c602052805f5260405f205f915054906101000a900460ff1681565b5f601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361221d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221490614994565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361228b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228290614a22565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516123659190613d0e565b60405180910390a3505050565b61237a6121a8565b73ffffffffffffffffffffffffffffffffffffffff16612398611b38565b73ffffffffffffffffffffffffffffffffffffffff16146123ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e590614a8a565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361245e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245590614b18565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036124cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c390614ba6565b60405180910390fd5b601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615612556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254d90614c0e565b60405180910390fd5b601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156125e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d790614c76565b60405180910390fd5b5f81036125f7576125f283835f61324d565b612f90565b600960149054906101000a900460ff1615612adc57612614611b38565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156126825750612652611b38565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126ba57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126f4575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561270d5750600960179054906101000a900460ff16155b15612adb57600960159054906101000a900460ff1661280157601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806127c15750601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b612800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f790614cde565b60405180910390fd5b5b601d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561289e5750601c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612945576017548111156128e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128df90614d6c565b60405180910390fd5b6018546128f48361166e565b826128ff91906141eb565b1115612940576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293790614dd4565b60405180910390fd5b612ada565b601d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156129e25750601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612a3157601754811115612a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2390614e62565b60405180910390fd5b612ad9565b601c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612ad857601854612a8b8361166e565b82612a9691906141eb565b1115612ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ace90614dd4565b60405180910390fd5b5b5b5b5b5b5f612ae63061166e565b90505f6019548210159050808015612b0a5750600960169054906101000a900460ff165b8015612b235750600960179054906101000a900460ff16155b8015612b765750601d5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612bc95750601b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612c1c5750601b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612c5f576001600960176101000a81548160ff021916908315150217905550612c446134c2565b5f600960176101000a81548160ff0219169083151502179055505b5f600960179054906101000a900460ff16159050601b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612d0e5750601b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15612d17575f90505b5f8115612f8057601d5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612d7557505f601154115b15612e3f57612da26064612d946011548861374290919063ffffffff16565b61375790919063ffffffff16565b9050601154600f5482612db59190614286565b612dbf91906142f4565b60135f828254612dcf91906141eb565b9250508190555060115460105482612de79190614286565b612df191906142f4565b60145f828254612e0191906141eb565b92505081905550601154600e5482612e199190614286565b612e2391906142f4565b60125f828254612e3391906141eb565b92505081905550612f5d565b601d5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612e9657505f600d54115b15612f5c57612ec36064612eb5600d548861374290919063ffffffff16565b61375790919063ffffffff16565b9050600d54600b5482612ed69190614286565b612ee091906142f4565b60135f828254612ef091906141eb565b92505081905550600d54600c5482612f089190614286565b612f1291906142f4565b60145f828254612f2291906141eb565b92505081905550600d54600a5482612f3a9190614286565b612f4491906142f4565b60125f828254612f5491906141eb565b925050819055505b5b5f811115612f7157612f7087308361324d565b5b8085612f7d9190614e80565b94505b612f8b87878761324d565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161315b90614efd565b60405180910390fd5b61316f5f838361376c565b8060025f82825461318091906141eb565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546131d291906141eb565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516132369190613d0e565b60405180910390a36132495f8383613771565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036132bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b290614b18565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332090614ba6565b60405180910390fd5b61333483838361376c565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156133b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ae90614f8b565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461344591906141eb565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516134a99190613d0e565b60405180910390a36134bc848484613771565b50505050565b5f6134cc3061166e565b90505f6014546012546013546134e291906141eb565b6134ec91906141eb565b90505f808314806134fc57505f82145b1561350957505050613740565b60146019546135189190614286565b83111561353157601460195461352e9190614286565b92505b5f600283601354866135439190614286565b61354d91906142f4565b61355791906142f4565b90505f61356d828661377690919063ffffffff16565b90505f47905061357c8261378b565b5f613590824761377690919063ffffffff16565b90505f6135d360026013546135a591906142f4565b886135b09190614e80565b6135c56014548561374290919063ffffffff16565b61375790919063ffffffff16565b90505f61361660026013546135e891906142f4565b896135f39190614e80565b6136086012548661374290919063ffffffff16565b61375790919063ffffffff16565b90505f8282856136269190614e80565b6136309190614e80565b90505f6013819055505f6012819055505f60148190555060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168360405161368c906144d5565b5f6040518083038185875af1925050503d805f81146136c6576040519150601f19603f3d011682016040523d82523d5f602084013e6136cb565b606091505b5050809850505f871180156136df57505f81115b1561372c576136ee87826139c1565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260135460405161372393929190614fa9565b60405180910390a15b61373582613aa1565b505050505050505050505b565b5f818361374f9190614286565b905092915050565b5f818361376491906142f4565b905092915050565b505050565b505050565b5f81836137839190614e80565b905092915050565b5f600267ffffffffffffffff8111156137a7576137a6614fde565b5b6040519080825280602002602001820160405280156137d55781602001602082028036833780820191505090505b50905030815f815181106137ec576137eb61500b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613890573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138b49190614619565b816001815181106138c8576138c761500b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061392e3060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846121af565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401613990959493929190615128565b5f604051808303815f87803b1580156139a7575f80fd5b505af11580156139b9573d5f803e3d5ffd5b505050505050565b6139ed3060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846121af565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f80613a37611b38565b426040518863ffffffff1660e01b8152600401613a5996959493929190615180565b60606040518083038185885af1158015613a75573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190613a9a91906151df565b5050505050565b5f811115613cf3575f600267ffffffffffffffff811115613ac557613ac4614fde565b5b604051908082528060200260200182016040528015613af35781602001602082028036833780820191505090505b50905060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613b60573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b849190614619565b815f81518110613b9757613b9661500b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110613c0757613c0661500b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b6f9de95835f8460085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401613cc3949392919061522f565b5f604051808303818588803b158015613cda575f80fd5b505af1158015613cec573d5f803e3d5ffd5b5050505050505b50565b5f819050919050565b613d0881613cf6565b82525050565b5f602082019050613d215f830184613cff565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015613d5e578082015181840152602081019050613d43565b5f8484015250505050565b5f601f19601f8301169050919050565b5f613d8382613d27565b613d8d8185613d31565b9350613d9d818560208601613d41565b613da681613d69565b840191505092915050565b5f6020820190508181035f830152613dc98184613d79565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f613dfe82613dd5565b9050919050565b613e0e81613df4565b8114613e18575f80fd5b50565b5f81359050613e2981613e05565b92915050565b613e3881613cf6565b8114613e42575f80fd5b50565b5f81359050613e5381613e2f565b92915050565b5f8060408385031215613e6f57613e6e613dd1565b5b5f613e7c85828601613e1b565b9250506020613e8d85828601613e45565b9150509250929050565b5f8115159050919050565b613eab81613e97565b82525050565b5f602082019050613ec45f830184613ea2565b92915050565b5f805f60608486031215613ee157613ee0613dd1565b5b5f613eee86828701613e45565b9350506020613eff86828701613e45565b9250506040613f1086828701613e45565b9150509250925092565b5f60208284031215613f2f57613f2e613dd1565b5b5f613f3c84828501613e45565b91505092915050565b5f819050919050565b5f613f68613f63613f5e84613dd5565b613f45565b613dd5565b9050919050565b5f613f7982613f4e565b9050919050565b5f613f8a82613f6f565b9050919050565b613f9a81613f80565b82525050565b5f602082019050613fb35f830184613f91565b92915050565b5f60208284031215613fce57613fcd613dd1565b5b5f613fdb84828501613e1b565b91505092915050565b5f805f60608486031215613ffb57613ffa613dd1565b5b5f61400886828701613e1b565b935050602061401986828701613e1b565b925050604061402a86828701613e45565b9150509250925092565b61403d81613df4565b82525050565b5f6020820190506140565f830184614034565b92915050565b5f60ff82169050919050565b6140718161405c565b82525050565b5f60208201905061408a5f830184614068565b92915050565b61409981613e97565b81146140a3575f80fd5b50565b5f813590506140b481614090565b92915050565b5f80604083850312156140d0576140cf613dd1565b5b5f6140dd85828601613e1b565b92505060206140ee858286016140a6565b9150509250929050565b5f806040838503121561410e5761410d613dd1565b5b5f61411b85828601613e1b565b925050602061412c85828601613e1b565b9150509250929050565b5f6020828403121561414b5761414a613dd1565b5b5f614158848285016140a6565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806141a557607f821691505b6020821081036141b8576141b7614161565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6141f582613cf6565b915061420083613cf6565b9250828201905080821115614218576142176141be565b5b92915050565b7f42757920666565206d61782073686f756c6420352500000000000000000000005f82015250565b5f614252601583613d31565b915061425d8261421e565b602082019050919050565b5f6020820190508181035f83015261427f81614246565b9050919050565b5f61429082613cf6565b915061429b83613cf6565b92508282026142a981613cf6565b915082820484148315176142c0576142bf6141be565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6142fe82613cf6565b915061430983613cf6565b925082614319576143186142c7565b5b828204905092915050565b7f4d6178206e756d626572206d75737420626520626967676572207468616e20315f8201527f2e30250000000000000000000000000000000000000000000000000000000000602082015250565b5f61437e602383613d31565b915061438982614324565b604082019050919050565b5f6020820190508181035f8301526143ab81614372565b9050919050565b7f53656c6c204d6178206d757374206265203525000000000000000000000000005f82015250565b5f6143e6601383613d31565b91506143f1826143b2565b602082019050919050565b5f6020820190508181035f830152614413816143da565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f614474602883613d31565b915061447f8261441a565b604082019050919050565b5f6020820190508181035f8301526144a181614468565b9050919050565b5f81905092915050565b50565b5f6144c05f836144a8565b91506144cb826144b2565b5f82019050919050565b5f6144df826144b5565b9150819050919050565b7f53776170206c696d6974206d75737420626520686967686572207468616e20305f8201527f2e3030312520746f74616c20737570706c792e00000000000000000000000000602082015250565b5f614543603383613d31565b915061454e826144e9565b604082019050919050565b5f6020820190508181035f83015261457081614537565b9050919050565b7f53776170206c696d69742063616e6e6f7420626520686967686572207468616e5f8201527f20302e352520746f74616c20737570706c792e00000000000000000000000000602082015250565b5f6145d1603383613d31565b91506145dc82614577565b604082019050919050565b5f6020820190508181035f8301526145fe816145c5565b9050919050565b5f8151905061461381613e05565b92915050565b5f6020828403121561462e5761462d613dd1565b5b5f61463b84828501614605565b91505092915050565b5f6040820190506146575f830185614034565b6146646020830184614034565b9392505050565b5f8151905061467981613e2f565b92915050565b5f6020828403121561469457614693613dd1565b5b5f6146a18482850161466b565b91505092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f614704603983613d31565b915061470f826146aa565b604082019050919050565b5f6020820190508181035f830152614731816146f8565b9050919050565b7f6d75737420626520626967676572207468616e20302e352500000000000000005f82015250565b5f61476c601883613d31565b915061477782614738565b602082019050919050565b5f6020820190508181035f83015261479981614760565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6147fa602583613d31565b9150614805826147a0565b604082019050919050565b5f6020820190508181035f830152614827816147ee565b9050919050565b7f546f6b656e7320617265206c6f636b65640000000000000000000000000000005f82015250565b5f614862601183613d31565b915061486d8261482e565b602082019050919050565b5f6020820190508181035f83015261488f81614856565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6148f0602683613d31565b91506148fb82614896565b604082019050919050565b5f6020820190508181035f83015261491d816148e4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61497e602483613d31565b915061498982614924565b604082019050919050565b5f6020820190508181035f8301526149ab81614972565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f614a0c602283613d31565b9150614a17826149b2565b604082019050919050565b5f6020820190508181035f830152614a3981614a00565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f614a74602083613d31565b9150614a7f82614a40565b602082019050919050565b5f6020820190508181035f830152614aa181614a68565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f614b02602583613d31565b9150614b0d82614aa8565b604082019050919050565b5f6020820190508181035f830152614b2f81614af6565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f614b90602383613d31565b9150614b9b82614b36565b604082019050919050565b5f6020820190508181035f830152614bbd81614b84565b9050919050565b7f53656e64657220626c61636b6c697374656400000000000000000000000000005f82015250565b5f614bf8601283613d31565b9150614c0382614bc4565b602082019050919050565b5f6020820190508181035f830152614c2581614bec565b9050919050565b7f526563656976657220626c61636b6c69737465640000000000000000000000005f82015250565b5f614c60601483613d31565b9150614c6b82614c2c565b602082019050919050565b5f6020820190508181035f830152614c8d81614c54565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f614cc8601683613d31565b9150614cd382614c94565b602082019050919050565b5f6020820190508181035f830152614cf581614cbc565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f74784d617870657257616c6c65742e0000000000000000000000000000000000602082015250565b5f614d56602f83613d31565b9150614d6182614cfc565b604082019050919050565b5f6020820190508181035f830152614d8381614d4a565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f614dbe601383613d31565b9150614dc982614d8a565b602082019050919050565b5f6020820190508181035f830152614deb81614db2565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f2074784d617870657257616c6c65742e00000000000000000000000000000000602082015250565b5f614e4c603083613d31565b9150614e5782614df2565b604082019050919050565b5f6020820190508181035f830152614e7981614e40565b9050919050565b5f614e8a82613cf6565b9150614e9583613cf6565b9250828203905081811115614ead57614eac6141be565b5b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f614ee7601f83613d31565b9150614ef282614eb3565b602082019050919050565b5f6020820190508181035f830152614f1481614edb565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f614f75602683613d31565b9150614f8082614f1b565b604082019050919050565b5f6020820190508181035f830152614fa281614f69565b9050919050565b5f606082019050614fbc5f830186613cff565b614fc96020830185613cff565b614fd66040830184613cff565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050919050565b5f61505b61505661505184615038565b613f45565b613cf6565b9050919050565b61506b81615041565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6150a381613df4565b82525050565b5f6150b4838361509a565b60208301905092915050565b5f602082019050919050565b5f6150d682615071565b6150e0818561507b565b93506150eb8361508b565b805f5b8381101561511b57815161510288826150a9565b975061510d836150c0565b9250506001810190506150ee565b5085935050505092915050565b5f60a08201905061513b5f830188613cff565b6151486020830187615062565b818103604083015261515a81866150cc565b90506151696060830185614034565b6151766080830184613cff565b9695505050505050565b5f60c0820190506151935f830189614034565b6151a06020830188613cff565b6151ad6040830187615062565b6151ba6060830186615062565b6151c76080830185614034565b6151d460a0830184613cff565b979650505050505050565b5f805f606084860312156151f6576151f5613dd1565b5b5f6152038682870161466b565b93505060206152148682870161466b565b92505060406152258682870161466b565b9150509250925092565b5f6080820190506152425f830187615062565b818103602083015261525481866150cc565b90506152636040830185614034565b6152706060830184613cff565b9594505050505056fea2646970667358221220cac040e274e141fe5686e5dcbd3ee6f9e86509708cd64a351f7039985a32356464736f6c63430008150033
Deployed Bytecode
0x6080604052600436106103a5575f3560e01c8063693d0e50116101e6578063a650f5751161010c578063dd62ed3e1161009f578063f2fde38b1161006e578063f2fde38b14610d54578063f9f92be414610d7c578063fc772b5014610da4578063fe575a8714610de0576103ac565b8063dd62ed3e14610cb0578063e01af92c14610cec578063e2f4560514610d14578063e35eeee214610d3e576103ac565b8063c469b6dd116100db578063c469b6dd14610c08578063cab0347114610c32578063d85ba06314610c5c578063da1fa38b14610c86576103ac565b8063a650f57514610b3e578063a9059cbb14610b68578063b62496f514610ba4578063c024666814610be0576103ac565b80637a8baf52116101845780639a7a23d6116101535780639a7a23d614610a88578063a053f16c14610ab0578063a370037814610ada578063a457c2d714610b02576103ac565b80637a8baf52146109f45780638203f5fe14610a1e5780638da5cb5b14610a3457806395d89b4114610a5e576103ac565b806370a08231116101c057806370a0823114610950578063715018a61461098c57806375ca7969146109a257806375e3661e146109cc576103ac565b8063693d0e50146108d25780636a486a8e146108fc5780636ddd171314610926576103ac565b8063313ce567116102cb5780634fbee193116102695780635b6cbd4b116102385780635b6cbd4b146108405780636606cfcb146108565780636690864e1461088057806368849ed2146108a8576103ac565b80634fbee1931461078857806354713731146107c457806356a060a2146107ec5780635992704414610816576103ac565b80633ac0fc7e116102a55780633ac0fc7e146106d057806349bd5a5e146106fa5780634b46e301146107245780634d28337514610760576103ac565b8063313ce567146106405780633384a40d1461066a5780633950935114610694576103ac565b80631694505e11610343578063182c425c11610312578063182c425c1461058857806323b872dd146105b257806325e16063146105ee57806327c8f83514610616576103ac565b80631694505e146104e2578063177286921461050c578063177288b51461053457806318160ddd1461055e576103ac565b8063095ea7b31161037f578063095ea7b31461042e5780630d075d9c1461046a5780630d595ef4146104925780630f683e90146104ba576103ac565b80630178bcf3146103b05780630615102d146103da57806306fdde0314610404576103ac565b366103ac57005b5f80fd5b3480156103bb575f80fd5b506103c4610e1c565b6040516103d19190613d0e565b60405180910390f35b3480156103e5575f80fd5b506103ee610e22565b6040516103fb9190613d0e565b60405180910390f35b34801561040f575f80fd5b50610418610e28565b6040516104259190613db1565b60405180910390f35b348015610439575f80fd5b50610454600480360381019061044f9190613e59565b610eb8565b6040516104619190613eb1565b60405180910390f35b348015610475575f80fd5b50610490600480360381019061048b9190613eca565b610ed5565b005b34801561049d575f80fd5b506104b860048036038101906104b39190613f1a565b610f60565b005b3480156104c5575f80fd5b506104e060048036038101906104db9190613eca565b610ffb565b005b3480156104ed575f80fd5b506104f6611086565b6040516105039190613fa0565b60405180910390f35b348015610517575f80fd5b50610532600480360381019061052d9190613fb9565b6110ab565b005b34801561053f575f80fd5b506105486110f6565b6040516105559190613d0e565b60405180910390f35b348015610569575f80fd5b506105726110fc565b60405161057f9190613d0e565b60405180910390f35b348015610593575f80fd5b5061059c611105565b6040516105a99190613d0e565b60405180910390f35b3480156105bd575f80fd5b506105d860048036038101906105d39190613fe4565b61110b565b6040516105e59190613eb1565b60405180910390f35b3480156105f9575f80fd5b50610614600480360381019061060f9190613fb9565b6111fd565b005b348015610621575f80fd5b5061062a61127a565b6040516106379190614043565b60405180910390f35b34801561064b575f80fd5b50610654611280565b6040516106619190614077565b60405180910390f35b348015610675575f80fd5b5061067e611288565b60405161068b9190613d0e565b60405180910390f35b34801561069f575f80fd5b506106ba60048036038101906106b59190613e59565b61128e565b6040516106c79190613eb1565b60405180910390f35b3480156106db575f80fd5b506106e4611335565b6040516106f19190613d0e565b60405180910390f35b348015610705575f80fd5b5061070e61133b565b60405161071b9190614043565b60405180910390f35b34801561072f575f80fd5b5061074a60048036038101906107459190613f1a565b611360565b6040516107579190613eb1565b60405180910390f35b34801561076b575f80fd5b50610786600480360381019061078191906140ba565b611440565b005b348015610793575f80fd5b506107ae60048036038101906107a99190613fb9565b6114a0565b6040516107bb9190613eb1565b60405180910390f35b3480156107cf575f80fd5b506107ea60048036038101906107e59190613fb9565b6114f2565b005b3480156107f7575f80fd5b5061080061153d565b60405161080d9190613eb1565b60405180910390f35b348015610821575f80fd5b5061082a611550565b6040516108379190614043565b60405180910390f35b34801561084b575f80fd5b50610854611575565b005b348015610861575f80fd5b5061086a6115b5565b6040516108779190614043565b60405180910390f35b34801561088b575f80fd5b506108a660048036038101906108a19190613fb9565b6115da565b005b3480156108b3575f80fd5b506108bc611625565b6040516108c99190613eb1565b60405180910390f35b3480156108dd575f80fd5b506108e661164f565b6040516108f39190613d0e565b60405180910390f35b348015610907575f80fd5b50610910611655565b60405161091d9190613d0e565b60405180910390f35b348015610931575f80fd5b5061093a61165b565b6040516109479190613eb1565b60405180910390f35b34801561095b575f80fd5b5061097660048036038101906109719190613fb9565b61166e565b6040516109839190613d0e565b60405180910390f35b348015610997575f80fd5b506109a06116b3565b005b3480156109ad575f80fd5b506109b66116c6565b6040516109c39190613d0e565b60405180910390f35b3480156109d7575f80fd5b506109f260048036038101906109ed9190613fb9565b6116cc565b005b3480156109ff575f80fd5b50610a0861172b565b604051610a159190613d0e565b60405180910390f35b348015610a29575f80fd5b50610a32611731565b005b348015610a3f575f80fd5b50610a48611b38565b604051610a559190614043565b60405180910390f35b348015610a69575f80fd5b50610a72611b60565b604051610a7f9190613db1565b60405180910390f35b348015610a93575f80fd5b50610aae6004803603810190610aa991906140ba565b611bf0565b005b348015610abb575f80fd5b50610ac4611c95565b604051610ad19190613d0e565b60405180910390f35b348015610ae5575f80fd5b50610b006004803603810190610afb9190613f1a565b611c9b565b005b348015610b0d575f80fd5b50610b286004803603810190610b239190613e59565b611d36565b604051610b359190613eb1565b60405180910390f35b348015610b49575f80fd5b50610b52611e1c565b604051610b5f9190613eb1565b60405180910390f35b348015610b73575f80fd5b50610b8e6004803603810190610b899190613e59565b611e2f565b604051610b9b9190613eb1565b60405180910390f35b348015610baf575f80fd5b50610bca6004803603810190610bc59190613fb9565b611e4c565b604051610bd79190613eb1565b60405180910390f35b348015610beb575f80fd5b50610c066004803603810190610c0191906140ba565b611e69565b005b348015610c13575f80fd5b50610c1c611f17565b604051610c299190613d0e565b60405180910390f35b348015610c3d575f80fd5b50610c46611f1d565b604051610c539190613d0e565b60405180910390f35b348015610c67575f80fd5b50610c70611f23565b604051610c7d9190613d0e565b60405180910390f35b348015610c91575f80fd5b50610c9a611f29565b604051610ca79190613d0e565b60405180910390f35b348015610cbb575f80fd5b50610cd66004803603810190610cd191906140f8565b611f2f565b604051610ce39190613d0e565b60405180910390f35b348015610cf7575f80fd5b50610d126004803603810190610d0d9190614136565b611fb1565b005b348015610d1f575f80fd5b50610d28611fd6565b604051610d359190613d0e565b60405180910390f35b348015610d49575f80fd5b50610d52611fdc565b005b348015610d5f575f80fd5b50610d7a6004803603810190610d759190613fb9565b612057565b005b348015610d87575f80fd5b50610da26004803603810190610d9d9190613fb9565b6120d9565b005b348015610daf575f80fd5b50610dca6004803603810190610dc59190613fb9565b612139565b604051610dd79190613eb1565b60405180910390f35b348015610deb575f80fd5b50610e066004803603810190610e019190613fb9565b612156565b604051610e139190613eb1565b60405180910390f35b60145481565b600f5481565b606060038054610e379061418e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e639061418e565b8015610eae5780601f10610e8557610100808354040283529160200191610eae565b820191905f5260205f20905b815481529060010190602001808311610e9157829003601f168201915b5050505050905090565b5f610ecb610ec46121a8565b84846121af565b6001905092915050565b610edd612372565b82600a8190555081600b8190555080600c81905550600c54600b54600a54610f0591906141eb565b610f0f91906141eb565b600d819055506005600d541115610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5290614268565b60405180910390fd5b505050565b610f68612372565b670de0b6b3a76400006103e8600a610f7e6110fc565b610f889190614286565b610f9291906142f4565b610f9c91906142f4565b811015610fde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd590614394565b60405180910390fd5b670de0b6b3a764000081610ff29190614286565b60188190555050565b611003612372565b82600e8190555081600f8190555080601081905550601054600f54600e5461102b91906141eb565b61103591906141eb565b60118190555060056011541115611081576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611078906143fc565b60405180910390fd5b505050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6110b3612372565b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60175481565b5f600254905090565b600b5481565b5f6111178484846123f0565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61115e6121a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d49061448a565b60405180910390fd5b6111f1856111e96121a8565b8584036121af565b60019150509392505050565b611205612372565b5f8173ffffffffffffffffffffffffffffffffffffffff164760405161122a906144d5565b5f6040518083038185875af1925050503d805f8114611264576040519150601f19603f3d011682016040523d82523d5f602084013e611269565b606091505b5050905080611276575f80fd5b5050565b61dead81565b5f6012905090565b600a5481565b5f61132b61129a6121a8565b848460015f6112a76121a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461132691906141eb565b6121af565b6001905092915050565b60135481565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f611369612372565b620186a060016113776110fc565b6113819190614286565b61138b91906142f4565b8210156113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c490614559565b60405180910390fd5b6103e860056113da6110fc565b6113e49190614286565b6113ee91906142f4565b821115611430576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611427906145e7565b60405180910390fd5b8160198190555060019050919050565b611448612372565b80601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b6114fa612372565b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600960159054906101000a900460ff1681565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61157d612372565b6001600960156101000a81548160ff0219169083151502179055506001600960166101000a81548160ff021916908315150217905550565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6115e2612372565b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f61162e612372565b5f600960146101000a81548160ff0219169083151502179055506001905090565b60165481565b60115481565b600960169054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6116bb612372565b6116c45f612f95565b565b60125481565b6116d4612372565b5f601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60185481565b611739612372565b737a250d5630b4cf539739df2c5dacb4c659f2488d60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117f7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061181b9190614619565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118a1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118c59190614619565b6040518363ffffffff1660e01b81526004016118e2929190614644565b6020604051808303815f875af11580156118fe573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119229190614619565b60095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061198d60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001613058565b6001600960146101000a81548160ff0219169083151502179055505f600960156101000a81548160ff0219169083151502179055505f600960166101000a81548160ff02191690831515021790555069d3c21bcecceda100000060178190555069d3c21bcecceda100000060188190555061271060053073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a4c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a70919061467f565b611a7a9190614286565b611a8491906142f4565b601981905550611a9c611a95611b38565b6001611e69565b611aa7306001611e69565b611ab461dead6001611e69565b611ac6611abf611b38565b6001611440565b611ad1306001611440565b611ade61dead6001611440565b611b0a60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001611440565b611b3660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001611440565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054611b6f9061418e565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9b9061418e565b8015611be65780601f10611bbd57610100808354040283529160200191611be6565b820191905f5260205f20905b815481529060010190602001808311611bc957829003601f168201915b5050505050905090565b611bf8612372565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7e9061471a565b60405180910390fd5b611c918282613058565b5050565b600e5481565b611ca3612372565b670de0b6b3a76400006103e86005611cb96110fc565b611cc39190614286565b611ccd91906142f4565b611cd791906142f4565b811015611d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1090614782565b60405180910390fd5b670de0b6b3a764000081611d2d9190614286565b60178190555050565b5f8060015f611d436121a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df490614810565b60405180910390fd5b611e11611e086121a8565b858584036121af565b600191505092915050565b600960149054906101000a900460ff1681565b5f611e42611e3b6121a8565b84846123f0565b6001905092915050565b601d602052805f5260405f205f915054906101000a900460ff1681565b611e71612372565b80601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f0b9190613eb1565b60405180910390a25050565b600c5481565b60105481565b600d5481565b60155481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b611fb9612372565b80600960166101000a81548160ff02191690831515021790555050565b60195481565b426016541115612021576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201890614878565b60405180910390fd5b61204e60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166015546130f6565b5f601581905550565b61205f612372565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036120cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c490614906565b60405180910390fd5b6120d681612f95565b50565b6120e1612372565b6001601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b601c602052805f5260405f205f915054906101000a900460ff1681565b5f601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361221d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221490614994565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361228b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228290614a22565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516123659190613d0e565b60405180910390a3505050565b61237a6121a8565b73ffffffffffffffffffffffffffffffffffffffff16612398611b38565b73ffffffffffffffffffffffffffffffffffffffff16146123ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e590614a8a565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361245e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245590614b18565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036124cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c390614ba6565b60405180910390fd5b601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615612556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254d90614c0e565b60405180910390fd5b601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156125e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d790614c76565b60405180910390fd5b5f81036125f7576125f283835f61324d565b612f90565b600960149054906101000a900460ff1615612adc57612614611b38565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156126825750612652611b38565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126ba57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126f4575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561270d5750600960179054906101000a900460ff16155b15612adb57600960159054906101000a900460ff1661280157601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806127c15750601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b612800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f790614cde565b60405180910390fd5b5b601d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561289e5750601c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612945576017548111156128e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128df90614d6c565b60405180910390fd5b6018546128f48361166e565b826128ff91906141eb565b1115612940576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293790614dd4565b60405180910390fd5b612ada565b601d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156129e25750601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612a3157601754811115612a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2390614e62565b60405180910390fd5b612ad9565b601c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612ad857601854612a8b8361166e565b82612a9691906141eb565b1115612ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ace90614dd4565b60405180910390fd5b5b5b5b5b5b5f612ae63061166e565b90505f6019548210159050808015612b0a5750600960169054906101000a900460ff165b8015612b235750600960179054906101000a900460ff16155b8015612b765750601d5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612bc95750601b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612c1c5750601b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612c5f576001600960176101000a81548160ff021916908315150217905550612c446134c2565b5f600960176101000a81548160ff0219169083151502179055505b5f600960179054906101000a900460ff16159050601b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612d0e5750601b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15612d17575f90505b5f8115612f8057601d5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612d7557505f601154115b15612e3f57612da26064612d946011548861374290919063ffffffff16565b61375790919063ffffffff16565b9050601154600f5482612db59190614286565b612dbf91906142f4565b60135f828254612dcf91906141eb565b9250508190555060115460105482612de79190614286565b612df191906142f4565b60145f828254612e0191906141eb565b92505081905550601154600e5482612e199190614286565b612e2391906142f4565b60125f828254612e3391906141eb565b92505081905550612f5d565b601d5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612e9657505f600d54115b15612f5c57612ec36064612eb5600d548861374290919063ffffffff16565b61375790919063ffffffff16565b9050600d54600b5482612ed69190614286565b612ee091906142f4565b60135f828254612ef091906141eb565b92505081905550600d54600c5482612f089190614286565b612f1291906142f4565b60145f828254612f2291906141eb565b92505081905550600d54600a5482612f3a9190614286565b612f4491906142f4565b60125f828254612f5491906141eb565b925050819055505b5b5f811115612f7157612f7087308361324d565b5b8085612f7d9190614e80565b94505b612f8b87878761324d565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161315b90614efd565b60405180910390fd5b61316f5f838361376c565b8060025f82825461318091906141eb565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546131d291906141eb565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516132369190613d0e565b60405180910390a36132495f8383613771565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036132bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b290614b18565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332090614ba6565b60405180910390fd5b61333483838361376c565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156133b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ae90614f8b565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461344591906141eb565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516134a99190613d0e565b60405180910390a36134bc848484613771565b50505050565b5f6134cc3061166e565b90505f6014546012546013546134e291906141eb565b6134ec91906141eb565b90505f808314806134fc57505f82145b1561350957505050613740565b60146019546135189190614286565b83111561353157601460195461352e9190614286565b92505b5f600283601354866135439190614286565b61354d91906142f4565b61355791906142f4565b90505f61356d828661377690919063ffffffff16565b90505f47905061357c8261378b565b5f613590824761377690919063ffffffff16565b90505f6135d360026013546135a591906142f4565b886135b09190614e80565b6135c56014548561374290919063ffffffff16565b61375790919063ffffffff16565b90505f61361660026013546135e891906142f4565b896135f39190614e80565b6136086012548661374290919063ffffffff16565b61375790919063ffffffff16565b90505f8282856136269190614e80565b6136309190614e80565b90505f6013819055505f6012819055505f60148190555060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168360405161368c906144d5565b5f6040518083038185875af1925050503d805f81146136c6576040519150601f19603f3d011682016040523d82523d5f602084013e6136cb565b606091505b5050809850505f871180156136df57505f81115b1561372c576136ee87826139c1565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260135460405161372393929190614fa9565b60405180910390a15b61373582613aa1565b505050505050505050505b565b5f818361374f9190614286565b905092915050565b5f818361376491906142f4565b905092915050565b505050565b505050565b5f81836137839190614e80565b905092915050565b5f600267ffffffffffffffff8111156137a7576137a6614fde565b5b6040519080825280602002602001820160405280156137d55781602001602082028036833780820191505090505b50905030815f815181106137ec576137eb61500b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613890573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138b49190614619565b816001815181106138c8576138c761500b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061392e3060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846121af565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401613990959493929190615128565b5f604051808303815f87803b1580156139a7575f80fd5b505af11580156139b9573d5f803e3d5ffd5b505050505050565b6139ed3060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846121af565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f80613a37611b38565b426040518863ffffffff1660e01b8152600401613a5996959493929190615180565b60606040518083038185885af1158015613a75573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190613a9a91906151df565b5050505050565b5f811115613cf3575f600267ffffffffffffffff811115613ac557613ac4614fde565b5b604051908082528060200260200182016040528015613af35781602001602082028036833780820191505090505b50905060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613b60573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b849190614619565b815f81518110613b9757613b9661500b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110613c0757613c0661500b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b6f9de95835f8460085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401613cc3949392919061522f565b5f604051808303818588803b158015613cda575f80fd5b505af1158015613cec573d5f803e3d5ffd5b5050505050505b50565b5f819050919050565b613d0881613cf6565b82525050565b5f602082019050613d215f830184613cff565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015613d5e578082015181840152602081019050613d43565b5f8484015250505050565b5f601f19601f8301169050919050565b5f613d8382613d27565b613d8d8185613d31565b9350613d9d818560208601613d41565b613da681613d69565b840191505092915050565b5f6020820190508181035f830152613dc98184613d79565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f613dfe82613dd5565b9050919050565b613e0e81613df4565b8114613e18575f80fd5b50565b5f81359050613e2981613e05565b92915050565b613e3881613cf6565b8114613e42575f80fd5b50565b5f81359050613e5381613e2f565b92915050565b5f8060408385031215613e6f57613e6e613dd1565b5b5f613e7c85828601613e1b565b9250506020613e8d85828601613e45565b9150509250929050565b5f8115159050919050565b613eab81613e97565b82525050565b5f602082019050613ec45f830184613ea2565b92915050565b5f805f60608486031215613ee157613ee0613dd1565b5b5f613eee86828701613e45565b9350506020613eff86828701613e45565b9250506040613f1086828701613e45565b9150509250925092565b5f60208284031215613f2f57613f2e613dd1565b5b5f613f3c84828501613e45565b91505092915050565b5f819050919050565b5f613f68613f63613f5e84613dd5565b613f45565b613dd5565b9050919050565b5f613f7982613f4e565b9050919050565b5f613f8a82613f6f565b9050919050565b613f9a81613f80565b82525050565b5f602082019050613fb35f830184613f91565b92915050565b5f60208284031215613fce57613fcd613dd1565b5b5f613fdb84828501613e1b565b91505092915050565b5f805f60608486031215613ffb57613ffa613dd1565b5b5f61400886828701613e1b565b935050602061401986828701613e1b565b925050604061402a86828701613e45565b9150509250925092565b61403d81613df4565b82525050565b5f6020820190506140565f830184614034565b92915050565b5f60ff82169050919050565b6140718161405c565b82525050565b5f60208201905061408a5f830184614068565b92915050565b61409981613e97565b81146140a3575f80fd5b50565b5f813590506140b481614090565b92915050565b5f80604083850312156140d0576140cf613dd1565b5b5f6140dd85828601613e1b565b92505060206140ee858286016140a6565b9150509250929050565b5f806040838503121561410e5761410d613dd1565b5b5f61411b85828601613e1b565b925050602061412c85828601613e1b565b9150509250929050565b5f6020828403121561414b5761414a613dd1565b5b5f614158848285016140a6565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806141a557607f821691505b6020821081036141b8576141b7614161565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6141f582613cf6565b915061420083613cf6565b9250828201905080821115614218576142176141be565b5b92915050565b7f42757920666565206d61782073686f756c6420352500000000000000000000005f82015250565b5f614252601583613d31565b915061425d8261421e565b602082019050919050565b5f6020820190508181035f83015261427f81614246565b9050919050565b5f61429082613cf6565b915061429b83613cf6565b92508282026142a981613cf6565b915082820484148315176142c0576142bf6141be565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6142fe82613cf6565b915061430983613cf6565b925082614319576143186142c7565b5b828204905092915050565b7f4d6178206e756d626572206d75737420626520626967676572207468616e20315f8201527f2e30250000000000000000000000000000000000000000000000000000000000602082015250565b5f61437e602383613d31565b915061438982614324565b604082019050919050565b5f6020820190508181035f8301526143ab81614372565b9050919050565b7f53656c6c204d6178206d757374206265203525000000000000000000000000005f82015250565b5f6143e6601383613d31565b91506143f1826143b2565b602082019050919050565b5f6020820190508181035f830152614413816143da565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f614474602883613d31565b915061447f8261441a565b604082019050919050565b5f6020820190508181035f8301526144a181614468565b9050919050565b5f81905092915050565b50565b5f6144c05f836144a8565b91506144cb826144b2565b5f82019050919050565b5f6144df826144b5565b9150819050919050565b7f53776170206c696d6974206d75737420626520686967686572207468616e20305f8201527f2e3030312520746f74616c20737570706c792e00000000000000000000000000602082015250565b5f614543603383613d31565b915061454e826144e9565b604082019050919050565b5f6020820190508181035f83015261457081614537565b9050919050565b7f53776170206c696d69742063616e6e6f7420626520686967686572207468616e5f8201527f20302e352520746f74616c20737570706c792e00000000000000000000000000602082015250565b5f6145d1603383613d31565b91506145dc82614577565b604082019050919050565b5f6020820190508181035f8301526145fe816145c5565b9050919050565b5f8151905061461381613e05565b92915050565b5f6020828403121561462e5761462d613dd1565b5b5f61463b84828501614605565b91505092915050565b5f6040820190506146575f830185614034565b6146646020830184614034565b9392505050565b5f8151905061467981613e2f565b92915050565b5f6020828403121561469457614693613dd1565b5b5f6146a18482850161466b565b91505092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f614704603983613d31565b915061470f826146aa565b604082019050919050565b5f6020820190508181035f830152614731816146f8565b9050919050565b7f6d75737420626520626967676572207468616e20302e352500000000000000005f82015250565b5f61476c601883613d31565b915061477782614738565b602082019050919050565b5f6020820190508181035f83015261479981614760565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6147fa602583613d31565b9150614805826147a0565b604082019050919050565b5f6020820190508181035f830152614827816147ee565b9050919050565b7f546f6b656e7320617265206c6f636b65640000000000000000000000000000005f82015250565b5f614862601183613d31565b915061486d8261482e565b602082019050919050565b5f6020820190508181035f83015261488f81614856565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6148f0602683613d31565b91506148fb82614896565b604082019050919050565b5f6020820190508181035f83015261491d816148e4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61497e602483613d31565b915061498982614924565b604082019050919050565b5f6020820190508181035f8301526149ab81614972565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f614a0c602283613d31565b9150614a17826149b2565b604082019050919050565b5f6020820190508181035f830152614a3981614a00565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f614a74602083613d31565b9150614a7f82614a40565b602082019050919050565b5f6020820190508181035f830152614aa181614a68565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f614b02602583613d31565b9150614b0d82614aa8565b604082019050919050565b5f6020820190508181035f830152614b2f81614af6565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f614b90602383613d31565b9150614b9b82614b36565b604082019050919050565b5f6020820190508181035f830152614bbd81614b84565b9050919050565b7f53656e64657220626c61636b6c697374656400000000000000000000000000005f82015250565b5f614bf8601283613d31565b9150614c0382614bc4565b602082019050919050565b5f6020820190508181035f830152614c2581614bec565b9050919050565b7f526563656976657220626c61636b6c69737465640000000000000000000000005f82015250565b5f614c60601483613d31565b9150614c6b82614c2c565b602082019050919050565b5f6020820190508181035f830152614c8d81614c54565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f614cc8601683613d31565b9150614cd382614c94565b602082019050919050565b5f6020820190508181035f830152614cf581614cbc565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f74784d617870657257616c6c65742e0000000000000000000000000000000000602082015250565b5f614d56602f83613d31565b9150614d6182614cfc565b604082019050919050565b5f6020820190508181035f830152614d8381614d4a565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f614dbe601383613d31565b9150614dc982614d8a565b602082019050919050565b5f6020820190508181035f830152614deb81614db2565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f2074784d617870657257616c6c65742e00000000000000000000000000000000602082015250565b5f614e4c603083613d31565b9150614e5782614df2565b604082019050919050565b5f6020820190508181035f830152614e7981614e40565b9050919050565b5f614e8a82613cf6565b9150614e9583613cf6565b9250828203905081811115614ead57614eac6141be565b5b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f614ee7601f83613d31565b9150614ef282614eb3565b602082019050919050565b5f6020820190508181035f830152614f1481614edb565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f614f75602683613d31565b9150614f8082614f1b565b604082019050919050565b5f6020820190508181035f830152614fa281614f69565b9050919050565b5f606082019050614fbc5f830186613cff565b614fc96020830185613cff565b614fd66040830184613cff565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050919050565b5f61505b61505661505184615038565b613f45565b613cf6565b9050919050565b61506b81615041565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6150a381613df4565b82525050565b5f6150b4838361509a565b60208301905092915050565b5f602082019050919050565b5f6150d682615071565b6150e0818561507b565b93506150eb8361508b565b805f5b8381101561511b57815161510288826150a9565b975061510d836150c0565b9250506001810190506150ee565b5085935050505092915050565b5f60a08201905061513b5f830188613cff565b6151486020830187615062565b818103604083015261515a81866150cc565b90506151696060830185614034565b6151766080830184613cff565b9695505050505050565b5f60c0820190506151935f830189614034565b6151a06020830188613cff565b6151ad6040830187615062565b6151ba6060830186615062565b6151c76080830185614034565b6151d460a0830184613cff565b979650505050505050565b5f805f606084860312156151f6576151f5613dd1565b5b5f6152038682870161466b565b93505060206152148682870161466b565b92505060406152258682870161466b565b9150509250925092565b5f6080820190506152425f830187615062565b818103602083015261525481866150cc565b90506152636040830185614034565b6152706060830184613cff565b9594505050505056fea2646970667358221220cac040e274e141fe5686e5dcbd3ee6f9e86509708cd64a351f7039985a32356464736f6c63430008150033
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.