ERC-20
Overview
Max Total Supply
1,000,000,000 CODE
Holders
55
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
13,804,414.876871583 CODEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Lookintocode
Compiler Version
v0.8.8+commit.dddeac2f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** 5374617274206c6f6f6b696e6720666f7220636c7565732e20496620796f752066696e6420616e7920636c75652c207468656e20796f75206861766520686967686572204951207468656e206e6f726d6965732e200a0a596f7572206c696665206368616e67696e67206368616e63652e200a0a476f6f64204c75636b21212121 */ //SPDX-License-Identifier: MIT import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; pragma solidity ^0.8.8; interface DexFactory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface DexRouter { function factory() external pure returns (address); function WETH() external pure returns (address); 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; } contract Lookintocode is ERC20, Ownable { struct Tax { uint256 marketingTax; uint256 liquidityTax; uint256 charityTax; } uint256 _decimal = 9; uint256 private _totalSupply = 1e9 * 10 ** _decimal; //Router DexRouter public uniswapRouter; address public pairAddress; //Taxes Tax public buyTaxes = Tax(4, 1, 0); Tax public sellTaxes = Tax(4, 1, 0); uint256 public totalBuyFees = 5; uint256 public totalSellFees = 5; //Whitelisting from taxes/maxwallet/txlimit/etc mapping(address => bool) private whitelisted; //Swapping uint256 public swapTokensAtAmount = _totalSupply / 100000; //after 0.001% of total supply, swap them bool public swapAndLiquifyEnabled = true; bool public isSwapping = false; //Wallets address public marketingWallet = 0x1AB76F6043663565bd8d3BFe862eAA099fF33003; address public charityWallet = 0x1AB76F6043663565bd8d3BFe862eAA099fF33003; //Max amounts uint256 public maxWallet; uint256 public maxTx; uint256 public maxWalletTimeThreshold = 0 hours; uint256 public maxTxTimeThreshold = 0 hours; bool public limitsEnabled = false; //Snipers uint256 public deadBlocks; mapping(address=>bool) public blacklisted; //Launch Status uint256 public launchedAtTime; uint256 public launchedAtBlock; constructor() ERC20("Look Into Code", "CODE") { //0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 test //0x10ED43C718714eb63d5aA57B78B54704E256024E Pancakeswap on mainnet uniswapRouter = DexRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); pairAddress = DexFactory(uniswapRouter.factory()).createPair( address(this), uniswapRouter.WETH() ); // do not whitelist liquidity pool, otherwise there wont be any taxes whitelisted[msg.sender] = true; whitelisted[address(uniswapRouter)] = true; whitelisted[address(this)] = true; _mint(msg.sender, _totalSupply); } function decimals() public view virtual override returns (uint8) { return 9; } function setMarketingWallet(address _newMarketing) external onlyOwner { require(_newMarketing != address(0), "new Marketing wallet can not be dead address!"); marketingWallet = _newMarketing; } function setCharityWallet(address _newCharity) external onlyOwner{ require(_newCharity != address(0), "new Charity wallet can not be dead address!"); charityWallet = _newCharity; } function setBuyFees( uint256 _charityTax, uint256 _lpTax, uint256 _marketingTax ) external onlyOwner { buyTaxes.charityTax = _charityTax; buyTaxes.marketingTax = _marketingTax; buyTaxes.liquidityTax = _lpTax; totalBuyFees = _charityTax + _lpTax + _marketingTax; } function setSellFees( uint256 _charityTax, uint256 _lpTax, uint256 _marketingTax ) external onlyOwner { sellTaxes.charityTax = _charityTax; sellTaxes.marketingTax = _marketingTax; sellTaxes.liquidityTax = _lpTax; totalSellFees = _charityTax + _lpTax + _marketingTax; } function setSwapTokensAtAmount(uint256 _newAmount) external onlyOwner { require(_newAmount > 0, "Lunc : Minimum swap amount must be greater than 0!"); swapTokensAtAmount = _newAmount; } function toggleSwapping() external onlyOwner { swapAndLiquifyEnabled = (swapAndLiquifyEnabled == true) ? false : true; } function setDeadBlocks(uint256 _deadBlocks) external onlyOwner{ require(launchedAtBlock == 0 && launchedAtTime == 0, "Can't change dead blocks after launch!"); deadBlocks = _deadBlocks; } function launch() external onlyOwner { require(launchedAtBlock == 0 && launchedAtTime == 0, "Already launched!"); launchedAtBlock = block.number; launchedAtTime = block.timestamp; } function setMaxWallet(uint256 _maxWallet) external onlyOwner{ maxWallet = _maxWallet; } function setmaxTx(uint256 _maxTx) external onlyOwner{ maxTx = _maxTx; } function setLimitsStatus(bool _limitsStatus) external onlyOwner{ limitsEnabled = _limitsStatus; } function setWhitelistStatus(address _wallet, bool _status) external onlyOwner { whitelisted[_wallet] = _status; } function setBlacklisted(address _wallet, bool _status) external onlyOwner{ blacklisted[_wallet] = _status; } function checkWhitelist(address _wallet) external view returns (bool) { return whitelisted[_wallet]; } function checkBlacklisted(address _wallet) external view returns(bool){ return blacklisted[_wallet]; } function _takeTax( address _from, address _to, uint256 _amount ) internal returns (uint256) { if (whitelisted[_from] || whitelisted[_to]) { return _amount; } require(launchedAtBlock > 0, "Token not launched yet!"); bool isBuy = false; //Managing Taxes Here uint256 totalTax = 0; if (_to == pairAddress) { totalTax = totalSellFees; } else if (_from == pairAddress) { totalTax = totalBuyFees; isBuy = true; } //Validating max amounts at first 2 hours! if((launchedAtTime + maxWalletTimeThreshold >= block.timestamp) || limitsEnabled){ if(isBuy){ require(balanceOf(_to) + _amount <= maxWallet, "Can not buy more than 0.5% of supply!"); } require(_amount < maxTx, "Can not buy/sell/transfer more than 0.1% of supply!"); } //Anti-Bot Implementation if(launchedAtBlock + deadBlocks >= block.number){ if(_to == pairAddress){ blacklisted[_from] = true; }else if(_from == pairAddress){ blacklisted[_to] = true; } } uint256 tax = (_amount * totalTax) / 100; super._transfer(_from, address(this), tax); return (_amount - tax); } function _transfer( address _from, address _to, uint256 _amount ) internal virtual override { require(_from != address(0), "transfer from address zero"); require(_to != address(0), "transfer to address zero"); require(blacklisted[_to] == false && blacklisted[_from] == false, "Transferring not allowed for blacklisted addresses!"); uint256 toTransfer = _takeTax(_from, _to, _amount); bool canSwap = balanceOf(address(this)) >= swapTokensAtAmount; if ( swapAndLiquifyEnabled && pairAddress == _to && canSwap && !whitelisted[_from] && !whitelisted[_to] && !isSwapping ) { isSwapping = true; manageTaxes(); isSwapping = false; } super._transfer(_from, _to, toTransfer); } function manageTaxes() internal { uint256 taxAmount = balanceOf(address(this)); //Getting total Fee Percentages And Caclculating Portinos for each tax type Tax memory bt = buyTaxes; Tax memory st = sellTaxes; uint256 totalTaxes = totalBuyFees + totalSellFees; if(totalTaxes == 0){ return; } uint256 totalMarketingTax = bt.marketingTax + st.marketingTax; uint256 totalLPTax = bt.liquidityTax + st.liquidityTax; uint256 totalCharityTax = bt.charityTax + st.charityTax; //Calculating portions for each type of tax (marketing, burn, liquidity, rewards) uint256 lpPortion = (taxAmount * totalLPTax) / totalTaxes; uint256 makretingPortion = (taxAmount * totalMarketingTax) / totalTaxes; uint256 charityPortion = (taxAmount * totalCharityTax) / totalTaxes; //Add Liquidty taxes to liqudity pool if(lpPortion > 0){ swapAndLiquify(lpPortion); } //sending to marketing wallet if(makretingPortion > 0){ swapToBNB(makretingPortion); (bool success, ) = marketingWallet.call{value : address(this).balance}(""); } //sending to charity wallet if(charityPortion > 0){ swapToBNB(charityPortion); (bool success, ) = charityWallet.call{value : address(this).balance}(""); } } function swapAndLiquify(uint256 _amount) internal { uint256 firstHalf = _amount / 2; uint256 otherHalf = _amount - firstHalf; uint256 initialETHBalance = address(this).balance; //Swapping first half to ETH swapToBNB(firstHalf); uint256 received = address(this).balance - initialETHBalance; addLiquidity(otherHalf, received); } function swapToBNB(uint256 _amount) internal { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapRouter.WETH(); _approve(address(this), address(uniswapRouter), _amount); uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( _amount, 0, // accept any amount of BaseToken path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 bnbAmount) private { _approve(address(this), address(uniswapRouter), tokenAmount); uniswapRouter.addLiquidityETH{value: bnbAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable address(0), block.timestamp ); } function updateDexRouter(address _newDex) external onlyOwner { uniswapRouter = DexRouter(_newDex); pairAddress = DexFactory(uniswapRouter.factory()).createPair( address(this), uniswapRouter.WETH() ); } function withdrawStuckBNB() external onlyOwner { (bool success, ) = address(msg.sender).call{value: address(this).balance}(""); require(success, "transfering BNB failed"); } function withdrawStuckTokens(address erc20_token) external onlyOwner { bool success = IERC20(erc20_token).transfer( msg.sender, IERC20(erc20_token).balanceOf(address(this)) ); require(success, "trasfering tokens failed!"); } receive() external payable {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"","type":"address"}],"name":"blacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"},{"internalType":"uint256","name":"liquidityTax","type":"uint256"},{"internalType":"uint256","name":"charityTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"charityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"checkBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadBlocks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isSwapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launchedAtBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchedAtTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxTimeThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletTimeThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"},{"internalType":"uint256","name":"liquidityTax","type":"uint256"},{"internalType":"uint256","name":"charityTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setBlacklisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_charityTax","type":"uint256"},{"internalType":"uint256","name":"_lpTax","type":"uint256"},{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newCharity","type":"address"}],"name":"setCharityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_deadBlocks","type":"uint256"}],"name":"setDeadBlocks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limitsStatus","type":"bool"}],"name":"setLimitsStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newMarketing","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWallet","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_charityTax","type":"uint256"},{"internalType":"uint256","name":"_lpTax","type":"uint256"},{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTx","type":"uint256"}],"name":"setmaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSwapping","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalBuyFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract DexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newDex","type":"address"}],"name":"updateDexRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckBNB","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"erc20_token","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526009600655600654600a6200001a919062000ad6565b633b9aca006200002b919062000b27565b600755604051806060016040528060048152602001600181526020016000815250600a6000820151816000015560208201518160010155604082015181600201555050604051806060016040528060048152602001600181526020016000815250600d600082015181600001556020820151816001015560408201518160020155505060056010556005601155620186a0600754620000cb919062000bb7565b6013556001601460006101000a81548160ff0219169083151502179055506000601460016101000a81548160ff021916908315150217905550731ab76f6043663565bd8d3bfe862eaa099ff33003601460026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550731ab76f6043663565bd8d3bfe862eaa099ff33003601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600060185560006019556000601a60006101000a81548160ff021916908315150217905550348015620001e057600080fd5b506040518060400160405280600e81526020017f4c6f6f6b20496e746f20436f64650000000000000000000000000000000000008152506040518060400160405280600481526020017f434f44450000000000000000000000000000000000000000000000000000000081525081600390805190602001906200026592919062000899565b5080600490805190602001906200027e92919062000899565b505050620002a1620002956200065360201b60201c565b6200065b60201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200035f57600080fd5b505afa15801562000374573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200039a919062000c59565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200041f57600080fd5b505afa15801562000434573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200045a919062000c59565b6040518363ffffffff1660e01b81526004016200047992919062000c9c565b602060405180830381600087803b1580156200049457600080fd5b505af1158015620004a9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004cf919062000c59565b600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160126000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200064d336007546200072160201b60201c565b62000e3c565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000794576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200078b9062000d2a565b60405180910390fd5b620007a8600083836200088f60201b60201c565b8060026000828254620007bc919062000d4c565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200086f919062000dba565b60405180910390a36200088b600083836200089460201b60201c565b5050565b505050565b505050565b828054620008a79062000e06565b90600052602060002090601f016020900481019282620008cb576000855562000917565b82601f10620008e657805160ff191683800117855562000917565b8280016001018555821562000917579182015b8281111562000916578251825591602001919060010190620008f9565b5b5090506200092691906200092a565b5090565b5b80821115620009455760008160009055506001016200092b565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620009d757808604811115620009af57620009ae62000949565b5b6001851615620009bf5780820291505b8081029050620009cf8562000978565b94506200098f565b94509492505050565b600082620009f2576001905062000ac5565b8162000a02576000905062000ac5565b816001811462000a1b576002811462000a265762000a5c565b600191505062000ac5565b60ff84111562000a3b5762000a3a62000949565b5b8360020a91508482111562000a555762000a5462000949565b5b5062000ac5565b5060208310610133831016604e8410600b841016171562000a965782820a90508381111562000a905762000a8f62000949565b5b62000ac5565b62000aa5848484600162000985565b9250905081840481111562000abf5762000abe62000949565b5b81810290505b9392505050565b6000819050919050565b600062000ae38262000acc565b915062000af08362000acc565b925062000b1f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620009e0565b905092915050565b600062000b348262000acc565b915062000b418362000acc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000b7d5762000b7c62000949565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000bc48262000acc565b915062000bd18362000acc565b92508262000be45762000be362000b88565b5b828204905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c218262000bf4565b9050919050565b62000c338162000c14565b811462000c3f57600080fd5b50565b60008151905062000c538162000c28565b92915050565b60006020828403121562000c725762000c7162000bef565b5b600062000c828482850162000c42565b91505092915050565b62000c968162000c14565b82525050565b600060408201905062000cb3600083018562000c8b565b62000cc2602083018462000c8b565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000d12601f8362000cc9565b915062000d1f8262000cda565b602082019050919050565b6000602082019050818103600083015262000d458162000d03565b9050919050565b600062000d598262000acc565b915062000d668362000acc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000d9e5762000d9d62000949565b5b828201905092915050565b62000db48162000acc565b82525050565b600060208201905062000dd1600083018462000da9565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000e1f57607f821691505b6020821081141562000e365762000e3562000dd7565b5b50919050565b6145108062000e4c6000396000f3fe6080604052600436106103035760003560e01c806375f0a87411610190578063b8863115116100dc578063dd62ed3e11610095578063f2fde38b1161006f578063f2fde38b14610b6b578063f66895a314610b94578063f8b45b0514610bc1578063fabb0b4f14610bec5761030a565b8063dd62ed3e14610aec578063e2f4560514610b29578063ef586f7114610b545761030a565b8063b8863115146109dc578063b9e9370014610a07578063cb96372814610a32578063d01dd6d214610a5b578063d0a3981414610a84578063dbac26e914610aaf5761030a565b806395d89b4111610149578063a8b0898211610123578063a8b0898214610922578063a9059cbb1461094d578063afa4f3b21461098a578063b0c2b561146109b35761030a565b806395d89b411461088f578063a03b3b4d146108ba578063a457c2d7146108e55761030a565b806375f0a8741461078d578063797de370146107b85780637b208769146107e1578063864701a51461080c5780638da5cb5b146108395780638de890bd146108645761030a565b806332f49ef81161024f5780635d098b3811610208578063715018a6116101e2578063715018a6146106e357806371fb7493146106fa578063735de9f7146107375780637437681e146107625761030a565b80635d098b381461065457806370a082311461067d578063714f75e0146106ba5761030a565b806332f49ef8146105565780633582ad231461058157806339509351146105ac578063484ed334146105e95780634a74bb02146106005780635d0044ca1461062b5761030a565b80630d075d9c116102bc5780631950c218116102965780631950c2181461048857806323b872dd146104c557806330563bd714610502578063313ce5671461052b5761030a565b80630d075d9c1461040b5780630f683e901461043457806318160ddd1461045d5761030a565b806301339c211461030f57806302aac8a21461032657806306fdde0314610351578063095ea7b31461037c5780630a37a3f3146103b95780630c424284146103e25761030a565b3661030a57005b600080fd5b34801561031b57600080fd5b50610324610c17565b005b34801561033257600080fd5b5061033b610c82565b6040516103489190612f21565b60405180910390f35b34801561035d57600080fd5b50610366610c88565b6040516103739190612fd5565b60405180910390f35b34801561038857600080fd5b506103a3600480360381019061039e9190613086565b610d1a565b6040516103b091906130e1565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db91906130fc565b610d3d565b005b3480156103ee57600080fd5b5061040960048036038101906104049190613155565b610da2565b005b34801561041757600080fd5b50610432600480360381019061042d9190613195565b610e05565b005b34801561044057600080fd5b5061045b60048036038101906104569190613195565b610e4d565b005b34801561046957600080fd5b50610472610e95565b60405161047f9190612f21565b60405180910390f35b34801561049457600080fd5b506104af60048036038101906104aa91906131e8565b610e9f565b6040516104bc91906130e1565b60405180910390f35b3480156104d157600080fd5b506104ec60048036038101906104e79190613215565b610ef5565b6040516104f991906130e1565b60405180910390f35b34801561050e57600080fd5b50610529600480360381019061052491906131e8565b610f24565b005b34801561053757600080fd5b50610540610fe0565b60405161054d9190613284565b60405180910390f35b34801561056257600080fd5b5061056b610fe9565b6040516105789190612f21565b60405180910390f35b34801561058d57600080fd5b50610596610fef565b6040516105a391906130e1565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce9190613086565b611002565b6040516105e091906130e1565b60405180910390f35b3480156105f557600080fd5b506105fe611039565b005b34801561060c57600080fd5b506106156110f0565b60405161062291906130e1565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d91906130fc565b611103565b005b34801561066057600080fd5b5061067b600480360381019061067691906131e8565b611115565b005b34801561068957600080fd5b506106a4600480360381019061069f91906131e8565b6111d1565b6040516106b19190612f21565b60405180910390f35b3480156106c657600080fd5b506106e160048036038101906106dc91906131e8565b611219565b005b3480156106ef57600080fd5b506106f8611470565b005b34801561070657600080fd5b50610721600480360381019061071c91906131e8565b611484565b60405161072e91906130e1565b60405180910390f35b34801561074357600080fd5b5061074c6114da565b60405161075991906132fe565b60405180910390f35b34801561076e57600080fd5b50610777611500565b6040516107849190612f21565b60405180910390f35b34801561079957600080fd5b506107a2611506565b6040516107af9190613328565b60405180910390f35b3480156107c457600080fd5b506107df60048036038101906107da9190613343565b61152c565b005b3480156107ed57600080fd5b506107f6611551565b6040516108039190613328565b60405180910390f35b34801561081857600080fd5b50610821611577565b60405161083093929190613370565b60405180910390f35b34801561084557600080fd5b5061084e61158f565b60405161085b9190613328565b60405180910390f35b34801561087057600080fd5b506108796115b9565b6040516108869190612f21565b60405180910390f35b34801561089b57600080fd5b506108a46115bf565b6040516108b19190612fd5565b60405180910390f35b3480156108c657600080fd5b506108cf611651565b6040516108dc9190612f21565b60405180910390f35b3480156108f157600080fd5b5061090c60048036038101906109079190613086565b611657565b60405161091991906130e1565b60405180910390f35b34801561092e57600080fd5b506109376116ce565b6040516109449190613328565b60405180910390f35b34801561095957600080fd5b50610974600480360381019061096f9190613086565b6116f4565b60405161098191906130e1565b60405180910390f35b34801561099657600080fd5b506109b160048036038101906109ac91906130fc565b611717565b005b3480156109bf57600080fd5b506109da60048036038101906109d591906130fc565b61176c565b005b3480156109e857600080fd5b506109f161177e565b6040516109fe91906130e1565b60405180910390f35b348015610a1357600080fd5b50610a1c611791565b604051610a299190612f21565b60405180910390f35b348015610a3e57600080fd5b50610a596004803603810190610a5491906131e8565b611797565b005b348015610a6757600080fd5b50610a826004803603810190610a7d9190613155565b6118fc565b005b348015610a9057600080fd5b50610a9961195f565b604051610aa69190612f21565b60405180910390f35b348015610abb57600080fd5b50610ad66004803603810190610ad191906131e8565b611965565b604051610ae391906130e1565b60405180910390f35b348015610af857600080fd5b50610b136004803603810190610b0e91906133a7565b611985565b604051610b209190612f21565b60405180910390f35b348015610b3557600080fd5b50610b3e611a0c565b604051610b4b9190612f21565b60405180910390f35b348015610b6057600080fd5b50610b69611a12565b005b348015610b7757600080fd5b50610b926004803603810190610b8d91906131e8565b611a5a565b005b348015610ba057600080fd5b50610ba9611ade565b604051610bb893929190613370565b60405180910390f35b348015610bcd57600080fd5b50610bd6611af6565b604051610be39190612f21565b60405180910390f35b348015610bf857600080fd5b50610c01611afc565b604051610c0e9190612f21565b60405180910390f35b610c1f611b02565b6000601e54148015610c3357506000601d54145b610c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6990613433565b60405180910390fd5b43601e8190555042601d81905550565b60195481565b606060038054610c9790613482565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc390613482565b8015610d105780601f10610ce557610100808354040283529160200191610d10565b820191906000526020600020905b815481529060010190602001808311610cf357829003601f168201915b5050505050905090565b600080610d25611b80565b9050610d32818585611b88565b600191505092915050565b610d45611b02565b6000601e54148015610d5957506000601d54145b610d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8f90613526565b60405180910390fd5b80601b8190555050565b610daa611b02565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610e0d611b02565b82600a6002018190555080600a6000018190555081600a60010181905550808284610e389190613575565b610e429190613575565b601081905550505050565b610e55611b02565b82600d6002018190555080600d6000018190555081600d60010181905550808284610e809190613575565b610e8a9190613575565b601181905550505050565b6000600254905090565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600080610f00611b80565b9050610f0d858285611d53565b610f18858585611ddf565b60019150509392505050565b610f2c611b02565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f939061363d565b60405180910390fd5b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006009905090565b60185481565b601a60009054906101000a900460ff1681565b60008061100d611b80565b905061102e81858561101f8589611985565b6110299190613575565b611b88565b600191505092915050565b611041611b02565b60003373ffffffffffffffffffffffffffffffffffffffff16476040516110679061368e565b60006040518083038185875af1925050503d80600081146110a4576040519150601f19603f3d011682016040523d82523d6000602084013e6110a9565b606091505b50509050806110ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e4906136ef565b60405180910390fd5b50565b601460009054906101000a900460ff1681565b61110b611b02565b8060168190555050565b61111d611b02565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561118d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118490613781565b60405180910390fd5b80601460026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611221611b02565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156112ca57600080fd5b505afa1580156112de573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061130291906137b6565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561138657600080fd5b505afa15801561139a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113be91906137b6565b6040518363ffffffff1660e01b81526004016113db9291906137e3565b602060405180830381600087803b1580156113f557600080fd5b505af1158015611409573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061142d91906137b6565b600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611478611b02565b611482600061215c565b565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60175481565b601460029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611534611b02565b80601a60006101000a81548160ff02191690831515021790555050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a8060000154908060010154908060020154905083565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601e5481565b6060600480546115ce90613482565b80601f01602080910402602001604051908101604052809291908181526020018280546115fa90613482565b80156116475780601f1061161c57610100808354040283529160200191611647565b820191906000526020600020905b81548152906001019060200180831161162a57829003601f168201915b5050505050905090565b601d5481565b600080611662611b80565b905060006116708286611985565b9050838110156116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac9061387e565b60405180910390fd5b6116c28286868403611b88565b60019250505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806116ff611b80565b905061170c818585611ddf565b600191505092915050565b61171f611b02565b60008111611762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175990613910565b60405180910390fd5b8060138190555050565b611774611b02565b8060178190555050565b601460019054906101000a900460ff1681565b60105481565b61179f611b02565b60008173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016117f79190613328565b60206040518083038186803b15801561180f57600080fd5b505afa158015611823573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118479190613945565b6040518363ffffffff1660e01b8152600401611864929190613972565b602060405180830381600087803b15801561187e57600080fd5b505af1158015611892573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118b691906139b0565b9050806118f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ef90613a29565b60405180910390fd5b5050565b611904611b02565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60115481565b601c6020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60135481565b611a1a611b02565b60011515601460009054906101000a900460ff16151514611a3c576001611a3f565b60005b601460006101000a81548160ff021916908315150217905550565b611a62611b02565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac990613abb565b60405180910390fd5b611adb8161215c565b50565b600d8060000154908060010154908060020154905083565b60165481565b601b5481565b611b0a611b80565b73ffffffffffffffffffffffffffffffffffffffff16611b2861158f565b73ffffffffffffffffffffffffffffffffffffffff1614611b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7590613b27565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bef90613bb9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5f90613c4b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611d469190612f21565b60405180910390a3505050565b6000611d5f8484611985565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611dd95781811015611dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc290613cb7565b60405180910390fd5b611dd88484848403611b88565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4690613d23565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb690613d8f565b60405180910390fd5b60001515601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515148015611f6f575060001515601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b611fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa590613e21565b60405180910390fd5b6000611fbb848484612222565b90506000601354611fcb306111d1565b10159050601460009054906101000a900460ff16801561203857508373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b80156120415750805b80156120975750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156120ed5750601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121065750601460019054906101000a900460ff16155b1561214a576001601460016101000a81548160ff02191690831515021790555061212e612668565b6000601460016101000a81548160ff0219169083151502179055505b6121558585846128f6565b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806122c55750601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156122d257819050612661565b6000601e5411612317576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230e90613e8d565b60405180910390fd5b600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561237a5760115490506123db565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614156123da576010549050600191505b5b42601854601d546123ec9190613575565b1015806124055750601a60009054906101000a900460ff165b156124ae578115612469576016548461241d876111d1565b6124279190613575565b1115612468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245f90613f1f565b60405180910390fd5b5b60175484106124ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a490613fb1565b60405180910390fd5b5b43601b54601e546124bf9190613575565b1061262857600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612577576001601c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612627565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415612626576001601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b5b5b6000606482866126389190613fd1565b612642919061405a565b905061264f8730836128f6565b808561265b919061408b565b93505050505b9392505050565b6000612673306111d1565b90506000600a604051806060016040529081600082015481526020016001820154815260200160028201548152505090506000600d6040518060600160405290816000820154815260200160018201548152602001600282015481525050905060006011546010546126e59190613575565b905060008114156126f957505050506128f4565b60008260000151846000015161270f9190613575565b90506000836020015185602001516127279190613575565b905060008460400151866040015161273f9190613575565b905060008483896127509190613fd1565b61275a919061405a565b9050600085858a61276b9190613fd1565b612775919061405a565b9050600086848b6127869190613fd1565b612790919061405a565b905060008311156127a5576127a483612b6e565b5b6000821115612847576127b782612bbe565b6000601460029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516127ff9061368e565b60006040518083038185875af1925050503d806000811461283c576040519150601f19603f3d011682016040523d82523d6000602084013e612841565b606091505b50509050505b60008111156128e95761285981612bbe565b6000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516128a19061368e565b60006040518083038185875af1925050503d80600081146128de576040519150601f19603f3d011682016040523d82523d6000602084013e6128e3565b606091505b50509050505b505050505050505050505b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295d90614131565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cd906141c3565b60405180910390fd5b6129e1838383612e10565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5e90614255565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612b559190612f21565b60405180910390a3612b68848484612e15565b50505050565b6000600282612b7d919061405a565b905060008183612b8d919061408b565b90506000479050612b9d83612bbe565b60008147612bab919061408b565b9050612bb78382612e1a565b5050505050565b6000600267ffffffffffffffff811115612bdb57612bda614275565b5b604051908082528060200260200182016040528015612c095781602001602082028036833780820191505090505b5090503081600081518110612c2157612c206142a4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612cc357600080fd5b505afa158015612cd7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cfb91906137b6565b81600181518110612d0f57612d0e6142a4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612d7630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611b88565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612dda9594939291906143cc565b600060405180830381600087803b158015612df457600080fd5b505af1158015612e08573d6000803e3d6000fd5b505050505050565b505050565b505050565b612e4730600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611b88565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806000426040518863ffffffff1660e01b8152600401612eaf96959493929190614426565b6060604051808303818588803b158015612ec857600080fd5b505af1158015612edc573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612f019190614487565b5050505050565b6000819050919050565b612f1b81612f08565b82525050565b6000602082019050612f366000830184612f12565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f76578082015181840152602081019050612f5b565b83811115612f85576000848401525b50505050565b6000601f19601f8301169050919050565b6000612fa782612f3c565b612fb18185612f47565b9350612fc1818560208601612f58565b612fca81612f8b565b840191505092915050565b60006020820190508181036000830152612fef8184612f9c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061302782612ffc565b9050919050565b6130378161301c565b811461304257600080fd5b50565b6000813590506130548161302e565b92915050565b61306381612f08565b811461306e57600080fd5b50565b6000813590506130808161305a565b92915050565b6000806040838503121561309d5761309c612ff7565b5b60006130ab85828601613045565b92505060206130bc85828601613071565b9150509250929050565b60008115159050919050565b6130db816130c6565b82525050565b60006020820190506130f660008301846130d2565b92915050565b60006020828403121561311257613111612ff7565b5b600061312084828501613071565b91505092915050565b613132816130c6565b811461313d57600080fd5b50565b60008135905061314f81613129565b92915050565b6000806040838503121561316c5761316b612ff7565b5b600061317a85828601613045565b925050602061318b85828601613140565b9150509250929050565b6000806000606084860312156131ae576131ad612ff7565b5b60006131bc86828701613071565b93505060206131cd86828701613071565b92505060406131de86828701613071565b9150509250925092565b6000602082840312156131fe576131fd612ff7565b5b600061320c84828501613045565b91505092915050565b60008060006060848603121561322e5761322d612ff7565b5b600061323c86828701613045565b935050602061324d86828701613045565b925050604061325e86828701613071565b9150509250925092565b600060ff82169050919050565b61327e81613268565b82525050565b60006020820190506132996000830184613275565b92915050565b6000819050919050565b60006132c46132bf6132ba84612ffc565b61329f565b612ffc565b9050919050565b60006132d6826132a9565b9050919050565b60006132e8826132cb565b9050919050565b6132f8816132dd565b82525050565b600060208201905061331360008301846132ef565b92915050565b6133228161301c565b82525050565b600060208201905061333d6000830184613319565b92915050565b60006020828403121561335957613358612ff7565b5b600061336784828501613140565b91505092915050565b60006060820190506133856000830186612f12565b6133926020830185612f12565b61339f6040830184612f12565b949350505050565b600080604083850312156133be576133bd612ff7565b5b60006133cc85828601613045565b92505060206133dd85828601613045565b9150509250929050565b7f416c7265616479206c61756e6368656421000000000000000000000000000000600082015250565b600061341d601183612f47565b9150613428826133e7565b602082019050919050565b6000602082019050818103600083015261344c81613410565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061349a57607f821691505b602082108114156134ae576134ad613453565b5b50919050565b7f43616e2774206368616e6765206465616420626c6f636b73206166746572206c60008201527f61756e6368210000000000000000000000000000000000000000000000000000602082015250565b6000613510602683612f47565b915061351b826134b4565b604082019050919050565b6000602082019050818103600083015261353f81613503565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061358082612f08565b915061358b83612f08565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135c0576135bf613546565b5b828201905092915050565b7f6e657720436861726974792077616c6c65742063616e206e6f7420626520646560008201527f6164206164647265737321000000000000000000000000000000000000000000602082015250565b6000613627602b83612f47565b9150613632826135cb565b604082019050919050565b600060208201905081810360008301526136568161361a565b9050919050565b600081905092915050565b50565b600061367860008361365d565b915061368382613668565b600082019050919050565b60006136998261366b565b9150819050919050565b7f7472616e73666572696e6720424e42206661696c656400000000000000000000600082015250565b60006136d9601683612f47565b91506136e4826136a3565b602082019050919050565b60006020820190508181036000830152613708816136cc565b9050919050565b7f6e6577204d61726b6574696e672077616c6c65742063616e206e6f742062652060008201527f6465616420616464726573732100000000000000000000000000000000000000602082015250565b600061376b602d83612f47565b91506137768261370f565b604082019050919050565b6000602082019050818103600083015261379a8161375e565b9050919050565b6000815190506137b08161302e565b92915050565b6000602082840312156137cc576137cb612ff7565b5b60006137da848285016137a1565b91505092915050565b60006040820190506137f86000830185613319565b6138056020830184613319565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613868602583612f47565b91506138738261380c565b604082019050919050565b600060208201905081810360008301526138978161385b565b9050919050565b7f4c756e63203a204d696e696d756d207377617020616d6f756e74206d7573742060008201527f62652067726561746572207468616e2030210000000000000000000000000000602082015250565b60006138fa603283612f47565b91506139058261389e565b604082019050919050565b60006020820190508181036000830152613929816138ed565b9050919050565b60008151905061393f8161305a565b92915050565b60006020828403121561395b5761395a612ff7565b5b600061396984828501613930565b91505092915050565b60006040820190506139876000830185613319565b6139946020830184612f12565b9392505050565b6000815190506139aa81613129565b92915050565b6000602082840312156139c6576139c5612ff7565b5b60006139d48482850161399b565b91505092915050565b7f74726173666572696e6720746f6b656e73206661696c65642100000000000000600082015250565b6000613a13601983612f47565b9150613a1e826139dd565b602082019050919050565b60006020820190508181036000830152613a4281613a06565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613aa5602683612f47565b9150613ab082613a49565b604082019050919050565b60006020820190508181036000830152613ad481613a98565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b11602083612f47565b9150613b1c82613adb565b602082019050919050565b60006020820190508181036000830152613b4081613b04565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613ba3602483612f47565b9150613bae82613b47565b604082019050919050565b60006020820190508181036000830152613bd281613b96565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c35602283612f47565b9150613c4082613bd9565b604082019050919050565b60006020820190508181036000830152613c6481613c28565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613ca1601d83612f47565b9150613cac82613c6b565b602082019050919050565b60006020820190508181036000830152613cd081613c94565b9050919050565b7f7472616e736665722066726f6d2061646472657373207a65726f000000000000600082015250565b6000613d0d601a83612f47565b9150613d1882613cd7565b602082019050919050565b60006020820190508181036000830152613d3c81613d00565b9050919050565b7f7472616e7366657220746f2061646472657373207a65726f0000000000000000600082015250565b6000613d79601883612f47565b9150613d8482613d43565b602082019050919050565b60006020820190508181036000830152613da881613d6c565b9050919050565b7f5472616e7366657272696e67206e6f7420616c6c6f77656420666f7220626c6160008201527f636b6c6973746564206164647265737365732100000000000000000000000000602082015250565b6000613e0b603383612f47565b9150613e1682613daf565b604082019050919050565b60006020820190508181036000830152613e3a81613dfe565b9050919050565b7f546f6b656e206e6f74206c61756e636865642079657421000000000000000000600082015250565b6000613e77601783612f47565b9150613e8282613e41565b602082019050919050565b60006020820190508181036000830152613ea681613e6a565b9050919050565b7f43616e206e6f7420627579206d6f7265207468616e20302e3525206f6620737560008201527f70706c7921000000000000000000000000000000000000000000000000000000602082015250565b6000613f09602583612f47565b9150613f1482613ead565b604082019050919050565b60006020820190508181036000830152613f3881613efc565b9050919050565b7f43616e206e6f74206275792f73656c6c2f7472616e73666572206d6f7265207460008201527f68616e20302e3125206f6620737570706c792100000000000000000000000000602082015250565b6000613f9b603383612f47565b9150613fa682613f3f565b604082019050919050565b60006020820190508181036000830152613fca81613f8e565b9050919050565b6000613fdc82612f08565b9150613fe783612f08565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140205761401f613546565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061406582612f08565b915061407083612f08565b9250826140805761407f61402b565b5b828204905092915050565b600061409682612f08565b91506140a183612f08565b9250828210156140b4576140b3613546565b5b828203905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061411b602583612f47565b9150614126826140bf565b604082019050919050565b6000602082019050818103600083015261414a8161410e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006141ad602383612f47565b91506141b882614151565b604082019050919050565b600060208201905081810360008301526141dc816141a0565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061423f602683612f47565b915061424a826141e3565b604082019050919050565b6000602082019050818103600083015261426e81614232565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b60006142f86142f36142ee846142d3565b61329f565b612f08565b9050919050565b614308816142dd565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6143438161301c565b82525050565b6000614355838361433a565b60208301905092915050565b6000602082019050919050565b60006143798261430e565b6143838185614319565b935061438e8361432a565b8060005b838110156143bf5781516143a68882614349565b97506143b183614361565b925050600181019050614392565b5085935050505092915050565b600060a0820190506143e16000830188612f12565b6143ee60208301876142ff565b8181036040830152614400818661436e565b905061440f6060830185613319565b61441c6080830184612f12565b9695505050505050565b600060c08201905061443b6000830189613319565b6144486020830188612f12565b61445560408301876142ff565b61446260608301866142ff565b61446f6080830185613319565b61447c60a0830184612f12565b979650505050505050565b6000806000606084860312156144a05761449f612ff7565b5b60006144ae86828701613930565b93505060206144bf86828701613930565b92505060406144d086828701613930565b915050925092509256fea2646970667358221220e3e70579fdc12e8a898ca2d5927f92a77c4b623791807de1f36f1a04d3d483ee64736f6c63430008080033
Deployed Bytecode
0x6080604052600436106103035760003560e01c806375f0a87411610190578063b8863115116100dc578063dd62ed3e11610095578063f2fde38b1161006f578063f2fde38b14610b6b578063f66895a314610b94578063f8b45b0514610bc1578063fabb0b4f14610bec5761030a565b8063dd62ed3e14610aec578063e2f4560514610b29578063ef586f7114610b545761030a565b8063b8863115146109dc578063b9e9370014610a07578063cb96372814610a32578063d01dd6d214610a5b578063d0a3981414610a84578063dbac26e914610aaf5761030a565b806395d89b4111610149578063a8b0898211610123578063a8b0898214610922578063a9059cbb1461094d578063afa4f3b21461098a578063b0c2b561146109b35761030a565b806395d89b411461088f578063a03b3b4d146108ba578063a457c2d7146108e55761030a565b806375f0a8741461078d578063797de370146107b85780637b208769146107e1578063864701a51461080c5780638da5cb5b146108395780638de890bd146108645761030a565b806332f49ef81161024f5780635d098b3811610208578063715018a6116101e2578063715018a6146106e357806371fb7493146106fa578063735de9f7146107375780637437681e146107625761030a565b80635d098b381461065457806370a082311461067d578063714f75e0146106ba5761030a565b806332f49ef8146105565780633582ad231461058157806339509351146105ac578063484ed334146105e95780634a74bb02146106005780635d0044ca1461062b5761030a565b80630d075d9c116102bc5780631950c218116102965780631950c2181461048857806323b872dd146104c557806330563bd714610502578063313ce5671461052b5761030a565b80630d075d9c1461040b5780630f683e901461043457806318160ddd1461045d5761030a565b806301339c211461030f57806302aac8a21461032657806306fdde0314610351578063095ea7b31461037c5780630a37a3f3146103b95780630c424284146103e25761030a565b3661030a57005b600080fd5b34801561031b57600080fd5b50610324610c17565b005b34801561033257600080fd5b5061033b610c82565b6040516103489190612f21565b60405180910390f35b34801561035d57600080fd5b50610366610c88565b6040516103739190612fd5565b60405180910390f35b34801561038857600080fd5b506103a3600480360381019061039e9190613086565b610d1a565b6040516103b091906130e1565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db91906130fc565b610d3d565b005b3480156103ee57600080fd5b5061040960048036038101906104049190613155565b610da2565b005b34801561041757600080fd5b50610432600480360381019061042d9190613195565b610e05565b005b34801561044057600080fd5b5061045b60048036038101906104569190613195565b610e4d565b005b34801561046957600080fd5b50610472610e95565b60405161047f9190612f21565b60405180910390f35b34801561049457600080fd5b506104af60048036038101906104aa91906131e8565b610e9f565b6040516104bc91906130e1565b60405180910390f35b3480156104d157600080fd5b506104ec60048036038101906104e79190613215565b610ef5565b6040516104f991906130e1565b60405180910390f35b34801561050e57600080fd5b50610529600480360381019061052491906131e8565b610f24565b005b34801561053757600080fd5b50610540610fe0565b60405161054d9190613284565b60405180910390f35b34801561056257600080fd5b5061056b610fe9565b6040516105789190612f21565b60405180910390f35b34801561058d57600080fd5b50610596610fef565b6040516105a391906130e1565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce9190613086565b611002565b6040516105e091906130e1565b60405180910390f35b3480156105f557600080fd5b506105fe611039565b005b34801561060c57600080fd5b506106156110f0565b60405161062291906130e1565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d91906130fc565b611103565b005b34801561066057600080fd5b5061067b600480360381019061067691906131e8565b611115565b005b34801561068957600080fd5b506106a4600480360381019061069f91906131e8565b6111d1565b6040516106b19190612f21565b60405180910390f35b3480156106c657600080fd5b506106e160048036038101906106dc91906131e8565b611219565b005b3480156106ef57600080fd5b506106f8611470565b005b34801561070657600080fd5b50610721600480360381019061071c91906131e8565b611484565b60405161072e91906130e1565b60405180910390f35b34801561074357600080fd5b5061074c6114da565b60405161075991906132fe565b60405180910390f35b34801561076e57600080fd5b50610777611500565b6040516107849190612f21565b60405180910390f35b34801561079957600080fd5b506107a2611506565b6040516107af9190613328565b60405180910390f35b3480156107c457600080fd5b506107df60048036038101906107da9190613343565b61152c565b005b3480156107ed57600080fd5b506107f6611551565b6040516108039190613328565b60405180910390f35b34801561081857600080fd5b50610821611577565b60405161083093929190613370565b60405180910390f35b34801561084557600080fd5b5061084e61158f565b60405161085b9190613328565b60405180910390f35b34801561087057600080fd5b506108796115b9565b6040516108869190612f21565b60405180910390f35b34801561089b57600080fd5b506108a46115bf565b6040516108b19190612fd5565b60405180910390f35b3480156108c657600080fd5b506108cf611651565b6040516108dc9190612f21565b60405180910390f35b3480156108f157600080fd5b5061090c60048036038101906109079190613086565b611657565b60405161091991906130e1565b60405180910390f35b34801561092e57600080fd5b506109376116ce565b6040516109449190613328565b60405180910390f35b34801561095957600080fd5b50610974600480360381019061096f9190613086565b6116f4565b60405161098191906130e1565b60405180910390f35b34801561099657600080fd5b506109b160048036038101906109ac91906130fc565b611717565b005b3480156109bf57600080fd5b506109da60048036038101906109d591906130fc565b61176c565b005b3480156109e857600080fd5b506109f161177e565b6040516109fe91906130e1565b60405180910390f35b348015610a1357600080fd5b50610a1c611791565b604051610a299190612f21565b60405180910390f35b348015610a3e57600080fd5b50610a596004803603810190610a5491906131e8565b611797565b005b348015610a6757600080fd5b50610a826004803603810190610a7d9190613155565b6118fc565b005b348015610a9057600080fd5b50610a9961195f565b604051610aa69190612f21565b60405180910390f35b348015610abb57600080fd5b50610ad66004803603810190610ad191906131e8565b611965565b604051610ae391906130e1565b60405180910390f35b348015610af857600080fd5b50610b136004803603810190610b0e91906133a7565b611985565b604051610b209190612f21565b60405180910390f35b348015610b3557600080fd5b50610b3e611a0c565b604051610b4b9190612f21565b60405180910390f35b348015610b6057600080fd5b50610b69611a12565b005b348015610b7757600080fd5b50610b926004803603810190610b8d91906131e8565b611a5a565b005b348015610ba057600080fd5b50610ba9611ade565b604051610bb893929190613370565b60405180910390f35b348015610bcd57600080fd5b50610bd6611af6565b604051610be39190612f21565b60405180910390f35b348015610bf857600080fd5b50610c01611afc565b604051610c0e9190612f21565b60405180910390f35b610c1f611b02565b6000601e54148015610c3357506000601d54145b610c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6990613433565b60405180910390fd5b43601e8190555042601d81905550565b60195481565b606060038054610c9790613482565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc390613482565b8015610d105780601f10610ce557610100808354040283529160200191610d10565b820191906000526020600020905b815481529060010190602001808311610cf357829003601f168201915b5050505050905090565b600080610d25611b80565b9050610d32818585611b88565b600191505092915050565b610d45611b02565b6000601e54148015610d5957506000601d54145b610d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8f90613526565b60405180910390fd5b80601b8190555050565b610daa611b02565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610e0d611b02565b82600a6002018190555080600a6000018190555081600a60010181905550808284610e389190613575565b610e429190613575565b601081905550505050565b610e55611b02565b82600d6002018190555080600d6000018190555081600d60010181905550808284610e809190613575565b610e8a9190613575565b601181905550505050565b6000600254905090565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600080610f00611b80565b9050610f0d858285611d53565b610f18858585611ddf565b60019150509392505050565b610f2c611b02565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f939061363d565b60405180910390fd5b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006009905090565b60185481565b601a60009054906101000a900460ff1681565b60008061100d611b80565b905061102e81858561101f8589611985565b6110299190613575565b611b88565b600191505092915050565b611041611b02565b60003373ffffffffffffffffffffffffffffffffffffffff16476040516110679061368e565b60006040518083038185875af1925050503d80600081146110a4576040519150601f19603f3d011682016040523d82523d6000602084013e6110a9565b606091505b50509050806110ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e4906136ef565b60405180910390fd5b50565b601460009054906101000a900460ff1681565b61110b611b02565b8060168190555050565b61111d611b02565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561118d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118490613781565b60405180910390fd5b80601460026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611221611b02565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156112ca57600080fd5b505afa1580156112de573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061130291906137b6565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561138657600080fd5b505afa15801561139a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113be91906137b6565b6040518363ffffffff1660e01b81526004016113db9291906137e3565b602060405180830381600087803b1580156113f557600080fd5b505af1158015611409573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061142d91906137b6565b600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611478611b02565b611482600061215c565b565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60175481565b601460029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611534611b02565b80601a60006101000a81548160ff02191690831515021790555050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a8060000154908060010154908060020154905083565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601e5481565b6060600480546115ce90613482565b80601f01602080910402602001604051908101604052809291908181526020018280546115fa90613482565b80156116475780601f1061161c57610100808354040283529160200191611647565b820191906000526020600020905b81548152906001019060200180831161162a57829003601f168201915b5050505050905090565b601d5481565b600080611662611b80565b905060006116708286611985565b9050838110156116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac9061387e565b60405180910390fd5b6116c28286868403611b88565b60019250505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806116ff611b80565b905061170c818585611ddf565b600191505092915050565b61171f611b02565b60008111611762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175990613910565b60405180910390fd5b8060138190555050565b611774611b02565b8060178190555050565b601460019054906101000a900460ff1681565b60105481565b61179f611b02565b60008173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016117f79190613328565b60206040518083038186803b15801561180f57600080fd5b505afa158015611823573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118479190613945565b6040518363ffffffff1660e01b8152600401611864929190613972565b602060405180830381600087803b15801561187e57600080fd5b505af1158015611892573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118b691906139b0565b9050806118f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ef90613a29565b60405180910390fd5b5050565b611904611b02565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60115481565b601c6020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60135481565b611a1a611b02565b60011515601460009054906101000a900460ff16151514611a3c576001611a3f565b60005b601460006101000a81548160ff021916908315150217905550565b611a62611b02565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac990613abb565b60405180910390fd5b611adb8161215c565b50565b600d8060000154908060010154908060020154905083565b60165481565b601b5481565b611b0a611b80565b73ffffffffffffffffffffffffffffffffffffffff16611b2861158f565b73ffffffffffffffffffffffffffffffffffffffff1614611b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7590613b27565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bef90613bb9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5f90613c4b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611d469190612f21565b60405180910390a3505050565b6000611d5f8484611985565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611dd95781811015611dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc290613cb7565b60405180910390fd5b611dd88484848403611b88565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4690613d23565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb690613d8f565b60405180910390fd5b60001515601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515148015611f6f575060001515601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b611fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa590613e21565b60405180910390fd5b6000611fbb848484612222565b90506000601354611fcb306111d1565b10159050601460009054906101000a900460ff16801561203857508373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b80156120415750805b80156120975750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156120ed5750601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121065750601460019054906101000a900460ff16155b1561214a576001601460016101000a81548160ff02191690831515021790555061212e612668565b6000601460016101000a81548160ff0219169083151502179055505b6121558585846128f6565b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806122c55750601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156122d257819050612661565b6000601e5411612317576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230e90613e8d565b60405180910390fd5b600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561237a5760115490506123db565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614156123da576010549050600191505b5b42601854601d546123ec9190613575565b1015806124055750601a60009054906101000a900460ff165b156124ae578115612469576016548461241d876111d1565b6124279190613575565b1115612468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245f90613f1f565b60405180910390fd5b5b60175484106124ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a490613fb1565b60405180910390fd5b5b43601b54601e546124bf9190613575565b1061262857600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612577576001601c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612627565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415612626576001601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b5b5b6000606482866126389190613fd1565b612642919061405a565b905061264f8730836128f6565b808561265b919061408b565b93505050505b9392505050565b6000612673306111d1565b90506000600a604051806060016040529081600082015481526020016001820154815260200160028201548152505090506000600d6040518060600160405290816000820154815260200160018201548152602001600282015481525050905060006011546010546126e59190613575565b905060008114156126f957505050506128f4565b60008260000151846000015161270f9190613575565b90506000836020015185602001516127279190613575565b905060008460400151866040015161273f9190613575565b905060008483896127509190613fd1565b61275a919061405a565b9050600085858a61276b9190613fd1565b612775919061405a565b9050600086848b6127869190613fd1565b612790919061405a565b905060008311156127a5576127a483612b6e565b5b6000821115612847576127b782612bbe565b6000601460029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516127ff9061368e565b60006040518083038185875af1925050503d806000811461283c576040519150601f19603f3d011682016040523d82523d6000602084013e612841565b606091505b50509050505b60008111156128e95761285981612bbe565b6000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516128a19061368e565b60006040518083038185875af1925050503d80600081146128de576040519150601f19603f3d011682016040523d82523d6000602084013e6128e3565b606091505b50509050505b505050505050505050505b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295d90614131565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cd906141c3565b60405180910390fd5b6129e1838383612e10565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5e90614255565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612b559190612f21565b60405180910390a3612b68848484612e15565b50505050565b6000600282612b7d919061405a565b905060008183612b8d919061408b565b90506000479050612b9d83612bbe565b60008147612bab919061408b565b9050612bb78382612e1a565b5050505050565b6000600267ffffffffffffffff811115612bdb57612bda614275565b5b604051908082528060200260200182016040528015612c095781602001602082028036833780820191505090505b5090503081600081518110612c2157612c206142a4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612cc357600080fd5b505afa158015612cd7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cfb91906137b6565b81600181518110612d0f57612d0e6142a4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612d7630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611b88565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612dda9594939291906143cc565b600060405180830381600087803b158015612df457600080fd5b505af1158015612e08573d6000803e3d6000fd5b505050505050565b505050565b505050565b612e4730600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611b88565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806000426040518863ffffffff1660e01b8152600401612eaf96959493929190614426565b6060604051808303818588803b158015612ec857600080fd5b505af1158015612edc573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612f019190614487565b5050505050565b6000819050919050565b612f1b81612f08565b82525050565b6000602082019050612f366000830184612f12565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f76578082015181840152602081019050612f5b565b83811115612f85576000848401525b50505050565b6000601f19601f8301169050919050565b6000612fa782612f3c565b612fb18185612f47565b9350612fc1818560208601612f58565b612fca81612f8b565b840191505092915050565b60006020820190508181036000830152612fef8184612f9c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061302782612ffc565b9050919050565b6130378161301c565b811461304257600080fd5b50565b6000813590506130548161302e565b92915050565b61306381612f08565b811461306e57600080fd5b50565b6000813590506130808161305a565b92915050565b6000806040838503121561309d5761309c612ff7565b5b60006130ab85828601613045565b92505060206130bc85828601613071565b9150509250929050565b60008115159050919050565b6130db816130c6565b82525050565b60006020820190506130f660008301846130d2565b92915050565b60006020828403121561311257613111612ff7565b5b600061312084828501613071565b91505092915050565b613132816130c6565b811461313d57600080fd5b50565b60008135905061314f81613129565b92915050565b6000806040838503121561316c5761316b612ff7565b5b600061317a85828601613045565b925050602061318b85828601613140565b9150509250929050565b6000806000606084860312156131ae576131ad612ff7565b5b60006131bc86828701613071565b93505060206131cd86828701613071565b92505060406131de86828701613071565b9150509250925092565b6000602082840312156131fe576131fd612ff7565b5b600061320c84828501613045565b91505092915050565b60008060006060848603121561322e5761322d612ff7565b5b600061323c86828701613045565b935050602061324d86828701613045565b925050604061325e86828701613071565b9150509250925092565b600060ff82169050919050565b61327e81613268565b82525050565b60006020820190506132996000830184613275565b92915050565b6000819050919050565b60006132c46132bf6132ba84612ffc565b61329f565b612ffc565b9050919050565b60006132d6826132a9565b9050919050565b60006132e8826132cb565b9050919050565b6132f8816132dd565b82525050565b600060208201905061331360008301846132ef565b92915050565b6133228161301c565b82525050565b600060208201905061333d6000830184613319565b92915050565b60006020828403121561335957613358612ff7565b5b600061336784828501613140565b91505092915050565b60006060820190506133856000830186612f12565b6133926020830185612f12565b61339f6040830184612f12565b949350505050565b600080604083850312156133be576133bd612ff7565b5b60006133cc85828601613045565b92505060206133dd85828601613045565b9150509250929050565b7f416c7265616479206c61756e6368656421000000000000000000000000000000600082015250565b600061341d601183612f47565b9150613428826133e7565b602082019050919050565b6000602082019050818103600083015261344c81613410565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061349a57607f821691505b602082108114156134ae576134ad613453565b5b50919050565b7f43616e2774206368616e6765206465616420626c6f636b73206166746572206c60008201527f61756e6368210000000000000000000000000000000000000000000000000000602082015250565b6000613510602683612f47565b915061351b826134b4565b604082019050919050565b6000602082019050818103600083015261353f81613503565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061358082612f08565b915061358b83612f08565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135c0576135bf613546565b5b828201905092915050565b7f6e657720436861726974792077616c6c65742063616e206e6f7420626520646560008201527f6164206164647265737321000000000000000000000000000000000000000000602082015250565b6000613627602b83612f47565b9150613632826135cb565b604082019050919050565b600060208201905081810360008301526136568161361a565b9050919050565b600081905092915050565b50565b600061367860008361365d565b915061368382613668565b600082019050919050565b60006136998261366b565b9150819050919050565b7f7472616e73666572696e6720424e42206661696c656400000000000000000000600082015250565b60006136d9601683612f47565b91506136e4826136a3565b602082019050919050565b60006020820190508181036000830152613708816136cc565b9050919050565b7f6e6577204d61726b6574696e672077616c6c65742063616e206e6f742062652060008201527f6465616420616464726573732100000000000000000000000000000000000000602082015250565b600061376b602d83612f47565b91506137768261370f565b604082019050919050565b6000602082019050818103600083015261379a8161375e565b9050919050565b6000815190506137b08161302e565b92915050565b6000602082840312156137cc576137cb612ff7565b5b60006137da848285016137a1565b91505092915050565b60006040820190506137f86000830185613319565b6138056020830184613319565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613868602583612f47565b91506138738261380c565b604082019050919050565b600060208201905081810360008301526138978161385b565b9050919050565b7f4c756e63203a204d696e696d756d207377617020616d6f756e74206d7573742060008201527f62652067726561746572207468616e2030210000000000000000000000000000602082015250565b60006138fa603283612f47565b91506139058261389e565b604082019050919050565b60006020820190508181036000830152613929816138ed565b9050919050565b60008151905061393f8161305a565b92915050565b60006020828403121561395b5761395a612ff7565b5b600061396984828501613930565b91505092915050565b60006040820190506139876000830185613319565b6139946020830184612f12565b9392505050565b6000815190506139aa81613129565b92915050565b6000602082840312156139c6576139c5612ff7565b5b60006139d48482850161399b565b91505092915050565b7f74726173666572696e6720746f6b656e73206661696c65642100000000000000600082015250565b6000613a13601983612f47565b9150613a1e826139dd565b602082019050919050565b60006020820190508181036000830152613a4281613a06565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613aa5602683612f47565b9150613ab082613a49565b604082019050919050565b60006020820190508181036000830152613ad481613a98565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b11602083612f47565b9150613b1c82613adb565b602082019050919050565b60006020820190508181036000830152613b4081613b04565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613ba3602483612f47565b9150613bae82613b47565b604082019050919050565b60006020820190508181036000830152613bd281613b96565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c35602283612f47565b9150613c4082613bd9565b604082019050919050565b60006020820190508181036000830152613c6481613c28565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613ca1601d83612f47565b9150613cac82613c6b565b602082019050919050565b60006020820190508181036000830152613cd081613c94565b9050919050565b7f7472616e736665722066726f6d2061646472657373207a65726f000000000000600082015250565b6000613d0d601a83612f47565b9150613d1882613cd7565b602082019050919050565b60006020820190508181036000830152613d3c81613d00565b9050919050565b7f7472616e7366657220746f2061646472657373207a65726f0000000000000000600082015250565b6000613d79601883612f47565b9150613d8482613d43565b602082019050919050565b60006020820190508181036000830152613da881613d6c565b9050919050565b7f5472616e7366657272696e67206e6f7420616c6c6f77656420666f7220626c6160008201527f636b6c6973746564206164647265737365732100000000000000000000000000602082015250565b6000613e0b603383612f47565b9150613e1682613daf565b604082019050919050565b60006020820190508181036000830152613e3a81613dfe565b9050919050565b7f546f6b656e206e6f74206c61756e636865642079657421000000000000000000600082015250565b6000613e77601783612f47565b9150613e8282613e41565b602082019050919050565b60006020820190508181036000830152613ea681613e6a565b9050919050565b7f43616e206e6f7420627579206d6f7265207468616e20302e3525206f6620737560008201527f70706c7921000000000000000000000000000000000000000000000000000000602082015250565b6000613f09602583612f47565b9150613f1482613ead565b604082019050919050565b60006020820190508181036000830152613f3881613efc565b9050919050565b7f43616e206e6f74206275792f73656c6c2f7472616e73666572206d6f7265207460008201527f68616e20302e3125206f6620737570706c792100000000000000000000000000602082015250565b6000613f9b603383612f47565b9150613fa682613f3f565b604082019050919050565b60006020820190508181036000830152613fca81613f8e565b9050919050565b6000613fdc82612f08565b9150613fe783612f08565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140205761401f613546565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061406582612f08565b915061407083612f08565b9250826140805761407f61402b565b5b828204905092915050565b600061409682612f08565b91506140a183612f08565b9250828210156140b4576140b3613546565b5b828203905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061411b602583612f47565b9150614126826140bf565b604082019050919050565b6000602082019050818103600083015261414a8161410e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006141ad602383612f47565b91506141b882614151565b604082019050919050565b600060208201905081810360008301526141dc816141a0565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061423f602683612f47565b915061424a826141e3565b604082019050919050565b6000602082019050818103600083015261426e81614232565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b60006142f86142f36142ee846142d3565b61329f565b612f08565b9050919050565b614308816142dd565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6143438161301c565b82525050565b6000614355838361433a565b60208301905092915050565b6000602082019050919050565b60006143798261430e565b6143838185614319565b935061438e8361432a565b8060005b838110156143bf5781516143a68882614349565b97506143b183614361565b925050600181019050614392565b5085935050505092915050565b600060a0820190506143e16000830188612f12565b6143ee60208301876142ff565b8181036040830152614400818661436e565b905061440f6060830185613319565b61441c6080830184612f12565b9695505050505050565b600060c08201905061443b6000830189613319565b6144486020830188612f12565b61445560408301876142ff565b61446260608301866142ff565b61446f6080830185613319565b61447c60a0830184612f12565b979650505050505050565b6000806000606084860312156144a05761449f612ff7565b5b60006144ae86828701613930565b93505060206144bf86828701613930565b92505060406144d086828701613930565b915050925092509256fea2646970667358221220e3e70579fdc12e8a898ca2d5927f92a77c4b623791807de1f36f1a04d3d483ee64736f6c63430008080033
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.