ERC-20
Overview
Max Total Supply
100,000,000,000 ROMU
Holders
104
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
3,717,558,150.002754039720185562 ROMUValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RoboMuMu
Compiler Version
v0.8.21+commit.d9974bed
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* * SPDX-License-Identifier: MIT */ // // RoboMuMu Links // // 🚀 Portal https://t.me/RoboMumuToken // 🌎 Web https://robomumu.com // 📚 Docs https://docs.robomumu.com // 📰 News https://t.me/RoboMumuNews // ❌ X https://twitter.com/robo_mumu // 🔗 Linktree https://linktr.ee/robomumu // // _____ _______ _____ _____ // /\ \ /::\ \ /\ \ /\ \ // /::\ \ /::::\ \ /::\____\ /::\____\ // /::::\ \ /::::::\ \ /::::| | /:::/ / // /::::::\ \ /::::::::\ \ /:::::| | /:::/ / // /:::/\:::\ \ /:::/~~\:::\ \ /::::::| | /:::/ / // /:::/__\:::\ \ /:::/ \:::\ \ /:::/|::| | /:::/ / // /::::\ \:::\ \ /:::/ / \:::\ \ /:::/ |::| | /:::/ / // /::::::\ \:::\ \ /:::/____/ \:::\____\ /:::/ |::|___|______ /:::/ / _____ // /:::/\:::\ \:::\____\ |:::| | |:::| | /:::/ |::::::::\ \ /:::/____/ /\ \ ///:::/ \:::\ \:::| ||:::|____| |:::| |/:::/ |:::::::::\____\|:::| / /::\____\ //\::/ |::::\ /:::|____| \:::\ \ /:::/ / \::/ / ~~~~~/:::/ /|:::|____\ /:::/ / // \/____|:::::\/:::/ / \:::\ \ /:::/ / \/____/ /:::/ / \:::\ \ /:::/ / // |:::::::::/ / \:::\ /:::/ / /:::/ / \:::\ \ /:::/ / // |::|\::::/ / \:::\__/:::/ / /:::/ / \:::\ /:::/ / // |::| \::/____/ \::::::::/ / /:::/ / \:::\__/:::/ / // |::| ~| \::::::/ / /:::/ / \::::::::/ / // |::| | \::::/ / /:::/ / \::::::/ / // \::| | \::/____/ /:::/ / \::::/ / // \:| | ~~ \::/ / \::/____/ // \|___| \/____/ ~~ // // pragma solidity 0.8.21; 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 substraction 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; } } } interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer( address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount ) external returns (bool); /** * @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 ); } 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); } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } 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 upd 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 upd 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 upd 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 {} } 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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing 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); } } 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 swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } 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; } contract RoboMuMu is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 private immutable dexRouter; address public immutable dexPair; // Swapback bool private swapping; bool private swapbackEnabled = false; uint256 private swapBackValueMin; uint256 private swapBackValueMax; //Anti-whale bool private limitsEnabled = true; bool private transferDelayEnabled = false; uint256 private maxWallet; uint256 private maxTx; mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public tradingEnabled = false; // Fee receivers address private marketingWallet; address private projectWallet; uint256 private buyTaxTotal; uint256 private buyMarketingTax; uint256 private buyProjectTax; uint256 private sellTaxTotal; uint256 private sellMarketingTax; uint256 private sellProjectTax; uint256 private transferTaxTotal; uint256 private transferMarketingTax; uint256 private transferProjectTax; uint256 private tokensForMarketing; uint256 private tokensForProject; /******************/ // exclude from fees and max transaction amount mapping(address => bool) private transferTaxExempt; mapping(address => bool) private transferLimitExempt; mapping(address => bool) private automatedMarketMakerPairs; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event ExcludeFromLimits(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event TradingEnabled(uint256 indexed timestamp); event LimitsRemoved(uint256 indexed timestamp); event DisabledTransferDelay(uint256 indexed timestamp); event SwapbackSettingsUpdated( bool enabled, uint256 swapBackValueMin, uint256 swapBackValueMax ); event MaxTxUpdated(uint256 maxTx); event MaxWalletUpdated(uint256 maxWallet); event MarketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event ProjectWalletUpdated( address indexed newWallet, address indexed oldWallet ); event BuyFeeUpdated( uint256 buyTaxTotal, uint256 buyMarketingTax, uint256 buyProjectTax ); event SellFeeUpdated( uint256 sellTaxTotal, uint256 sellMarketingTax, uint256 sellProjectTax ); event TransferFeeUpdated( uint256 transferTaxTotal, uint256 transferMarketingTax, uint256 transferProjectTax ); constructor() ERC20("RoboMuMu", "ROMU") { IUniswapV2Router02 _dexRouter = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); exemptFromLimits(address(_dexRouter), true); dexRouter = _dexRouter; dexPair = IUniswapV2Factory(_dexRouter.factory()).createPair( address(this), _dexRouter.WETH() ); exemptFromLimits(address(dexPair), true); _setAutomatedMarketMakerPair(address(dexPair), true); uint256 _buyMarketingTax = 25; uint256 _buyProjectTax = 0; uint256 _sellMarketingTax = 25; uint256 _sellProjectTax = 0; uint256 _transferMarketingTax = 1; uint256 _transferProjectTax = 0; uint256 _totalSupply = 1_00_000_000_000 * 10 ** decimals(); maxTx = (_totalSupply * 10) / 1000; maxWallet = (_totalSupply * 10) / 1000; swapBackValueMin = 129478301000000000000000000; swapBackValueMax = 215345013000000000000000000; buyMarketingTax = _buyMarketingTax; buyProjectTax = _buyProjectTax; buyTaxTotal = buyMarketingTax + buyProjectTax; sellMarketingTax = _sellMarketingTax; sellProjectTax = _sellProjectTax; sellTaxTotal = sellMarketingTax + sellProjectTax; transferMarketingTax = _transferMarketingTax; transferProjectTax = _transferProjectTax; transferTaxTotal = transferMarketingTax + transferProjectTax; marketingWallet = address(0xeff628a27ff5aF77567010664fE39DB6165B45f0); projectWallet = address(msg.sender); // exclude from paying fees or having max transaction amount exemptFromFees(msg.sender, true); exemptFromFees(address(this), true); exemptFromFees(address(0xdead), true); exemptFromFees(marketingWallet, true); exemptFromLimits(msg.sender, true); exemptFromLimits(address(this), true); exemptFromLimits(address(0xdead), true); exemptFromLimits(marketingWallet, true); transferOwnership(msg.sender); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, _totalSupply); } receive() external payable {} /** * @notice Opens public trading for the token * @dev onlyOwner. */ function startTrading() external onlyOwner { tradingEnabled = true; swapbackEnabled = true; emit TradingEnabled(block.timestamp); } /** * @notice Removes the max wallet and max transaction limits * @dev onlyOwner. * Emits an {LimitsRemoved} event */ function removeAllLimits() external onlyOwner { limitsEnabled = false; emit LimitsRemoved(block.timestamp); } /** * @notice Removes the transfer delay * @dev onlyOwner. * Emits an {DisabledTransferDelay} event */ function disableTransferDelay() external onlyOwner { transferDelayEnabled = false; emit DisabledTransferDelay(block.timestamp); } /** * @notice sets if swapback is enabled and sets the minimum and maximum amounts * @dev onlyOwner. * Emits an {SwapbackSettingsUpdated} event * @param _enabled If swapback is enabled * @param _min The minimum amount of tokens the contract must have before swapping tokens for ETH. Base 10000, so 1% = 100. * @param _max The maximum amount of tokens the contract can swap for ETH. Base 10000, so 1% = 100. */ function setSwapBackSettings( bool _enabled, uint256 _min, uint256 _max ) external onlyOwner { swapbackEnabled = _enabled; swapBackValueMin = _min * 1e18; swapBackValueMax = _max * 1e18; emit SwapbackSettingsUpdated(_enabled, _min, _max); } /** * @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction * @dev onlyOwner. * Emits an {MaxTxUpdated} event * @param newNum Base 1000, so 1% = 10 */ function setTheMaxTx(uint256 newNum) external onlyOwner { require(newNum >= 2, "Cannot set maxTx lower than 0.2%"); maxTx = (newNum * totalSupply()) / 1000; emit MaxTxUpdated(maxTx); } /** * @notice Changes the maximum amount of tokens a wallet can hold * @dev onlyOwner. * Emits an {MaxWalletUpdated} event * @param newNum Base 1000, so 1% = 10 */ function setTheMaxWallet(uint256 newNum) external onlyOwner { require(newNum >= 5, "Cannot set maxWallet lower than 0.5%"); maxWallet = (newNum * totalSupply()) / 1000; emit MaxWalletUpdated(maxWallet); } /** * @notice Sets if a wallet is excluded from the max wallet and tx limits * @dev onlyOwner. * Emits an {ExcludeFromLimits} event * @param updAds The wallet to update * @param isEx If the wallet is excluded or not */ function exemptFromLimits( address updAds, bool isEx ) public onlyOwner { transferLimitExempt[updAds] = isEx; emit ExcludeFromLimits(updAds, isEx); } /** * @notice Sets the fees for buys * @dev onlyOwner. * Emits a {BuyFeeUpdated} event * All fees added up must be less than 100 * @param _marketingFee The fee for the marketing wallet * @param _devFee The fee for the dev wallet */ function setFeesBuy( uint256 _marketingFee, uint256 _devFee ) external onlyOwner { buyMarketingTax = _marketingFee; buyProjectTax = _devFee; buyTaxTotal = buyMarketingTax + buyProjectTax; require(buyTaxTotal <= 25, "Total buy fee cannot be higher than 25%"); emit BuyFeeUpdated(buyTaxTotal, buyMarketingTax, buyProjectTax); } /** * @notice Sets the fees for transfer * @dev onlyOwner. * Emits a {TransferFeeUpdated} event * All fees added up must be less than 100 * @param _marketingFee The fee for the marketing wallet * @param _devFee The fee for the dev wallet */ function setFeesTransfer( uint256 _marketingFee, uint256 _devFee ) external onlyOwner { transferMarketingTax = _marketingFee; transferProjectTax = _devFee; transferTaxTotal = transferMarketingTax + transferProjectTax; require( transferTaxTotal <= 5, "Total transfer fee cannot be higher than 5%" ); emit TransferFeeUpdated(transferTaxTotal, transferMarketingTax, transferProjectTax); } /** * @notice Sets the fees for sells * @dev onlyOwner. * Emits a {SellFeeUpdated} event * All fees added up must be less than 100 * @param _marketingFee The fee for the marketing wallet * @param _devFee The fee for the dev wallet */ function setFeesSell( uint256 _marketingFee, uint256 _devFee ) external onlyOwner { sellMarketingTax = _marketingFee; sellProjectTax = _devFee; sellTaxTotal = sellMarketingTax + sellProjectTax; require( sellTaxTotal <= 25, "Total sell fee cannot be higher than 25%" ); emit SellFeeUpdated(sellTaxTotal, sellMarketingTax, sellProjectTax); } /** * @notice Sets if an address is excluded from fees * @dev onlyOwner. * Emits an {ExcludeFromFees} event * @param account The wallet to update * @param excluded If the wallet is excluded or not */ function exemptFromFees(address account, bool excluded) public onlyOwner { transferTaxExempt[account] = excluded; emit ExcludeFromFees(account, excluded); } /** * @notice Sets an address as a new liquidity pair. You probably dont want to do this. * @dev onlyOwner. * Emits a {SetAutomatedMarketMakerPair} event * @param pair the address of the pair * @param value If the pair is a automated market maker pair or not */ function setAutomatedMarketMakerPair( address pair, bool value ) public onlyOwner { require( pair != dexPair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } /** * @notice Sets the marketing wallet * @dev onlyOwner. * Emits an {MarketingWalletUpdated} event * @param newWallet The new marketing wallet */ function changeMarketingWallet(address newWallet) external onlyOwner { emit MarketingWalletUpdated(newWallet, marketingWallet); marketingWallet = newWallet; } /** * @notice Sets the project wallet * @dev onlyOwner. * Emits an {ProjectWalletUpdated} event * @param newWallet The new dev wallet */ function changeProjectWallet(address newWallet) external onlyOwner { emit ProjectWalletUpdated(newWallet, projectWallet); projectWallet = newWallet; } /** * @notice Information about the swapback settings * @return _swapbackEnabled if swapback is enabled * @return _swapBackValueMin the minimum amount of tokens in the contract balance to trigger swapback * @return _swapBackValueMax the maximum amount of tokens in the contract balance to trigger swapback */ function swapbackValues() external view returns ( bool _swapbackEnabled, uint256 _swapBackValueMin, uint256 _swapBackValueMax ) { _swapbackEnabled = swapbackEnabled; _swapBackValueMin = swapBackValueMin; _swapBackValueMax = swapBackValueMax; } /** * @notice Information about the anti whale parameters * @return _limitsEnabled if the wallet limits are in effect * @return _transferDelayEnabled if the transfer delay is enabled * @return _maxWallet The maximum amount of tokens that can be held by a wallet * @return _maxTx The maximum amount of tokens that can be bought or sold in a single transaction */ function maxTxValues() external view returns ( bool _limitsEnabled, bool _transferDelayEnabled, uint256 _maxWallet, uint256 _maxTx ) { _limitsEnabled = limitsEnabled; _transferDelayEnabled = transferDelayEnabled; _maxWallet = maxWallet; _maxTx = maxTx; } /** * @notice The wallets that receive the collected fees * @return _marketingWallet The wallet that receives the marketing fees * @return _projectWallet The wallet that receives the dev fees */ function receiverwallets() external view returns (address _marketingWallet, address _projectWallet) { return (marketingWallet, projectWallet); } /** * @notice Fees for buys, sells, and transfers * @return _buyTaxTotal The total fee for buys * @return _buyMarketingTax The fee for buys that gets sent to marketing * @return _buyProjectTax The fee for buys that gets sent to dev * @return _sellTaxTotal The total fee for sells * @return _sellMarketingTax The fee for sells that gets sent to marketing * @return _sellProjectTax The fee for sells that gets sent to dev */ function taxValues() external view returns ( uint256 _buyTaxTotal, uint256 _buyMarketingTax, uint256 _buyProjectTax, uint256 _sellTaxTotal, uint256 _sellMarketingTax, uint256 _sellProjectTax, uint256 _transferTaxTotal, uint256 _transferMarketingTax, uint256 _transferProjectTax ) { _buyTaxTotal = buyTaxTotal; _buyMarketingTax = buyMarketingTax; _buyProjectTax = buyProjectTax; _sellTaxTotal = sellTaxTotal; _sellMarketingTax = sellMarketingTax; _sellProjectTax = sellProjectTax; _transferTaxTotal = transferTaxTotal; _transferMarketingTax = transferMarketingTax; _transferProjectTax = transferProjectTax; } /** * @notice If the wallet is excluded from fees and max transaction amount and if the wallet is a automated market maker pair * @param _target The wallet to check * @return _transferTaxExempt If the wallet is excluded from fees * @return _transferLimitExempt If the wallet is excluded from max transaction amount * @return _automatedMarketMakerPairs If the wallet is a automated market maker pair */ function checkMappings( address _target ) external view returns ( bool _transferTaxExempt, bool _transferLimitExempt, bool _automatedMarketMakerPairs ) { _transferTaxExempt = transferTaxExempt[_target]; _transferLimitExempt = transferLimitExempt[_target]; _automatedMarketMakerPairs = automatedMarketMakerPairs[_target]; } 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"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsEnabled) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingEnabled) { require( transferTaxExempt[from] || transferTaxExempt[to], "_transfer:: Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled) { if ( to != owner() && to != address(dexRouter) && to != address(dexPair) ) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if ( automatedMarketMakerPairs[from] && !transferLimitExempt[to] ) { require( amount <= maxTx, "Buy transfer amount exceeds the maxTx." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !transferLimitExempt[from] ) { require( amount <= maxTx, "Sell transfer amount exceeds the maxTx." ); } else if (!transferLimitExempt[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapBackValueMin; if ( canSwap && swapbackEnabled && !swapping && !automatedMarketMakerPairs[from] && !transferTaxExempt[from] && !transferTaxExempt[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (transferTaxExempt[from] || transferTaxExempt[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTaxTotal > 0) { fees = amount.mul(sellTaxTotal).div(100); tokensForProject += (fees * sellProjectTax) / sellTaxTotal; tokensForMarketing += (fees * sellMarketingTax) / sellTaxTotal; } // on buy else if (automatedMarketMakerPairs[from] && buyTaxTotal > 0) { fees = amount.mul(buyTaxTotal).div(100); tokensForProject += (fees * buyProjectTax) / buyTaxTotal; tokensForMarketing += (fees * buyMarketingTax) / buyTaxTotal; } // on transfer else if(transferTaxTotal > 0){ fees = amount.mul(transferTaxTotal).div(100); tokensForProject += (fees * transferProjectTax) / transferTaxTotal; tokensForMarketing += (fees * transferMarketingTax) / transferTaxTotal; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = dexRouter.WETH(); _approve(address(this), address(dexRouter), tokenAmount); // make the swap dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = contractBalance; bool success; if (contractBalance == 0) { return; } if (contractBalance > swapBackValueMax) { contractBalance = swapBackValueMax; } uint256 amountToSwapForETH = contractBalance; uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForDev = ethBalance.mul(tokensForProject).div( totalTokensToSwap ); tokensForMarketing = 0; tokensForProject = 0; (success, ) = address(projectWallet).call{value: ethForDev}(""); (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } function manualSwapTokensForEth(uint256 percent) external onlyOwner { uint256 contractBalance = balanceOf(address(this)); uint256 tokensToSwap; if (percent == 100) { tokensToSwap = contractBalance; } else { tokensToSwap = contractBalance * percent / 100; if (tokensToSwap > contractBalance) { tokensToSwap = contractBalance; } } // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = dexRouter.WETH(); _approve(address(this), address(dexRouter), tokensToSwap); // make the swap dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( tokensToSwap, 0, // accept any amount of ETH path, marketingWallet, block.timestamp ); } }
{ "evmVersion": "paris", "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":false,"internalType":"uint256","name":"buyTaxTotal","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyMarketingTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyProjectTax","type":"uint256"}],"name":"BuyFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"DisabledTransferDelay","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"LimitsRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"MarketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTx","type":"uint256"}],"name":"MaxTxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWallet","type":"uint256"}],"name":"MaxWalletUpdated","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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"ProjectWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"sellTaxTotal","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellMarketingTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellProjectTax","type":"uint256"}],"name":"SellFeeUpdated","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":"bool","name":"enabled","type":"bool"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMax","type":"uint256"}],"name":"SwapbackSettingsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TradingEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"transferTaxTotal","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"transferMarketingTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"transferProjectTax","type":"uint256"}],"name":"TransferFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeProjectWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_target","type":"address"}],"name":"checkMappings","outputs":[{"internalType":"bool","name":"_transferTaxExempt","type":"bool"},{"internalType":"bool","name":"_transferLimitExempt","type":"bool"},{"internalType":"bool","name":"_automatedMarketMakerPairs","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dexPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"exemptFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"exemptFromLimits","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":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualSwapTokensForEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTxValues","outputs":[{"internalType":"bool","name":"_limitsEnabled","type":"bool"},{"internalType":"bool","name":"_transferDelayEnabled","type":"bool"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"},{"internalType":"uint256","name":"_maxTx","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":"receiverwallets","outputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_projectWallet","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeAllLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setFeesBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setFeesSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setFeesTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"},{"internalType":"uint256","name":"_min","type":"uint256"},{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setSwapBackSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setTheMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setTheMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapbackValues","outputs":[{"internalType":"bool","name":"_swapbackEnabled","type":"bool"},{"internalType":"uint256","name":"_swapBackValueMin","type":"uint256"},{"internalType":"uint256","name":"_swapBackValueMax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxValues","outputs":[{"internalType":"uint256","name":"_buyTaxTotal","type":"uint256"},{"internalType":"uint256","name":"_buyMarketingTax","type":"uint256"},{"internalType":"uint256","name":"_buyProjectTax","type":"uint256"},{"internalType":"uint256","name":"_sellTaxTotal","type":"uint256"},{"internalType":"uint256","name":"_sellMarketingTax","type":"uint256"},{"internalType":"uint256","name":"_sellProjectTax","type":"uint256"},{"internalType":"uint256","name":"_transferTaxTotal","type":"uint256"},{"internalType":"uint256","name":"_transferMarketingTax","type":"uint256"},{"internalType":"uint256","name":"_transferProjectTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526000600560156101000a81548160ff0219169083151502179055506001600860006101000a81548160ff0219169083151502179055506000600860016101000a81548160ff0219169083151502179055506000600c60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600881526020017f526f626f4d754d750000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f524f4d55000000000000000000000000000000000000000000000000000000008152508160039081620000fb919062000f47565b5080600490816200010d919062000f47565b50505062000130620001246200062060201b60201c565b6200062860201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200015c816001620006ee60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001dc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000202919062001098565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200026a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000290919062001098565b6040518363ffffffff1660e01b8152600401620002af929190620010db565b6020604051808303816000875af1158015620002cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f5919062001098565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200033d60a0516001620006ee60201b60201c565b6200035260a05160016200082860201b60201c565b600060199050600080601990506000806001905060008062000379620008c960201b60201c565b600a62000387919062001298565b64174876e800620003999190620012e9565b90506103e8600a82620003ad9190620012e9565b620003b9919062001363565b600a819055506103e8600a82620003d19190620012e9565b620003dd919062001363565b6009819055506a6b1a18c2fe8c6fa05400006006819055506ab221148be2925abcb4000060078190555086600f8190555085601081905550601054600f546200042791906200139b565b600e8190555084601281905550836013819055506013546012546200044d91906200139b565b60118190555082601581905550816016819055506016546015546200047391906200139b565b60148190555073eff628a27ff5af77567010664fe39db6165b45f0600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000522336001620008d260201b60201c565b62000535306001620008d260201b60201c565b6200054a61dead6001620008d260201b60201c565b6200057f600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620008d260201b60201c565b62000592336001620006ee60201b60201c565b620005a5306001620006ee60201b60201c565b620005ba61dead6001620006ee60201b60201c565b620005ef600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620006ee60201b60201c565b620006003362000a0c60201b60201c565b62000612338262000b2160201b60201c565b5050505050505050620015cb565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006fe6200062060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200072462000c9960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200077d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007749062001437565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92826040516200081c919062001476565b60405180910390a25050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60006012905090565b620008e26200062060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200090862000c9960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000961576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009589062001437565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000a00919062001476565b60405180910390a25050565b62000a1c6200062060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000a4262000c9960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000a9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a929062001437565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000b0d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b049062001509565b60405180910390fd5b62000b1e816200062860201b60201c565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b93576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b8a906200157b565b60405180910390fd5b62000ba76000838362000cc360201b60201c565b806002600082825462000bbb91906200139b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000c1291906200139b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000c799190620015ae565b60405180910390a362000c956000838362000cc860201b60201c565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000d4f57607f821691505b60208210810362000d655762000d6462000d07565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000dcf7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000d90565b62000ddb868362000d90565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000e2862000e2262000e1c8462000df3565b62000dfd565b62000df3565b9050919050565b6000819050919050565b62000e448362000e07565b62000e5c62000e538262000e2f565b84845462000d9d565b825550505050565b600090565b62000e7362000e64565b62000e8081848462000e39565b505050565b5b8181101562000ea85762000e9c60008262000e69565b60018101905062000e86565b5050565b601f82111562000ef75762000ec18162000d6b565b62000ecc8462000d80565b8101602085101562000edc578190505b62000ef462000eeb8562000d80565b83018262000e85565b50505b505050565b600082821c905092915050565b600062000f1c6000198460080262000efc565b1980831691505092915050565b600062000f37838362000f09565b9150826002028217905092915050565b62000f528262000ccd565b67ffffffffffffffff81111562000f6e5762000f6d62000cd8565b5b62000f7a825462000d36565b62000f8782828562000eac565b600060209050601f83116001811462000fbf576000841562000faa578287015190505b62000fb6858262000f29565b86555062001026565b601f19841662000fcf8662000d6b565b60005b8281101562000ff95784890151825560018201915060208501945060208101905062000fd2565b8683101562001019578489015162001015601f89168262000f09565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620010608262001033565b9050919050565b620010728162001053565b81146200107e57600080fd5b50565b600081519050620010928162001067565b92915050565b600060208284031215620010b157620010b06200102e565b5b6000620010c18482850162001081565b91505092915050565b620010d58162001053565b82525050565b6000604082019050620010f26000830185620010ca565b620011016020830184620010ca565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562001196578086048111156200116e576200116d62001108565b5b60018516156200117e5780820291505b80810290506200118e8562001137565b94506200114e565b94509492505050565b600082620011b1576001905062001284565b81620011c1576000905062001284565b8160018114620011da5760028114620011e5576200121b565b600191505062001284565b60ff841115620011fa57620011f962001108565b5b8360020a91508482111562001214576200121362001108565b5b5062001284565b5060208310610133831016604e8410600b8410161715620012555782820a9050838111156200124f576200124e62001108565b5b62001284565b62001264848484600162001144565b925090508184048111156200127e576200127d62001108565b5b81810290505b9392505050565b600060ff82169050919050565b6000620012a58262000df3565b9150620012b2836200128b565b9250620012e17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200119f565b905092915050565b6000620012f68262000df3565b9150620013038362000df3565b9250828202620013138162000df3565b915082820484148315176200132d576200132c62001108565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620013708262000df3565b91506200137d8362000df3565b92508262001390576200138f62001334565b5b828204905092915050565b6000620013a88262000df3565b9150620013b58362000df3565b9250828201905080821115620013d057620013cf62001108565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200141f602083620013d6565b91506200142c82620013e7565b602082019050919050565b60006020820190508181036000830152620014528162001410565b9050919050565b60008115159050919050565b620014708162001459565b82525050565b60006020820190506200148d600083018462001465565b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000620014f1602683620013d6565b9150620014fe8262001493565b604082019050919050565b600060208201905081810360008301526200152481620014e2565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001563601f83620013d6565b915062001570826200152b565b602082019050919050565b60006020820190508181036000830152620015968162001554565b9050919050565b620015a88162000df3565b82525050565b6000602082019050620015c560008301846200159d565b92915050565b60805160a051614f1162001629600039600081816113fc0152818161206601526128c1015260008181611847015281816119280152818161194f015281816128690152818161385701528181613938015261395f0152614f116000f3fe6080604052600436106102135760003560e01c806399e5b5c811610118578063db05e5cb116100a0578063f242ab411161006f578063f242ab4114610785578063f2fde38b146107b0578063f3dc3902146107d9578063fab82a8e1461080c578063fcbb7607146108385761021a565b8063db05e5cb146106db578063dd62ed3e146106f2578063e13b20071461072f578063e884f2601461076e5761021a565b8063a10fd7be116100e7578063a10fd7be146105e6578063a457c2d71461060f578063a9059cbb1461064c578063bb85c6d114610689578063d0889358146106b25761021a565b806399e5b5c8146105425780639a7a23d61461056b5780639b6b5499146105945780639fe64094146105bd5761021a565b80634ada218b1161019b57806370a082311161016a57806370a082311461046b578063715018a6146104a857806377b5312c146104bf5780638da5cb5b146104ec57806395d89b41146105175761021a565b80634ada218b146103c55780634b896a3e146103f057806352d65858146104195780635580145f146104425761021a565b806323b872dd116101e257806323b872dd146102db578063293230b814610318578063313ce5671461032f57806331f815111461035a57806339509351146103885761021a565b806306fdde031461021f578063095ea7b31461024a5780630fa7c8691461028757806318160ddd146102b05761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b50610234610861565b6040516102419190613a9b565b60405180910390f35b34801561025657600080fd5b50610271600480360381019061026c9190613b56565b6108f3565b60405161027e9190613bb1565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190613bcc565b610911565b005b3480156102bc57600080fd5b506102c5610a3c565b6040516102d29190613c1b565b60405180910390f35b3480156102e757600080fd5b5061030260048036038101906102fd9190613c36565b610a46565b60405161030f9190613bb1565b60405180910390f35b34801561032457600080fd5b5061032d610b3e565b005b34801561033b57600080fd5b50610344610c1f565b6040516103519190613ca5565b60405180910390f35b34801561036657600080fd5b5061036f610c28565b60405161037f9493929190613cc0565b60405180910390f35b34801561039457600080fd5b506103af60048036038101906103aa9190613b56565b610c62565b6040516103bc9190613bb1565b60405180910390f35b3480156103d157600080fd5b506103da610d0e565b6040516103e79190613bb1565b60405180910390f35b3480156103fc57600080fd5b5061041760048036038101906104129190613d05565b610d21565b005b34801561042557600080fd5b50610440600480360381019061043b9190613bcc565b610e43565b005b34801561044e57600080fd5b5061046960048036038101906104649190613d05565b610f6e565b005b34801561047757600080fd5b50610492600480360381019061048d9190613d32565b611090565b60405161049f9190613c1b565b60405180910390f35b3480156104b457600080fd5b506104bd6110d8565b005b3480156104cb57600080fd5b506104d4611160565b6040516104e393929190613d5f565b60405180910390f35b3480156104f857600080fd5b50610501611186565b60405161050e9190613da5565b60405180910390f35b34801561052357600080fd5b5061052c6111b0565b6040516105399190613a9b565b60405180910390f35b34801561054e57600080fd5b5061056960048036038101906105649190613d32565b611242565b005b34801561057757600080fd5b50610592600480360381019061058d9190613dec565b61137e565b005b3480156105a057600080fd5b506105bb60048036038101906105b69190613dec565b611496565b005b3480156105c957600080fd5b506105e460048036038101906105df9190613bcc565b6115bb565b005b3480156105f257600080fd5b5061060d60048036038101906106089190613d05565b6116e6565b005b34801561061b57600080fd5b5061063660048036038101906106319190613b56565b611a09565b6040516106439190613bb1565b60405180910390f35b34801561065857600080fd5b50610673600480360381019061066e9190613b56565b611af4565b6040516106809190613bb1565b60405180910390f35b34801561069557600080fd5b506106b060048036038101906106ab9190613d32565b611b12565b005b3480156106be57600080fd5b506106d960048036038101906106d49190613e2c565b611c4e565b005b3480156106e757600080fd5b506106f0611d58565b005b3480156106fe57600080fd5b5061071960048036038101906107149190613e7f565b611e1e565b6040516107269190613c1b565b60405180910390f35b34801561073b57600080fd5b5061075660048036038101906107519190613d32565b611ea5565b60405161076593929190613ebf565b60405180910390f35b34801561077a57600080fd5b50610783611f9e565b005b34801561079157600080fd5b5061079a612064565b6040516107a79190613da5565b60405180910390f35b3480156107bc57600080fd5b506107d760048036038101906107d29190613d32565b612088565b005b3480156107e557600080fd5b506107ee61217f565b60405161080399989796959493929190613ef6565b60405180910390f35b34801561081857600080fd5b506108216121c5565b60405161082f929190613f83565b60405180910390f35b34801561084457600080fd5b5061085f600480360381019061085a9190613dec565b612216565b005b60606003805461087090613fdb565b80601f016020809104026020016040519081016040528092919081815260200182805461089c90613fdb565b80156108e95780601f106108be576101008083540402835291602001916108e9565b820191906000526020600020905b8154815290600101906020018083116108cc57829003601f168201915b5050505050905090565b600061090761090061233b565b8484612343565b6001905092915050565b61091961233b565b73ffffffffffffffffffffffffffffffffffffffff16610937611186565b73ffffffffffffffffffffffffffffffffffffffff161461098d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098490614058565b60405180910390fd5b81601581905550806016819055506016546015546109ab91906140a7565b601481905550600560145411156109f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ee9061414d565b60405180910390fd5b7fca0d25e555e4d075eb2e507cf72ddfc215f6fb47b9d21a259dc9df5759c7e857601454601554601654604051610a309392919061416d565b60405180910390a15050565b6000600254905090565b6000610a5384848461250c565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a9e61233b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1590614216565b60405180910390fd5b610b3285610b2a61233b565b858403612343565b60019150509392505050565b610b4661233b565b73ffffffffffffffffffffffffffffffffffffffff16610b64611186565b73ffffffffffffffffffffffffffffffffffffffff1614610bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb190614058565b60405180910390fd5b6001600c60006101000a81548160ff0219169083151502179055506001600560156101000a81548160ff021916908315150217905550427fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92360405160405180910390a2565b60006012905090565b600080600080600860009054906101000a900460ff169350600860019054906101000a900460ff1692506009549150600a54905090919293565b6000610d04610c6f61233b565b848460016000610c7d61233b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cff91906140a7565b612343565b6001905092915050565b600c60009054906101000a900460ff1681565b610d2961233b565b73ffffffffffffffffffffffffffffffffffffffff16610d47611186565b73ffffffffffffffffffffffffffffffffffffffff1614610d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9490614058565b60405180910390fd5b6005811015610de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd8906142a8565b60405180910390fd5b6103e8610dec610a3c565b82610df791906142c8565b610e019190614339565b6009819055507f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace600954604051610e389190613c1b565b60405180910390a150565b610e4b61233b565b73ffffffffffffffffffffffffffffffffffffffff16610e69611186565b73ffffffffffffffffffffffffffffffffffffffff1614610ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb690614058565b60405180910390fd5b81600f8190555080601081905550601054600f54610edd91906140a7565b600e819055506019600e541115610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f20906143dc565b60405180910390fd5b7f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e600e54600f54601054604051610f629392919061416d565b60405180910390a15050565b610f7661233b565b73ffffffffffffffffffffffffffffffffffffffff16610f94611186565b73ffffffffffffffffffffffffffffffffffffffff1614610fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe190614058565b60405180910390fd5b600281101561102e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102590614448565b60405180910390fd5b6103e8611039610a3c565b8261104491906142c8565b61104e9190614339565b600a819055507fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a600a546040516110859190613c1b565b60405180910390a150565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110e061233b565b73ffffffffffffffffffffffffffffffffffffffff166110fe611186565b73ffffffffffffffffffffffffffffffffffffffff1614611154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114b90614058565b60405180910390fd5b61115e60006131de565b565b6000806000600560159054906101000a900460ff16925060065491506007549050909192565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546111bf90613fdb565b80601f01602080910402602001604051908101604052809291908181526020018280546111eb90613fdb565b80156112385780601f1061120d57610100808354040283529160200191611238565b820191906000526020600020905b81548152906001019060200180831161121b57829003601f168201915b5050505050905090565b61124a61233b565b73ffffffffffffffffffffffffffffffffffffffff16611268611186565b73ffffffffffffffffffffffffffffffffffffffff16146112be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b590614058565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fb91dbdeaf34f885ccae2d8abc3967cb03c079b6af2c7944e3893fd29427d75e760405160405180910390a380600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61138661233b565b73ffffffffffffffffffffffffffffffffffffffff166113a4611186565b73ffffffffffffffffffffffffffffffffffffffff16146113fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f190614058565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147f906144da565b60405180910390fd5b61149282826132a4565b5050565b61149e61233b565b73ffffffffffffffffffffffffffffffffffffffff166114bc611186565b73ffffffffffffffffffffffffffffffffffffffff1614611512576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150990614058565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516115af9190613bb1565b60405180910390a25050565b6115c361233b565b73ffffffffffffffffffffffffffffffffffffffff166115e1611186565b73ffffffffffffffffffffffffffffffffffffffff1614611637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162e90614058565b60405180910390fd5b816012819055508060138190555060135460125461165591906140a7565b601181905550601960115411156116a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116989061456c565b60405180910390fd5b7fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f16011546012546013546040516116da9392919061416d565b60405180910390a15050565b6116ee61233b565b73ffffffffffffffffffffffffffffffffffffffff1661170c611186565b73ffffffffffffffffffffffffffffffffffffffff1614611762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175990614058565b60405180910390fd5b600061176d30611090565b9050600060648303611781578190506117a8565b6064838361178f91906142c8565b6117999190614339565b9050818111156117a7578190505b5b6000600267ffffffffffffffff8111156117c5576117c461458c565b5b6040519080825280602002602001820160405280156117f35781602001602082028036833780820191505090505b509050308160008151811061180b5761180a6145bb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118d491906145ff565b816001815181106118e8576118e76145bb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061194d307f000000000000000000000000000000000000000000000000000000000000000084612343565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac94783600084600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016119d195949392919061472f565b600060405180830381600087803b1580156119eb57600080fd5b505af11580156119ff573d6000803e3d6000fd5b5050505050505050565b60008060016000611a1861233b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acc906147fb565b60405180910390fd5b611ae9611ae061233b565b85858403612343565b600191505092915050565b6000611b08611b0161233b565b848461250c565b6001905092915050565b611b1a61233b565b73ffffffffffffffffffffffffffffffffffffffff16611b38611186565b73ffffffffffffffffffffffffffffffffffffffff1614611b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8590614058565b60405180910390fd5b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6760405160405180910390a380600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611c5661233b565b73ffffffffffffffffffffffffffffffffffffffff16611c74611186565b73ffffffffffffffffffffffffffffffffffffffff1614611cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc190614058565b60405180910390fd5b82600560156101000a81548160ff021916908315150217905550670de0b6b3a764000082611cf891906142c8565b600681905550670de0b6b3a764000081611d1291906142c8565b6007819055507f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c779838383604051611d4b93929190613d5f565b60405180910390a1505050565b611d6061233b565b73ffffffffffffffffffffffffffffffffffffffff16611d7e611186565b73ffffffffffffffffffffffffffffffffffffffff1614611dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcb90614058565b60405180910390fd5b6000600860006101000a81548160ff021916908315150217905550427ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261660405160405180910390a2565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000806000601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169250601a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169150601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690509193909250565b611fa661233b565b73ffffffffffffffffffffffffffffffffffffffff16611fc4611186565b73ffffffffffffffffffffffffffffffffffffffff161461201a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201190614058565b60405180910390fd5b6000600860016101000a81548160ff021916908315150217905550427f26e776fcf7ca20aa79b5b946e9b5111f47205539ece9d7a7995271dd6a8b5bad60405160405180910390a2565b7f000000000000000000000000000000000000000000000000000000000000000081565b61209061233b565b73ffffffffffffffffffffffffffffffffffffffff166120ae611186565b73ffffffffffffffffffffffffffffffffffffffff1614612104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fb90614058565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216a9061488d565b60405180910390fd5b61217c816131de565b50565b6000806000806000806000806000600e549850600f5497506010549650601154955060125494506013549350601454925060155491506016549050909192939495969798565b600080600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16915091509091565b61221e61233b565b73ffffffffffffffffffffffffffffffffffffffff1661223c611186565b73ffffffffffffffffffffffffffffffffffffffff1614612292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228990614058565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc928260405161232f9190613bb1565b60405180910390a25050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a99061491f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612421576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612418906149b1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516124ff9190613c1b565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361257b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257290614a43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e190614ad5565b60405180910390fd5b60008103612603576125fe83836000613345565b6131d9565b600860009054906101000a900460ff1615612cc657612620611186565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561268e575061265e611186565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126c75750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612701575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561271a5750600560149054906101000a900460ff16155b15612cc557600c60009054906101000a900460ff1661281457601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127d45750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280a90614b67565b60405180910390fd5b5b600860019054906101000a900460ff16156129dc57612831611186565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156128b857507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561291057507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156129db5743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298d90614c1f565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a7f5750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b2657600a54811115612ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac090614cb1565b60405180910390fd5b600954612ad583611090565b82612ae091906140a7565b1115612b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1890614d1d565b60405180910390fd5b612cc4565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612bc95750601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c1857600a54811115612c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0a90614daf565b60405180910390fd5b612cc3565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612cc257600954612c7583611090565b82612c8091906140a7565b1115612cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb890614d1d565b60405180910390fd5b5b5b5b5b5b6000612cd130611090565b905060006006548210159050808015612cf65750600560159054906101000a900460ff165b8015612d0f5750600560149054906101000a900460ff16155b8015612d655750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612dbb5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e115750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e55576001600560146101000a81548160ff021916908315150217905550612e396135c4565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612f0b5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612f1557600090505b600081156131c957601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f7857506000601154115b1561301257612fa56064612f976011548861378290919063ffffffff16565b61379890919063ffffffff16565b905060115460135482612fb891906142c8565b612fc29190614339565b60186000828254612fd391906140a7565b9250508190555060115460125482612feb91906142c8565b612ff59190614339565b6017600082825461300691906140a7565b925050819055506131a5565b601b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561306d57506000600e54115b156131075761309a606461308c600e548861378290919063ffffffff16565b61379890919063ffffffff16565b9050600e54601054826130ad91906142c8565b6130b79190614339565b601860008282546130c891906140a7565b92505081905550600e54600f54826130e091906142c8565b6130ea9190614339565b601760008282546130fb91906140a7565b925050819055506131a4565b600060145411156131a35761313a606461312c6014548861378290919063ffffffff16565b61379890919063ffffffff16565b90506014546016548261314d91906142c8565b6131579190614339565b6018600082825461316891906140a7565b925050819055506014546015548261318091906142c8565b61318a9190614339565b6017600082825461319b91906140a7565b925050819055505b5b5b60008111156131ba576131b9873083613345565b5b80856131c69190614dcf565b94505b6131d4878787613345565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036133b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ab90614a43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341a90614ad5565b60405180910390fd5b61342e8383836137ae565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156134b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134ab90614e75565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461354791906140a7565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516135ab9190613c1b565b60405180910390a36135be8484846137b3565b50505050565b60006135cf30611090565b9050600081905060008083036135e757505050613780565b6007548311156135f75760075492505b6000839050600047905061360a826137b8565b600061361f82476139f590919063ffffffff16565b9050600061364a8661363c6018548561378290919063ffffffff16565b61379890919063ffffffff16565b905060006017819055506000601881905550600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16816040516136a290614ec6565b60006040518083038185875af1925050503d80600081146136df576040519150601f19603f3d011682016040523d82523d6000602084013e6136e4565b606091505b505080955050600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161373090614ec6565b60006040518083038185875af1925050503d806000811461376d576040519150601f19603f3d011682016040523d82523d6000602084013e613772565b606091505b505080955050505050505050505b565b6000818361379091906142c8565b905092915050565b600081836137a69190614339565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156137d5576137d461458c565b5b6040519080825280602002602001820160405280156138035781602001602082028036833780820191505090505b509050308160008151811061381b5761381a6145bb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156138c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138e491906145ff565b816001815181106138f8576138f76145bb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061395d307f000000000000000000000000000000000000000000000000000000000000000084612343565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016139bf95949392919061472f565b600060405180830381600087803b1580156139d957600080fd5b505af11580156139ed573d6000803e3d6000fd5b505050505050565b60008183613a039190614dcf565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a45578082015181840152602081019050613a2a565b60008484015250505050565b6000601f19601f8301169050919050565b6000613a6d82613a0b565b613a778185613a16565b9350613a87818560208601613a27565b613a9081613a51565b840191505092915050565b60006020820190508181036000830152613ab58184613a62565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613aed82613ac2565b9050919050565b613afd81613ae2565b8114613b0857600080fd5b50565b600081359050613b1a81613af4565b92915050565b6000819050919050565b613b3381613b20565b8114613b3e57600080fd5b50565b600081359050613b5081613b2a565b92915050565b60008060408385031215613b6d57613b6c613abd565b5b6000613b7b85828601613b0b565b9250506020613b8c85828601613b41565b9150509250929050565b60008115159050919050565b613bab81613b96565b82525050565b6000602082019050613bc66000830184613ba2565b92915050565b60008060408385031215613be357613be2613abd565b5b6000613bf185828601613b41565b9250506020613c0285828601613b41565b9150509250929050565b613c1581613b20565b82525050565b6000602082019050613c306000830184613c0c565b92915050565b600080600060608486031215613c4f57613c4e613abd565b5b6000613c5d86828701613b0b565b9350506020613c6e86828701613b0b565b9250506040613c7f86828701613b41565b9150509250925092565b600060ff82169050919050565b613c9f81613c89565b82525050565b6000602082019050613cba6000830184613c96565b92915050565b6000608082019050613cd56000830187613ba2565b613ce26020830186613ba2565b613cef6040830185613c0c565b613cfc6060830184613c0c565b95945050505050565b600060208284031215613d1b57613d1a613abd565b5b6000613d2984828501613b41565b91505092915050565b600060208284031215613d4857613d47613abd565b5b6000613d5684828501613b0b565b91505092915050565b6000606082019050613d746000830186613ba2565b613d816020830185613c0c565b613d8e6040830184613c0c565b949350505050565b613d9f81613ae2565b82525050565b6000602082019050613dba6000830184613d96565b92915050565b613dc981613b96565b8114613dd457600080fd5b50565b600081359050613de681613dc0565b92915050565b60008060408385031215613e0357613e02613abd565b5b6000613e1185828601613b0b565b9250506020613e2285828601613dd7565b9150509250929050565b600080600060608486031215613e4557613e44613abd565b5b6000613e5386828701613dd7565b9350506020613e6486828701613b41565b9250506040613e7586828701613b41565b9150509250925092565b60008060408385031215613e9657613e95613abd565b5b6000613ea485828601613b0b565b9250506020613eb585828601613b0b565b9150509250929050565b6000606082019050613ed46000830186613ba2565b613ee16020830185613ba2565b613eee6040830184613ba2565b949350505050565b600061012082019050613f0c600083018c613c0c565b613f19602083018b613c0c565b613f26604083018a613c0c565b613f336060830189613c0c565b613f406080830188613c0c565b613f4d60a0830187613c0c565b613f5a60c0830186613c0c565b613f6760e0830185613c0c565b613f75610100830184613c0c565b9a9950505050505050505050565b6000604082019050613f986000830185613d96565b613fa56020830184613d96565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613ff357607f821691505b60208210810361400657614005613fac565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614042602083613a16565b915061404d8261400c565b602082019050919050565b6000602082019050818103600083015261407181614035565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006140b282613b20565b91506140bd83613b20565b92508282019050808211156140d5576140d4614078565b5b92915050565b7f546f74616c207472616e73666572206665652063616e6e6f742062652068696760008201527f686572207468616e203525000000000000000000000000000000000000000000602082015250565b6000614137602b83613a16565b9150614142826140db565b604082019050919050565b600060208201905081810360008301526141668161412a565b9050919050565b60006060820190506141826000830186613c0c565b61418f6020830185613c0c565b61419c6040830184613c0c565b949350505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614200602883613a16565b915061420b826141a4565b604082019050919050565b6000602082019050818103600083015261422f816141f3565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614292602483613a16565b915061429d82614236565b604082019050919050565b600060208201905081810360008301526142c181614285565b9050919050565b60006142d382613b20565b91506142de83613b20565b92508282026142ec81613b20565b9150828204841483151761430357614302614078565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061434482613b20565b915061434f83613b20565b92508261435f5761435e61430a565b5b828204905092915050565b7f546f74616c20627579206665652063616e6e6f7420626520686967686572207460008201527f68616e2032352500000000000000000000000000000000000000000000000000602082015250565b60006143c6602783613a16565b91506143d18261436a565b604082019050919050565b600060208201905081810360008301526143f5816143b9565b9050919050565b7f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e3225600082015250565b6000614432602083613a16565b915061443d826143fc565b602082019050919050565b6000602082019050818103600083015261446181614425565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006144c4603983613a16565b91506144cf82614468565b604082019050919050565b600060208201905081810360008301526144f3816144b7565b9050919050565b7f546f74616c2073656c6c206665652063616e6e6f74206265206869676865722060008201527f7468616e20323525000000000000000000000000000000000000000000000000602082015250565b6000614556602883613a16565b9150614561826144fa565b604082019050919050565b6000602082019050818103600083015261458581614549565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506145f981613af4565b92915050565b60006020828403121561461557614614613abd565b5b6000614623848285016145ea565b91505092915050565b6000819050919050565b6000819050919050565b600061465b6146566146518461462c565b614636565b613b20565b9050919050565b61466b81614640565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6146a681613ae2565b82525050565b60006146b8838361469d565b60208301905092915050565b6000602082019050919050565b60006146dc82614671565b6146e6818561467c565b93506146f18361468d565b8060005b8381101561472257815161470988826146ac565b9750614714836146c4565b9250506001810190506146f5565b5085935050505092915050565b600060a0820190506147446000830188613c0c565b6147516020830187614662565b818103604083015261476381866146d1565b90506147726060830185613d96565b61477f6080830184613c0c565b9695505050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006147e5602583613a16565b91506147f082614789565b604082019050919050565b60006020820190508181036000830152614814816147d8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614877602683613a16565b91506148828261481b565b604082019050919050565b600060208201905081810360008301526148a68161486a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614909602483613a16565b9150614914826148ad565b604082019050919050565b60006020820190508181036000830152614938816148fc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061499b602283613a16565b91506149a68261493f565b604082019050919050565b600060208201905081810360008301526149ca8161498e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614a2d602583613a16565b9150614a38826149d1565b604082019050919050565b60006020820190508181036000830152614a5c81614a20565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614abf602383613a16565b9150614aca82614a63565b604082019050919050565b60006020820190508181036000830152614aee81614ab2565b9050919050565b7f5f7472616e736665723a3a2054726164696e67206973206e6f7420616374697660008201527f652e000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b51602283613a16565b9150614b5c82614af5565b604082019050919050565b60006020820190508181036000830152614b8081614b44565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614c09604983613a16565b9150614c1482614b87565b606082019050919050565b60006020820190508181036000830152614c3881614bfc565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d617854782e0000000000000000000000000000000000000000000000000000602082015250565b6000614c9b602683613a16565b9150614ca682614c3f565b604082019050919050565b60006020820190508181036000830152614cca81614c8e565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614d07601383613a16565b9150614d1282614cd1565b602082019050919050565b60006020820190508181036000830152614d3681614cfa565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d617854782e00000000000000000000000000000000000000000000000000602082015250565b6000614d99602783613a16565b9150614da482614d3d565b604082019050919050565b60006020820190508181036000830152614dc881614d8c565b9050919050565b6000614dda82613b20565b9150614de583613b20565b9250828203905081811115614dfd57614dfc614078565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614e5f602683613a16565b9150614e6a82614e03565b604082019050919050565b60006020820190508181036000830152614e8e81614e52565b9050919050565b600081905092915050565b50565b6000614eb0600083614e95565b9150614ebb82614ea0565b600082019050919050565b6000614ed182614ea3565b915081905091905056fea2646970667358221220977ec6fcc381f69e7487897a3da86c446acb15649efe3cc754ebe9b608f6f70a64736f6c63430008150033
Deployed Bytecode
0x6080604052600436106102135760003560e01c806399e5b5c811610118578063db05e5cb116100a0578063f242ab411161006f578063f242ab4114610785578063f2fde38b146107b0578063f3dc3902146107d9578063fab82a8e1461080c578063fcbb7607146108385761021a565b8063db05e5cb146106db578063dd62ed3e146106f2578063e13b20071461072f578063e884f2601461076e5761021a565b8063a10fd7be116100e7578063a10fd7be146105e6578063a457c2d71461060f578063a9059cbb1461064c578063bb85c6d114610689578063d0889358146106b25761021a565b806399e5b5c8146105425780639a7a23d61461056b5780639b6b5499146105945780639fe64094146105bd5761021a565b80634ada218b1161019b57806370a082311161016a57806370a082311461046b578063715018a6146104a857806377b5312c146104bf5780638da5cb5b146104ec57806395d89b41146105175761021a565b80634ada218b146103c55780634b896a3e146103f057806352d65858146104195780635580145f146104425761021a565b806323b872dd116101e257806323b872dd146102db578063293230b814610318578063313ce5671461032f57806331f815111461035a57806339509351146103885761021a565b806306fdde031461021f578063095ea7b31461024a5780630fa7c8691461028757806318160ddd146102b05761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b50610234610861565b6040516102419190613a9b565b60405180910390f35b34801561025657600080fd5b50610271600480360381019061026c9190613b56565b6108f3565b60405161027e9190613bb1565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190613bcc565b610911565b005b3480156102bc57600080fd5b506102c5610a3c565b6040516102d29190613c1b565b60405180910390f35b3480156102e757600080fd5b5061030260048036038101906102fd9190613c36565b610a46565b60405161030f9190613bb1565b60405180910390f35b34801561032457600080fd5b5061032d610b3e565b005b34801561033b57600080fd5b50610344610c1f565b6040516103519190613ca5565b60405180910390f35b34801561036657600080fd5b5061036f610c28565b60405161037f9493929190613cc0565b60405180910390f35b34801561039457600080fd5b506103af60048036038101906103aa9190613b56565b610c62565b6040516103bc9190613bb1565b60405180910390f35b3480156103d157600080fd5b506103da610d0e565b6040516103e79190613bb1565b60405180910390f35b3480156103fc57600080fd5b5061041760048036038101906104129190613d05565b610d21565b005b34801561042557600080fd5b50610440600480360381019061043b9190613bcc565b610e43565b005b34801561044e57600080fd5b5061046960048036038101906104649190613d05565b610f6e565b005b34801561047757600080fd5b50610492600480360381019061048d9190613d32565b611090565b60405161049f9190613c1b565b60405180910390f35b3480156104b457600080fd5b506104bd6110d8565b005b3480156104cb57600080fd5b506104d4611160565b6040516104e393929190613d5f565b60405180910390f35b3480156104f857600080fd5b50610501611186565b60405161050e9190613da5565b60405180910390f35b34801561052357600080fd5b5061052c6111b0565b6040516105399190613a9b565b60405180910390f35b34801561054e57600080fd5b5061056960048036038101906105649190613d32565b611242565b005b34801561057757600080fd5b50610592600480360381019061058d9190613dec565b61137e565b005b3480156105a057600080fd5b506105bb60048036038101906105b69190613dec565b611496565b005b3480156105c957600080fd5b506105e460048036038101906105df9190613bcc565b6115bb565b005b3480156105f257600080fd5b5061060d60048036038101906106089190613d05565b6116e6565b005b34801561061b57600080fd5b5061063660048036038101906106319190613b56565b611a09565b6040516106439190613bb1565b60405180910390f35b34801561065857600080fd5b50610673600480360381019061066e9190613b56565b611af4565b6040516106809190613bb1565b60405180910390f35b34801561069557600080fd5b506106b060048036038101906106ab9190613d32565b611b12565b005b3480156106be57600080fd5b506106d960048036038101906106d49190613e2c565b611c4e565b005b3480156106e757600080fd5b506106f0611d58565b005b3480156106fe57600080fd5b5061071960048036038101906107149190613e7f565b611e1e565b6040516107269190613c1b565b60405180910390f35b34801561073b57600080fd5b5061075660048036038101906107519190613d32565b611ea5565b60405161076593929190613ebf565b60405180910390f35b34801561077a57600080fd5b50610783611f9e565b005b34801561079157600080fd5b5061079a612064565b6040516107a79190613da5565b60405180910390f35b3480156107bc57600080fd5b506107d760048036038101906107d29190613d32565b612088565b005b3480156107e557600080fd5b506107ee61217f565b60405161080399989796959493929190613ef6565b60405180910390f35b34801561081857600080fd5b506108216121c5565b60405161082f929190613f83565b60405180910390f35b34801561084457600080fd5b5061085f600480360381019061085a9190613dec565b612216565b005b60606003805461087090613fdb565b80601f016020809104026020016040519081016040528092919081815260200182805461089c90613fdb565b80156108e95780601f106108be576101008083540402835291602001916108e9565b820191906000526020600020905b8154815290600101906020018083116108cc57829003601f168201915b5050505050905090565b600061090761090061233b565b8484612343565b6001905092915050565b61091961233b565b73ffffffffffffffffffffffffffffffffffffffff16610937611186565b73ffffffffffffffffffffffffffffffffffffffff161461098d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098490614058565b60405180910390fd5b81601581905550806016819055506016546015546109ab91906140a7565b601481905550600560145411156109f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ee9061414d565b60405180910390fd5b7fca0d25e555e4d075eb2e507cf72ddfc215f6fb47b9d21a259dc9df5759c7e857601454601554601654604051610a309392919061416d565b60405180910390a15050565b6000600254905090565b6000610a5384848461250c565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a9e61233b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1590614216565b60405180910390fd5b610b3285610b2a61233b565b858403612343565b60019150509392505050565b610b4661233b565b73ffffffffffffffffffffffffffffffffffffffff16610b64611186565b73ffffffffffffffffffffffffffffffffffffffff1614610bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb190614058565b60405180910390fd5b6001600c60006101000a81548160ff0219169083151502179055506001600560156101000a81548160ff021916908315150217905550427fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92360405160405180910390a2565b60006012905090565b600080600080600860009054906101000a900460ff169350600860019054906101000a900460ff1692506009549150600a54905090919293565b6000610d04610c6f61233b565b848460016000610c7d61233b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cff91906140a7565b612343565b6001905092915050565b600c60009054906101000a900460ff1681565b610d2961233b565b73ffffffffffffffffffffffffffffffffffffffff16610d47611186565b73ffffffffffffffffffffffffffffffffffffffff1614610d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9490614058565b60405180910390fd5b6005811015610de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd8906142a8565b60405180910390fd5b6103e8610dec610a3c565b82610df791906142c8565b610e019190614339565b6009819055507f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace600954604051610e389190613c1b565b60405180910390a150565b610e4b61233b565b73ffffffffffffffffffffffffffffffffffffffff16610e69611186565b73ffffffffffffffffffffffffffffffffffffffff1614610ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb690614058565b60405180910390fd5b81600f8190555080601081905550601054600f54610edd91906140a7565b600e819055506019600e541115610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f20906143dc565b60405180910390fd5b7f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e600e54600f54601054604051610f629392919061416d565b60405180910390a15050565b610f7661233b565b73ffffffffffffffffffffffffffffffffffffffff16610f94611186565b73ffffffffffffffffffffffffffffffffffffffff1614610fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe190614058565b60405180910390fd5b600281101561102e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102590614448565b60405180910390fd5b6103e8611039610a3c565b8261104491906142c8565b61104e9190614339565b600a819055507fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a600a546040516110859190613c1b565b60405180910390a150565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110e061233b565b73ffffffffffffffffffffffffffffffffffffffff166110fe611186565b73ffffffffffffffffffffffffffffffffffffffff1614611154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114b90614058565b60405180910390fd5b61115e60006131de565b565b6000806000600560159054906101000a900460ff16925060065491506007549050909192565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546111bf90613fdb565b80601f01602080910402602001604051908101604052809291908181526020018280546111eb90613fdb565b80156112385780601f1061120d57610100808354040283529160200191611238565b820191906000526020600020905b81548152906001019060200180831161121b57829003601f168201915b5050505050905090565b61124a61233b565b73ffffffffffffffffffffffffffffffffffffffff16611268611186565b73ffffffffffffffffffffffffffffffffffffffff16146112be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b590614058565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fb91dbdeaf34f885ccae2d8abc3967cb03c079b6af2c7944e3893fd29427d75e760405160405180910390a380600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61138661233b565b73ffffffffffffffffffffffffffffffffffffffff166113a4611186565b73ffffffffffffffffffffffffffffffffffffffff16146113fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f190614058565b60405180910390fd5b7f000000000000000000000000acaa34455cb83974209f884c6ee1522f64e4ef9d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147f906144da565b60405180910390fd5b61149282826132a4565b5050565b61149e61233b565b73ffffffffffffffffffffffffffffffffffffffff166114bc611186565b73ffffffffffffffffffffffffffffffffffffffff1614611512576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150990614058565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516115af9190613bb1565b60405180910390a25050565b6115c361233b565b73ffffffffffffffffffffffffffffffffffffffff166115e1611186565b73ffffffffffffffffffffffffffffffffffffffff1614611637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162e90614058565b60405180910390fd5b816012819055508060138190555060135460125461165591906140a7565b601181905550601960115411156116a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116989061456c565b60405180910390fd5b7fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f16011546012546013546040516116da9392919061416d565b60405180910390a15050565b6116ee61233b565b73ffffffffffffffffffffffffffffffffffffffff1661170c611186565b73ffffffffffffffffffffffffffffffffffffffff1614611762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175990614058565b60405180910390fd5b600061176d30611090565b9050600060648303611781578190506117a8565b6064838361178f91906142c8565b6117999190614339565b9050818111156117a7578190505b5b6000600267ffffffffffffffff8111156117c5576117c461458c565b5b6040519080825280602002602001820160405280156117f35781602001602082028036833780820191505090505b509050308160008151811061180b5761180a6145bb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118d491906145ff565b816001815181106118e8576118e76145bb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061194d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612343565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac94783600084600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016119d195949392919061472f565b600060405180830381600087803b1580156119eb57600080fd5b505af11580156119ff573d6000803e3d6000fd5b5050505050505050565b60008060016000611a1861233b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acc906147fb565b60405180910390fd5b611ae9611ae061233b565b85858403612343565b600191505092915050565b6000611b08611b0161233b565b848461250c565b6001905092915050565b611b1a61233b565b73ffffffffffffffffffffffffffffffffffffffff16611b38611186565b73ffffffffffffffffffffffffffffffffffffffff1614611b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8590614058565b60405180910390fd5b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6760405160405180910390a380600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611c5661233b565b73ffffffffffffffffffffffffffffffffffffffff16611c74611186565b73ffffffffffffffffffffffffffffffffffffffff1614611cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc190614058565b60405180910390fd5b82600560156101000a81548160ff021916908315150217905550670de0b6b3a764000082611cf891906142c8565b600681905550670de0b6b3a764000081611d1291906142c8565b6007819055507f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c779838383604051611d4b93929190613d5f565b60405180910390a1505050565b611d6061233b565b73ffffffffffffffffffffffffffffffffffffffff16611d7e611186565b73ffffffffffffffffffffffffffffffffffffffff1614611dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcb90614058565b60405180910390fd5b6000600860006101000a81548160ff021916908315150217905550427ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261660405160405180910390a2565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000806000601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169250601a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169150601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690509193909250565b611fa661233b565b73ffffffffffffffffffffffffffffffffffffffff16611fc4611186565b73ffffffffffffffffffffffffffffffffffffffff161461201a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201190614058565b60405180910390fd5b6000600860016101000a81548160ff021916908315150217905550427f26e776fcf7ca20aa79b5b946e9b5111f47205539ece9d7a7995271dd6a8b5bad60405160405180910390a2565b7f000000000000000000000000acaa34455cb83974209f884c6ee1522f64e4ef9d81565b61209061233b565b73ffffffffffffffffffffffffffffffffffffffff166120ae611186565b73ffffffffffffffffffffffffffffffffffffffff1614612104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fb90614058565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216a9061488d565b60405180910390fd5b61217c816131de565b50565b6000806000806000806000806000600e549850600f5497506010549650601154955060125494506013549350601454925060155491506016549050909192939495969798565b600080600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16915091509091565b61221e61233b565b73ffffffffffffffffffffffffffffffffffffffff1661223c611186565b73ffffffffffffffffffffffffffffffffffffffff1614612292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228990614058565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc928260405161232f9190613bb1565b60405180910390a25050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a99061491f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612421576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612418906149b1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516124ff9190613c1b565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361257b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257290614a43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e190614ad5565b60405180910390fd5b60008103612603576125fe83836000613345565b6131d9565b600860009054906101000a900460ff1615612cc657612620611186565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561268e575061265e611186565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126c75750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612701575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561271a5750600560149054906101000a900460ff16155b15612cc557600c60009054906101000a900460ff1661281457601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127d45750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280a90614b67565b60405180910390fd5b5b600860019054906101000a900460ff16156129dc57612831611186565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156128b857507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561291057507f000000000000000000000000acaa34455cb83974209f884c6ee1522f64e4ef9d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156129db5743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298d90614c1f565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a7f5750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b2657600a54811115612ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac090614cb1565b60405180910390fd5b600954612ad583611090565b82612ae091906140a7565b1115612b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1890614d1d565b60405180910390fd5b612cc4565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612bc95750601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c1857600a54811115612c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0a90614daf565b60405180910390fd5b612cc3565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612cc257600954612c7583611090565b82612c8091906140a7565b1115612cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb890614d1d565b60405180910390fd5b5b5b5b5b5b6000612cd130611090565b905060006006548210159050808015612cf65750600560159054906101000a900460ff165b8015612d0f5750600560149054906101000a900460ff16155b8015612d655750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612dbb5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e115750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e55576001600560146101000a81548160ff021916908315150217905550612e396135c4565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612f0b5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612f1557600090505b600081156131c957601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f7857506000601154115b1561301257612fa56064612f976011548861378290919063ffffffff16565b61379890919063ffffffff16565b905060115460135482612fb891906142c8565b612fc29190614339565b60186000828254612fd391906140a7565b9250508190555060115460125482612feb91906142c8565b612ff59190614339565b6017600082825461300691906140a7565b925050819055506131a5565b601b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561306d57506000600e54115b156131075761309a606461308c600e548861378290919063ffffffff16565b61379890919063ffffffff16565b9050600e54601054826130ad91906142c8565b6130b79190614339565b601860008282546130c891906140a7565b92505081905550600e54600f54826130e091906142c8565b6130ea9190614339565b601760008282546130fb91906140a7565b925050819055506131a4565b600060145411156131a35761313a606461312c6014548861378290919063ffffffff16565b61379890919063ffffffff16565b90506014546016548261314d91906142c8565b6131579190614339565b6018600082825461316891906140a7565b925050819055506014546015548261318091906142c8565b61318a9190614339565b6017600082825461319b91906140a7565b925050819055505b5b5b60008111156131ba576131b9873083613345565b5b80856131c69190614dcf565b94505b6131d4878787613345565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036133b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ab90614a43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341a90614ad5565b60405180910390fd5b61342e8383836137ae565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156134b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134ab90614e75565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461354791906140a7565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516135ab9190613c1b565b60405180910390a36135be8484846137b3565b50505050565b60006135cf30611090565b9050600081905060008083036135e757505050613780565b6007548311156135f75760075492505b6000839050600047905061360a826137b8565b600061361f82476139f590919063ffffffff16565b9050600061364a8661363c6018548561378290919063ffffffff16565b61379890919063ffffffff16565b905060006017819055506000601881905550600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16816040516136a290614ec6565b60006040518083038185875af1925050503d80600081146136df576040519150601f19603f3d011682016040523d82523d6000602084013e6136e4565b606091505b505080955050600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161373090614ec6565b60006040518083038185875af1925050503d806000811461376d576040519150601f19603f3d011682016040523d82523d6000602084013e613772565b606091505b505080955050505050505050505b565b6000818361379091906142c8565b905092915050565b600081836137a69190614339565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156137d5576137d461458c565b5b6040519080825280602002602001820160405280156138035781602001602082028036833780820191505090505b509050308160008151811061381b5761381a6145bb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156138c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138e491906145ff565b816001815181106138f8576138f76145bb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061395d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612343565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016139bf95949392919061472f565b600060405180830381600087803b1580156139d957600080fd5b505af11580156139ed573d6000803e3d6000fd5b505050505050565b60008183613a039190614dcf565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a45578082015181840152602081019050613a2a565b60008484015250505050565b6000601f19601f8301169050919050565b6000613a6d82613a0b565b613a778185613a16565b9350613a87818560208601613a27565b613a9081613a51565b840191505092915050565b60006020820190508181036000830152613ab58184613a62565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613aed82613ac2565b9050919050565b613afd81613ae2565b8114613b0857600080fd5b50565b600081359050613b1a81613af4565b92915050565b6000819050919050565b613b3381613b20565b8114613b3e57600080fd5b50565b600081359050613b5081613b2a565b92915050565b60008060408385031215613b6d57613b6c613abd565b5b6000613b7b85828601613b0b565b9250506020613b8c85828601613b41565b9150509250929050565b60008115159050919050565b613bab81613b96565b82525050565b6000602082019050613bc66000830184613ba2565b92915050565b60008060408385031215613be357613be2613abd565b5b6000613bf185828601613b41565b9250506020613c0285828601613b41565b9150509250929050565b613c1581613b20565b82525050565b6000602082019050613c306000830184613c0c565b92915050565b600080600060608486031215613c4f57613c4e613abd565b5b6000613c5d86828701613b0b565b9350506020613c6e86828701613b0b565b9250506040613c7f86828701613b41565b9150509250925092565b600060ff82169050919050565b613c9f81613c89565b82525050565b6000602082019050613cba6000830184613c96565b92915050565b6000608082019050613cd56000830187613ba2565b613ce26020830186613ba2565b613cef6040830185613c0c565b613cfc6060830184613c0c565b95945050505050565b600060208284031215613d1b57613d1a613abd565b5b6000613d2984828501613b41565b91505092915050565b600060208284031215613d4857613d47613abd565b5b6000613d5684828501613b0b565b91505092915050565b6000606082019050613d746000830186613ba2565b613d816020830185613c0c565b613d8e6040830184613c0c565b949350505050565b613d9f81613ae2565b82525050565b6000602082019050613dba6000830184613d96565b92915050565b613dc981613b96565b8114613dd457600080fd5b50565b600081359050613de681613dc0565b92915050565b60008060408385031215613e0357613e02613abd565b5b6000613e1185828601613b0b565b9250506020613e2285828601613dd7565b9150509250929050565b600080600060608486031215613e4557613e44613abd565b5b6000613e5386828701613dd7565b9350506020613e6486828701613b41565b9250506040613e7586828701613b41565b9150509250925092565b60008060408385031215613e9657613e95613abd565b5b6000613ea485828601613b0b565b9250506020613eb585828601613b0b565b9150509250929050565b6000606082019050613ed46000830186613ba2565b613ee16020830185613ba2565b613eee6040830184613ba2565b949350505050565b600061012082019050613f0c600083018c613c0c565b613f19602083018b613c0c565b613f26604083018a613c0c565b613f336060830189613c0c565b613f406080830188613c0c565b613f4d60a0830187613c0c565b613f5a60c0830186613c0c565b613f6760e0830185613c0c565b613f75610100830184613c0c565b9a9950505050505050505050565b6000604082019050613f986000830185613d96565b613fa56020830184613d96565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613ff357607f821691505b60208210810361400657614005613fac565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614042602083613a16565b915061404d8261400c565b602082019050919050565b6000602082019050818103600083015261407181614035565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006140b282613b20565b91506140bd83613b20565b92508282019050808211156140d5576140d4614078565b5b92915050565b7f546f74616c207472616e73666572206665652063616e6e6f742062652068696760008201527f686572207468616e203525000000000000000000000000000000000000000000602082015250565b6000614137602b83613a16565b9150614142826140db565b604082019050919050565b600060208201905081810360008301526141668161412a565b9050919050565b60006060820190506141826000830186613c0c565b61418f6020830185613c0c565b61419c6040830184613c0c565b949350505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614200602883613a16565b915061420b826141a4565b604082019050919050565b6000602082019050818103600083015261422f816141f3565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614292602483613a16565b915061429d82614236565b604082019050919050565b600060208201905081810360008301526142c181614285565b9050919050565b60006142d382613b20565b91506142de83613b20565b92508282026142ec81613b20565b9150828204841483151761430357614302614078565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061434482613b20565b915061434f83613b20565b92508261435f5761435e61430a565b5b828204905092915050565b7f546f74616c20627579206665652063616e6e6f7420626520686967686572207460008201527f68616e2032352500000000000000000000000000000000000000000000000000602082015250565b60006143c6602783613a16565b91506143d18261436a565b604082019050919050565b600060208201905081810360008301526143f5816143b9565b9050919050565b7f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e3225600082015250565b6000614432602083613a16565b915061443d826143fc565b602082019050919050565b6000602082019050818103600083015261446181614425565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006144c4603983613a16565b91506144cf82614468565b604082019050919050565b600060208201905081810360008301526144f3816144b7565b9050919050565b7f546f74616c2073656c6c206665652063616e6e6f74206265206869676865722060008201527f7468616e20323525000000000000000000000000000000000000000000000000602082015250565b6000614556602883613a16565b9150614561826144fa565b604082019050919050565b6000602082019050818103600083015261458581614549565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506145f981613af4565b92915050565b60006020828403121561461557614614613abd565b5b6000614623848285016145ea565b91505092915050565b6000819050919050565b6000819050919050565b600061465b6146566146518461462c565b614636565b613b20565b9050919050565b61466b81614640565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6146a681613ae2565b82525050565b60006146b8838361469d565b60208301905092915050565b6000602082019050919050565b60006146dc82614671565b6146e6818561467c565b93506146f18361468d565b8060005b8381101561472257815161470988826146ac565b9750614714836146c4565b9250506001810190506146f5565b5085935050505092915050565b600060a0820190506147446000830188613c0c565b6147516020830187614662565b818103604083015261476381866146d1565b90506147726060830185613d96565b61477f6080830184613c0c565b9695505050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006147e5602583613a16565b91506147f082614789565b604082019050919050565b60006020820190508181036000830152614814816147d8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614877602683613a16565b91506148828261481b565b604082019050919050565b600060208201905081810360008301526148a68161486a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614909602483613a16565b9150614914826148ad565b604082019050919050565b60006020820190508181036000830152614938816148fc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061499b602283613a16565b91506149a68261493f565b604082019050919050565b600060208201905081810360008301526149ca8161498e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614a2d602583613a16565b9150614a38826149d1565b604082019050919050565b60006020820190508181036000830152614a5c81614a20565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614abf602383613a16565b9150614aca82614a63565b604082019050919050565b60006020820190508181036000830152614aee81614ab2565b9050919050565b7f5f7472616e736665723a3a2054726164696e67206973206e6f7420616374697660008201527f652e000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b51602283613a16565b9150614b5c82614af5565b604082019050919050565b60006020820190508181036000830152614b8081614b44565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614c09604983613a16565b9150614c1482614b87565b606082019050919050565b60006020820190508181036000830152614c3881614bfc565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d617854782e0000000000000000000000000000000000000000000000000000602082015250565b6000614c9b602683613a16565b9150614ca682614c3f565b604082019050919050565b60006020820190508181036000830152614cca81614c8e565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614d07601383613a16565b9150614d1282614cd1565b602082019050919050565b60006020820190508181036000830152614d3681614cfa565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d617854782e00000000000000000000000000000000000000000000000000602082015250565b6000614d99602783613a16565b9150614da482614d3d565b604082019050919050565b60006020820190508181036000830152614dc881614d8c565b9050919050565b6000614dda82613b20565b9150614de583613b20565b9250828203905081811115614dfd57614dfc614078565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614e5f602683613a16565b9150614e6a82614e03565b604082019050919050565b60006020820190508181036000830152614e8e81614e52565b9050919050565b600081905092915050565b50565b6000614eb0600083614e95565b9150614ebb82614ea0565b600082019050919050565b6000614ed182614ea3565b915081905091905056fea2646970667358221220977ec6fcc381f69e7487897a3da86c446acb15649efe3cc754ebe9b608f6f70a64736f6c63430008150033
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.