Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
100,000,000 ABOT
Holders
157
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.031146622876081807 ABOTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AlphaBot
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-08-02 */ //https://t.me/AlphaBotChatERC // SPDX-License-Identifier: MIT pragma solidity ^0.8.10; pragma experimental ABIEncoderV2; ////// lib/openzeppelin-contracts/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (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; } } ////// lib/openzeppelin-contracts/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (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); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.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 substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function factory() external pure returns (address); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract AlphaBot is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); address public ETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2; bool private swapping; address public deployerAddress; address public lpLocker; address private devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = true; uint256 public buyTotalFees; uint256 public buydevfee; uint256 public buyLiquidityFee; uint256 public sellTotalFees; uint256 public selldevfee; uint256 public sellLiquidityFee; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; event ExcludeFromFees(address indexed account, bool isExcluded); event devWalletUpdated( address indexed newWallet, address indexed oldWallet ); constructor() ERC20("AlphaBot", "ABOT") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), ETH); excludeFromMaxTransaction(address(uniswapV2Pair), true); uint256 _buydevfee = 0; uint256 _buyLiquidityFee = 0; uint256 _selldevfee = 0; uint256 _sellLiquidityFee = 0; uint256 totalSupply = 100_000_000 * 1e18; maxTransactionAmount = totalSupply * 20 / 1000; // 2% from total supply maxTransactionAmountTxn maxWallet = totalSupply * 20 / 1000; // 2% from total supply maxWallet swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet buydevfee = _buydevfee; buyLiquidityFee = _buyLiquidityFee; buyTotalFees = buydevfee + buyLiquidityFee; selldevfee = _selldevfee; sellLiquidityFee = _sellLiquidityFee; sellTotalFees = selldevfee + sellLiquidityFee; devWallet = address(msg.sender); // set as dev wallet deployerAddress = address(msg.sender); lpLocker = address(msg.sender); // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromFees(deployerAddress, true); // Deployer Address excludeFromFees(lpLocker, true); // LP Locker excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); excludeFromMaxTransaction(deployerAddress, true); // Deployer Address excludeFromMaxTransaction(lpLocker, true); // LP Locker /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _devfee, uint256 _liquidityFee ) external onlyOwner { buydevfee = _devfee; buyLiquidityFee = _liquidityFee; buyTotalFees = buydevfee + buyLiquidityFee; require(buyTotalFees <= 35, "Must keep fees at 35% or less"); } function updateSellFees( uint256 _devfee, uint256 _liquidityFee ) external onlyOwner { selldevfee = _devfee; sellLiquidityFee = _liquidityFee; sellTotalFees = selldevfee + sellLiquidityFee; require(sellTotalFees <= 50, "Must keep fees at 50% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function updateDevWallet(address newDevWallet) external onlyOwner { emit devWalletUpdated(newDevWallet, devWallet); devWallet = newDevWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. //when buy if ( from == uniswapV2Pair && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && to == uniswapV2Pair && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; uint256 tokensForLiquidity = 0; uint256 tokensForDev = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (to == uniswapV2Pair && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees; tokensForDev = (fees * selldevfee) / sellTotalFees; } // on buy else if (from == uniswapV2Pair && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; tokensForDev = (fees * buydevfee) / buyTotalFees; } if (fees> 0) { super._transfer(from, address(this), fees); } if (tokensForLiquidity > 0) { super._transfer(address(this), uniswapV2Pair, tokensForLiquidity); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForETH(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = ETH; _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of WETH path, devWallet, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); if (contractBalance == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } swapTokensForETH(contractBalance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"inputs":[],"name":"ETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buydevfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deployerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpLocker","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","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":"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":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"selldevfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devfee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devfee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c060405273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506001600d60026101000a81548160ff021916908315150217905550348015620000b757600080fd5b506040518060400160405280600881526020017f416c706861426f740000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f41424f5400000000000000000000000000000000000000000000000000000000815250816003908162000135919062000d57565b50806004908162000147919062000d57565b5050506200016a6200015e6200063f60201b60201c565b6200064760201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001968160016200070d60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000ea8565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b81526004016200029a92919062000eeb565b6020604051808303816000875af1158015620002ba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e0919062000ea8565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200032860a05160016200070d60201b60201c565b60008060008060006a52b7d2dcc80cd2e400000090506103e860148262000350919062000f47565b6200035c919062000fc1565b600a819055506103e860148262000374919062000f47565b62000380919062000fc1565b600c8190555061271060058262000398919062000f47565b620003a4919062000fc1565b600b8190555084600f8190555083601081905550601054600f54620003ca919062000ff9565b600e819055508260128190555081601381905550601354601254620003f0919062000ff9565b60118190555033600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004db620004cd620007f760201b60201c565b60016200082160201b60201c565b620004ee3060016200082160201b60201c565b6200050361dead60016200082160201b60201c565b62000538600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200082160201b60201c565b6200056d600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200082160201b60201c565b6200058f62000581620007f760201b60201c565b60016200070d60201b60201c565b620005a23060016200070d60201b60201c565b620005b761dead60016200070d60201b60201c565b620005ec600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200070d60201b60201c565b62000621600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200070d60201b60201c565b6200063333826200095b60201b60201c565b50505050505062001191565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200071d6200063f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000743620007f760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200079c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007939062001095565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008316200063f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000857620007f760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008b0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008a79062001095565b60405180910390fd5b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200094f9190620010d4565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009cd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009c49062001141565b60405180910390fd5b620009e16000838362000ad360201b60201c565b8060026000828254620009f5919062000ff9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a4c919062000ff9565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ab3919062001174565b60405180910390a362000acf6000838362000ad860201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b5f57607f821691505b60208210810362000b755762000b7462000b17565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000bdf7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000ba0565b62000beb868362000ba0565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c3862000c3262000c2c8462000c03565b62000c0d565b62000c03565b9050919050565b6000819050919050565b62000c548362000c17565b62000c6c62000c638262000c3f565b84845462000bad565b825550505050565b600090565b62000c8362000c74565b62000c9081848462000c49565b505050565b5b8181101562000cb85762000cac60008262000c79565b60018101905062000c96565b5050565b601f82111562000d075762000cd18162000b7b565b62000cdc8462000b90565b8101602085101562000cec578190505b62000d0462000cfb8562000b90565b83018262000c95565b50505b505050565b600082821c905092915050565b600062000d2c6000198460080262000d0c565b1980831691505092915050565b600062000d47838362000d19565b9150826002028217905092915050565b62000d628262000add565b67ffffffffffffffff81111562000d7e5762000d7d62000ae8565b5b62000d8a825462000b46565b62000d9782828562000cbc565b600060209050601f83116001811462000dcf576000841562000dba578287015190505b62000dc6858262000d39565b86555062000e36565b601f19841662000ddf8662000b7b565b60005b8281101562000e095784890151825560018201915060208501945060208101905062000de2565b8683101562000e29578489015162000e25601f89168262000d19565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e708262000e43565b9050919050565b62000e828162000e63565b811462000e8e57600080fd5b50565b60008151905062000ea28162000e77565b92915050565b60006020828403121562000ec15762000ec062000e3e565b5b600062000ed18482850162000e91565b91505092915050565b62000ee58162000e63565b82525050565b600060408201905062000f02600083018562000eda565b62000f11602083018462000eda565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f548262000c03565b915062000f618362000c03565b925082820262000f718162000c03565b9150828204841483151762000f8b5762000f8a62000f18565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000fce8262000c03565b915062000fdb8362000c03565b92508262000fee5762000fed62000f92565b5b828204905092915050565b6000620010068262000c03565b9150620010138362000c03565b92508282019050808211156200102e576200102d62000f18565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200107d60208362001034565b91506200108a8262001045565b602082019050919050565b60006020820190508181036000830152620010b0816200106e565b9050919050565b60008115159050919050565b620010ce81620010b7565b82525050565b6000602082019050620010eb6000830184620010c3565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001129601f8362001034565b91506200113682620010f1565b602082019050919050565b600060208201905081810360008301526200115c816200111a565b9050919050565b6200116e8162000c03565b82525050565b60006020820190506200118b600083018462001163565b92915050565b60805160a051613cdd620011e860003960008181610f6301528181611fca015281816122130152818161241e015281816124e901526125d3015260008181610bdd01528181612afe0152612b250152613cdd6000f3fe6080604052600436106102605760003560e01c8063715018a611610144578063c18bc195116100b6578063e2f456051161007a578063e2f45605146108fb578063efdee94f14610926578063f11a24d314610951578063f2fde38b1461097c578063f6374342146109a5578063f8b45b05146109d057610267565b8063c18bc19514610802578063c8c8ebe41461082b578063d257b34f14610856578063d85ba06314610893578063dd62ed3e146108be57610267565b80638da5cb5b116101085780638da5cb5b146106f2578063924de9b71461071d57806395d89b4114610746578063a9059cbb14610771578063bbc0c742146107ae578063c0246668146107d957610267565b8063715018a614610645578063751039fc1461065c5780637571336a146106875780638322fff2146106b05780638a8c523c146106db57610267565b806327c8f835116101dd5780634fbee193116101a15780634fbee1931461052157806365c1bef81461055e57806366ca9b83146105895780636a486a8e146105b25780636ddd1713146105dd57806370a082311461060857610267565b806327c8f8351461044a578063313ce56714610475578063489ae78d146104a057806349bd5a5e146104cb5780634a62bb65146104f657610267565b80631694505e116102245780631694505e1461036557806318160ddd146103905780631816467f146103bb578063203e727e146103e457806323b872dd1461040d57610267565b806302dbd8f81461026c57806303fc20131461029557806306fdde03146102c0578063095ea7b3146102eb57806310d5de531461032857610267565b3661026757005b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190612c18565b6109fb565b005b3480156102a157600080fd5b506102aa610ae5565b6040516102b79190612c99565b60405180910390f35b3480156102cc57600080fd5b506102d5610b0b565b6040516102e29190612d44565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d9190612d92565b610b9d565b60405161031f9190612ded565b60405180910390f35b34801561033457600080fd5b5061034f600480360381019061034a9190612e08565b610bbb565b60405161035c9190612ded565b60405180910390f35b34801561037157600080fd5b5061037a610bdb565b6040516103879190612e94565b60405180910390f35b34801561039c57600080fd5b506103a5610bff565b6040516103b29190612ebe565b60405180910390f35b3480156103c757600080fd5b506103e260048036038101906103dd9190612e08565b610c09565b005b3480156103f057600080fd5b5061040b60048036038101906104069190612ed9565b610d45565b005b34801561041957600080fd5b50610434600480360381019061042f9190612f06565b610e54565b6040516104419190612ded565b60405180910390f35b34801561045657600080fd5b5061045f610f4c565b60405161046c9190612c99565b60405180910390f35b34801561048157600080fd5b5061048a610f52565b6040516104979190612f75565b60405180910390f35b3480156104ac57600080fd5b506104b5610f5b565b6040516104c29190612ebe565b60405180910390f35b3480156104d757600080fd5b506104e0610f61565b6040516104ed9190612c99565b60405180910390f35b34801561050257600080fd5b5061050b610f85565b6040516105189190612ded565b60405180910390f35b34801561052d57600080fd5b5061054860048036038101906105439190612e08565b610f98565b6040516105559190612ded565b60405180910390f35b34801561056a57600080fd5b50610573610fee565b6040516105809190612ebe565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab9190612c18565b610ff4565b005b3480156105be57600080fd5b506105c76110de565b6040516105d49190612ebe565b60405180910390f35b3480156105e957600080fd5b506105f26110e4565b6040516105ff9190612ded565b60405180910390f35b34801561061457600080fd5b5061062f600480360381019061062a9190612e08565b6110f7565b60405161063c9190612ebe565b60405180910390f35b34801561065157600080fd5b5061065a61113f565b005b34801561066857600080fd5b506106716111c7565b60405161067e9190612ded565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a99190612fbc565b611267565b005b3480156106bc57600080fd5b506106c561133e565b6040516106d29190612c99565b60405180910390f35b3480156106e757600080fd5b506106f0611364565b005b3480156106fe57600080fd5b50610707611418565b6040516107149190612c99565b60405180910390f35b34801561072957600080fd5b50610744600480360381019061073f9190612ffc565b611442565b005b34801561075257600080fd5b5061075b6114db565b6040516107689190612d44565b60405180910390f35b34801561077d57600080fd5b5061079860048036038101906107939190612d92565b61156d565b6040516107a59190612ded565b60405180910390f35b3480156107ba57600080fd5b506107c361158b565b6040516107d09190612ded565b60405180910390f35b3480156107e557600080fd5b5061080060048036038101906107fb9190612fbc565b61159e565b005b34801561080e57600080fd5b5061082960048036038101906108249190612ed9565b6116c3565b005b34801561083757600080fd5b506108406117d2565b60405161084d9190612ebe565b60405180910390f35b34801561086257600080fd5b5061087d60048036038101906108789190612ed9565b6117d8565b60405161088a9190612ded565b60405180910390f35b34801561089f57600080fd5b506108a861192d565b6040516108b59190612ebe565b60405180910390f35b3480156108ca57600080fd5b506108e560048036038101906108e09190613029565b611933565b6040516108f29190612ebe565b60405180910390f35b34801561090757600080fd5b506109106119ba565b60405161091d9190612ebe565b60405180910390f35b34801561093257600080fd5b5061093b6119c0565b6040516109489190612c99565b60405180910390f35b34801561095d57600080fd5b506109666119e6565b6040516109739190612ebe565b60405180910390f35b34801561098857600080fd5b506109a3600480360381019061099e9190612e08565b6119ec565b005b3480156109b157600080fd5b506109ba611ae3565b6040516109c79190612ebe565b60405180910390f35b3480156109dc57600080fd5b506109e5611ae9565b6040516109f29190612ebe565b60405180910390f35b610a03611aef565b73ffffffffffffffffffffffffffffffffffffffff16610a21611418565b73ffffffffffffffffffffffffffffffffffffffff1614610a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6e906130b5565b60405180910390fd5b8160128190555080601381905550601354601254610a959190613104565b60118190555060326011541115610ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad890613184565b60405180910390fd5b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610b1a906131d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610b46906131d3565b8015610b935780601f10610b6857610100808354040283529160200191610b93565b820191906000526020600020905b815481529060010190602001808311610b7657829003601f168201915b5050505050905090565b6000610bb1610baa611aef565b8484611af7565b6001905092915050565b60156020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610c11611aef565b73ffffffffffffffffffffffffffffffffffffffff16610c2f611418565b73ffffffffffffffffffffffffffffffffffffffff1614610c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7c906130b5565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d4d611aef565b73ffffffffffffffffffffffffffffffffffffffff16610d6b611418565b73ffffffffffffffffffffffffffffffffffffffff1614610dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db8906130b5565b60405180910390fd5b670de0b6b3a76400006103e86005610dd7610bff565b610de19190613204565b610deb9190613275565b610df59190613275565b811015610e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2e90613318565b60405180910390fd5b670de0b6b3a764000081610e4b9190613204565b600a8190555050565b6000610e61848484611cc0565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610eac611aef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f23906133aa565b60405180910390fd5b610f4085610f38611aef565b858403611af7565b60019150509392505050565b61dead81565b60006012905090565b600f5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600d60009054906101000a900460ff1681565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b610ffc611aef565b73ffffffffffffffffffffffffffffffffffffffff1661101a611418565b73ffffffffffffffffffffffffffffffffffffffff1614611070576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611067906130b5565b60405180910390fd5b81600f8190555080601081905550601054600f5461108e9190613104565b600e819055506023600e5411156110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d190613416565b60405180910390fd5b5050565b60115481565b600d60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611147611aef565b73ffffffffffffffffffffffffffffffffffffffff16611165611418565b73ffffffffffffffffffffffffffffffffffffffff16146111bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b2906130b5565b60405180910390fd5b6111c5600061261f565b565b60006111d1611aef565b73ffffffffffffffffffffffffffffffffffffffff166111ef611418565b73ffffffffffffffffffffffffffffffffffffffff1614611245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123c906130b5565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b61126f611aef565b73ffffffffffffffffffffffffffffffffffffffff1661128d611418565b73ffffffffffffffffffffffffffffffffffffffff16146112e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112da906130b5565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61136c611aef565b73ffffffffffffffffffffffffffffffffffffffff1661138a611418565b73ffffffffffffffffffffffffffffffffffffffff16146113e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d7906130b5565b60405180910390fd5b6001600d60016101000a81548160ff0219169083151502179055506001600d60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61144a611aef565b73ffffffffffffffffffffffffffffffffffffffff16611468611418565b73ffffffffffffffffffffffffffffffffffffffff16146114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b5906130b5565b60405180910390fd5b80600d60026101000a81548160ff02191690831515021790555050565b6060600480546114ea906131d3565b80601f0160208091040260200160405190810160405280929190818152602001828054611516906131d3565b80156115635780601f1061153857610100808354040283529160200191611563565b820191906000526020600020905b81548152906001019060200180831161154657829003601f168201915b5050505050905090565b600061158161157a611aef565b8484611cc0565b6001905092915050565b600d60019054906101000a900460ff1681565b6115a6611aef565b73ffffffffffffffffffffffffffffffffffffffff166115c4611418565b73ffffffffffffffffffffffffffffffffffffffff161461161a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611611906130b5565b60405180910390fd5b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516116b79190612ded565b60405180910390a25050565b6116cb611aef565b73ffffffffffffffffffffffffffffffffffffffff166116e9611418565b73ffffffffffffffffffffffffffffffffffffffff161461173f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611736906130b5565b60405180910390fd5b670de0b6b3a76400006103e86005611755610bff565b61175f9190613204565b6117699190613275565b6117739190613275565b8110156117b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ac906134a8565b60405180910390fd5b670de0b6b3a7640000816117c99190613204565b600c8190555050565b600a5481565b60006117e2611aef565b73ffffffffffffffffffffffffffffffffffffffff16611800611418565b73ffffffffffffffffffffffffffffffffffffffff1614611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d906130b5565b60405180910390fd5b620186a06001611864610bff565b61186e9190613204565b6118789190613275565b8210156118ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b19061353a565b60405180910390fd5b6103e860056118c7610bff565b6118d19190613204565b6118db9190613275565b82111561191d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611914906135cc565b60405180910390fd5b81600b8190555060019050919050565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b6119f4611aef565b73ffffffffffffffffffffffffffffffffffffffff16611a12611418565b73ffffffffffffffffffffffffffffffffffffffff1614611a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5f906130b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace9061365e565b60405180910390fd5b611ae08161261f565b50565b60135481565b600c5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5d906136f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcc90613782565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611cb39190612ebe565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2690613814565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d95906138a6565b60405180910390fd5b60008103611db757611db2838360006126e5565b61261a565b600d60009054906101000a900460ff16156121c157611dd4611418565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611e425750611e12611418565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e7b5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611eb5575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ece5750600660149054906101000a900460ff16155b156121c057600d60019054906101000a900460ff16611fc857601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611f885750601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbe90613912565b60405180910390fd5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561206d5750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561211457600a548111156120b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ae906139a4565b60405180910390fd5b600c546120c3836110f7565b826120ce9190613104565b111561210f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210690613a10565b60405180910390fd5b6121bf565b601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166121be57600c54612171836110f7565b8261217c9190613104565b11156121bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b490613a10565b60405180910390fd5b5b5b5b5b60006121cc306110f7565b90506000600b5482101590508080156121f15750600d60029054906101000a900460ff165b801561220a5750600660149054906101000a900460ff16155b801561226157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156122b75750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561230d5750601460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612351576001600660146101000a81548160ff021916908315150217905550612335612964565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124075750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561241157600090505b60008060008315612608577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614801561247957506000601154115b156124e7576124a660646124986011548a6129b490919063ffffffff16565b6129ca90919063ffffffff16565b9250601154601354846124b99190613204565b6124c39190613275565b9150601154601254846124d69190613204565b6124e09190613275565b90506125af565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614801561254457506000600e54115b156125ae576125716064612563600e548a6129b490919063ffffffff16565b6129ca90919063ffffffff16565b9250600e54601054846125849190613204565b61258e9190613275565b9150600e54600f54846125a19190613204565b6125ab9190613275565b90505b5b60008311156125c4576125c38930856126e5565b5b60008211156125f9576125f8307f0000000000000000000000000000000000000000000000000000000000000000846126e5565b5b82876126059190613a30565b96505b6126138989896126e5565b5050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274b90613814565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ba906138a6565b60405180910390fd5b6127ce8383836129e0565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284b90613ad6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128e79190613104565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161294b9190612ebe565b60405180910390a361295e8484846129e5565b50505050565b600061296f306110f7565b90506000810361297f57506129b2565b6014600b5461298e9190613204565b8111156129a7576014600b546129a49190613204565b90505b6129b0816129ea565b505b565b600081836129c29190613204565b905092915050565b600081836129d89190613275565b905092915050565b505050565b505050565b6000600267ffffffffffffffff811115612a0757612a06613af6565b5b604051908082528060200260200182016040528015612a355781602001602082028036833780820191505090505b5090503081600081518110612a4d57612a4c613b25565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612abe57612abd613b25565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612b23307f000000000000000000000000000000000000000000000000000000000000000084611af7565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612ba7959493929190613c4d565b600060405180830381600087803b158015612bc157600080fd5b505af1158015612bd5573d6000803e3d6000fd5b505050505050565b600080fd5b6000819050919050565b612bf581612be2565b8114612c0057600080fd5b50565b600081359050612c1281612bec565b92915050565b60008060408385031215612c2f57612c2e612bdd565b5b6000612c3d85828601612c03565b9250506020612c4e85828601612c03565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c8382612c58565b9050919050565b612c9381612c78565b82525050565b6000602082019050612cae6000830184612c8a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612cee578082015181840152602081019050612cd3565b60008484015250505050565b6000601f19601f8301169050919050565b6000612d1682612cb4565b612d208185612cbf565b9350612d30818560208601612cd0565b612d3981612cfa565b840191505092915050565b60006020820190508181036000830152612d5e8184612d0b565b905092915050565b612d6f81612c78565b8114612d7a57600080fd5b50565b600081359050612d8c81612d66565b92915050565b60008060408385031215612da957612da8612bdd565b5b6000612db785828601612d7d565b9250506020612dc885828601612c03565b9150509250929050565b60008115159050919050565b612de781612dd2565b82525050565b6000602082019050612e026000830184612dde565b92915050565b600060208284031215612e1e57612e1d612bdd565b5b6000612e2c84828501612d7d565b91505092915050565b6000819050919050565b6000612e5a612e55612e5084612c58565b612e35565b612c58565b9050919050565b6000612e6c82612e3f565b9050919050565b6000612e7e82612e61565b9050919050565b612e8e81612e73565b82525050565b6000602082019050612ea96000830184612e85565b92915050565b612eb881612be2565b82525050565b6000602082019050612ed36000830184612eaf565b92915050565b600060208284031215612eef57612eee612bdd565b5b6000612efd84828501612c03565b91505092915050565b600080600060608486031215612f1f57612f1e612bdd565b5b6000612f2d86828701612d7d565b9350506020612f3e86828701612d7d565b9250506040612f4f86828701612c03565b9150509250925092565b600060ff82169050919050565b612f6f81612f59565b82525050565b6000602082019050612f8a6000830184612f66565b92915050565b612f9981612dd2565b8114612fa457600080fd5b50565b600081359050612fb681612f90565b92915050565b60008060408385031215612fd357612fd2612bdd565b5b6000612fe185828601612d7d565b9250506020612ff285828601612fa7565b9150509250929050565b60006020828403121561301257613011612bdd565b5b600061302084828501612fa7565b91505092915050565b600080604083850312156130405761303f612bdd565b5b600061304e85828601612d7d565b925050602061305f85828601612d7d565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061309f602083612cbf565b91506130aa82613069565b602082019050919050565b600060208201905081810360008301526130ce81613092565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061310f82612be2565b915061311a83612be2565b9250828201905080821115613132576131316130d5565b5b92915050565b7f4d757374206b656570206665657320617420353025206f72206c657373000000600082015250565b600061316e601d83612cbf565b915061317982613138565b602082019050919050565b6000602082019050818103600083015261319d81613161565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131eb57607f821691505b6020821081036131fe576131fd6131a4565b5b50919050565b600061320f82612be2565b915061321a83612be2565b925082820261322881612be2565b9150828204841483151761323f5761323e6130d5565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061328082612be2565b915061328b83612be2565b92508261329b5761329a613246565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613302602f83612cbf565b915061330d826132a6565b604082019050919050565b60006020820190508181036000830152613331816132f5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613394602883612cbf565b915061339f82613338565b604082019050919050565b600060208201905081810360008301526133c381613387565b9050919050565b7f4d757374206b656570206665657320617420333525206f72206c657373000000600082015250565b6000613400601d83612cbf565b915061340b826133ca565b602082019050919050565b6000602082019050818103600083015261342f816133f3565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613492602483612cbf565b915061349d82613436565b604082019050919050565b600060208201905081810360008301526134c181613485565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613524603583612cbf565b915061352f826134c8565b604082019050919050565b6000602082019050818103600083015261355381613517565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006135b6603483612cbf565b91506135c18261355a565b604082019050919050565b600060208201905081810360008301526135e5816135a9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613648602683612cbf565b9150613653826135ec565b604082019050919050565b600060208201905081810360008301526136778161363b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006136da602483612cbf565b91506136e58261367e565b604082019050919050565b60006020820190508181036000830152613709816136cd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061376c602283612cbf565b915061377782613710565b604082019050919050565b6000602082019050818103600083015261379b8161375f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006137fe602583612cbf565b9150613809826137a2565b604082019050919050565b6000602082019050818103600083015261382d816137f1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613890602383612cbf565b915061389b82613834565b604082019050919050565b600060208201905081810360008301526138bf81613883565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006138fc601683612cbf565b9150613907826138c6565b602082019050919050565b6000602082019050818103600083015261392b816138ef565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061398e603583612cbf565b915061399982613932565b604082019050919050565b600060208201905081810360008301526139bd81613981565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006139fa601383612cbf565b9150613a05826139c4565b602082019050919050565b60006020820190508181036000830152613a29816139ed565b9050919050565b6000613a3b82612be2565b9150613a4683612be2565b9250828203905081811115613a5e57613a5d6130d5565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613ac0602683612cbf565b9150613acb82613a64565b604082019050919050565b60006020820190508181036000830152613aef81613ab3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000613b79613b74613b6f84613b54565b612e35565b612be2565b9050919050565b613b8981613b5e565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613bc481612c78565b82525050565b6000613bd68383613bbb565b60208301905092915050565b6000602082019050919050565b6000613bfa82613b8f565b613c048185613b9a565b9350613c0f83613bab565b8060005b83811015613c40578151613c278882613bca565b9750613c3283613be2565b925050600181019050613c13565b5085935050505092915050565b600060a082019050613c626000830188612eaf565b613c6f6020830187613b80565b8181036040830152613c818186613bef565b9050613c906060830185612c8a565b613c9d6080830184612eaf565b969550505050505056fea2646970667358221220b0e34cc4667da8db5ecf4f39c54f7f9e45316a047cc96b1523e3a1410321bab164736f6c63430008110033
Deployed Bytecode
0x6080604052600436106102605760003560e01c8063715018a611610144578063c18bc195116100b6578063e2f456051161007a578063e2f45605146108fb578063efdee94f14610926578063f11a24d314610951578063f2fde38b1461097c578063f6374342146109a5578063f8b45b05146109d057610267565b8063c18bc19514610802578063c8c8ebe41461082b578063d257b34f14610856578063d85ba06314610893578063dd62ed3e146108be57610267565b80638da5cb5b116101085780638da5cb5b146106f2578063924de9b71461071d57806395d89b4114610746578063a9059cbb14610771578063bbc0c742146107ae578063c0246668146107d957610267565b8063715018a614610645578063751039fc1461065c5780637571336a146106875780638322fff2146106b05780638a8c523c146106db57610267565b806327c8f835116101dd5780634fbee193116101a15780634fbee1931461052157806365c1bef81461055e57806366ca9b83146105895780636a486a8e146105b25780636ddd1713146105dd57806370a082311461060857610267565b806327c8f8351461044a578063313ce56714610475578063489ae78d146104a057806349bd5a5e146104cb5780634a62bb65146104f657610267565b80631694505e116102245780631694505e1461036557806318160ddd146103905780631816467f146103bb578063203e727e146103e457806323b872dd1461040d57610267565b806302dbd8f81461026c57806303fc20131461029557806306fdde03146102c0578063095ea7b3146102eb57806310d5de531461032857610267565b3661026757005b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190612c18565b6109fb565b005b3480156102a157600080fd5b506102aa610ae5565b6040516102b79190612c99565b60405180910390f35b3480156102cc57600080fd5b506102d5610b0b565b6040516102e29190612d44565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d9190612d92565b610b9d565b60405161031f9190612ded565b60405180910390f35b34801561033457600080fd5b5061034f600480360381019061034a9190612e08565b610bbb565b60405161035c9190612ded565b60405180910390f35b34801561037157600080fd5b5061037a610bdb565b6040516103879190612e94565b60405180910390f35b34801561039c57600080fd5b506103a5610bff565b6040516103b29190612ebe565b60405180910390f35b3480156103c757600080fd5b506103e260048036038101906103dd9190612e08565b610c09565b005b3480156103f057600080fd5b5061040b60048036038101906104069190612ed9565b610d45565b005b34801561041957600080fd5b50610434600480360381019061042f9190612f06565b610e54565b6040516104419190612ded565b60405180910390f35b34801561045657600080fd5b5061045f610f4c565b60405161046c9190612c99565b60405180910390f35b34801561048157600080fd5b5061048a610f52565b6040516104979190612f75565b60405180910390f35b3480156104ac57600080fd5b506104b5610f5b565b6040516104c29190612ebe565b60405180910390f35b3480156104d757600080fd5b506104e0610f61565b6040516104ed9190612c99565b60405180910390f35b34801561050257600080fd5b5061050b610f85565b6040516105189190612ded565b60405180910390f35b34801561052d57600080fd5b5061054860048036038101906105439190612e08565b610f98565b6040516105559190612ded565b60405180910390f35b34801561056a57600080fd5b50610573610fee565b6040516105809190612ebe565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab9190612c18565b610ff4565b005b3480156105be57600080fd5b506105c76110de565b6040516105d49190612ebe565b60405180910390f35b3480156105e957600080fd5b506105f26110e4565b6040516105ff9190612ded565b60405180910390f35b34801561061457600080fd5b5061062f600480360381019061062a9190612e08565b6110f7565b60405161063c9190612ebe565b60405180910390f35b34801561065157600080fd5b5061065a61113f565b005b34801561066857600080fd5b506106716111c7565b60405161067e9190612ded565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a99190612fbc565b611267565b005b3480156106bc57600080fd5b506106c561133e565b6040516106d29190612c99565b60405180910390f35b3480156106e757600080fd5b506106f0611364565b005b3480156106fe57600080fd5b50610707611418565b6040516107149190612c99565b60405180910390f35b34801561072957600080fd5b50610744600480360381019061073f9190612ffc565b611442565b005b34801561075257600080fd5b5061075b6114db565b6040516107689190612d44565b60405180910390f35b34801561077d57600080fd5b5061079860048036038101906107939190612d92565b61156d565b6040516107a59190612ded565b60405180910390f35b3480156107ba57600080fd5b506107c361158b565b6040516107d09190612ded565b60405180910390f35b3480156107e557600080fd5b5061080060048036038101906107fb9190612fbc565b61159e565b005b34801561080e57600080fd5b5061082960048036038101906108249190612ed9565b6116c3565b005b34801561083757600080fd5b506108406117d2565b60405161084d9190612ebe565b60405180910390f35b34801561086257600080fd5b5061087d60048036038101906108789190612ed9565b6117d8565b60405161088a9190612ded565b60405180910390f35b34801561089f57600080fd5b506108a861192d565b6040516108b59190612ebe565b60405180910390f35b3480156108ca57600080fd5b506108e560048036038101906108e09190613029565b611933565b6040516108f29190612ebe565b60405180910390f35b34801561090757600080fd5b506109106119ba565b60405161091d9190612ebe565b60405180910390f35b34801561093257600080fd5b5061093b6119c0565b6040516109489190612c99565b60405180910390f35b34801561095d57600080fd5b506109666119e6565b6040516109739190612ebe565b60405180910390f35b34801561098857600080fd5b506109a3600480360381019061099e9190612e08565b6119ec565b005b3480156109b157600080fd5b506109ba611ae3565b6040516109c79190612ebe565b60405180910390f35b3480156109dc57600080fd5b506109e5611ae9565b6040516109f29190612ebe565b60405180910390f35b610a03611aef565b73ffffffffffffffffffffffffffffffffffffffff16610a21611418565b73ffffffffffffffffffffffffffffffffffffffff1614610a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6e906130b5565b60405180910390fd5b8160128190555080601381905550601354601254610a959190613104565b60118190555060326011541115610ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad890613184565b60405180910390fd5b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610b1a906131d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610b46906131d3565b8015610b935780601f10610b6857610100808354040283529160200191610b93565b820191906000526020600020905b815481529060010190602001808311610b7657829003601f168201915b5050505050905090565b6000610bb1610baa611aef565b8484611af7565b6001905092915050565b60156020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610c11611aef565b73ffffffffffffffffffffffffffffffffffffffff16610c2f611418565b73ffffffffffffffffffffffffffffffffffffffff1614610c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7c906130b5565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d4d611aef565b73ffffffffffffffffffffffffffffffffffffffff16610d6b611418565b73ffffffffffffffffffffffffffffffffffffffff1614610dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db8906130b5565b60405180910390fd5b670de0b6b3a76400006103e86005610dd7610bff565b610de19190613204565b610deb9190613275565b610df59190613275565b811015610e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2e90613318565b60405180910390fd5b670de0b6b3a764000081610e4b9190613204565b600a8190555050565b6000610e61848484611cc0565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610eac611aef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f23906133aa565b60405180910390fd5b610f4085610f38611aef565b858403611af7565b60019150509392505050565b61dead81565b60006012905090565b600f5481565b7f000000000000000000000000c5b53f7ce6124e0002164c05a2c5ab15af8ac14681565b600d60009054906101000a900460ff1681565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b610ffc611aef565b73ffffffffffffffffffffffffffffffffffffffff1661101a611418565b73ffffffffffffffffffffffffffffffffffffffff1614611070576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611067906130b5565b60405180910390fd5b81600f8190555080601081905550601054600f5461108e9190613104565b600e819055506023600e5411156110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d190613416565b60405180910390fd5b5050565b60115481565b600d60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611147611aef565b73ffffffffffffffffffffffffffffffffffffffff16611165611418565b73ffffffffffffffffffffffffffffffffffffffff16146111bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b2906130b5565b60405180910390fd5b6111c5600061261f565b565b60006111d1611aef565b73ffffffffffffffffffffffffffffffffffffffff166111ef611418565b73ffffffffffffffffffffffffffffffffffffffff1614611245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123c906130b5565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b61126f611aef565b73ffffffffffffffffffffffffffffffffffffffff1661128d611418565b73ffffffffffffffffffffffffffffffffffffffff16146112e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112da906130b5565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61136c611aef565b73ffffffffffffffffffffffffffffffffffffffff1661138a611418565b73ffffffffffffffffffffffffffffffffffffffff16146113e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d7906130b5565b60405180910390fd5b6001600d60016101000a81548160ff0219169083151502179055506001600d60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61144a611aef565b73ffffffffffffffffffffffffffffffffffffffff16611468611418565b73ffffffffffffffffffffffffffffffffffffffff16146114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b5906130b5565b60405180910390fd5b80600d60026101000a81548160ff02191690831515021790555050565b6060600480546114ea906131d3565b80601f0160208091040260200160405190810160405280929190818152602001828054611516906131d3565b80156115635780601f1061153857610100808354040283529160200191611563565b820191906000526020600020905b81548152906001019060200180831161154657829003601f168201915b5050505050905090565b600061158161157a611aef565b8484611cc0565b6001905092915050565b600d60019054906101000a900460ff1681565b6115a6611aef565b73ffffffffffffffffffffffffffffffffffffffff166115c4611418565b73ffffffffffffffffffffffffffffffffffffffff161461161a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611611906130b5565b60405180910390fd5b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516116b79190612ded565b60405180910390a25050565b6116cb611aef565b73ffffffffffffffffffffffffffffffffffffffff166116e9611418565b73ffffffffffffffffffffffffffffffffffffffff161461173f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611736906130b5565b60405180910390fd5b670de0b6b3a76400006103e86005611755610bff565b61175f9190613204565b6117699190613275565b6117739190613275565b8110156117b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ac906134a8565b60405180910390fd5b670de0b6b3a7640000816117c99190613204565b600c8190555050565b600a5481565b60006117e2611aef565b73ffffffffffffffffffffffffffffffffffffffff16611800611418565b73ffffffffffffffffffffffffffffffffffffffff1614611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d906130b5565b60405180910390fd5b620186a06001611864610bff565b61186e9190613204565b6118789190613275565b8210156118ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b19061353a565b60405180910390fd5b6103e860056118c7610bff565b6118d19190613204565b6118db9190613275565b82111561191d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611914906135cc565b60405180910390fd5b81600b8190555060019050919050565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b6119f4611aef565b73ffffffffffffffffffffffffffffffffffffffff16611a12611418565b73ffffffffffffffffffffffffffffffffffffffff1614611a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5f906130b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace9061365e565b60405180910390fd5b611ae08161261f565b50565b60135481565b600c5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5d906136f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcc90613782565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611cb39190612ebe565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2690613814565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d95906138a6565b60405180910390fd5b60008103611db757611db2838360006126e5565b61261a565b600d60009054906101000a900460ff16156121c157611dd4611418565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611e425750611e12611418565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e7b5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611eb5575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ece5750600660149054906101000a900460ff16155b156121c057600d60019054906101000a900460ff16611fc857601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611f885750601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbe90613912565b60405180910390fd5b5b7f000000000000000000000000c5b53f7ce6124e0002164c05a2c5ab15af8ac14673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561206d5750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561211457600a548111156120b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ae906139a4565b60405180910390fd5b600c546120c3836110f7565b826120ce9190613104565b111561210f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210690613a10565b60405180910390fd5b6121bf565b601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166121be57600c54612171836110f7565b8261217c9190613104565b11156121bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b490613a10565b60405180910390fd5b5b5b5b5b60006121cc306110f7565b90506000600b5482101590508080156121f15750600d60029054906101000a900460ff165b801561220a5750600660149054906101000a900460ff16155b801561226157507f000000000000000000000000c5b53f7ce6124e0002164c05a2c5ab15af8ac14673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156122b75750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561230d5750601460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612351576001600660146101000a81548160ff021916908315150217905550612335612964565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124075750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561241157600090505b60008060008315612608577f000000000000000000000000c5b53f7ce6124e0002164c05a2c5ab15af8ac14673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614801561247957506000601154115b156124e7576124a660646124986011548a6129b490919063ffffffff16565b6129ca90919063ffffffff16565b9250601154601354846124b99190613204565b6124c39190613275565b9150601154601254846124d69190613204565b6124e09190613275565b90506125af565b7f000000000000000000000000c5b53f7ce6124e0002164c05a2c5ab15af8ac14673ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614801561254457506000600e54115b156125ae576125716064612563600e548a6129b490919063ffffffff16565b6129ca90919063ffffffff16565b9250600e54601054846125849190613204565b61258e9190613275565b9150600e54600f54846125a19190613204565b6125ab9190613275565b90505b5b60008311156125c4576125c38930856126e5565b5b60008211156125f9576125f8307f000000000000000000000000c5b53f7ce6124e0002164c05a2c5ab15af8ac146846126e5565b5b82876126059190613a30565b96505b6126138989896126e5565b5050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274b90613814565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ba906138a6565b60405180910390fd5b6127ce8383836129e0565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284b90613ad6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128e79190613104565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161294b9190612ebe565b60405180910390a361295e8484846129e5565b50505050565b600061296f306110f7565b90506000810361297f57506129b2565b6014600b5461298e9190613204565b8111156129a7576014600b546129a49190613204565b90505b6129b0816129ea565b505b565b600081836129c29190613204565b905092915050565b600081836129d89190613275565b905092915050565b505050565b505050565b6000600267ffffffffffffffff811115612a0757612a06613af6565b5b604051908082528060200260200182016040528015612a355781602001602082028036833780820191505090505b5090503081600081518110612a4d57612a4c613b25565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612abe57612abd613b25565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612b23307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611af7565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612ba7959493929190613c4d565b600060405180830381600087803b158015612bc157600080fd5b505af1158015612bd5573d6000803e3d6000fd5b505050505050565b600080fd5b6000819050919050565b612bf581612be2565b8114612c0057600080fd5b50565b600081359050612c1281612bec565b92915050565b60008060408385031215612c2f57612c2e612bdd565b5b6000612c3d85828601612c03565b9250506020612c4e85828601612c03565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c8382612c58565b9050919050565b612c9381612c78565b82525050565b6000602082019050612cae6000830184612c8a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612cee578082015181840152602081019050612cd3565b60008484015250505050565b6000601f19601f8301169050919050565b6000612d1682612cb4565b612d208185612cbf565b9350612d30818560208601612cd0565b612d3981612cfa565b840191505092915050565b60006020820190508181036000830152612d5e8184612d0b565b905092915050565b612d6f81612c78565b8114612d7a57600080fd5b50565b600081359050612d8c81612d66565b92915050565b60008060408385031215612da957612da8612bdd565b5b6000612db785828601612d7d565b9250506020612dc885828601612c03565b9150509250929050565b60008115159050919050565b612de781612dd2565b82525050565b6000602082019050612e026000830184612dde565b92915050565b600060208284031215612e1e57612e1d612bdd565b5b6000612e2c84828501612d7d565b91505092915050565b6000819050919050565b6000612e5a612e55612e5084612c58565b612e35565b612c58565b9050919050565b6000612e6c82612e3f565b9050919050565b6000612e7e82612e61565b9050919050565b612e8e81612e73565b82525050565b6000602082019050612ea96000830184612e85565b92915050565b612eb881612be2565b82525050565b6000602082019050612ed36000830184612eaf565b92915050565b600060208284031215612eef57612eee612bdd565b5b6000612efd84828501612c03565b91505092915050565b600080600060608486031215612f1f57612f1e612bdd565b5b6000612f2d86828701612d7d565b9350506020612f3e86828701612d7d565b9250506040612f4f86828701612c03565b9150509250925092565b600060ff82169050919050565b612f6f81612f59565b82525050565b6000602082019050612f8a6000830184612f66565b92915050565b612f9981612dd2565b8114612fa457600080fd5b50565b600081359050612fb681612f90565b92915050565b60008060408385031215612fd357612fd2612bdd565b5b6000612fe185828601612d7d565b9250506020612ff285828601612fa7565b9150509250929050565b60006020828403121561301257613011612bdd565b5b600061302084828501612fa7565b91505092915050565b600080604083850312156130405761303f612bdd565b5b600061304e85828601612d7d565b925050602061305f85828601612d7d565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061309f602083612cbf565b91506130aa82613069565b602082019050919050565b600060208201905081810360008301526130ce81613092565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061310f82612be2565b915061311a83612be2565b9250828201905080821115613132576131316130d5565b5b92915050565b7f4d757374206b656570206665657320617420353025206f72206c657373000000600082015250565b600061316e601d83612cbf565b915061317982613138565b602082019050919050565b6000602082019050818103600083015261319d81613161565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131eb57607f821691505b6020821081036131fe576131fd6131a4565b5b50919050565b600061320f82612be2565b915061321a83612be2565b925082820261322881612be2565b9150828204841483151761323f5761323e6130d5565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061328082612be2565b915061328b83612be2565b92508261329b5761329a613246565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613302602f83612cbf565b915061330d826132a6565b604082019050919050565b60006020820190508181036000830152613331816132f5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613394602883612cbf565b915061339f82613338565b604082019050919050565b600060208201905081810360008301526133c381613387565b9050919050565b7f4d757374206b656570206665657320617420333525206f72206c657373000000600082015250565b6000613400601d83612cbf565b915061340b826133ca565b602082019050919050565b6000602082019050818103600083015261342f816133f3565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613492602483612cbf565b915061349d82613436565b604082019050919050565b600060208201905081810360008301526134c181613485565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613524603583612cbf565b915061352f826134c8565b604082019050919050565b6000602082019050818103600083015261355381613517565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006135b6603483612cbf565b91506135c18261355a565b604082019050919050565b600060208201905081810360008301526135e5816135a9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613648602683612cbf565b9150613653826135ec565b604082019050919050565b600060208201905081810360008301526136778161363b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006136da602483612cbf565b91506136e58261367e565b604082019050919050565b60006020820190508181036000830152613709816136cd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061376c602283612cbf565b915061377782613710565b604082019050919050565b6000602082019050818103600083015261379b8161375f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006137fe602583612cbf565b9150613809826137a2565b604082019050919050565b6000602082019050818103600083015261382d816137f1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613890602383612cbf565b915061389b82613834565b604082019050919050565b600060208201905081810360008301526138bf81613883565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006138fc601683612cbf565b9150613907826138c6565b602082019050919050565b6000602082019050818103600083015261392b816138ef565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061398e603583612cbf565b915061399982613932565b604082019050919050565b600060208201905081810360008301526139bd81613981565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006139fa601383612cbf565b9150613a05826139c4565b602082019050919050565b60006020820190508181036000830152613a29816139ed565b9050919050565b6000613a3b82612be2565b9150613a4683612be2565b9250828203905081811115613a5e57613a5d6130d5565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613ac0602683612cbf565b9150613acb82613a64565b604082019050919050565b60006020820190508181036000830152613aef81613ab3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000613b79613b74613b6f84613b54565b612e35565b612be2565b9050919050565b613b8981613b5e565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613bc481612c78565b82525050565b6000613bd68383613bbb565b60208301905092915050565b6000602082019050919050565b6000613bfa82613b8f565b613c048185613b9a565b9350613c0f83613bab565b8060005b83811015613c40578151613c278882613bca565b9750613c3283613be2565b925050600181019050613c13565b5085935050505092915050565b600060a082019050613c626000830188612eaf565b613c6f6020830187613b80565b8181036040830152613c818186613bef565b9050613c906060830185612c8a565b613c9d6080830184612eaf565b969550505050505056fea2646970667358221220b0e34cc4667da8db5ecf4f39c54f7f9e45316a047cc96b1523e3a1410321bab164736f6c63430008110033
Deployed Bytecode Sourcemap
24709:11157:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30408:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25089:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9565:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11732:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25740:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24787:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10685:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30924:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29171:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12383:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24890:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10527:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25423:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24845:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25270:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31123:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25528:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30089:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25493:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25350:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10856:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2800:103;;;;;;;;;;;;;:::i;:::-;;28475:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29718:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24950:63;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28311:112;;;;;;;;;;;;;:::i;:::-;;2149:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29981:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9784:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11196:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25310:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30734:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29454:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25155:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28666:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25389:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11434:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25197:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25052:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25454;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3058:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25560:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25237:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30408:318;2380:12;:10;:12::i;:::-;2369:23;;:7;:5;:7::i;:::-;:23;;;2361:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30540:7:::1;30527:10;:20;;;;30577:13;30558:16;:32;;;;30630:16;;30617:10;;:29;;;;:::i;:::-;30601:13;:45;;;;30682:2;30665:13;;:19;;30657:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;30408:318:::0;;:::o;25089:23::-;;;;;;;;;;;;;:::o;9565:100::-;9619:13;9652:5;9645:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9565:100;:::o;11732:169::-;11815:4;11832:39;11841:12;:10;:12::i;:::-;11855:7;11864:6;11832:8;:39::i;:::-;11889:4;11882:11;;11732:169;;;;:::o;25740:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;24787:51::-;;;:::o;10685:108::-;10746:7;10773:12;;10766:19;;10685:108;:::o;30924:189::-;2380:12;:10;:12::i;:::-;2369:23;;:7;:5;:7::i;:::-;:23;;;2361:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31060:9:::1;;;;;;;;;;;31029:41;;31046:12;31029:41;;;;;;;;;;;;31093:12;31081:9;;:24;;;;;;;;;;;;;;;;;;30924:189:::0;:::o;29171:275::-;2380:12;:10;:12::i;:::-;2369:23;;:7;:5;:7::i;:::-;:23;;;2361:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29308:4:::1;29300;29295:1;29279:13;:11;:13::i;:::-;:17;;;;:::i;:::-;29278:26;;;;:::i;:::-;29277:35;;;;:::i;:::-;29267:6;:45;;29245:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;29431:6;29421;:17;;;;:::i;:::-;29398:20;:40;;;;29171:275:::0;:::o;12383:492::-;12523:4;12540:36;12550:6;12558:9;12569:6;12540:9;:36::i;:::-;12589:24;12616:11;:19;12628:6;12616:19;;;;;;;;;;;;;;;:33;12636:12;:10;:12::i;:::-;12616:33;;;;;;;;;;;;;;;;12589:60;;12688:6;12668:16;:26;;12660:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12775:57;12784:6;12792:12;:10;:12::i;:::-;12825:6;12806:16;:25;12775:8;:57::i;:::-;12863:4;12856:11;;;12383:492;;;;;:::o;24890:53::-;24936:6;24890:53;:::o;10527:93::-;10585:5;10610:2;10603:9;;10527:93;:::o;25423:24::-;;;;:::o;24845:38::-;;;:::o;25270:33::-;;;;;;;;;;;;;:::o;31123:126::-;31189:4;31213:19;:28;31233:7;31213:28;;;;;;;;;;;;;;;;;;;;;;;;;31206:35;;31123:126;;;:::o;25528:25::-;;;;:::o;30089:311::-;2380:12;:10;:12::i;:::-;2369:23;;:7;:5;:7::i;:::-;:23;;;2361:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30219:7:::1;30207:9;:19;;;;30255:13;30237:15;:31;;;;30306:15;;30294:9;;:27;;;;:::i;:::-;30279:12;:42;;;;30356:2;30340:12;;:18;;30332:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;30089:311:::0;;:::o;25493:28::-;;;;:::o;25350:30::-;;;;;;;;;;;;;:::o;10856:127::-;10930:7;10957:9;:18;10967:7;10957:18;;;;;;;;;;;;;;;;10950:25;;10856:127;;;:::o;2800:103::-;2380:12;:10;:12::i;:::-;2369:23;;:7;:5;:7::i;:::-;:23;;;2361:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2865:30:::1;2892:1;2865:18;:30::i;:::-;2800:103::o:0;28475:121::-;28527:4;2380:12;:10;:12::i;:::-;2369:23;;:7;:5;:7::i;:::-;:23;;;2361:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28561:5:::1;28544:14;;:22;;;;;;;;;;;;;;;;;;28584:4;28577:11;;28475:121:::0;:::o;29718:167::-;2380:12;:10;:12::i;:::-;2369:23;;:7;:5;:7::i;:::-;:23;;;2361:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29873:4:::1;29831:31;:39;29863:6;29831:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;29718:167:::0;;:::o;24950:63::-;;;;;;;;;;;;;:::o;28311:112::-;2380:12;:10;:12::i;:::-;2369:23;;:7;:5;:7::i;:::-;:23;;;2361:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28382:4:::1;28366:13;;:20;;;;;;;;;;;;;;;;;;28411:4;28397:11;;:18;;;;;;;;;;;;;;;;;;28311:112::o:0;2149:87::-;2195:7;2222:6;;;;;;;;;;;2215:13;;2149:87;:::o;29981:100::-;2380:12;:10;:12::i;:::-;2369:23;;:7;:5;:7::i;:::-;:23;;;2361:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30066:7:::1;30052:11;;:21;;;;;;;;;;;;;;;;;;29981:100:::0;:::o;9784:104::-;9840:13;9873:7;9866:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9784:104;:::o;11196:175::-;11282:4;11299:42;11309:12;:10;:12::i;:::-;11323:9;11334:6;11299:9;:42::i;:::-;11359:4;11352:11;;11196:175;;;;:::o;25310:33::-;;;;;;;;;;;;;:::o;30734:182::-;2380:12;:10;:12::i;:::-;2369:23;;:7;:5;:7::i;:::-;:23;;;2361:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30850:8:::1;30819:19;:28;30839:7;30819:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;30890:7;30874:34;;;30899:8;30874:34;;;;;;:::i;:::-;;;;;;;;30734:182:::0;;:::o;29454:256::-;2380:12;:10;:12::i;:::-;2369:23;;:7;:5;:7::i;:::-;:23;;;2361:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29594:4:::1;29586;29581:1;29565:13;:11;:13::i;:::-;:17;;;;:::i;:::-;29564:26;;;;:::i;:::-;29563:35;;;;:::i;:::-;29553:6;:45;;29531:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;29695:6;29685;:17;;;;:::i;:::-;29673:9;:29;;;;29454:256:::0;:::o;25155:35::-;;;;:::o;28666:497::-;28774:4;2380:12;:10;:12::i;:::-;2369:23;;:7;:5;:7::i;:::-;:23;;;2361:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28853:6:::1;28848:1;28832:13;:11;:13::i;:::-;:17;;;;:::i;:::-;28831:28;;;;:::i;:::-;28818:9;:41;;28796:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;29008:4;29003:1;28987:13;:11;:13::i;:::-;:17;;;;:::i;:::-;28986:26;;;;:::i;:::-;28973:9;:39;;28951:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;29124:9;29103:18;:30;;;;29151:4;29144:11;;28666:497:::0;;;:::o;25389:27::-;;;;:::o;11434:151::-;11523:7;11550:11;:18;11562:5;11550:18;;;;;;;;;;;;;;;:27;11569:7;11550:27;;;;;;;;;;;;;;;;11543:34;;11434:151;;;;:::o;25197:33::-;;;;:::o;25052:30::-;;;;;;;;;;;;;:::o;25454:::-;;;;:::o;3058:201::-;2380:12;:10;:12::i;:::-;2369:23;;:7;:5;:7::i;:::-;:23;;;2361:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3167:1:::1;3147:22;;:8;:22;;::::0;3139:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3223:28;3242:8;3223:18;:28::i;:::-;3058:201:::0;:::o;25560:31::-;;;;:::o;25237:24::-;;;;:::o;822:98::-;875:7;902:10;895:17;;822:98;:::o;15224:380::-;15377:1;15360:19;;:5;:19;;;15352:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15458:1;15439:21;;:7;:21;;;15431:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15542:6;15512:11;:18;15524:5;15512:18;;;;;;;;;;;;;;;:27;15531:7;15512:27;;;;;;;;;;;;;;;:36;;;;15580:7;15564:32;;15573:5;15564:32;;;15589:6;15564:32;;;;;;:::i;:::-;;;;;;;;15224:380;;;:::o;31257:3679::-;31405:1;31389:18;;:4;:18;;;31381:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31482:1;31468:16;;:2;:16;;;31460:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;31551:1;31541:6;:11;31537:93;;31569:28;31585:4;31591:2;31595:1;31569:15;:28::i;:::-;31612:7;;31537:93;31646:14;;;;;;;;;;;31642:1430;;;31707:7;:5;:7::i;:::-;31699:15;;:4;:15;;;;:49;;;;;31741:7;:5;:7::i;:::-;31735:13;;:2;:13;;;;31699:49;:86;;;;;31783:1;31769:16;;:2;:16;;;;31699:86;:128;;;;;31820:6;31806:21;;:2;:21;;;;31699:128;:158;;;;;31849:8;;;;;;;;;;;31848:9;31699:158;31677:1384;;;31897:13;;;;;;;;;;;31892:223;;31969:19;:25;31989:4;31969:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;31998:19;:23;32018:2;31998:23;;;;;;;;;;;;;;;;;;;;;;;;;31969:52;31935:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;31892:223;32329:13;32321:21;;:4;:21;;;:82;;;;;32368:31;:35;32400:2;32368:35;;;;;;;;;;;;;;;;;;;;;;;;;32367:36;32321:82;32295:751;;;32490:20;;32480:6;:30;;32446:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;32698:9;;32681:13;32691:2;32681:9;:13::i;:::-;32672:6;:22;;;;:::i;:::-;:35;;32638:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;32295:751;;;32826:31;:35;32858:2;32826:35;;;;;;;;;;;;;;;;;;;;;;;;;32821:225;;32946:9;;32929:13;32939:2;32929:9;:13::i;:::-;32920:6;:22;;;;:::i;:::-;:35;;32886:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;32821:225;32295:751;31677:1384;31642:1430;33084:28;33115:24;33133:4;33115:9;:24::i;:::-;33084:55;;33152:12;33191:18;;33167:20;:42;;33152:57;;33240:7;:35;;;;;33264:11;;;;;;;;;;;33240:35;:61;;;;;33293:8;;;;;;;;;;;33292:9;33240:61;:97;;;;;33324:13;33318:19;;:2;:19;;;33240:97;:140;;;;;33355:19;:25;33375:4;33355:25;;;;;;;;;;;;;;;;;;;;;;;;;33354:26;33240:140;:181;;;;;33398:19;:23;33418:2;33398:23;;;;;;;;;;;;;;;;;;;;;;;;;33397:24;33240:181;33222:313;;;33459:4;33448:8;;:15;;;;;;;;;;;;;;;;;;33480:10;:8;:10::i;:::-;33518:5;33507:8;;:16;;;;;;;;;;;;;;;;;;33222:313;33547:12;33563:8;;;;;;;;;;;33562:9;33547:24;;33673:19;:25;33693:4;33673:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;33702:19;:23;33722:2;33702:23;;;;;;;;;;;;;;;;;;;;;;;;;33673:52;33669:100;;;33752:5;33742:15;;33669:100;33781:12;33808:26;33849:20;33962:7;33958:925;;;34020:13;34014:19;;:2;:19;;;:40;;;;;34053:1;34037:13;;:17;34014:40;34010:583;;;34082:34;34112:3;34082:25;34093:13;;34082:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;34075:41;;34184:13;;34164:16;;34157:4;:23;;;;:::i;:::-;34156:41;;;;:::i;:::-;34135:62;;34253:13;;34239:10;;34232:4;:17;;;;:::i;:::-;34231:35;;;;:::i;:::-;34216:50;;34010:583;;;34336:13;34328:21;;:4;:21;;;:41;;;;;34368:1;34353:12;;:16;34328:41;34324:269;;;34397:33;34426:3;34397:24;34408:12;;34397:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;34390:40;;34497:12;;34478:15;;34471:4;:22;;;;:::i;:::-;34470:39;;;;:::i;:::-;34449:60;;34565:12;;34552:9;;34545:4;:16;;;;:::i;:::-;34544:33;;;;:::i;:::-;34529:48;;34324:269;34010:583;34619:1;34613:4;:7;34609:90;;;34641:42;34657:4;34671;34678;34641:15;:42::i;:::-;34609:90;34738:1;34717:18;:22;34713:128;;;34760:65;34784:4;34791:13;34806:18;34760:15;:65::i;:::-;34713:128;34867:4;34857:14;;;;;:::i;:::-;;;33958:925;34895:33;34911:4;34917:2;34921:6;34895:15;:33::i;:::-;31370:3566;;;;;;31257:3679;;;;:::o;3419:191::-;3493:16;3512:6;;;;;;;;;;;3493:25;;3538:8;3529:6;;:17;;;;;;;;;;;;;;;;;;3593:8;3562:40;;3583:8;3562:40;;;;;;;;;;;;3482:128;3419:191;:::o;13365:733::-;13523:1;13505:20;;:6;:20;;;13497:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13607:1;13586:23;;:9;:23;;;13578:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13662:47;13683:6;13691:9;13702:6;13662:20;:47::i;:::-;13722:21;13746:9;:17;13756:6;13746:17;;;;;;;;;;;;;;;;13722:41;;13799:6;13782:13;:23;;13774:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;13920:6;13904:13;:22;13884:9;:17;13894:6;13884:17;;;;;;;;;;;;;;;:42;;;;13972:6;13948:9;:20;13958:9;13948:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14013:9;13996:35;;14005:6;13996:35;;;14024:6;13996:35;;;;;;:::i;:::-;;;;;;;;14044:46;14064:6;14072:9;14083:6;14044:19;:46::i;:::-;13486:612;13365:733;;;:::o;35522:339::-;35561:23;35587:24;35605:4;35587:9;:24::i;:::-;35561:50;;35645:1;35626:15;:20;35622:59;;35663:7;;;35622:59;35736:2;35715:18;;:23;;;;:::i;:::-;35697:15;:41;35693:115;;;35794:2;35773:18;;:23;;;;:::i;:::-;35755:41;;35693:115;35820:33;35837:15;35820:16;:33::i;:::-;35550:311;35522:339;:::o;20677:98::-;20735:7;20766:1;20762;:5;;;;:::i;:::-;20755:12;;20677:98;;;;:::o;21076:::-;21134:7;21165:1;21161;:5;;;;:::i;:::-;21154:12;;21076:98;;;;:::o;16204:125::-;;;;:::o;16933:124::-;;;;:::o;34944:570::-;35070:21;35108:1;35094:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35070:40;;35139:4;35121;35126:1;35121:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;35165:3;;;;;;;;;;;35155:4;35160:1;35155:7;;;;;;;;:::i;:::-;;;;;;;:13;;;;;;;;;;;35181:62;35198:4;35213:15;35231:11;35181:8;:62::i;:::-;35282:15;:69;;;35366:11;35392:1;35437:4;35456:9;;;;;;;;;;;35480:15;35282:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34999:515;34944:570;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:126::-;1207:7;1247:42;1240:5;1236:54;1225:65;;1170:126;;;:::o;1302:96::-;1339:7;1368:24;1386:5;1368:24;:::i;:::-;1357:35;;1302:96;;;:::o;1404:118::-;1491:24;1509:5;1491:24;:::i;:::-;1486:3;1479:37;1404:118;;:::o;1528:222::-;1621:4;1659:2;1648:9;1644:18;1636:26;;1672:71;1740:1;1729:9;1725:17;1716:6;1672:71;:::i;:::-;1528:222;;;;:::o;1756:99::-;1808:6;1842:5;1836:12;1826:22;;1756:99;;;:::o;1861:169::-;1945:11;1979:6;1974:3;1967:19;2019:4;2014:3;2010:14;1995:29;;1861:169;;;;:::o;2036:246::-;2117:1;2127:113;2141:6;2138:1;2135:13;2127:113;;;2226:1;2221:3;2217:11;2211:18;2207:1;2202:3;2198:11;2191:39;2163:2;2160:1;2156:10;2151:15;;2127:113;;;2274:1;2265:6;2260:3;2256:16;2249:27;2098:184;2036:246;;;:::o;2288:102::-;2329:6;2380:2;2376:7;2371:2;2364:5;2360:14;2356:28;2346:38;;2288:102;;;:::o;2396:377::-;2484:3;2512:39;2545:5;2512:39;:::i;:::-;2567:71;2631:6;2626:3;2567:71;:::i;:::-;2560:78;;2647:65;2705:6;2700:3;2693:4;2686:5;2682:16;2647:65;:::i;:::-;2737:29;2759:6;2737:29;:::i;:::-;2732:3;2728:39;2721:46;;2488:285;2396:377;;;;:::o;2779:313::-;2892:4;2930:2;2919:9;2915:18;2907:26;;2979:9;2973:4;2969:20;2965:1;2954:9;2950:17;2943:47;3007:78;3080:4;3071:6;3007:78;:::i;:::-;2999:86;;2779:313;;;;:::o;3098:122::-;3171:24;3189:5;3171:24;:::i;:::-;3164:5;3161:35;3151:63;;3210:1;3207;3200:12;3151:63;3098:122;:::o;3226:139::-;3272:5;3310:6;3297:20;3288:29;;3326:33;3353:5;3326:33;:::i;:::-;3226:139;;;;:::o;3371:474::-;3439:6;3447;3496:2;3484:9;3475:7;3471:23;3467:32;3464:119;;;3502:79;;:::i;:::-;3464:119;3622:1;3647:53;3692:7;3683:6;3672:9;3668:22;3647:53;:::i;:::-;3637:63;;3593:117;3749:2;3775:53;3820:7;3811:6;3800:9;3796:22;3775:53;:::i;:::-;3765:63;;3720:118;3371:474;;;;;:::o;3851:90::-;3885:7;3928:5;3921:13;3914:21;3903:32;;3851:90;;;:::o;3947:109::-;4028:21;4043:5;4028:21;:::i;:::-;4023:3;4016:34;3947:109;;:::o;4062:210::-;4149:4;4187:2;4176:9;4172:18;4164:26;;4200:65;4262:1;4251:9;4247:17;4238:6;4200:65;:::i;:::-;4062:210;;;;:::o;4278:329::-;4337:6;4386:2;4374:9;4365:7;4361:23;4357:32;4354:119;;;4392:79;;:::i;:::-;4354:119;4512:1;4537:53;4582:7;4573:6;4562:9;4558:22;4537:53;:::i;:::-;4527:63;;4483:117;4278:329;;;;:::o;4613:60::-;4641:3;4662:5;4655:12;;4613:60;;;:::o;4679:142::-;4729:9;4762:53;4780:34;4789:24;4807:5;4789:24;:::i;:::-;4780:34;:::i;:::-;4762:53;:::i;:::-;4749:66;;4679:142;;;:::o;4827:126::-;4877:9;4910:37;4941:5;4910:37;:::i;:::-;4897:50;;4827:126;;;:::o;4959:152::-;5035:9;5068:37;5099:5;5068:37;:::i;:::-;5055:50;;4959:152;;;:::o;5117:183::-;5230:63;5287:5;5230:63;:::i;:::-;5225:3;5218:76;5117:183;;:::o;5306:274::-;5425:4;5463:2;5452:9;5448:18;5440:26;;5476:97;5570:1;5559:9;5555:17;5546:6;5476:97;:::i;:::-;5306:274;;;;:::o;5586:118::-;5673:24;5691:5;5673:24;:::i;:::-;5668:3;5661:37;5586:118;;:::o;5710:222::-;5803:4;5841:2;5830:9;5826:18;5818:26;;5854:71;5922:1;5911:9;5907:17;5898:6;5854:71;:::i;:::-;5710:222;;;;:::o;5938:329::-;5997:6;6046:2;6034:9;6025:7;6021:23;6017:32;6014:119;;;6052:79;;:::i;:::-;6014:119;6172:1;6197:53;6242:7;6233:6;6222:9;6218:22;6197:53;:::i;:::-;6187:63;;6143:117;5938:329;;;;:::o;6273:619::-;6350:6;6358;6366;6415:2;6403:9;6394:7;6390:23;6386:32;6383:119;;;6421:79;;:::i;:::-;6383:119;6541:1;6566:53;6611:7;6602:6;6591:9;6587:22;6566:53;:::i;:::-;6556:63;;6512:117;6668:2;6694:53;6739:7;6730:6;6719:9;6715:22;6694:53;:::i;:::-;6684:63;;6639:118;6796:2;6822:53;6867:7;6858:6;6847:9;6843:22;6822:53;:::i;:::-;6812:63;;6767:118;6273:619;;;;;:::o;6898:86::-;6933:7;6973:4;6966:5;6962:16;6951:27;;6898:86;;;:::o;6990:112::-;7073:22;7089:5;7073:22;:::i;:::-;7068:3;7061:35;6990:112;;:::o;7108:214::-;7197:4;7235:2;7224:9;7220:18;7212:26;;7248:67;7312:1;7301:9;7297:17;7288:6;7248:67;:::i;:::-;7108:214;;;;:::o;7328:116::-;7398:21;7413:5;7398:21;:::i;:::-;7391:5;7388:32;7378:60;;7434:1;7431;7424:12;7378:60;7328:116;:::o;7450:133::-;7493:5;7531:6;7518:20;7509:29;;7547:30;7571:5;7547:30;:::i;:::-;7450:133;;;;:::o;7589:468::-;7654:6;7662;7711:2;7699:9;7690:7;7686:23;7682:32;7679:119;;;7717:79;;:::i;:::-;7679:119;7837:1;7862:53;7907:7;7898:6;7887:9;7883:22;7862:53;:::i;:::-;7852:63;;7808:117;7964:2;7990:50;8032:7;8023:6;8012:9;8008:22;7990:50;:::i;:::-;7980:60;;7935:115;7589:468;;;;;:::o;8063:323::-;8119:6;8168:2;8156:9;8147:7;8143:23;8139:32;8136:119;;;8174:79;;:::i;:::-;8136:119;8294:1;8319:50;8361:7;8352:6;8341:9;8337:22;8319:50;:::i;:::-;8309:60;;8265:114;8063:323;;;;:::o;8392:474::-;8460:6;8468;8517:2;8505:9;8496:7;8492:23;8488:32;8485:119;;;8523:79;;:::i;:::-;8485:119;8643:1;8668:53;8713:7;8704:6;8693:9;8689:22;8668:53;:::i;:::-;8658:63;;8614:117;8770:2;8796:53;8841:7;8832:6;8821:9;8817:22;8796:53;:::i;:::-;8786:63;;8741:118;8392:474;;;;;:::o;8872:182::-;9012:34;9008:1;9000:6;8996:14;8989:58;8872:182;:::o;9060:366::-;9202:3;9223:67;9287:2;9282:3;9223:67;:::i;:::-;9216:74;;9299:93;9388:3;9299:93;:::i;:::-;9417:2;9412:3;9408:12;9401:19;;9060:366;;;:::o;9432:419::-;9598:4;9636:2;9625:9;9621:18;9613:26;;9685:9;9679:4;9675:20;9671:1;9660:9;9656:17;9649:47;9713:131;9839:4;9713:131;:::i;:::-;9705:139;;9432:419;;;:::o;9857:180::-;9905:77;9902:1;9895:88;10002:4;9999:1;9992:15;10026:4;10023:1;10016:15;10043:191;10083:3;10102:20;10120:1;10102:20;:::i;:::-;10097:25;;10136:20;10154:1;10136:20;:::i;:::-;10131:25;;10179:1;10176;10172:9;10165:16;;10200:3;10197:1;10194:10;10191:36;;;10207:18;;:::i;:::-;10191:36;10043:191;;;;:::o;10240:179::-;10380:31;10376:1;10368:6;10364:14;10357:55;10240:179;:::o;10425:366::-;10567:3;10588:67;10652:2;10647:3;10588:67;:::i;:::-;10581:74;;10664:93;10753:3;10664:93;:::i;:::-;10782:2;10777:3;10773:12;10766:19;;10425:366;;;:::o;10797:419::-;10963:4;11001:2;10990:9;10986:18;10978:26;;11050:9;11044:4;11040:20;11036:1;11025:9;11021:17;11014:47;11078:131;11204:4;11078:131;:::i;:::-;11070:139;;10797:419;;;:::o;11222:180::-;11270:77;11267:1;11260:88;11367:4;11364:1;11357:15;11391:4;11388:1;11381:15;11408:320;11452:6;11489:1;11483:4;11479:12;11469:22;;11536:1;11530:4;11526:12;11557:18;11547:81;;11613:4;11605:6;11601:17;11591:27;;11547:81;11675:2;11667:6;11664:14;11644:18;11641:38;11638:84;;11694:18;;:::i;:::-;11638:84;11459:269;11408:320;;;:::o;11734:410::-;11774:7;11797:20;11815:1;11797:20;:::i;:::-;11792:25;;11831:20;11849:1;11831:20;:::i;:::-;11826:25;;11886:1;11883;11879:9;11908:30;11926:11;11908:30;:::i;:::-;11897:41;;12087:1;12078:7;12074:15;12071:1;12068:22;12048:1;12041:9;12021:83;11998:139;;12117:18;;:::i;:::-;11998:139;11782:362;11734:410;;;;:::o;12150:180::-;12198:77;12195:1;12188:88;12295:4;12292:1;12285:15;12319:4;12316:1;12309:15;12336:185;12376:1;12393:20;12411:1;12393:20;:::i;:::-;12388:25;;12427:20;12445:1;12427:20;:::i;:::-;12422:25;;12466:1;12456:35;;12471:18;;:::i;:::-;12456:35;12513:1;12510;12506:9;12501:14;;12336:185;;;;:::o;12527:234::-;12667:34;12663:1;12655:6;12651:14;12644:58;12736:17;12731:2;12723:6;12719:15;12712:42;12527:234;:::o;12767:366::-;12909:3;12930:67;12994:2;12989:3;12930:67;:::i;:::-;12923:74;;13006:93;13095:3;13006:93;:::i;:::-;13124:2;13119:3;13115:12;13108:19;;12767:366;;;:::o;13139:419::-;13305:4;13343:2;13332:9;13328:18;13320:26;;13392:9;13386:4;13382:20;13378:1;13367:9;13363:17;13356:47;13420:131;13546:4;13420:131;:::i;:::-;13412:139;;13139:419;;;:::o;13564:227::-;13704:34;13700:1;13692:6;13688:14;13681:58;13773:10;13768:2;13760:6;13756:15;13749:35;13564:227;:::o;13797:366::-;13939:3;13960:67;14024:2;14019:3;13960:67;:::i;:::-;13953:74;;14036:93;14125:3;14036:93;:::i;:::-;14154:2;14149:3;14145:12;14138:19;;13797:366;;;:::o;14169:419::-;14335:4;14373:2;14362:9;14358:18;14350:26;;14422:9;14416:4;14412:20;14408:1;14397:9;14393:17;14386:47;14450:131;14576:4;14450:131;:::i;:::-;14442:139;;14169:419;;;:::o;14594:179::-;14734:31;14730:1;14722:6;14718:14;14711:55;14594:179;:::o;14779:366::-;14921:3;14942:67;15006:2;15001:3;14942:67;:::i;:::-;14935:74;;15018:93;15107:3;15018:93;:::i;:::-;15136:2;15131:3;15127:12;15120:19;;14779:366;;;:::o;15151:419::-;15317:4;15355:2;15344:9;15340:18;15332:26;;15404:9;15398:4;15394:20;15390:1;15379:9;15375:17;15368:47;15432:131;15558:4;15432:131;:::i;:::-;15424:139;;15151:419;;;:::o;15576:223::-;15716:34;15712:1;15704:6;15700:14;15693:58;15785:6;15780:2;15772:6;15768:15;15761:31;15576:223;:::o;15805:366::-;15947:3;15968:67;16032:2;16027:3;15968:67;:::i;:::-;15961:74;;16044:93;16133:3;16044:93;:::i;:::-;16162:2;16157:3;16153:12;16146:19;;15805:366;;;:::o;16177:419::-;16343:4;16381:2;16370:9;16366:18;16358:26;;16430:9;16424:4;16420:20;16416:1;16405:9;16401:17;16394:47;16458:131;16584:4;16458:131;:::i;:::-;16450:139;;16177:419;;;:::o;16602:240::-;16742:34;16738:1;16730:6;16726:14;16719:58;16811:23;16806:2;16798:6;16794:15;16787:48;16602:240;:::o;16848:366::-;16990:3;17011:67;17075:2;17070:3;17011:67;:::i;:::-;17004:74;;17087:93;17176:3;17087:93;:::i;:::-;17205:2;17200:3;17196:12;17189:19;;16848:366;;;:::o;17220:419::-;17386:4;17424:2;17413:9;17409:18;17401:26;;17473:9;17467:4;17463:20;17459:1;17448:9;17444:17;17437:47;17501:131;17627:4;17501:131;:::i;:::-;17493:139;;17220:419;;;:::o;17645:239::-;17785:34;17781:1;17773:6;17769:14;17762:58;17854:22;17849:2;17841:6;17837:15;17830:47;17645:239;:::o;17890:366::-;18032:3;18053:67;18117:2;18112:3;18053:67;:::i;:::-;18046:74;;18129:93;18218:3;18129:93;:::i;:::-;18247:2;18242:3;18238:12;18231:19;;17890:366;;;:::o;18262:419::-;18428:4;18466:2;18455:9;18451:18;18443:26;;18515:9;18509:4;18505:20;18501:1;18490:9;18486:17;18479:47;18543:131;18669:4;18543:131;:::i;:::-;18535:139;;18262:419;;;:::o;18687:225::-;18827:34;18823:1;18815:6;18811:14;18804:58;18896:8;18891:2;18883:6;18879:15;18872:33;18687:225;:::o;18918:366::-;19060:3;19081:67;19145:2;19140:3;19081:67;:::i;:::-;19074:74;;19157:93;19246:3;19157:93;:::i;:::-;19275:2;19270:3;19266:12;19259:19;;18918:366;;;:::o;19290:419::-;19456:4;19494:2;19483:9;19479:18;19471:26;;19543:9;19537:4;19533:20;19529:1;19518:9;19514:17;19507:47;19571:131;19697:4;19571:131;:::i;:::-;19563:139;;19290:419;;;:::o;19715:223::-;19855:34;19851:1;19843:6;19839:14;19832:58;19924:6;19919:2;19911:6;19907:15;19900:31;19715:223;:::o;19944:366::-;20086:3;20107:67;20171:2;20166:3;20107:67;:::i;:::-;20100:74;;20183:93;20272:3;20183:93;:::i;:::-;20301:2;20296:3;20292:12;20285:19;;19944:366;;;:::o;20316:419::-;20482:4;20520:2;20509:9;20505:18;20497:26;;20569:9;20563:4;20559:20;20555:1;20544:9;20540:17;20533:47;20597:131;20723:4;20597:131;:::i;:::-;20589:139;;20316:419;;;:::o;20741:221::-;20881:34;20877:1;20869:6;20865:14;20858:58;20950:4;20945:2;20937:6;20933:15;20926:29;20741:221;:::o;20968:366::-;21110:3;21131:67;21195:2;21190:3;21131:67;:::i;:::-;21124:74;;21207:93;21296:3;21207:93;:::i;:::-;21325:2;21320:3;21316:12;21309:19;;20968:366;;;:::o;21340:419::-;21506:4;21544:2;21533:9;21529:18;21521:26;;21593:9;21587:4;21583:20;21579:1;21568:9;21564:17;21557:47;21621:131;21747:4;21621:131;:::i;:::-;21613:139;;21340:419;;;:::o;21765:224::-;21905:34;21901:1;21893:6;21889:14;21882:58;21974:7;21969:2;21961:6;21957:15;21950:32;21765:224;:::o;21995:366::-;22137:3;22158:67;22222:2;22217:3;22158:67;:::i;:::-;22151:74;;22234:93;22323:3;22234:93;:::i;:::-;22352:2;22347:3;22343:12;22336:19;;21995:366;;;:::o;22367:419::-;22533:4;22571:2;22560:9;22556:18;22548:26;;22620:9;22614:4;22610:20;22606:1;22595:9;22591:17;22584:47;22648:131;22774:4;22648:131;:::i;:::-;22640:139;;22367:419;;;:::o;22792:222::-;22932:34;22928:1;22920:6;22916:14;22909:58;23001:5;22996:2;22988:6;22984:15;22977:30;22792:222;:::o;23020:366::-;23162:3;23183:67;23247:2;23242:3;23183:67;:::i;:::-;23176:74;;23259:93;23348:3;23259:93;:::i;:::-;23377:2;23372:3;23368:12;23361:19;;23020:366;;;:::o;23392:419::-;23558:4;23596:2;23585:9;23581:18;23573:26;;23645:9;23639:4;23635:20;23631:1;23620:9;23616:17;23609:47;23673:131;23799:4;23673:131;:::i;:::-;23665:139;;23392:419;;;:::o;23817:172::-;23957:24;23953:1;23945:6;23941:14;23934:48;23817:172;:::o;23995:366::-;24137:3;24158:67;24222:2;24217:3;24158:67;:::i;:::-;24151:74;;24234:93;24323:3;24234:93;:::i;:::-;24352:2;24347:3;24343:12;24336:19;;23995:366;;;:::o;24367:419::-;24533:4;24571:2;24560:9;24556:18;24548:26;;24620:9;24614:4;24610:20;24606:1;24595:9;24591:17;24584:47;24648:131;24774:4;24648:131;:::i;:::-;24640:139;;24367:419;;;:::o;24792:240::-;24932:34;24928:1;24920:6;24916:14;24909:58;25001:23;24996:2;24988:6;24984:15;24977:48;24792:240;:::o;25038:366::-;25180:3;25201:67;25265:2;25260:3;25201:67;:::i;:::-;25194:74;;25277:93;25366:3;25277:93;:::i;:::-;25395:2;25390:3;25386:12;25379:19;;25038:366;;;:::o;25410:419::-;25576:4;25614:2;25603:9;25599:18;25591:26;;25663:9;25657:4;25653:20;25649:1;25638:9;25634:17;25627:47;25691:131;25817:4;25691:131;:::i;:::-;25683:139;;25410:419;;;:::o;25835:169::-;25975:21;25971:1;25963:6;25959:14;25952:45;25835:169;:::o;26010:366::-;26152:3;26173:67;26237:2;26232:3;26173:67;:::i;:::-;26166:74;;26249:93;26338:3;26249:93;:::i;:::-;26367:2;26362:3;26358:12;26351:19;;26010:366;;;:::o;26382:419::-;26548:4;26586:2;26575:9;26571:18;26563:26;;26635:9;26629:4;26625:20;26621:1;26610:9;26606:17;26599:47;26663:131;26789:4;26663:131;:::i;:::-;26655:139;;26382:419;;;:::o;26807:194::-;26847:4;26867:20;26885:1;26867:20;:::i;:::-;26862:25;;26901:20;26919:1;26901:20;:::i;:::-;26896:25;;26945:1;26942;26938:9;26930:17;;26969:1;26963:4;26960:11;26957:37;;;26974:18;;:::i;:::-;26957:37;26807:194;;;;:::o;27007:225::-;27147:34;27143:1;27135:6;27131:14;27124:58;27216:8;27211:2;27203:6;27199:15;27192:33;27007:225;:::o;27238:366::-;27380:3;27401:67;27465:2;27460:3;27401:67;:::i;:::-;27394:74;;27477:93;27566:3;27477:93;:::i;:::-;27595:2;27590:3;27586:12;27579:19;;27238:366;;;:::o;27610:419::-;27776:4;27814:2;27803:9;27799:18;27791:26;;27863:9;27857:4;27853:20;27849:1;27838:9;27834:17;27827:47;27891:131;28017:4;27891:131;:::i;:::-;27883:139;;27610:419;;;:::o;28035:180::-;28083:77;28080:1;28073:88;28180:4;28177:1;28170:15;28204:4;28201:1;28194:15;28221:180;28269:77;28266:1;28259:88;28366:4;28363:1;28356:15;28390:4;28387:1;28380:15;28407:85;28452:7;28481:5;28470:16;;28407:85;;;:::o;28498:158::-;28556:9;28589:61;28607:42;28616:32;28642:5;28616:32;:::i;:::-;28607:42;:::i;:::-;28589:61;:::i;:::-;28576:74;;28498:158;;;:::o;28662:147::-;28757:45;28796:5;28757:45;:::i;:::-;28752:3;28745:58;28662:147;;:::o;28815:114::-;28882:6;28916:5;28910:12;28900:22;;28815:114;;;:::o;28935:184::-;29034:11;29068:6;29063:3;29056:19;29108:4;29103:3;29099:14;29084:29;;28935:184;;;;:::o;29125:132::-;29192:4;29215:3;29207:11;;29245:4;29240:3;29236:14;29228:22;;29125:132;;;:::o;29263:108::-;29340:24;29358:5;29340:24;:::i;:::-;29335:3;29328:37;29263:108;;:::o;29377:179::-;29446:10;29467:46;29509:3;29501:6;29467:46;:::i;:::-;29545:4;29540:3;29536:14;29522:28;;29377:179;;;;:::o;29562:113::-;29632:4;29664;29659:3;29655:14;29647:22;;29562:113;;;:::o;29711:732::-;29830:3;29859:54;29907:5;29859:54;:::i;:::-;29929:86;30008:6;30003:3;29929:86;:::i;:::-;29922:93;;30039:56;30089:5;30039:56;:::i;:::-;30118:7;30149:1;30134:284;30159:6;30156:1;30153:13;30134:284;;;30235:6;30229:13;30262:63;30321:3;30306:13;30262:63;:::i;:::-;30255:70;;30348:60;30401:6;30348:60;:::i;:::-;30338:70;;30194:224;30181:1;30178;30174:9;30169:14;;30134:284;;;30138:14;30434:3;30427:10;;29835:608;;;29711:732;;;;:::o;30449:831::-;30712:4;30750:3;30739:9;30735:19;30727:27;;30764:71;30832:1;30821:9;30817:17;30808:6;30764:71;:::i;:::-;30845:80;30921:2;30910:9;30906:18;30897:6;30845:80;:::i;:::-;30972:9;30966:4;30962:20;30957:2;30946:9;30942:18;30935:48;31000:108;31103:4;31094:6;31000:108;:::i;:::-;30992:116;;31118:72;31186:2;31175:9;31171:18;31162:6;31118:72;:::i;:::-;31200:73;31268:3;31257:9;31253:19;31244:6;31200:73;:::i;:::-;30449:831;;;;;;;;:::o
Swarm Source
ipfs://b0e34cc4667da8db5ecf4f39c54f7f9e45316a047cc96b1523e3a1410321bab1
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.