Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
99,000,000 REDOGE
Holders
62
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,513,289.807934182637312548 REDOGEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ReDoge
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-28 */ /** https://t.me/ReDogeETH https://www.ReDoge.info ReDoge - A Sovereign Dog's Rebirth */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); } interface IUniswapV2Router02 is IUniswapV2Router01 { function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } interface IUniswapV2Pair { function sync() external; } /** * @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; } } /** * @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); } } /** * @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 ); } /** * @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); } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require( currentAllowance >= amount, "ERC20: transfer amount exceeds allowance" ); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender] + addedValue ); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require( senderBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // 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; } } } contract ReDoge is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; uint256 public percentForLPBurn = 20; // 20 = .20% bool public lpBurnEnabled = true; uint256 public lpBurnFrequency = 3600 seconds; uint256 public lastLpBurnTime; uint256 public manualBurnFrequency = 30 minutes; uint256 public lastManualLpBurnTime; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public transferDelayEnabled = true; uint256 public buyTotalFees; uint256 public buyBurnFee = 0; uint256 public buyLiquidityFee = 2; uint256 public buyDevFee = 2; uint256 public sellTotalFees; uint256 public sellBurnFee = 0; uint256 public sellLiquidityFee = 2; uint256 public sellDevFee = 2; uint256 public tokensForBurn; uint256 public tokensForLiquidity; uint256 public tokensForDev; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event devWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event AutoNukeLP(); event ManualNukeLP(); event BoughtEarly(address indexed sniper); constructor() ERC20("Reemergent Doge", "REDOGE") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 totalSupply = 99_000_000 * 1e18; // 1 billion total supply maxTransactionAmount = 1000000 * 1e18; // 1.13% from total supply maxWallet = 1000000 * 1e18; // 1.13% from total supply maxWallet swapTokensAtAmount = (totalSupply * 3) / 10000; // 0.03% swap wallet buyTotalFees = buyBurnFee + buyLiquidityFee + buyDevFee; sellTotalFees = sellBurnFee + sellLiquidityFee + sellDevFee; devWallet = address(0xE2A3a856fa2D8Cd520F445E363eac5A77145e471); // set as dev wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _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 {} function startTrading(bool start) external onlyOwner { tradingActive = start; swapEnabled = start; lastLpBurnTime = block.timestamp; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // disable Transfer delay - cannot be reenabled function disableTransferDelay() external onlyOwner returns (bool) { transferDelayEnabled = 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() * 1) / 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 _burnFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { buyBurnFee = _burnFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyBurnFee + buyLiquidityFee + buyDevFee; require(buyTotalFees <= 6, "Must keep fees at 6% or less"); } function updateSellFees( uint256 _burnFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { sellBurnFee = _burnFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellBurnFee + sellLiquidityFee + sellDevFee; require(sellTotalFees <= 6, "Must keep fees at 6% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateDevWallet(address newWallet) external onlyOwner { emit devWalletUpdated(newWallet, devWallet); devWallet = newWallet; } 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. if (transferDelayEnabled) { if ( to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair) ) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } 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 && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } if ( !swapping && automatedMarketMakerPairs[to] && lpBurnEnabled && block.timestamp >= lastLpBurnTime + lpBurnFrequency && !_isExcludedFromFees[from] ) { autoBurnLiquidityPairTokens(); } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForDev += (fees * sellDevFee) / sellTotalFees; tokensForBurn += (fees * sellBurnFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; tokensForBurn += (fees * buyBurnFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable deadAddress, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForDev; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens).sub(tokensForBurn); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForDev; if (tokensForBurn > 0) { super._transfer(address(this), address(0xdead), tokensForBurn); } tokensForLiquidity = 0; tokensForBurn = 0; tokensForDev = 0; (success, ) = address(devWallet).call{value: ethForDev}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } } function setAutoLPBurnSettings( uint256 _frequencyInSeconds, uint256 _percent, bool _Enabled ) external onlyOwner { require( _frequencyInSeconds >= 600, "cannot set buyback more often than every 10 minutes" ); require( _percent <= 1000 && _percent >= 0, "Must set auto LP burn percent between 0% and 10%" ); lpBurnFrequency = _frequencyInSeconds; percentForLPBurn = _percent; lpBurnEnabled = _Enabled; } function autoBurnLiquidityPairTokens() internal returns (bool) { lastLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div( 10000 ); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit AutoNukeLP(); return true; } function manualBurnLiquidityPairTokens(uint256 percent) external onlyOwner returns (bool) { require( block.timestamp > lastManualLpBurnTime + manualBurnFrequency, "Must wait for cooldown to finish" ); require(percent <= 1000, "May not nuke more than 10% of tokens in LP"); lastManualLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit ManualNukeLP(); return true; } }
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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","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":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","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":[{"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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBurnFee","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":"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":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"sellBurnFee","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":"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":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"start","type":"bool"}],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","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":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","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
60a06040526014600b556001600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff02191690831515021790555060006015556002601655600260175560006019556002601a556002601b55348015620000c757600080fd5b506040518060400160405280600f81526020017f5265656d657267656e7420446f676500000000000000000000000000000000008152506040518060400160405280600681526020017f5245444f4745000000000000000000000000000000000000000000000000000081525081600390805190602001906200014c92919062000ade565b5080600490805190602001906200016592919062000ade565b505050620001886200017c6200059e60201b60201c565b620005a660201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001b48160016200066c60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000234573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200025a919062000bf8565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e8919062000bf8565b6040518363ffffffff1660e01b81526004016200030792919062000c3b565b6020604051808303816000875af115801562000327573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034d919062000bf8565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003c2600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200066c60201b60201c565b620003f7600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200075660201b60201c565b60006a51e410c0f93fe543000000905069d3c21bcecceda100000060088190555069d3c21bcecceda1000000600a819055506127106003826200043b919062000ca1565b62000447919062000d31565b60098190555060175460165460155462000462919062000d69565b6200046e919062000d69565b601481905550601b54601a5460195462000489919062000d69565b62000495919062000d69565b60188190555073e2a3a856fa2d8cd520f445e363eac5a77145e471600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200051262000504620007f760201b60201c565b60016200082160201b60201c565b620005253060016200082160201b60201c565b6200053a61dead60016200082160201b60201c565b6200055c6200054e620007f760201b60201c565b60016200066c60201b60201c565b6200056f3060016200066c60201b60201c565b6200058461dead60016200066c60201b60201c565b6200059633826200095b60201b60201c565b505062000f88565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200067c6200059e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006a2620007f760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620006fb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006f29062000e27565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008316200059e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000857620007f760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008b0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008a79062000e27565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200094f919062000e66565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009ce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009c59062000ed3565b60405180910390fd5b620009e26000838362000ad460201b60201c565b8060026000828254620009f6919062000d69565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a4d919062000d69565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ab4919062000f06565b60405180910390a362000ad06000838362000ad960201b60201c565b5050565b505050565b505050565b82805462000aec9062000f52565b90600052602060002090601f01602090048101928262000b10576000855562000b5c565b82601f1062000b2b57805160ff191683800117855562000b5c565b8280016001018555821562000b5c579182015b8281111562000b5b57825182559160200191906001019062000b3e565b5b50905062000b6b919062000b6f565b5090565b5b8082111562000b8a57600081600090555060010162000b70565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bc08262000b93565b9050919050565b62000bd28162000bb3565b811462000bde57600080fd5b50565b60008151905062000bf28162000bc7565b92915050565b60006020828403121562000c115762000c1062000b8e565b5b600062000c218482850162000be1565b91505092915050565b62000c358162000bb3565b82525050565b600060408201905062000c52600083018562000c2a565b62000c61602083018462000c2a565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000cae8262000c68565b915062000cbb8362000c68565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000cf75762000cf662000c72565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d3e8262000c68565b915062000d4b8362000c68565b92508262000d5e5762000d5d62000d02565b5b828204905092915050565b600062000d768262000c68565b915062000d838362000c68565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000dbb5762000dba62000c72565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e0f60208362000dc6565b915062000e1c8262000dd7565b602082019050919050565b6000602082019050818103600083015262000e428162000e00565b9050919050565b60008115159050919050565b62000e608162000e49565b82525050565b600060208201905062000e7d600083018462000e55565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ebb601f8362000dc6565b915062000ec88262000e83565b602082019050919050565b6000602082019050818103600083015262000eee8162000eac565b9050919050565b62000f008162000c68565b82525050565b600060208201905062000f1d600083018462000ef5565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f6b57607f821691505b6020821081141562000f825762000f8162000f23565b5b50919050565b6080516159ec62000fce60003960008181610f3801528181612c6601528181613f83015281816140640152818161408b01528181614127015261414e01526159ec6000f3fe60806040526004361061039b5760003560e01c80638ea5220f116101dc578063c17b5b8c11610102578063e2f45605116100a0578063f2fde38b1161006f578063f2fde38b14610dab578063f637434214610dd4578063f8b45b0514610dff578063fe72b27a14610e2a576103a2565b8063e2f4560514610cff578063e71dc3f514610d2a578063e884f26014610d55578063f11a24d314610d80576103a2565b8063c8c8ebe4116100dc578063c8c8ebe414610c2f578063d257b34f14610c5a578063d85ba06314610c97578063dd62ed3e14610cc2576103a2565b8063c17b5b8c14610bb2578063c18bc19514610bdb578063c876d0b914610c04576103a2565b8063a0d82dc51161017a578063adb873bd11610149578063adb873bd14610af6578063b62496f514610b21578063bbc0c74214610b5e578063c024666814610b89576103a2565b8063a0d82dc514610a26578063a457c2d714610a51578063a4c82a0014610a8e578063a9059cbb14610ab9576103a2565b80639a7a23d6116101b65780639a7a23d61461097c5780639c3b4fdc146109a55780639ec22c0e146109d05780639fccce32146109fb576103a2565b80638ea5220f146108fd578063924de9b71461092857806395d89b4114610951576103a2565b8063313ce567116102c15780636ddd17131161025f578063751039fc1161022e578063751039fc146108555780637571336a146108805780638095d564146108a95780638da5cb5b146108d2576103a2565b80636ddd1713146107ad57806370a08231146107d8578063715018a614610815578063730c18881461082c576103a2565b80634a62bb651161029b5780634a62bb65146106f15780634fbee1931461071c57806360e65bb8146107595780636a486a8e14610782576103a2565b8063313ce5671461065e578063395093511461068957806349bd5a5e146106c6576103a2565b8063199ffc721161033957806323b872dd1161030857806323b872dd146105a057806327c8f835146105dd5780632c3e486c146106085780632e82f1a014610633576103a2565b8063199ffc72146104f65780631a8145bb146105215780631d7778561461054c578063203e727e14610577576103a2565b80631694505e116103755780631694505e1461044c57806318160ddd146104775780631816467f146104a2578063184c16c5146104cb576103a2565b806306fdde03146103a7578063095ea7b3146103d257806310d5de531461040f576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610e67565b6040516103c99190614296565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f49190614351565b610ef9565b60405161040691906143ac565b60405180910390f35b34801561041b57600080fd5b50610436600480360381019061043191906143c7565b610f17565b60405161044391906143ac565b60405180910390f35b34801561045857600080fd5b50610461610f36565b60405161046e9190614453565b60405180910390f35b34801561048357600080fd5b5061048c610f5a565b604051610499919061447d565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c491906143c7565b610f64565b005b3480156104d757600080fd5b506104e06110a0565b6040516104ed919061447d565b60405180910390f35b34801561050257600080fd5b5061050b6110a6565b604051610518919061447d565b60405180910390f35b34801561052d57600080fd5b506105366110ac565b604051610543919061447d565b60405180910390f35b34801561055857600080fd5b506105616110b2565b60405161056e919061447d565b60405180910390f35b34801561058357600080fd5b5061059e60048036038101906105999190614498565b6110b8565b005b3480156105ac57600080fd5b506105c760048036038101906105c291906144c5565b6111c7565b6040516105d491906143ac565b60405180910390f35b3480156105e957600080fd5b506105f26112bf565b6040516105ff9190614527565b60405180910390f35b34801561061457600080fd5b5061061d6112c5565b60405161062a919061447d565b60405180910390f35b34801561063f57600080fd5b506106486112cb565b60405161065591906143ac565b60405180910390f35b34801561066a57600080fd5b506106736112de565b604051610680919061455e565b60405180910390f35b34801561069557600080fd5b506106b060048036038101906106ab9190614351565b6112e7565b6040516106bd91906143ac565b60405180910390f35b3480156106d257600080fd5b506106db611393565b6040516106e89190614527565b60405180910390f35b3480156106fd57600080fd5b506107066113b9565b60405161071391906143ac565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e91906143c7565b6113cc565b60405161075091906143ac565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b91906145a5565b611422565b005b34801561078e57600080fd5b506107976114dc565b6040516107a4919061447d565b60405180910390f35b3480156107b957600080fd5b506107c26114e2565b6040516107cf91906143ac565b60405180910390f35b3480156107e457600080fd5b506107ff60048036038101906107fa91906143c7565b6114f5565b60405161080c919061447d565b60405180910390f35b34801561082157600080fd5b5061082a61153d565b005b34801561083857600080fd5b50610853600480360381019061084e91906145d2565b6115c5565b005b34801561086157600080fd5b5061086a611705565b60405161087791906143ac565b60405180910390f35b34801561088c57600080fd5b506108a760048036038101906108a29190614625565b6117a5565b005b3480156108b557600080fd5b506108d060048036038101906108cb9190614665565b61187c565b005b3480156108de57600080fd5b506108e761197b565b6040516108f49190614527565b60405180910390f35b34801561090957600080fd5b506109126119a5565b60405161091f9190614527565b60405180910390f35b34801561093457600080fd5b5061094f600480360381019061094a91906145a5565b6119cb565b005b34801561095d57600080fd5b50610966611a64565b6040516109739190614296565b60405180910390f35b34801561098857600080fd5b506109a3600480360381019061099e9190614625565b611af6565b005b3480156109b157600080fd5b506109ba611c11565b6040516109c7919061447d565b60405180910390f35b3480156109dc57600080fd5b506109e5611c17565b6040516109f2919061447d565b60405180910390f35b348015610a0757600080fd5b50610a10611c1d565b604051610a1d919061447d565b60405180910390f35b348015610a3257600080fd5b50610a3b611c23565b604051610a48919061447d565b60405180910390f35b348015610a5d57600080fd5b50610a786004803603810190610a739190614351565b611c29565b604051610a8591906143ac565b60405180910390f35b348015610a9a57600080fd5b50610aa3611d14565b604051610ab0919061447d565b60405180910390f35b348015610ac557600080fd5b50610ae06004803603810190610adb9190614351565b611d1a565b604051610aed91906143ac565b60405180910390f35b348015610b0257600080fd5b50610b0b611d38565b604051610b18919061447d565b60405180910390f35b348015610b2d57600080fd5b50610b486004803603810190610b4391906143c7565b611d3e565b604051610b5591906143ac565b60405180910390f35b348015610b6a57600080fd5b50610b73611d5e565b604051610b8091906143ac565b60405180910390f35b348015610b9557600080fd5b50610bb06004803603810190610bab9190614625565b611d71565b005b348015610bbe57600080fd5b50610bd96004803603810190610bd49190614665565b611e96565b005b348015610be757600080fd5b50610c026004803603810190610bfd9190614498565b611f95565b005b348015610c1057600080fd5b50610c196120a4565b604051610c2691906143ac565b60405180910390f35b348015610c3b57600080fd5b50610c446120b7565b604051610c51919061447d565b60405180910390f35b348015610c6657600080fd5b50610c816004803603810190610c7c9190614498565b6120bd565b604051610c8e91906143ac565b60405180910390f35b348015610ca357600080fd5b50610cac612212565b604051610cb9919061447d565b60405180910390f35b348015610cce57600080fd5b50610ce96004803603810190610ce491906146b8565b612218565b604051610cf6919061447d565b60405180910390f35b348015610d0b57600080fd5b50610d1461229f565b604051610d21919061447d565b60405180910390f35b348015610d3657600080fd5b50610d3f6122a5565b604051610d4c919061447d565b60405180910390f35b348015610d6157600080fd5b50610d6a6122ab565b604051610d7791906143ac565b60405180910390f35b348015610d8c57600080fd5b50610d9561234b565b604051610da2919061447d565b60405180910390f35b348015610db757600080fd5b50610dd26004803603810190610dcd91906143c7565b612351565b005b348015610de057600080fd5b50610de9612449565b604051610df6919061447d565b60405180910390f35b348015610e0b57600080fd5b50610e1461244f565b604051610e21919061447d565b60405180910390f35b348015610e3657600080fd5b50610e516004803603810190610e4c9190614498565b612455565b604051610e5e91906143ac565b60405180910390f35b606060038054610e7690614727565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea290614727565b8015610eef5780601f10610ec457610100808354040283529160200191610eef565b820191906000526020600020905b815481529060010190602001808311610ed257829003601f168201915b5050505050905090565b6000610f0d610f06612733565b848461273b565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610f6c612733565b73ffffffffffffffffffffffffffffffffffffffff16610f8a61197b565b73ffffffffffffffffffffffffffffffffffffffff1614610fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd7906147a5565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6110c0612733565b73ffffffffffffffffffffffffffffffffffffffff166110de61197b565b73ffffffffffffffffffffffffffffffffffffffff1614611134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112b906147a5565b60405180910390fd5b670de0b6b3a76400006103e8600161114a610f5a565b61115491906147f4565b61115e919061487d565b611168919061487d565b8110156111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a190614920565b60405180910390fd5b670de0b6b3a7640000816111be91906147f4565b60088190555050565b60006111d4848484612906565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061121f612733565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561129f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611296906149b2565b60405180910390fd5b6112b3856112ab612733565b85840361273b565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006113896112f4612733565b848460016000611302612733565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461138491906149d2565b61273b565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61142a612733565b73ffffffffffffffffffffffffffffffffffffffff1661144861197b565b73ffffffffffffffffffffffffffffffffffffffff161461149e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611495906147a5565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555080601160026101000a81548160ff02191690831515021790555042600e8190555050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611545612733565b73ffffffffffffffffffffffffffffffffffffffff1661156361197b565b73ffffffffffffffffffffffffffffffffffffffff16146115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b0906147a5565b60405180910390fd5b6115c360006136a0565b565b6115cd612733565b73ffffffffffffffffffffffffffffffffffffffff166115eb61197b565b73ffffffffffffffffffffffffffffffffffffffff1614611641576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611638906147a5565b60405180910390fd5b610258831015611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d90614a9a565b60405180910390fd5b6103e88211158015611699575060008210155b6116d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cf90614b2c565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b600061170f612733565b73ffffffffffffffffffffffffffffffffffffffff1661172d61197b565b73ffffffffffffffffffffffffffffffffffffffff1614611783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177a906147a5565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6117ad612733565b73ffffffffffffffffffffffffffffffffffffffff166117cb61197b565b73ffffffffffffffffffffffffffffffffffffffff1614611821576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611818906147a5565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611884612733565b73ffffffffffffffffffffffffffffffffffffffff166118a261197b565b73ffffffffffffffffffffffffffffffffffffffff16146118f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ef906147a5565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461192091906149d2565b61192a91906149d2565b60148190555060066014541115611976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196d90614b98565b60405180910390fd5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6119d3612733565b73ffffffffffffffffffffffffffffffffffffffff166119f161197b565b73ffffffffffffffffffffffffffffffffffffffff1614611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e906147a5565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611a7390614727565b80601f0160208091040260200160405190810160405280929190818152602001828054611a9f90614727565b8015611aec5780601f10611ac157610100808354040283529160200191611aec565b820191906000526020600020905b815481529060010190602001808311611acf57829003601f168201915b5050505050905090565b611afe612733565b73ffffffffffffffffffffffffffffffffffffffff16611b1c61197b565b73ffffffffffffffffffffffffffffffffffffffff1614611b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b69906147a5565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfa90614c2a565b60405180910390fd5b611c0d8282613766565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611c38612733565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cec90614cbc565b60405180910390fd5b611d09611d00612733565b8585840361273b565b600191505092915050565b600e5481565b6000611d2e611d27612733565b8484612906565b6001905092915050565b60195481565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611d79612733565b73ffffffffffffffffffffffffffffffffffffffff16611d9761197b565b73ffffffffffffffffffffffffffffffffffffffff1614611ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de4906147a5565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611e8a91906143ac565b60405180910390a25050565b611e9e612733565b73ffffffffffffffffffffffffffffffffffffffff16611ebc61197b565b73ffffffffffffffffffffffffffffffffffffffff1614611f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f09906147a5565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a54601954611f3a91906149d2565b611f4491906149d2565b60188190555060066018541115611f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8790614d28565b60405180910390fd5b505050565b611f9d612733565b73ffffffffffffffffffffffffffffffffffffffff16611fbb61197b565b73ffffffffffffffffffffffffffffffffffffffff1614612011576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612008906147a5565b60405180910390fd5b670de0b6b3a76400006103e86005612027610f5a565b61203191906147f4565b61203b919061487d565b612045919061487d565b811015612087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207e90614dba565b60405180910390fd5b670de0b6b3a76400008161209b91906147f4565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006120c7612733565b73ffffffffffffffffffffffffffffffffffffffff166120e561197b565b73ffffffffffffffffffffffffffffffffffffffff161461213b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612132906147a5565b60405180910390fd5b620186a06001612149610f5a565b61215391906147f4565b61215d919061487d565b82101561219f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219690614e4c565b60405180910390fd5b6103e860056121ac610f5a565b6121b691906147f4565b6121c0919061487d565b821115612202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f990614ede565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60155481565b60006122b5612733565b73ffffffffffffffffffffffffffffffffffffffff166122d361197b565b73ffffffffffffffffffffffffffffffffffffffff1614612329576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612320906147a5565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b612359612733565b73ffffffffffffffffffffffffffffffffffffffff1661237761197b565b73ffffffffffffffffffffffffffffffffffffffff16146123cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c4906147a5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561243d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243490614f70565b60405180910390fd5b612446816136a0565b50565b601a5481565b600a5481565b600061245f612733565b73ffffffffffffffffffffffffffffffffffffffff1661247d61197b565b73ffffffffffffffffffffffffffffffffffffffff16146124d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ca906147a5565b60405180910390fd5b600f546010546124e391906149d2565b4211612524576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251b90614fdc565b60405180910390fd5b6103e8821115612569576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125609061506e565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a08231600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b81526004016125cd9190614527565b602060405180830381865afa1580156125ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061260e91906150a3565b9050600061263961271061262b868561380790919063ffffffff16565b61381d90919063ffffffff16565b9050600081111561267457612673600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661dead83613833565b5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156126e357600080fd5b505af11580156126f7573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a290615142565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561281b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612812906151d4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128f9919061447d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296d90615266565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129dd906152f8565b60405180910390fd5b6000811415612a00576129fb83836000613833565b61369b565b601160009054906101000a900460ff16156130c557612a1d61197b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a8b5750612a5b61197b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ac45750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612afe575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b175750600660149054906101000a900460ff16155b156130c457601160019054906101000a900460ff16612c1157601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612bd15750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0790615364565b60405180910390fd5b5b601360009054906101000a900460ff1615612ddb57612c2e61197b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612cb557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d0f5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612dda5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8c9061541c565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e7e5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f2557600854811115612ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ebf906154ae565b60405180910390fd5b600a54612ed4836114f5565b82612edf91906149d2565b1115612f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f179061551a565b60405180910390fd5b6130c3565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612fc85750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561301757600854811115613012576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613009906155ac565b60405180910390fd5b6130c2565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166130c157600a54613074836114f5565b8261307f91906149d2565b11156130c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130b79061551a565b60405180910390fd5b5b5b5b5b5b60006130d0306114f5565b9050600060095482101590508080156130f55750601160029054906101000a900460ff165b801561310e5750600660149054906101000a900460ff16155b80156131645750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131ba5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132105750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613254576001600660146101000a81548160ff021916908315150217905550613238613ab4565b6000600660146101000a81548160ff0219169083151502179055505b600660149054906101000a900460ff161580156132ba5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156132d25750600c60009054906101000a900460ff165b80156132ed5750600d54600e546132e991906149d2565b4210155b80156133435750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561335257613350613cf8565b505b6000600660149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806134085750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561341257600090505b6000811561368b57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561347557506000601854115b15613542576134a260646134946018548861380790919063ffffffff16565b61381d90919063ffffffff16565b9050601854601a54826134b591906147f4565b6134bf919061487d565b601d60008282546134d091906149d2565b92505081905550601854601b54826134e891906147f4565b6134f2919061487d565b601e600082825461350391906149d2565b925050819055506018546019548261351b91906147f4565b613525919061487d565b601c600082825461353691906149d2565b92505081905550613667565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561359d57506000601454115b15613666576135ca60646135bc6014548861380790919063ffffffff16565b61381d90919063ffffffff16565b9050601454601654826135dd91906147f4565b6135e7919061487d565b601d60008282546135f891906149d2565b925050819055506014546017548261361091906147f4565b61361a919061487d565b601e600082825461362b91906149d2565b925050819055506014546015548261364391906147f4565b61364d919061487d565b601c600082825461365e91906149d2565b925050819055505b5b600081111561367c5761367b873083613833565b5b808561368891906155cc565b94505b613696878787613833565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000818361381591906147f4565b905092915050565b6000818361382b919061487d565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156138a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161389a90615266565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161390a906152f8565b60405180910390fd5b61391e838383613ec4565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156139a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161399b90615672565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a3791906149d2565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613a9b919061447d565b60405180910390a3613aae848484613ec9565b50505050565b6000613abf306114f5565b90506000601e54601d54613ad391906149d2565b9050600080831480613ae55750600082145b15613af257505050613cf6565b6014600954613b0191906147f4565b831115613b1a576014600954613b1791906147f4565b92505b6000600283601d5486613b2d91906147f4565b613b37919061487d565b613b41919061487d565b90506000613b6c601c54613b5e8488613ece90919063ffffffff16565b613ece90919063ffffffff16565b90506000479050613b7c82613ee4565b6000613b918247613ece90919063ffffffff16565b90506000613bbc87613bae601e548561380790919063ffffffff16565b61381d90919063ffffffff16565b905060008183613bcc91906155cc565b90506000601c541115613be957613be83061dead601c54613833565b5b6000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613c47906156c3565b60006040518083038185875af1925050503d8060008114613c84576040519150601f19603f3d011682016040523d82523d6000602084013e613c89565b606091505b505080975050600086118015613c9f5750600081115b15613cec57613cae8682614121565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601d54604051613ce3939291906156d8565b60405180910390a15b5050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a08231600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401613d5e9190614527565b602060405180830381865afa158015613d7b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613d9f91906150a3565b90506000613dcc612710613dbe600b548561380790919063ffffffff16565b61381d90919063ffffffff16565b90506000811115613e0757613e06600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661dead83613833565b5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613e7657600080fd5b505af1158015613e8a573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613edc91906155cc565b905092915050565b6000600267ffffffffffffffff811115613f0157613f0061570f565b5b604051908082528060200260200182016040528015613f2f5781602001602082028036833780820191505090505b5090503081600081518110613f4757613f4661573e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613fec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906140109190615782565b816001815181106140245761402361573e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614089307f00000000000000000000000000000000000000000000000000000000000000008461273b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016140eb9594939291906158a8565b600060405180830381600087803b15801561410557600080fd5b505af1158015614119573d6000803e3d6000fd5b505050505050565b61414c307f00000000000000000000000000000000000000000000000000000000000000008461273b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016141b396959493929190615902565b60606040518083038185885af11580156141d1573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906141f69190615963565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561423757808201518184015260208101905061421c565b83811115614246576000848401525b50505050565b6000601f19601f8301169050919050565b6000614268826141fd565b6142728185614208565b9350614282818560208601614219565b61428b8161424c565b840191505092915050565b600060208201905081810360008301526142b0818461425d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006142e8826142bd565b9050919050565b6142f8816142dd565b811461430357600080fd5b50565b600081359050614315816142ef565b92915050565b6000819050919050565b61432e8161431b565b811461433957600080fd5b50565b60008135905061434b81614325565b92915050565b60008060408385031215614368576143676142b8565b5b600061437685828601614306565b92505060206143878582860161433c565b9150509250929050565b60008115159050919050565b6143a681614391565b82525050565b60006020820190506143c1600083018461439d565b92915050565b6000602082840312156143dd576143dc6142b8565b5b60006143eb84828501614306565b91505092915050565b6000819050919050565b600061441961441461440f846142bd565b6143f4565b6142bd565b9050919050565b600061442b826143fe565b9050919050565b600061443d82614420565b9050919050565b61444d81614432565b82525050565b60006020820190506144686000830184614444565b92915050565b6144778161431b565b82525050565b6000602082019050614492600083018461446e565b92915050565b6000602082840312156144ae576144ad6142b8565b5b60006144bc8482850161433c565b91505092915050565b6000806000606084860312156144de576144dd6142b8565b5b60006144ec86828701614306565b93505060206144fd86828701614306565b925050604061450e8682870161433c565b9150509250925092565b614521816142dd565b82525050565b600060208201905061453c6000830184614518565b92915050565b600060ff82169050919050565b61455881614542565b82525050565b6000602082019050614573600083018461454f565b92915050565b61458281614391565b811461458d57600080fd5b50565b60008135905061459f81614579565b92915050565b6000602082840312156145bb576145ba6142b8565b5b60006145c984828501614590565b91505092915050565b6000806000606084860312156145eb576145ea6142b8565b5b60006145f98682870161433c565b935050602061460a8682870161433c565b925050604061461b86828701614590565b9150509250925092565b6000806040838503121561463c5761463b6142b8565b5b600061464a85828601614306565b925050602061465b85828601614590565b9150509250929050565b60008060006060848603121561467e5761467d6142b8565b5b600061468c8682870161433c565b935050602061469d8682870161433c565b92505060406146ae8682870161433c565b9150509250925092565b600080604083850312156146cf576146ce6142b8565b5b60006146dd85828601614306565b92505060206146ee85828601614306565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061473f57607f821691505b60208210811415614753576147526146f8565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061478f602083614208565b915061479a82614759565b602082019050919050565b600060208201905081810360008301526147be81614782565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006147ff8261431b565b915061480a8361431b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614843576148426147c5565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006148888261431b565b91506148938361431b565b9250826148a3576148a261484e565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061490a602f83614208565b9150614915826148ae565b604082019050919050565b60006020820190508181036000830152614939816148fd565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061499c602883614208565b91506149a782614940565b604082019050919050565b600060208201905081810360008301526149cb8161498f565b9050919050565b60006149dd8261431b565b91506149e88361431b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a1d57614a1c6147c5565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614a84603383614208565b9150614a8f82614a28565b604082019050919050565b60006020820190508181036000830152614ab381614a77565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614b16603083614208565b9150614b2182614aba565b604082019050919050565b60006020820190508181036000830152614b4581614b09565b9050919050565b7f4d757374206b6565702066656573206174203625206f72206c65737300000000600082015250565b6000614b82601c83614208565b9150614b8d82614b4c565b602082019050919050565b60006020820190508181036000830152614bb181614b75565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614c14603983614208565b9150614c1f82614bb8565b604082019050919050565b60006020820190508181036000830152614c4381614c07565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614ca6602583614208565b9150614cb182614c4a565b604082019050919050565b60006020820190508181036000830152614cd581614c99565b9050919050565b7f4d757374206b656570206665657320617420203625206f72206c657373000000600082015250565b6000614d12601d83614208565b9150614d1d82614cdc565b602082019050919050565b60006020820190508181036000830152614d4181614d05565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614da4602483614208565b9150614daf82614d48565b604082019050919050565b60006020820190508181036000830152614dd381614d97565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614e36603583614208565b9150614e4182614dda565b604082019050919050565b60006020820190508181036000830152614e6581614e29565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614ec8603483614208565b9150614ed382614e6c565b604082019050919050565b60006020820190508181036000830152614ef781614ebb565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614f5a602683614208565b9150614f6582614efe565b604082019050919050565b60006020820190508181036000830152614f8981614f4d565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614fc6602083614208565b9150614fd182614f90565b602082019050919050565b60006020820190508181036000830152614ff581614fb9565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615058602a83614208565b915061506382614ffc565b604082019050919050565b600060208201905081810360008301526150878161504b565b9050919050565b60008151905061509d81614325565b92915050565b6000602082840312156150b9576150b86142b8565b5b60006150c78482850161508e565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061512c602483614208565b9150615137826150d0565b604082019050919050565b6000602082019050818103600083015261515b8161511f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006151be602283614208565b91506151c982615162565b604082019050919050565b600060208201905081810360008301526151ed816151b1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615250602583614208565b915061525b826151f4565b604082019050919050565b6000602082019050818103600083015261527f81615243565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006152e2602383614208565b91506152ed82615286565b604082019050919050565b60006020820190508181036000830152615311816152d5565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061534e601683614208565b915061535982615318565b602082019050919050565b6000602082019050818103600083015261537d81615341565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000615406604983614208565b915061541182615384565b606082019050919050565b60006020820190508181036000830152615435816153f9565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615498603583614208565b91506154a38261543c565b604082019050919050565b600060208201905081810360008301526154c78161548b565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615504601383614208565b915061550f826154ce565b602082019050919050565b60006020820190508181036000830152615533816154f7565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615596603683614208565b91506155a18261553a565b604082019050919050565b600060208201905081810360008301526155c581615589565b9050919050565b60006155d78261431b565b91506155e28361431b565b9250828210156155f5576155f46147c5565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061565c602683614208565b915061566782615600565b604082019050919050565b6000602082019050818103600083015261568b8161564f565b9050919050565b600081905092915050565b50565b60006156ad600083615692565b91506156b88261569d565b600082019050919050565b60006156ce826156a0565b9150819050919050565b60006060820190506156ed600083018661446e565b6156fa602083018561446e565b615707604083018461446e565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061577c816142ef565b92915050565b600060208284031215615798576157976142b8565b5b60006157a68482850161576d565b91505092915050565b6000819050919050565b60006157d46157cf6157ca846157af565b6143f4565b61431b565b9050919050565b6157e4816157b9565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61581f816142dd565b82525050565b60006158318383615816565b60208301905092915050565b6000602082019050919050565b6000615855826157ea565b61585f81856157f5565b935061586a83615806565b8060005b8381101561589b5781516158828882615825565b975061588d8361583d565b92505060018101905061586e565b5085935050505092915050565b600060a0820190506158bd600083018861446e565b6158ca60208301876157db565b81810360408301526158dc818661584a565b90506158eb6060830185614518565b6158f8608083018461446e565b9695505050505050565b600060c0820190506159176000830189614518565b615924602083018861446e565b61593160408301876157db565b61593e60608301866157db565b61594b6080830185614518565b61595860a083018461446e565b979650505050505050565b60008060006060848603121561597c5761597b6142b8565b5b600061598a8682870161508e565b935050602061599b8682870161508e565b92505060406159ac8682870161508e565b915050925092509256fea264697066735822122075e2ba6660043acdff10cff29a38412f6101915413f022605d936da0c5ccc34864736f6c634300080a0033
Deployed Bytecode
0x60806040526004361061039b5760003560e01c80638ea5220f116101dc578063c17b5b8c11610102578063e2f45605116100a0578063f2fde38b1161006f578063f2fde38b14610dab578063f637434214610dd4578063f8b45b0514610dff578063fe72b27a14610e2a576103a2565b8063e2f4560514610cff578063e71dc3f514610d2a578063e884f26014610d55578063f11a24d314610d80576103a2565b8063c8c8ebe4116100dc578063c8c8ebe414610c2f578063d257b34f14610c5a578063d85ba06314610c97578063dd62ed3e14610cc2576103a2565b8063c17b5b8c14610bb2578063c18bc19514610bdb578063c876d0b914610c04576103a2565b8063a0d82dc51161017a578063adb873bd11610149578063adb873bd14610af6578063b62496f514610b21578063bbc0c74214610b5e578063c024666814610b89576103a2565b8063a0d82dc514610a26578063a457c2d714610a51578063a4c82a0014610a8e578063a9059cbb14610ab9576103a2565b80639a7a23d6116101b65780639a7a23d61461097c5780639c3b4fdc146109a55780639ec22c0e146109d05780639fccce32146109fb576103a2565b80638ea5220f146108fd578063924de9b71461092857806395d89b4114610951576103a2565b8063313ce567116102c15780636ddd17131161025f578063751039fc1161022e578063751039fc146108555780637571336a146108805780638095d564146108a95780638da5cb5b146108d2576103a2565b80636ddd1713146107ad57806370a08231146107d8578063715018a614610815578063730c18881461082c576103a2565b80634a62bb651161029b5780634a62bb65146106f15780634fbee1931461071c57806360e65bb8146107595780636a486a8e14610782576103a2565b8063313ce5671461065e578063395093511461068957806349bd5a5e146106c6576103a2565b8063199ffc721161033957806323b872dd1161030857806323b872dd146105a057806327c8f835146105dd5780632c3e486c146106085780632e82f1a014610633576103a2565b8063199ffc72146104f65780631a8145bb146105215780631d7778561461054c578063203e727e14610577576103a2565b80631694505e116103755780631694505e1461044c57806318160ddd146104775780631816467f146104a2578063184c16c5146104cb576103a2565b806306fdde03146103a7578063095ea7b3146103d257806310d5de531461040f576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610e67565b6040516103c99190614296565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f49190614351565b610ef9565b60405161040691906143ac565b60405180910390f35b34801561041b57600080fd5b50610436600480360381019061043191906143c7565b610f17565b60405161044391906143ac565b60405180910390f35b34801561045857600080fd5b50610461610f36565b60405161046e9190614453565b60405180910390f35b34801561048357600080fd5b5061048c610f5a565b604051610499919061447d565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c491906143c7565b610f64565b005b3480156104d757600080fd5b506104e06110a0565b6040516104ed919061447d565b60405180910390f35b34801561050257600080fd5b5061050b6110a6565b604051610518919061447d565b60405180910390f35b34801561052d57600080fd5b506105366110ac565b604051610543919061447d565b60405180910390f35b34801561055857600080fd5b506105616110b2565b60405161056e919061447d565b60405180910390f35b34801561058357600080fd5b5061059e60048036038101906105999190614498565b6110b8565b005b3480156105ac57600080fd5b506105c760048036038101906105c291906144c5565b6111c7565b6040516105d491906143ac565b60405180910390f35b3480156105e957600080fd5b506105f26112bf565b6040516105ff9190614527565b60405180910390f35b34801561061457600080fd5b5061061d6112c5565b60405161062a919061447d565b60405180910390f35b34801561063f57600080fd5b506106486112cb565b60405161065591906143ac565b60405180910390f35b34801561066a57600080fd5b506106736112de565b604051610680919061455e565b60405180910390f35b34801561069557600080fd5b506106b060048036038101906106ab9190614351565b6112e7565b6040516106bd91906143ac565b60405180910390f35b3480156106d257600080fd5b506106db611393565b6040516106e89190614527565b60405180910390f35b3480156106fd57600080fd5b506107066113b9565b60405161071391906143ac565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e91906143c7565b6113cc565b60405161075091906143ac565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b91906145a5565b611422565b005b34801561078e57600080fd5b506107976114dc565b6040516107a4919061447d565b60405180910390f35b3480156107b957600080fd5b506107c26114e2565b6040516107cf91906143ac565b60405180910390f35b3480156107e457600080fd5b506107ff60048036038101906107fa91906143c7565b6114f5565b60405161080c919061447d565b60405180910390f35b34801561082157600080fd5b5061082a61153d565b005b34801561083857600080fd5b50610853600480360381019061084e91906145d2565b6115c5565b005b34801561086157600080fd5b5061086a611705565b60405161087791906143ac565b60405180910390f35b34801561088c57600080fd5b506108a760048036038101906108a29190614625565b6117a5565b005b3480156108b557600080fd5b506108d060048036038101906108cb9190614665565b61187c565b005b3480156108de57600080fd5b506108e761197b565b6040516108f49190614527565b60405180910390f35b34801561090957600080fd5b506109126119a5565b60405161091f9190614527565b60405180910390f35b34801561093457600080fd5b5061094f600480360381019061094a91906145a5565b6119cb565b005b34801561095d57600080fd5b50610966611a64565b6040516109739190614296565b60405180910390f35b34801561098857600080fd5b506109a3600480360381019061099e9190614625565b611af6565b005b3480156109b157600080fd5b506109ba611c11565b6040516109c7919061447d565b60405180910390f35b3480156109dc57600080fd5b506109e5611c17565b6040516109f2919061447d565b60405180910390f35b348015610a0757600080fd5b50610a10611c1d565b604051610a1d919061447d565b60405180910390f35b348015610a3257600080fd5b50610a3b611c23565b604051610a48919061447d565b60405180910390f35b348015610a5d57600080fd5b50610a786004803603810190610a739190614351565b611c29565b604051610a8591906143ac565b60405180910390f35b348015610a9a57600080fd5b50610aa3611d14565b604051610ab0919061447d565b60405180910390f35b348015610ac557600080fd5b50610ae06004803603810190610adb9190614351565b611d1a565b604051610aed91906143ac565b60405180910390f35b348015610b0257600080fd5b50610b0b611d38565b604051610b18919061447d565b60405180910390f35b348015610b2d57600080fd5b50610b486004803603810190610b4391906143c7565b611d3e565b604051610b5591906143ac565b60405180910390f35b348015610b6a57600080fd5b50610b73611d5e565b604051610b8091906143ac565b60405180910390f35b348015610b9557600080fd5b50610bb06004803603810190610bab9190614625565b611d71565b005b348015610bbe57600080fd5b50610bd96004803603810190610bd49190614665565b611e96565b005b348015610be757600080fd5b50610c026004803603810190610bfd9190614498565b611f95565b005b348015610c1057600080fd5b50610c196120a4565b604051610c2691906143ac565b60405180910390f35b348015610c3b57600080fd5b50610c446120b7565b604051610c51919061447d565b60405180910390f35b348015610c6657600080fd5b50610c816004803603810190610c7c9190614498565b6120bd565b604051610c8e91906143ac565b60405180910390f35b348015610ca357600080fd5b50610cac612212565b604051610cb9919061447d565b60405180910390f35b348015610cce57600080fd5b50610ce96004803603810190610ce491906146b8565b612218565b604051610cf6919061447d565b60405180910390f35b348015610d0b57600080fd5b50610d1461229f565b604051610d21919061447d565b60405180910390f35b348015610d3657600080fd5b50610d3f6122a5565b604051610d4c919061447d565b60405180910390f35b348015610d6157600080fd5b50610d6a6122ab565b604051610d7791906143ac565b60405180910390f35b348015610d8c57600080fd5b50610d9561234b565b604051610da2919061447d565b60405180910390f35b348015610db757600080fd5b50610dd26004803603810190610dcd91906143c7565b612351565b005b348015610de057600080fd5b50610de9612449565b604051610df6919061447d565b60405180910390f35b348015610e0b57600080fd5b50610e1461244f565b604051610e21919061447d565b60405180910390f35b348015610e3657600080fd5b50610e516004803603810190610e4c9190614498565b612455565b604051610e5e91906143ac565b60405180910390f35b606060038054610e7690614727565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea290614727565b8015610eef5780601f10610ec457610100808354040283529160200191610eef565b820191906000526020600020905b815481529060010190602001808311610ed257829003601f168201915b5050505050905090565b6000610f0d610f06612733565b848461273b565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610f6c612733565b73ffffffffffffffffffffffffffffffffffffffff16610f8a61197b565b73ffffffffffffffffffffffffffffffffffffffff1614610fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd7906147a5565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6110c0612733565b73ffffffffffffffffffffffffffffffffffffffff166110de61197b565b73ffffffffffffffffffffffffffffffffffffffff1614611134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112b906147a5565b60405180910390fd5b670de0b6b3a76400006103e8600161114a610f5a565b61115491906147f4565b61115e919061487d565b611168919061487d565b8110156111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a190614920565b60405180910390fd5b670de0b6b3a7640000816111be91906147f4565b60088190555050565b60006111d4848484612906565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061121f612733565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561129f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611296906149b2565b60405180910390fd5b6112b3856112ab612733565b85840361273b565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006113896112f4612733565b848460016000611302612733565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461138491906149d2565b61273b565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61142a612733565b73ffffffffffffffffffffffffffffffffffffffff1661144861197b565b73ffffffffffffffffffffffffffffffffffffffff161461149e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611495906147a5565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555080601160026101000a81548160ff02191690831515021790555042600e8190555050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611545612733565b73ffffffffffffffffffffffffffffffffffffffff1661156361197b565b73ffffffffffffffffffffffffffffffffffffffff16146115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b0906147a5565b60405180910390fd5b6115c360006136a0565b565b6115cd612733565b73ffffffffffffffffffffffffffffffffffffffff166115eb61197b565b73ffffffffffffffffffffffffffffffffffffffff1614611641576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611638906147a5565b60405180910390fd5b610258831015611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d90614a9a565b60405180910390fd5b6103e88211158015611699575060008210155b6116d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cf90614b2c565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b600061170f612733565b73ffffffffffffffffffffffffffffffffffffffff1661172d61197b565b73ffffffffffffffffffffffffffffffffffffffff1614611783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177a906147a5565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6117ad612733565b73ffffffffffffffffffffffffffffffffffffffff166117cb61197b565b73ffffffffffffffffffffffffffffffffffffffff1614611821576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611818906147a5565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611884612733565b73ffffffffffffffffffffffffffffffffffffffff166118a261197b565b73ffffffffffffffffffffffffffffffffffffffff16146118f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ef906147a5565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461192091906149d2565b61192a91906149d2565b60148190555060066014541115611976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196d90614b98565b60405180910390fd5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6119d3612733565b73ffffffffffffffffffffffffffffffffffffffff166119f161197b565b73ffffffffffffffffffffffffffffffffffffffff1614611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e906147a5565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611a7390614727565b80601f0160208091040260200160405190810160405280929190818152602001828054611a9f90614727565b8015611aec5780601f10611ac157610100808354040283529160200191611aec565b820191906000526020600020905b815481529060010190602001808311611acf57829003601f168201915b5050505050905090565b611afe612733565b73ffffffffffffffffffffffffffffffffffffffff16611b1c61197b565b73ffffffffffffffffffffffffffffffffffffffff1614611b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b69906147a5565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfa90614c2a565b60405180910390fd5b611c0d8282613766565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611c38612733565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cec90614cbc565b60405180910390fd5b611d09611d00612733565b8585840361273b565b600191505092915050565b600e5481565b6000611d2e611d27612733565b8484612906565b6001905092915050565b60195481565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611d79612733565b73ffffffffffffffffffffffffffffffffffffffff16611d9761197b565b73ffffffffffffffffffffffffffffffffffffffff1614611ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de4906147a5565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611e8a91906143ac565b60405180910390a25050565b611e9e612733565b73ffffffffffffffffffffffffffffffffffffffff16611ebc61197b565b73ffffffffffffffffffffffffffffffffffffffff1614611f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f09906147a5565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a54601954611f3a91906149d2565b611f4491906149d2565b60188190555060066018541115611f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8790614d28565b60405180910390fd5b505050565b611f9d612733565b73ffffffffffffffffffffffffffffffffffffffff16611fbb61197b565b73ffffffffffffffffffffffffffffffffffffffff1614612011576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612008906147a5565b60405180910390fd5b670de0b6b3a76400006103e86005612027610f5a565b61203191906147f4565b61203b919061487d565b612045919061487d565b811015612087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207e90614dba565b60405180910390fd5b670de0b6b3a76400008161209b91906147f4565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006120c7612733565b73ffffffffffffffffffffffffffffffffffffffff166120e561197b565b73ffffffffffffffffffffffffffffffffffffffff161461213b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612132906147a5565b60405180910390fd5b620186a06001612149610f5a565b61215391906147f4565b61215d919061487d565b82101561219f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219690614e4c565b60405180910390fd5b6103e860056121ac610f5a565b6121b691906147f4565b6121c0919061487d565b821115612202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f990614ede565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60155481565b60006122b5612733565b73ffffffffffffffffffffffffffffffffffffffff166122d361197b565b73ffffffffffffffffffffffffffffffffffffffff1614612329576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612320906147a5565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b612359612733565b73ffffffffffffffffffffffffffffffffffffffff1661237761197b565b73ffffffffffffffffffffffffffffffffffffffff16146123cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c4906147a5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561243d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243490614f70565b60405180910390fd5b612446816136a0565b50565b601a5481565b600a5481565b600061245f612733565b73ffffffffffffffffffffffffffffffffffffffff1661247d61197b565b73ffffffffffffffffffffffffffffffffffffffff16146124d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ca906147a5565b60405180910390fd5b600f546010546124e391906149d2565b4211612524576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251b90614fdc565b60405180910390fd5b6103e8821115612569576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125609061506e565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a08231600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b81526004016125cd9190614527565b602060405180830381865afa1580156125ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061260e91906150a3565b9050600061263961271061262b868561380790919063ffffffff16565b61381d90919063ffffffff16565b9050600081111561267457612673600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661dead83613833565b5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156126e357600080fd5b505af11580156126f7573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a290615142565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561281b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612812906151d4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128f9919061447d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296d90615266565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129dd906152f8565b60405180910390fd5b6000811415612a00576129fb83836000613833565b61369b565b601160009054906101000a900460ff16156130c557612a1d61197b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a8b5750612a5b61197b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ac45750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612afe575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b175750600660149054906101000a900460ff16155b156130c457601160019054906101000a900460ff16612c1157601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612bd15750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0790615364565b60405180910390fd5b5b601360009054906101000a900460ff1615612ddb57612c2e61197b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612cb557507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d0f5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612dda5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8c9061541c565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e7e5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f2557600854811115612ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ebf906154ae565b60405180910390fd5b600a54612ed4836114f5565b82612edf91906149d2565b1115612f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f179061551a565b60405180910390fd5b6130c3565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612fc85750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561301757600854811115613012576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613009906155ac565b60405180910390fd5b6130c2565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166130c157600a54613074836114f5565b8261307f91906149d2565b11156130c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130b79061551a565b60405180910390fd5b5b5b5b5b5b60006130d0306114f5565b9050600060095482101590508080156130f55750601160029054906101000a900460ff165b801561310e5750600660149054906101000a900460ff16155b80156131645750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131ba5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132105750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613254576001600660146101000a81548160ff021916908315150217905550613238613ab4565b6000600660146101000a81548160ff0219169083151502179055505b600660149054906101000a900460ff161580156132ba5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156132d25750600c60009054906101000a900460ff165b80156132ed5750600d54600e546132e991906149d2565b4210155b80156133435750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561335257613350613cf8565b505b6000600660149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806134085750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561341257600090505b6000811561368b57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561347557506000601854115b15613542576134a260646134946018548861380790919063ffffffff16565b61381d90919063ffffffff16565b9050601854601a54826134b591906147f4565b6134bf919061487d565b601d60008282546134d091906149d2565b92505081905550601854601b54826134e891906147f4565b6134f2919061487d565b601e600082825461350391906149d2565b925050819055506018546019548261351b91906147f4565b613525919061487d565b601c600082825461353691906149d2565b92505081905550613667565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561359d57506000601454115b15613666576135ca60646135bc6014548861380790919063ffffffff16565b61381d90919063ffffffff16565b9050601454601654826135dd91906147f4565b6135e7919061487d565b601d60008282546135f891906149d2565b925050819055506014546017548261361091906147f4565b61361a919061487d565b601e600082825461362b91906149d2565b925050819055506014546015548261364391906147f4565b61364d919061487d565b601c600082825461365e91906149d2565b925050819055505b5b600081111561367c5761367b873083613833565b5b808561368891906155cc565b94505b613696878787613833565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000818361381591906147f4565b905092915050565b6000818361382b919061487d565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156138a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161389a90615266565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161390a906152f8565b60405180910390fd5b61391e838383613ec4565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156139a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161399b90615672565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a3791906149d2565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613a9b919061447d565b60405180910390a3613aae848484613ec9565b50505050565b6000613abf306114f5565b90506000601e54601d54613ad391906149d2565b9050600080831480613ae55750600082145b15613af257505050613cf6565b6014600954613b0191906147f4565b831115613b1a576014600954613b1791906147f4565b92505b6000600283601d5486613b2d91906147f4565b613b37919061487d565b613b41919061487d565b90506000613b6c601c54613b5e8488613ece90919063ffffffff16565b613ece90919063ffffffff16565b90506000479050613b7c82613ee4565b6000613b918247613ece90919063ffffffff16565b90506000613bbc87613bae601e548561380790919063ffffffff16565b61381d90919063ffffffff16565b905060008183613bcc91906155cc565b90506000601c541115613be957613be83061dead601c54613833565b5b6000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613c47906156c3565b60006040518083038185875af1925050503d8060008114613c84576040519150601f19603f3d011682016040523d82523d6000602084013e613c89565b606091505b505080975050600086118015613c9f5750600081115b15613cec57613cae8682614121565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601d54604051613ce3939291906156d8565b60405180910390a15b5050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a08231600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401613d5e9190614527565b602060405180830381865afa158015613d7b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613d9f91906150a3565b90506000613dcc612710613dbe600b548561380790919063ffffffff16565b61381d90919063ffffffff16565b90506000811115613e0757613e06600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661dead83613833565b5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613e7657600080fd5b505af1158015613e8a573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613edc91906155cc565b905092915050565b6000600267ffffffffffffffff811115613f0157613f0061570f565b5b604051908082528060200260200182016040528015613f2f5781602001602082028036833780820191505090505b5090503081600081518110613f4757613f4661573e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613fec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906140109190615782565b816001815181106140245761402361573e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614089307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461273b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016140eb9594939291906158a8565b600060405180830381600087803b15801561410557600080fd5b505af1158015614119573d6000803e3d6000fd5b505050505050565b61414c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461273b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016141b396959493929190615902565b60606040518083038185885af11580156141d1573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906141f69190615963565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561423757808201518184015260208101905061421c565b83811115614246576000848401525b50505050565b6000601f19601f8301169050919050565b6000614268826141fd565b6142728185614208565b9350614282818560208601614219565b61428b8161424c565b840191505092915050565b600060208201905081810360008301526142b0818461425d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006142e8826142bd565b9050919050565b6142f8816142dd565b811461430357600080fd5b50565b600081359050614315816142ef565b92915050565b6000819050919050565b61432e8161431b565b811461433957600080fd5b50565b60008135905061434b81614325565b92915050565b60008060408385031215614368576143676142b8565b5b600061437685828601614306565b92505060206143878582860161433c565b9150509250929050565b60008115159050919050565b6143a681614391565b82525050565b60006020820190506143c1600083018461439d565b92915050565b6000602082840312156143dd576143dc6142b8565b5b60006143eb84828501614306565b91505092915050565b6000819050919050565b600061441961441461440f846142bd565b6143f4565b6142bd565b9050919050565b600061442b826143fe565b9050919050565b600061443d82614420565b9050919050565b61444d81614432565b82525050565b60006020820190506144686000830184614444565b92915050565b6144778161431b565b82525050565b6000602082019050614492600083018461446e565b92915050565b6000602082840312156144ae576144ad6142b8565b5b60006144bc8482850161433c565b91505092915050565b6000806000606084860312156144de576144dd6142b8565b5b60006144ec86828701614306565b93505060206144fd86828701614306565b925050604061450e8682870161433c565b9150509250925092565b614521816142dd565b82525050565b600060208201905061453c6000830184614518565b92915050565b600060ff82169050919050565b61455881614542565b82525050565b6000602082019050614573600083018461454f565b92915050565b61458281614391565b811461458d57600080fd5b50565b60008135905061459f81614579565b92915050565b6000602082840312156145bb576145ba6142b8565b5b60006145c984828501614590565b91505092915050565b6000806000606084860312156145eb576145ea6142b8565b5b60006145f98682870161433c565b935050602061460a8682870161433c565b925050604061461b86828701614590565b9150509250925092565b6000806040838503121561463c5761463b6142b8565b5b600061464a85828601614306565b925050602061465b85828601614590565b9150509250929050565b60008060006060848603121561467e5761467d6142b8565b5b600061468c8682870161433c565b935050602061469d8682870161433c565b92505060406146ae8682870161433c565b9150509250925092565b600080604083850312156146cf576146ce6142b8565b5b60006146dd85828601614306565b92505060206146ee85828601614306565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061473f57607f821691505b60208210811415614753576147526146f8565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061478f602083614208565b915061479a82614759565b602082019050919050565b600060208201905081810360008301526147be81614782565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006147ff8261431b565b915061480a8361431b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614843576148426147c5565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006148888261431b565b91506148938361431b565b9250826148a3576148a261484e565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061490a602f83614208565b9150614915826148ae565b604082019050919050565b60006020820190508181036000830152614939816148fd565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061499c602883614208565b91506149a782614940565b604082019050919050565b600060208201905081810360008301526149cb8161498f565b9050919050565b60006149dd8261431b565b91506149e88361431b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a1d57614a1c6147c5565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614a84603383614208565b9150614a8f82614a28565b604082019050919050565b60006020820190508181036000830152614ab381614a77565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614b16603083614208565b9150614b2182614aba565b604082019050919050565b60006020820190508181036000830152614b4581614b09565b9050919050565b7f4d757374206b6565702066656573206174203625206f72206c65737300000000600082015250565b6000614b82601c83614208565b9150614b8d82614b4c565b602082019050919050565b60006020820190508181036000830152614bb181614b75565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614c14603983614208565b9150614c1f82614bb8565b604082019050919050565b60006020820190508181036000830152614c4381614c07565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614ca6602583614208565b9150614cb182614c4a565b604082019050919050565b60006020820190508181036000830152614cd581614c99565b9050919050565b7f4d757374206b656570206665657320617420203625206f72206c657373000000600082015250565b6000614d12601d83614208565b9150614d1d82614cdc565b602082019050919050565b60006020820190508181036000830152614d4181614d05565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614da4602483614208565b9150614daf82614d48565b604082019050919050565b60006020820190508181036000830152614dd381614d97565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614e36603583614208565b9150614e4182614dda565b604082019050919050565b60006020820190508181036000830152614e6581614e29565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614ec8603483614208565b9150614ed382614e6c565b604082019050919050565b60006020820190508181036000830152614ef781614ebb565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614f5a602683614208565b9150614f6582614efe565b604082019050919050565b60006020820190508181036000830152614f8981614f4d565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614fc6602083614208565b9150614fd182614f90565b602082019050919050565b60006020820190508181036000830152614ff581614fb9565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615058602a83614208565b915061506382614ffc565b604082019050919050565b600060208201905081810360008301526150878161504b565b9050919050565b60008151905061509d81614325565b92915050565b6000602082840312156150b9576150b86142b8565b5b60006150c78482850161508e565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061512c602483614208565b9150615137826150d0565b604082019050919050565b6000602082019050818103600083015261515b8161511f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006151be602283614208565b91506151c982615162565b604082019050919050565b600060208201905081810360008301526151ed816151b1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615250602583614208565b915061525b826151f4565b604082019050919050565b6000602082019050818103600083015261527f81615243565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006152e2602383614208565b91506152ed82615286565b604082019050919050565b60006020820190508181036000830152615311816152d5565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061534e601683614208565b915061535982615318565b602082019050919050565b6000602082019050818103600083015261537d81615341565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000615406604983614208565b915061541182615384565b606082019050919050565b60006020820190508181036000830152615435816153f9565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615498603583614208565b91506154a38261543c565b604082019050919050565b600060208201905081810360008301526154c78161548b565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615504601383614208565b915061550f826154ce565b602082019050919050565b60006020820190508181036000830152615533816154f7565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615596603683614208565b91506155a18261553a565b604082019050919050565b600060208201905081810360008301526155c581615589565b9050919050565b60006155d78261431b565b91506155e28361431b565b9250828210156155f5576155f46147c5565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061565c602683614208565b915061566782615600565b604082019050919050565b6000602082019050818103600083015261568b8161564f565b9050919050565b600081905092915050565b50565b60006156ad600083615692565b91506156b88261569d565b600082019050919050565b60006156ce826156a0565b9150819050919050565b60006060820190506156ed600083018661446e565b6156fa602083018561446e565b615707604083018461446e565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061577c816142ef565b92915050565b600060208284031215615798576157976142b8565b5b60006157a68482850161576d565b91505092915050565b6000819050919050565b60006157d46157cf6157ca846157af565b6143f4565b61431b565b9050919050565b6157e4816157b9565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61581f816142dd565b82525050565b60006158318383615816565b60208301905092915050565b6000602082019050919050565b6000615855826157ea565b61585f81856157f5565b935061586a83615806565b8060005b8381101561589b5781516158828882615825565b975061588d8361583d565b92505060018101905061586e565b5085935050505092915050565b600060a0820190506158bd600083018861446e565b6158ca60208301876157db565b81810360408301526158dc818661584a565b90506158eb6060830185614518565b6158f8608083018461446e565b9695505050505050565b600060c0820190506159176000830189614518565b615924602083018861446e565b61593160408301876157db565b61593e60608301866157db565b61594b6080830185614518565b61595860a083018461446e565b979650505050505050565b60008060006060848603121561597c5761597b6142b8565b5b600061598a8682870161508e565b935050602061599b8682870161508e565b92505060406159ac8682870161508e565b915050925092509256fea264697066735822122075e2ba6660043acdff10cff29a38412f6101915413f022605d936da0c5ccc34864736f6c634300080a0033
Deployed Bytecode Sourcemap
27133:18217:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9729:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12037:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28730:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27209:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10849:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34897:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27727:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27542:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28514:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28479:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32493:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12729:529;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27302:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27637:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27598:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10691:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13667:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27267:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27825:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35062:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31383:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28323:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27905:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11020:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3525:103;;;;;;;;;;;;;:::i;:::-;;42932:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31601:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33040:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33411:381;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2874:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27394:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33303:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9948:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34389:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28285:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27781:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28554:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28440:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14467:482;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27689:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11410:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28359:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28951:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27865:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34199:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33800:391;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32776:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28123:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27427:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31988:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28171:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11689:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27469:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28206:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31783:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28243:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3783:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28397:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27509:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44291:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9729:100;9783:13;9816:5;9809:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9729:100;:::o;12037:210::-;12156:4;12178:39;12187:12;:10;:12::i;:::-;12201:7;12210:6;12178:8;:39::i;:::-;12235:4;12228:11;;12037:210;;;;:::o;28730:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;27209:51::-;;;:::o;10849:108::-;10910:7;10937:12;;10930:19;;10849:108;:::o;34897:157::-;3105:12;:10;:12::i;:::-;3094:23;;:7;:5;:7::i;:::-;:23;;;3086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35004:9:::1;;;;;;;;;;;34976:38;;34993:9;34976:38;;;;;;;;;;;;35037:9;35025;;:21;;;;;;;;;;;;;;;;;;34897:157:::0;:::o;27727:47::-;;;;:::o;27542:36::-;;;;:::o;28514:33::-;;;;:::o;28479:28::-;;;;:::o;32493:275::-;3105:12;:10;:12::i;:::-;3094:23;;:7;:5;:7::i;:::-;:23;;;3086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32630:4:::1;32622;32617:1;32601:13;:11;:13::i;:::-;:17;;;;:::i;:::-;32600:26;;;;:::i;:::-;32599:35;;;;:::i;:::-;32589:6;:45;;32567:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;32753:6;32743;:17;;;;:::i;:::-;32720:20;:40;;;;32493:275:::0;:::o;12729:529::-;12869:4;12886:36;12896:6;12904:9;12915:6;12886:9;:36::i;:::-;12935:24;12962:11;:19;12974:6;12962:19;;;;;;;;;;;;;;;:33;12982:12;:10;:12::i;:::-;12962:33;;;;;;;;;;;;;;;;12935:60;;13048:6;13028:16;:26;;13006:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;13158:57;13167:6;13175:12;:10;:12::i;:::-;13208:6;13189:16;:25;13158:8;:57::i;:::-;13246:4;13239:11;;;12729:529;;;;;:::o;27302:53::-;27348:6;27302:53;:::o;27637:45::-;;;;:::o;27598:32::-;;;;;;;;;;;;;:::o;10691:93::-;10749:5;10774:2;10767:9;;10691:93;:::o;13667:297::-;13782:4;13804:130;13827:12;:10;:12::i;:::-;13854:7;13913:10;13876:11;:25;13888:12;:10;:12::i;:::-;13876:25;;;;;;;;;;;;;;;:34;13902:7;13876:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13804:8;:130::i;:::-;13952:4;13945:11;;13667:297;;;;:::o;27267:28::-;;;;;;;;;;;;;:::o;27825:33::-;;;;;;;;;;;;;:::o;35062:126::-;35128:4;35152:19;:28;35172:7;35152:28;;;;;;;;;;;;;;;;;;;;;;;;;35145:35;;35062:126;;;:::o;31383:166::-;3105:12;:10;:12::i;:::-;3094:23;;:7;:5;:7::i;:::-;:23;;;3086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31463:5:::1;31447:13;;:21;;;;;;;;;;;;;;;;;;31493:5;31479:11;;:19;;;;;;;;;;;;;;;;;;31526:15;31509:14;:32;;;;31383:166:::0;:::o;28323:29::-;;;;:::o;27905:31::-;;;;;;;;;;;;;:::o;11020:177::-;11139:7;11171:9;:18;11181:7;11171:18;;;;;;;;;;;;;;;;11164:25;;11020:177;;;:::o;3525:103::-;3105:12;:10;:12::i;:::-;3094:23;;:7;:5;:7::i;:::-;:23;;;3086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3590:30:::1;3617:1;3590:18;:30::i;:::-;3525:103::o:0;42932:555::-;3105:12;:10;:12::i;:::-;3094:23;;:7;:5;:7::i;:::-;:23;;;3086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43134:3:::1;43111:19;:26;;43089:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;43261:4;43249:8;:16;;:33;;;;;43281:1;43269:8;:13;;43249:33;43227:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;43387:19;43369:15;:37;;;;43436:8;43417:16;:27;;;;43471:8;43455:13;;:24;;;;;;;;;;;;;;;;;;42932:555:::0;;;:::o;31601:121::-;31653:4;3105:12;:10;:12::i;:::-;3094:23;;:7;:5;:7::i;:::-;:23;;;3086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31687:5:::1;31670:14;;:22;;;;;;;;;;;;;;;;;;31710:4;31703:11;;31601:121:::0;:::o;33040:167::-;3105:12;:10;:12::i;:::-;3094:23;;:7;:5;:7::i;:::-;:23;;;3086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33195:4:::1;33153:31;:39;33185:6;33153:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;33040:167:::0;;:::o;33411:381::-;3105:12;:10;:12::i;:::-;3094:23;;:7;:5;:7::i;:::-;:23;;;3086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33569:8:::1;33556:10;:21;;;;33606:13;33588:15;:31;;;;33642:7;33630:9;:19;;;;33706:9;;33688:15;;33675:10;;:28;;;;:::i;:::-;:40;;;;:::i;:::-;33660:12;:55;;;;33750:1;33734:12;;:17;;33726:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33411:381:::0;;;:::o;2874:87::-;2920:7;2947:6;;;;;;;;;;;2940:13;;2874:87;:::o;27394:24::-;;;;;;;;;;;;;:::o;33303:100::-;3105:12;:10;:12::i;:::-;3094:23;;:7;:5;:7::i;:::-;:23;;;3086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33388:7:::1;33374:11;;:21;;;;;;;;;;;;;;;;;;33303:100:::0;:::o;9948:104::-;10004:13;10037:7;10030:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9948:104;:::o;34389:304::-;3105:12;:10;:12::i;:::-;3094:23;;:7;:5;:7::i;:::-;:23;;;3086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34533:13:::1;;;;;;;;;;;34525:21;;:4;:21;;;;34503:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;34644:41;34673:4;34679:5;34644:28;:41::i;:::-;34389:304:::0;;:::o;28285:29::-;;;;:::o;27781:35::-;;;;:::o;28554:27::-;;;;:::o;28440:30::-;;;;:::o;14467:482::-;14587:4;14609:24;14636:11;:25;14648:12;:10;:12::i;:::-;14636:25;;;;;;;;;;;;;;;:34;14662:7;14636:34;;;;;;;;;;;;;;;;14609:61;;14723:15;14703:16;:35;;14681:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;14839:67;14848:12;:10;:12::i;:::-;14862:7;14890:15;14871:16;:34;14839:8;:67::i;:::-;14937:4;14930:11;;;14467:482;;;;:::o;27689:29::-;;;;:::o;11410:216::-;11532:4;11554:42;11564:12;:10;:12::i;:::-;11578:9;11589:6;11554:9;:42::i;:::-;11614:4;11607:11;;11410:216;;;;:::o;28359:31::-;;;;:::o;28951:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;27865:33::-;;;;;;;;;;;;;:::o;34199:182::-;3105:12;:10;:12::i;:::-;3094:23;;:7;:5;:7::i;:::-;:23;;;3086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34315:8:::1;34284:19;:28;34304:7;34284:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;34355:7;34339:34;;;34364:8;34339:34;;;;;;:::i;:::-;;;;;;;;34199:182:::0;;:::o;33800:391::-;3105:12;:10;:12::i;:::-;3094:23;;:7;:5;:7::i;:::-;:23;;;3086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33960:8:::1;33946:11;:22;;;;33998:13;33979:16;:32;;;;34035:7;34022:10;:20;;;;34102:10;;34083:16;;34069:11;;:30;;;;:::i;:::-;:43;;;;:::i;:::-;34053:13;:59;;;;34148:1;34131:13;;:18;;34123:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;33800:391:::0;;;:::o;32776:256::-;3105:12;:10;:12::i;:::-;3094:23;;:7;:5;:7::i;:::-;:23;;;3086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32916:4:::1;32908;32903:1;32887:13;:11;:13::i;:::-;:17;;;;:::i;:::-;32886:26;;;;:::i;:::-;32885:35;;;;:::i;:::-;32875:6;:45;;32853:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;33017:6;33007;:17;;;;:::i;:::-;32995:9;:29;;;;32776:256:::0;:::o;28123:39::-;;;;;;;;;;;;;:::o;27427:35::-;;;;:::o;31988:497::-;32096:4;3105:12;:10;:12::i;:::-;3094:23;;:7;:5;:7::i;:::-;:23;;;3086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32175:6:::1;32170:1;32154:13;:11;:13::i;:::-;:17;;;;:::i;:::-;32153:28;;;;:::i;:::-;32140:9;:41;;32118:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;32330:4;32325:1;32309:13;:11;:13::i;:::-;:17;;;;:::i;:::-;32308:26;;;;:::i;:::-;32295:9;:39;;32273:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;32446:9;32425:18;:30;;;;32473:4;32466:11;;31988:497:::0;;;:::o;28171:28::-;;;;:::o;11689:201::-;11823:7;11855:11;:18;11867:5;11855:18;;;;;;;;;;;;;;;:27;11874:7;11855:27;;;;;;;;;;;;;;;;11848:34;;11689:201;;;;:::o;27469:33::-;;;;:::o;28206:30::-;;;;:::o;31783:135::-;31843:4;3105:12;:10;:12::i;:::-;3094:23;;:7;:5;:7::i;:::-;:23;;;3086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31883:5:::1;31860:20;;:28;;;;;;;;;;;;;;;;;;31906:4;31899:11;;31783:135:::0;:::o;28243:35::-;;;;:::o;3783:238::-;3105:12;:10;:12::i;:::-;3094:23;;:7;:5;:7::i;:::-;:23;;;3086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3906:1:::1;3886:22;;:8;:22;;;;3864:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;3985:28;4004:8;3985:18;:28::i;:::-;3783:238:::0;:::o;28397:36::-;;;;:::o;27509:24::-;;;;:::o;44291:1056::-;44402:4;3105:12;:10;:12::i;:::-;3094:23;;:7;:5;:7::i;:::-;:23;;;3086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44487:19:::1;;44464:20;;:42;;;;:::i;:::-;44446:15;:60;44424:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;44596:4;44585:7;:15;;44577:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;44681:15;44658:20;:38;;;;44751:28;44782:4;:14;;;44797:13;;;;;;;;;;;44782:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44751:60;;44861:20;44884:44;44922:5;44884:33;44909:7;44884:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;44861:67;;45048:1;45033:12;:16;45029:110;;;45066:61;45082:13;;;;;;;;;;;45105:6;45114:12;45066:15;:61::i;:::-;45029:110;45214:19;45251:13;;;;;;;;;;;45214:51;;45276:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;45303:14;;;;;;;;;;45335:4;45328:11;;;;;44291:1056:::0;;;:::o;1716:98::-;1769:7;1796:10;1789:17;;1716:98;:::o;18257:380::-;18410:1;18393:19;;:5;:19;;;;18385:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18491:1;18472:21;;:7;:21;;;;18464:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18575:6;18545:11;:18;18557:5;18545:18;;;;;;;;;;;;;;;:27;18564:7;18545:27;;;;;;;;;;;;;;;:36;;;;18613:7;18597:32;;18606:5;18597:32;;;18622:6;18597:32;;;;;;:::i;:::-;;;;;;;;18257:380;;;:::o;35196:4991::-;35344:1;35328:18;;:4;:18;;;;35320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35421:1;35407:16;;:2;:16;;;;35399:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;35490:1;35480:6;:11;35476:93;;;35508:28;35524:4;35530:2;35534:1;35508:15;:28::i;:::-;35551:7;;35476:93;35585:14;;;;;;;;;;;35581:2487;;;35646:7;:5;:7::i;:::-;35638:15;;:4;:15;;;;:49;;;;;35680:7;:5;:7::i;:::-;35674:13;;:2;:13;;;;35638:49;:86;;;;;35722:1;35708:16;;:2;:16;;;;35638:86;:128;;;;;35759:6;35745:21;;:2;:21;;;;35638:128;:158;;;;;35788:8;;;;;;;;;;;35787:9;35638:158;35616:2441;;;35836:13;;;;;;;;;;;35831:223;;35908:19;:25;35928:4;35908:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;35937:19;:23;35957:2;35937:23;;;;;;;;;;;;;;;;;;;;;;;;;35908:52;35874:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;35831:223;36210:20;;;;;;;;;;;36206:641;;;36291:7;:5;:7::i;:::-;36285:13;;:2;:13;;;;:72;;;;;36341:15;36327:30;;:2;:30;;;;36285:72;:129;;;;;36400:13;;;;;;;;;;;36386:28;;:2;:28;;;;36285:129;36255:573;;;36578:12;36503:28;:39;36532:9;36503:39;;;;;;;;;;;;;;;;:87;36465:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;36792:12;36750:28;:39;36779:9;36750:39;;;;;;;;;;;;;;;:54;;;;36255:573;36206:641;36921:25;:31;36947:4;36921:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;36978:31;:35;37010:2;36978:35;;;;;;;;;;;;;;;;;;;;;;;;;36977:36;36921:92;36895:1147;;;37100:20;;37090:6;:30;;37056:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;37308:9;;37291:13;37301:2;37291:9;:13::i;:::-;37282:6;:22;;;;:::i;:::-;:35;;37248:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;36895:1147;;;37486:25;:29;37512:2;37486:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;37541:31;:37;37573:4;37541:37;;;;;;;;;;;;;;;;;;;;;;;;;37540:38;37486:92;37460:582;;;37665:20;;37655:6;:30;;37621:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;37460:582;;;37822:31;:35;37854:2;37822:35;;;;;;;;;;;;;;;;;;;;;;;;;37817:225;;37942:9;;37925:13;37935:2;37925:9;:13::i;:::-;37916:6;:22;;;;:::i;:::-;:35;;37882:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;37817:225;37460:582;36895:1147;35616:2441;35581:2487;38080:28;38111:24;38129:4;38111:9;:24::i;:::-;38080:55;;38148:12;38187:18;;38163:20;:42;;38148:57;;38236:7;:35;;;;;38260:11;;;;;;;;;;;38236:35;:61;;;;;38289:8;;;;;;;;;;;38288:9;38236:61;:110;;;;;38315:25;:31;38341:4;38315:31;;;;;;;;;;;;;;;;;;;;;;;;;38314:32;38236:110;:153;;;;;38364:19;:25;38384:4;38364:25;;;;;;;;;;;;;;;;;;;;;;;;;38363:26;38236:153;:194;;;;;38407:19;:23;38427:2;38407:23;;;;;;;;;;;;;;;;;;;;;;;;;38406:24;38236:194;38218:326;;;38468:4;38457:8;;:15;;;;;;;;;;;;;;;;;;38489:10;:8;:10::i;:::-;38527:5;38516:8;;:16;;;;;;;;;;;;;;;;;;38218:326;38575:8;;;;;;;;;;;38574:9;:55;;;;;38600:25;:29;38626:2;38600:29;;;;;;;;;;;;;;;;;;;;;;;;;38574:55;:85;;;;;38646:13;;;;;;;;;;;38574:85;:153;;;;;38712:15;;38695:14;;:32;;;;:::i;:::-;38676:15;:51;;38574:153;:196;;;;;38745:19;:25;38765:4;38745:25;;;;;;;;;;;;;;;;;;;;;;;;;38744:26;38574:196;38556:282;;;38797:29;:27;:29::i;:::-;;38556:282;38850:12;38866:8;;;;;;;;;;;38865:9;38850:24;;38976:19;:25;38996:4;38976:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;39005:19;:23;39025:2;39005:23;;;;;;;;;;;;;;;;;;;;;;;;;38976:52;38972:100;;;39055:5;39045:15;;38972:100;39084:12;39189:7;39185:949;;;39241:25;:29;39267:2;39241:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;39290:1;39274:13;;:17;39241:50;39237:748;;;39319:34;39349:3;39319:25;39330:13;;39319:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;39312:41;;39422:13;;39402:16;;39395:4;:23;;;;:::i;:::-;39394:41;;;;:::i;:::-;39372:18;;:63;;;;;;;:::i;:::-;;;;;;;;39492:13;;39478:10;;39471:4;:17;;;;:::i;:::-;39470:35;;;;:::i;:::-;39454:12;;:51;;;;;;;:::i;:::-;;;;;;;;39564:13;;39549:11;;39542:4;:18;;;;:::i;:::-;39541:36;;;;:::i;:::-;39524:13;;:53;;;;;;;:::i;:::-;;;;;;;;39237:748;;;39639:25;:31;39665:4;39639:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;39689:1;39674:12;;:16;39639:51;39635:350;;;39718:33;39747:3;39718:24;39729:12;;39718:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;39711:40;;39819:12;;39800:15;;39793:4;:22;;;;:::i;:::-;39792:39;;;;:::i;:::-;39770:18;;:61;;;;;;;:::i;:::-;;;;;;;;39887:12;;39874:9;;39867:4;:16;;;;:::i;:::-;39866:33;;;;:::i;:::-;39850:12;;:49;;;;;;;:::i;:::-;;;;;;;;39957:12;;39943:10;;39936:4;:17;;;;:::i;:::-;39935:34;;;;:::i;:::-;39918:13;;:51;;;;;;;:::i;:::-;;;;;;;;39635:350;39237:748;40012:1;40005:4;:8;40001:91;;;40034:42;40050:4;40064;40071;40034:15;:42::i;:::-;40001:91;40118:4;40108:14;;;;;:::i;:::-;;;39185:949;40146:33;40162:4;40168:2;40172:6;40146:15;:33::i;:::-;35309:4878;;;;35196:4991;;;;:::o;4181:191::-;4255:16;4274:6;;;;;;;;;;;4255:25;;4300:8;4291:6;;:17;;;;;;;;;;;;;;;;;;4355:8;4324:40;;4345:8;4324:40;;;;;;;;;;;;4244:128;4181:191;:::o;34701:188::-;34818:5;34784:25;:31;34810:4;34784:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;34875:5;34841:40;;34869:4;34841:40;;;;;;;;;;;;34701:188;;:::o;23706:98::-;23764:7;23795:1;23791;:5;;;;:::i;:::-;23784:12;;23706:98;;;;:::o;24105:::-;24163:7;24194:1;24190;:5;;;;:::i;:::-;24183:12;;24105:98;;;;:::o;15439:770::-;15597:1;15579:20;;:6;:20;;;;15571:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15681:1;15660:23;;:9;:23;;;;15652:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15736:47;15757:6;15765:9;15776:6;15736:20;:47::i;:::-;15796:21;15820:9;:17;15830:6;15820:17;;;;;;;;;;;;;;;;15796:41;;15887:6;15870:13;:23;;15848:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;16031:6;16015:13;:22;15995:9;:17;16005:6;15995:17;;;;;;;;;;;;;;;:42;;;;16083:6;16059:9;:20;16069:9;16059:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;16124:9;16107:35;;16116:6;16107:35;;;16135:6;16107:35;;;;;;:::i;:::-;;;;;;;;16155:46;16175:6;16183:9;16194:6;16155:19;:46::i;:::-;15560:649;15439:770;;;:::o;41317:1607::-;41356:23;41382:24;41400:4;41382:9;:24::i;:::-;41356:50;;41417:25;41479:12;;41445:18;;:46;;;;:::i;:::-;41417:74;;41502:12;41550:1;41531:15;:20;:46;;;;41576:1;41555:17;:22;41531:46;41527:85;;;41594:7;;;;;41527:85;41667:2;41646:18;;:23;;;;:::i;:::-;41628:15;:41;41624:115;;;41725:2;41704:18;;:23;;;;:::i;:::-;41686:41;;41624:115;41800:23;41913:1;41880:17;41845:18;;41827:15;:36;;;;:::i;:::-;41826:71;;;;:::i;:::-;:88;;;;:::i;:::-;41800:114;;41925:26;41954:55;41995:13;;41954:36;41974:15;41954;:19;;:36;;;;:::i;:::-;:40;;:55;;;;:::i;:::-;41925:84;;42022:25;42050:21;42022:49;;42084:36;42101:18;42084:16;:36::i;:::-;42133:18;42154:44;42180:17;42154:21;:25;;:44;;;;:::i;:::-;42133:65;;42211:17;42231:51;42264:17;42231:28;42246:12;;42231:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;42211:71;;42295:23;42334:9;42321:10;:22;;;;:::i;:::-;42295:48;;42374:1;42358:13;;:17;42354:109;;;42388:62;42412:4;42427:6;42436:13;;42388:15;:62::i;:::-;42354:109;42496:1;42475:18;:22;;;;42524:1;42508:13;:17;;;;42551:1;42536:12;:16;;;;42589:9;;;;;;;;;;;42581:23;;42612:9;42581:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42567:59;;;;;42661:1;42643:15;:19;:42;;;;;42684:1;42666:15;:19;42643:42;42639:278;;;42702:46;42715:15;42732;42702:12;:46::i;:::-;42768:137;42801:18;42838:15;42872:18;;42768:137;;;;;;;;:::i;:::-;;;;;;;;42639:278;41345:1579;;;;;;;;;41317:1607;:::o;43495:788::-;43552:4;43586:15;43569:14;:32;;;;43656:28;43687:4;:14;;;43702:13;;;;;;;;;;;43687:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43656:60;;43766:20;43789:77;43850:5;43789:42;43814:16;;43789:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;43766:100;;43986:1;43971:12;:16;43967:110;;;44004:61;44020:13;;;;;;;;;;;44043:6;44052:12;44004:15;:61::i;:::-;43967:110;44152:19;44189:13;;;;;;;;;;;44152:51;;44214:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44241:12;;;;;;;;;;44271:4;44264:11;;;;;43495:788;:::o;19237:125::-;;;;:::o;19966:124::-;;;;:::o;23349:98::-;23407:7;23438:1;23434;:5;;;;:::i;:::-;23427:12;;23349:98;;;;:::o;40195:589::-;40321:21;40359:1;40345:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40321:40;;40390:4;40372;40377:1;40372:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;40416:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40406:4;40411:1;40406:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;40451:62;40468:4;40483:15;40501:11;40451:8;:62::i;:::-;40552:15;:66;;;40633:11;40659:1;40703:4;40730;40750:15;40552:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40250:534;40195:589;:::o;40792:517::-;40940:62;40957:4;40972:15;40990:11;40940:8;:62::i;:::-;41045:15;:31;;;41084:9;41117:4;41137:11;41163:1;41206;27348:6;41275:15;41045:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;40792:517;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:151::-;4250:9;4283:37;4314:5;4283:37;:::i;:::-;4270:50;;4175:151;;;:::o;4332:181::-;4444:62;4500:5;4444:62;:::i;:::-;4439:3;4432:75;4332:181;;:::o;4519:272::-;4637:4;4675:2;4664:9;4660:18;4652:26;;4688:96;4781:1;4770:9;4766:17;4757:6;4688:96;:::i;:::-;4519:272;;;;:::o;4797:118::-;4884:24;4902:5;4884:24;:::i;:::-;4879:3;4872:37;4797:118;;:::o;4921:222::-;5014:4;5052:2;5041:9;5037:18;5029:26;;5065:71;5133:1;5122:9;5118:17;5109:6;5065:71;:::i;:::-;4921:222;;;;:::o;5149:329::-;5208:6;5257:2;5245:9;5236:7;5232:23;5228:32;5225:119;;;5263:79;;:::i;:::-;5225:119;5383:1;5408:53;5453:7;5444:6;5433:9;5429:22;5408:53;:::i;:::-;5398:63;;5354:117;5149:329;;;;:::o;5484:619::-;5561:6;5569;5577;5626:2;5614:9;5605:7;5601:23;5597:32;5594:119;;;5632:79;;:::i;:::-;5594:119;5752:1;5777:53;5822:7;5813:6;5802:9;5798:22;5777:53;:::i;:::-;5767:63;;5723:117;5879:2;5905:53;5950:7;5941:6;5930:9;5926:22;5905:53;:::i;:::-;5895:63;;5850:118;6007:2;6033:53;6078:7;6069:6;6058:9;6054:22;6033:53;:::i;:::-;6023:63;;5978:118;5484:619;;;;;:::o;6109:118::-;6196:24;6214:5;6196:24;:::i;:::-;6191:3;6184:37;6109:118;;:::o;6233:222::-;6326:4;6364:2;6353:9;6349:18;6341:26;;6377:71;6445:1;6434:9;6430:17;6421:6;6377:71;:::i;:::-;6233:222;;;;:::o;6461:86::-;6496:7;6536:4;6529:5;6525:16;6514:27;;6461:86;;;:::o;6553:112::-;6636:22;6652:5;6636:22;:::i;:::-;6631:3;6624:35;6553:112;;:::o;6671:214::-;6760:4;6798:2;6787:9;6783:18;6775:26;;6811:67;6875:1;6864:9;6860:17;6851:6;6811:67;:::i;:::-;6671:214;;;;:::o;6891:116::-;6961:21;6976:5;6961:21;:::i;:::-;6954:5;6951:32;6941:60;;6997:1;6994;6987:12;6941:60;6891:116;:::o;7013:133::-;7056:5;7094:6;7081:20;7072:29;;7110:30;7134:5;7110:30;:::i;:::-;7013:133;;;;:::o;7152:323::-;7208:6;7257:2;7245:9;7236:7;7232:23;7228:32;7225:119;;;7263:79;;:::i;:::-;7225:119;7383:1;7408:50;7450:7;7441:6;7430:9;7426:22;7408:50;:::i;:::-;7398:60;;7354:114;7152:323;;;;:::o;7481:613::-;7555:6;7563;7571;7620:2;7608:9;7599:7;7595:23;7591:32;7588:119;;;7626:79;;:::i;:::-;7588:119;7746:1;7771:53;7816:7;7807:6;7796:9;7792:22;7771:53;:::i;:::-;7761:63;;7717:117;7873:2;7899:53;7944:7;7935:6;7924:9;7920:22;7899:53;:::i;:::-;7889:63;;7844:118;8001:2;8027:50;8069:7;8060:6;8049:9;8045:22;8027:50;:::i;:::-;8017:60;;7972:115;7481:613;;;;;:::o;8100:468::-;8165:6;8173;8222:2;8210:9;8201:7;8197:23;8193:32;8190:119;;;8228:79;;:::i;:::-;8190:119;8348:1;8373:53;8418:7;8409:6;8398:9;8394:22;8373:53;:::i;:::-;8363:63;;8319:117;8475:2;8501:50;8543:7;8534:6;8523:9;8519:22;8501:50;:::i;:::-;8491:60;;8446:115;8100:468;;;;;:::o;8574:619::-;8651:6;8659;8667;8716:2;8704:9;8695:7;8691:23;8687:32;8684:119;;;8722:79;;:::i;:::-;8684:119;8842:1;8867:53;8912:7;8903:6;8892:9;8888:22;8867:53;:::i;:::-;8857:63;;8813:117;8969:2;8995:53;9040:7;9031:6;9020:9;9016:22;8995:53;:::i;:::-;8985:63;;8940:118;9097:2;9123:53;9168:7;9159:6;9148:9;9144:22;9123:53;:::i;:::-;9113:63;;9068:118;8574:619;;;;;:::o;9199:474::-;9267:6;9275;9324:2;9312:9;9303:7;9299:23;9295:32;9292:119;;;9330:79;;:::i;:::-;9292:119;9450:1;9475:53;9520:7;9511:6;9500:9;9496:22;9475:53;:::i;:::-;9465:63;;9421:117;9577:2;9603:53;9648:7;9639:6;9628:9;9624:22;9603:53;:::i;:::-;9593:63;;9548:118;9199:474;;;;;:::o;9679:180::-;9727:77;9724:1;9717:88;9824:4;9821:1;9814:15;9848:4;9845:1;9838:15;9865:320;9909:6;9946:1;9940:4;9936:12;9926:22;;9993:1;9987:4;9983:12;10014:18;10004:81;;10070:4;10062:6;10058:17;10048:27;;10004:81;10132:2;10124:6;10121:14;10101:18;10098:38;10095:84;;;10151:18;;:::i;:::-;10095:84;9916:269;9865:320;;;:::o;10191:182::-;10331:34;10327:1;10319:6;10315:14;10308:58;10191:182;:::o;10379:366::-;10521:3;10542:67;10606:2;10601:3;10542:67;:::i;:::-;10535:74;;10618:93;10707:3;10618:93;:::i;:::-;10736:2;10731:3;10727:12;10720:19;;10379:366;;;:::o;10751:419::-;10917:4;10955:2;10944:9;10940:18;10932:26;;11004:9;10998:4;10994:20;10990:1;10979:9;10975:17;10968:47;11032:131;11158:4;11032:131;:::i;:::-;11024:139;;10751:419;;;:::o;11176:180::-;11224:77;11221:1;11214:88;11321:4;11318:1;11311:15;11345:4;11342:1;11335:15;11362:348;11402:7;11425:20;11443:1;11425:20;:::i;:::-;11420:25;;11459:20;11477:1;11459:20;:::i;:::-;11454:25;;11647:1;11579:66;11575:74;11572:1;11569:81;11564:1;11557:9;11550:17;11546:105;11543:131;;;11654:18;;:::i;:::-;11543:131;11702:1;11699;11695:9;11684:20;;11362:348;;;;:::o;11716:180::-;11764:77;11761:1;11754:88;11861:4;11858:1;11851:15;11885:4;11882:1;11875:15;11902:185;11942:1;11959:20;11977:1;11959:20;:::i;:::-;11954:25;;11993:20;12011:1;11993:20;:::i;:::-;11988:25;;12032:1;12022:35;;12037:18;;:::i;:::-;12022:35;12079:1;12076;12072:9;12067:14;;11902:185;;;;:::o;12093:234::-;12233:34;12229:1;12221:6;12217:14;12210:58;12302:17;12297:2;12289:6;12285:15;12278:42;12093:234;:::o;12333:366::-;12475:3;12496:67;12560:2;12555:3;12496:67;:::i;:::-;12489:74;;12572:93;12661:3;12572:93;:::i;:::-;12690:2;12685:3;12681:12;12674:19;;12333:366;;;:::o;12705:419::-;12871:4;12909:2;12898:9;12894:18;12886:26;;12958:9;12952:4;12948:20;12944:1;12933:9;12929:17;12922:47;12986:131;13112:4;12986:131;:::i;:::-;12978:139;;12705:419;;;:::o;13130:227::-;13270:34;13266:1;13258:6;13254:14;13247:58;13339:10;13334:2;13326:6;13322:15;13315:35;13130:227;:::o;13363:366::-;13505:3;13526:67;13590:2;13585:3;13526:67;:::i;:::-;13519:74;;13602:93;13691:3;13602:93;:::i;:::-;13720:2;13715:3;13711:12;13704:19;;13363:366;;;:::o;13735:419::-;13901:4;13939:2;13928:9;13924:18;13916:26;;13988:9;13982:4;13978:20;13974:1;13963:9;13959:17;13952:47;14016:131;14142:4;14016:131;:::i;:::-;14008:139;;13735:419;;;:::o;14160:305::-;14200:3;14219:20;14237:1;14219:20;:::i;:::-;14214:25;;14253:20;14271:1;14253:20;:::i;:::-;14248:25;;14407:1;14339:66;14335:74;14332:1;14329:81;14326:107;;;14413:18;;:::i;:::-;14326:107;14457:1;14454;14450:9;14443:16;;14160:305;;;;:::o;14471:238::-;14611:34;14607:1;14599:6;14595:14;14588:58;14680:21;14675:2;14667:6;14663:15;14656:46;14471:238;:::o;14715:366::-;14857:3;14878:67;14942:2;14937:3;14878:67;:::i;:::-;14871:74;;14954:93;15043:3;14954:93;:::i;:::-;15072:2;15067:3;15063:12;15056:19;;14715:366;;;:::o;15087:419::-;15253:4;15291:2;15280:9;15276:18;15268:26;;15340:9;15334:4;15330:20;15326:1;15315:9;15311:17;15304:47;15368:131;15494:4;15368:131;:::i;:::-;15360:139;;15087:419;;;:::o;15512:235::-;15652:34;15648:1;15640:6;15636:14;15629:58;15721:18;15716:2;15708:6;15704:15;15697:43;15512:235;:::o;15753:366::-;15895:3;15916:67;15980:2;15975:3;15916:67;:::i;:::-;15909:74;;15992:93;16081:3;15992:93;:::i;:::-;16110:2;16105:3;16101:12;16094:19;;15753:366;;;:::o;16125:419::-;16291:4;16329:2;16318:9;16314:18;16306:26;;16378:9;16372:4;16368:20;16364:1;16353:9;16349:17;16342:47;16406:131;16532:4;16406:131;:::i;:::-;16398:139;;16125:419;;;:::o;16550:178::-;16690:30;16686:1;16678:6;16674:14;16667:54;16550:178;:::o;16734:366::-;16876:3;16897:67;16961:2;16956:3;16897:67;:::i;:::-;16890:74;;16973:93;17062:3;16973:93;:::i;:::-;17091:2;17086:3;17082:12;17075:19;;16734:366;;;:::o;17106:419::-;17272:4;17310:2;17299:9;17295:18;17287:26;;17359:9;17353:4;17349:20;17345:1;17334:9;17330:17;17323:47;17387:131;17513:4;17387:131;:::i;:::-;17379:139;;17106:419;;;:::o;17531:244::-;17671:34;17667:1;17659:6;17655:14;17648:58;17740:27;17735:2;17727:6;17723:15;17716:52;17531:244;:::o;17781:366::-;17923:3;17944:67;18008:2;18003:3;17944:67;:::i;:::-;17937:74;;18020:93;18109:3;18020:93;:::i;:::-;18138:2;18133:3;18129:12;18122:19;;17781:366;;;:::o;18153:419::-;18319:4;18357:2;18346:9;18342:18;18334:26;;18406:9;18400:4;18396:20;18392:1;18381:9;18377:17;18370:47;18434:131;18560:4;18434:131;:::i;:::-;18426:139;;18153:419;;;:::o;18578:224::-;18718:34;18714:1;18706:6;18702:14;18695:58;18787:7;18782:2;18774:6;18770:15;18763:32;18578:224;:::o;18808:366::-;18950:3;18971:67;19035:2;19030:3;18971:67;:::i;:::-;18964:74;;19047:93;19136:3;19047:93;:::i;:::-;19165:2;19160:3;19156:12;19149:19;;18808:366;;;:::o;19180:419::-;19346:4;19384:2;19373:9;19369:18;19361:26;;19433:9;19427:4;19423:20;19419:1;19408:9;19404:17;19397:47;19461:131;19587:4;19461:131;:::i;:::-;19453:139;;19180:419;;;:::o;19605:179::-;19745:31;19741:1;19733:6;19729:14;19722:55;19605:179;:::o;19790:366::-;19932:3;19953:67;20017:2;20012:3;19953:67;:::i;:::-;19946:74;;20029:93;20118:3;20029:93;:::i;:::-;20147:2;20142:3;20138:12;20131:19;;19790:366;;;:::o;20162:419::-;20328:4;20366:2;20355:9;20351:18;20343:26;;20415:9;20409:4;20405:20;20401:1;20390:9;20386:17;20379:47;20443:131;20569:4;20443:131;:::i;:::-;20435:139;;20162:419;;;:::o;20587:223::-;20727:34;20723:1;20715:6;20711:14;20704:58;20796:6;20791:2;20783:6;20779:15;20772:31;20587:223;:::o;20816:366::-;20958:3;20979:67;21043:2;21038:3;20979:67;:::i;:::-;20972:74;;21055:93;21144:3;21055:93;:::i;:::-;21173:2;21168:3;21164:12;21157:19;;20816:366;;;:::o;21188:419::-;21354:4;21392:2;21381:9;21377:18;21369:26;;21441:9;21435:4;21431:20;21427:1;21416:9;21412:17;21405:47;21469:131;21595:4;21469:131;:::i;:::-;21461:139;;21188:419;;;:::o;21613:240::-;21753:34;21749:1;21741:6;21737:14;21730:58;21822:23;21817:2;21809:6;21805:15;21798:48;21613:240;:::o;21859:366::-;22001:3;22022:67;22086:2;22081:3;22022:67;:::i;:::-;22015:74;;22098:93;22187:3;22098:93;:::i;:::-;22216:2;22211:3;22207:12;22200:19;;21859:366;;;:::o;22231:419::-;22397:4;22435:2;22424:9;22420:18;22412:26;;22484:9;22478:4;22474:20;22470:1;22459:9;22455:17;22448:47;22512:131;22638:4;22512:131;:::i;:::-;22504:139;;22231:419;;;:::o;22656:239::-;22796:34;22792:1;22784:6;22780:14;22773:58;22865:22;22860:2;22852:6;22848:15;22841:47;22656:239;:::o;22901:366::-;23043:3;23064:67;23128:2;23123:3;23064:67;:::i;:::-;23057:74;;23140:93;23229:3;23140:93;:::i;:::-;23258:2;23253:3;23249:12;23242:19;;22901:366;;;:::o;23273:419::-;23439:4;23477:2;23466:9;23462:18;23454:26;;23526:9;23520:4;23516:20;23512:1;23501:9;23497:17;23490:47;23554:131;23680:4;23554:131;:::i;:::-;23546:139;;23273:419;;;:::o;23698:225::-;23838:34;23834:1;23826:6;23822:14;23815:58;23907:8;23902:2;23894:6;23890:15;23883:33;23698:225;:::o;23929:366::-;24071:3;24092:67;24156:2;24151:3;24092:67;:::i;:::-;24085:74;;24168:93;24257:3;24168:93;:::i;:::-;24286:2;24281:3;24277:12;24270:19;;23929:366;;;:::o;24301:419::-;24467:4;24505:2;24494:9;24490:18;24482:26;;24554:9;24548:4;24544:20;24540:1;24529:9;24525:17;24518:47;24582:131;24708:4;24582:131;:::i;:::-;24574:139;;24301:419;;;:::o;24726:182::-;24866:34;24862:1;24854:6;24850:14;24843:58;24726:182;:::o;24914:366::-;25056:3;25077:67;25141:2;25136:3;25077:67;:::i;:::-;25070:74;;25153:93;25242:3;25153:93;:::i;:::-;25271:2;25266:3;25262:12;25255:19;;24914:366;;;:::o;25286:419::-;25452:4;25490:2;25479:9;25475:18;25467:26;;25539:9;25533:4;25529:20;25525:1;25514:9;25510:17;25503:47;25567:131;25693:4;25567:131;:::i;:::-;25559:139;;25286:419;;;:::o;25711:229::-;25851:34;25847:1;25839:6;25835:14;25828:58;25920:12;25915:2;25907:6;25903:15;25896:37;25711:229;:::o;25946:366::-;26088:3;26109:67;26173:2;26168:3;26109:67;:::i;:::-;26102:74;;26185:93;26274:3;26185:93;:::i;:::-;26303:2;26298:3;26294:12;26287:19;;25946:366;;;:::o;26318:419::-;26484:4;26522:2;26511:9;26507:18;26499:26;;26571:9;26565:4;26561:20;26557:1;26546:9;26542:17;26535:47;26599:131;26725:4;26599:131;:::i;:::-;26591:139;;26318:419;;;:::o;26743:143::-;26800:5;26831:6;26825:13;26816:22;;26847:33;26874:5;26847:33;:::i;:::-;26743:143;;;;:::o;26892:351::-;26962:6;27011:2;26999:9;26990:7;26986:23;26982:32;26979:119;;;27017:79;;:::i;:::-;26979:119;27137:1;27162:64;27218:7;27209:6;27198:9;27194:22;27162:64;:::i;:::-;27152:74;;27108:128;26892:351;;;;:::o;27249:223::-;27389:34;27385:1;27377:6;27373:14;27366:58;27458:6;27453:2;27445:6;27441:15;27434:31;27249:223;:::o;27478:366::-;27620:3;27641:67;27705:2;27700:3;27641:67;:::i;:::-;27634:74;;27717:93;27806:3;27717:93;:::i;:::-;27835:2;27830:3;27826:12;27819:19;;27478:366;;;:::o;27850:419::-;28016:4;28054:2;28043:9;28039:18;28031:26;;28103:9;28097:4;28093:20;28089:1;28078:9;28074:17;28067:47;28131:131;28257:4;28131:131;:::i;:::-;28123:139;;27850:419;;;:::o;28275:221::-;28415:34;28411:1;28403:6;28399:14;28392:58;28484:4;28479:2;28471:6;28467:15;28460:29;28275:221;:::o;28502:366::-;28644:3;28665:67;28729:2;28724:3;28665:67;:::i;:::-;28658:74;;28741:93;28830:3;28741:93;:::i;:::-;28859:2;28854:3;28850:12;28843:19;;28502:366;;;:::o;28874:419::-;29040:4;29078:2;29067:9;29063:18;29055:26;;29127:9;29121:4;29117:20;29113:1;29102:9;29098:17;29091:47;29155:131;29281:4;29155:131;:::i;:::-;29147:139;;28874:419;;;:::o;29299:224::-;29439:34;29435:1;29427:6;29423:14;29416:58;29508:7;29503:2;29495:6;29491:15;29484:32;29299:224;:::o;29529:366::-;29671:3;29692:67;29756:2;29751:3;29692:67;:::i;:::-;29685:74;;29768:93;29857:3;29768:93;:::i;:::-;29886:2;29881:3;29877:12;29870:19;;29529:366;;;:::o;29901:419::-;30067:4;30105:2;30094:9;30090:18;30082:26;;30154:9;30148:4;30144:20;30140:1;30129:9;30125:17;30118:47;30182:131;30308:4;30182:131;:::i;:::-;30174:139;;29901:419;;;:::o;30326:222::-;30466:34;30462:1;30454:6;30450:14;30443:58;30535:5;30530:2;30522:6;30518:15;30511:30;30326:222;:::o;30554:366::-;30696:3;30717:67;30781:2;30776:3;30717:67;:::i;:::-;30710:74;;30793:93;30882:3;30793:93;:::i;:::-;30911:2;30906:3;30902:12;30895:19;;30554:366;;;:::o;30926:419::-;31092:4;31130:2;31119:9;31115:18;31107:26;;31179:9;31173:4;31169:20;31165:1;31154:9;31150:17;31143:47;31207:131;31333:4;31207:131;:::i;:::-;31199:139;;30926:419;;;:::o;31351:172::-;31491:24;31487:1;31479:6;31475:14;31468:48;31351:172;:::o;31529:366::-;31671:3;31692:67;31756:2;31751:3;31692:67;:::i;:::-;31685:74;;31768:93;31857:3;31768:93;:::i;:::-;31886:2;31881:3;31877:12;31870:19;;31529:366;;;:::o;31901:419::-;32067:4;32105:2;32094:9;32090:18;32082:26;;32154:9;32148:4;32144:20;32140:1;32129:9;32125:17;32118:47;32182:131;32308:4;32182:131;:::i;:::-;32174:139;;31901:419;;;:::o;32326:297::-;32466:34;32462:1;32454:6;32450:14;32443:58;32535:34;32530:2;32522:6;32518:15;32511:59;32604:11;32599:2;32591:6;32587:15;32580:36;32326:297;:::o;32629:366::-;32771:3;32792:67;32856:2;32851:3;32792:67;:::i;:::-;32785:74;;32868:93;32957:3;32868:93;:::i;:::-;32986:2;32981:3;32977:12;32970:19;;32629:366;;;:::o;33001:419::-;33167:4;33205:2;33194:9;33190:18;33182:26;;33254:9;33248:4;33244:20;33240:1;33229:9;33225:17;33218:47;33282:131;33408:4;33282:131;:::i;:::-;33274:139;;33001:419;;;:::o;33426:240::-;33566:34;33562:1;33554:6;33550:14;33543:58;33635:23;33630:2;33622:6;33618:15;33611:48;33426:240;:::o;33672:366::-;33814:3;33835:67;33899:2;33894:3;33835:67;:::i;:::-;33828:74;;33911:93;34000:3;33911:93;:::i;:::-;34029:2;34024:3;34020:12;34013:19;;33672:366;;;:::o;34044:419::-;34210:4;34248:2;34237:9;34233:18;34225:26;;34297:9;34291:4;34287:20;34283:1;34272:9;34268:17;34261:47;34325:131;34451:4;34325:131;:::i;:::-;34317:139;;34044:419;;;:::o;34469:169::-;34609:21;34605:1;34597:6;34593:14;34586:45;34469:169;:::o;34644:366::-;34786:3;34807:67;34871:2;34866:3;34807:67;:::i;:::-;34800:74;;34883:93;34972:3;34883:93;:::i;:::-;35001:2;34996:3;34992:12;34985:19;;34644:366;;;:::o;35016:419::-;35182:4;35220:2;35209:9;35205:18;35197:26;;35269:9;35263:4;35259:20;35255:1;35244:9;35240:17;35233:47;35297:131;35423:4;35297:131;:::i;:::-;35289:139;;35016:419;;;:::o;35441:241::-;35581:34;35577:1;35569:6;35565:14;35558:58;35650:24;35645:2;35637:6;35633:15;35626:49;35441:241;:::o;35688:366::-;35830:3;35851:67;35915:2;35910:3;35851:67;:::i;:::-;35844:74;;35927:93;36016:3;35927:93;:::i;:::-;36045:2;36040:3;36036:12;36029:19;;35688:366;;;:::o;36060:419::-;36226:4;36264:2;36253:9;36249:18;36241:26;;36313:9;36307:4;36303:20;36299:1;36288:9;36284:17;36277:47;36341:131;36467:4;36341:131;:::i;:::-;36333:139;;36060:419;;;:::o;36485:191::-;36525:4;36545:20;36563:1;36545:20;:::i;:::-;36540:25;;36579:20;36597:1;36579:20;:::i;:::-;36574:25;;36618:1;36615;36612:8;36609:34;;;36623:18;;:::i;:::-;36609:34;36668:1;36665;36661:9;36653:17;;36485:191;;;;:::o;36682:225::-;36822:34;36818:1;36810:6;36806:14;36799:58;36891:8;36886:2;36878:6;36874:15;36867:33;36682:225;:::o;36913:366::-;37055:3;37076:67;37140:2;37135:3;37076:67;:::i;:::-;37069:74;;37152:93;37241:3;37152:93;:::i;:::-;37270:2;37265:3;37261:12;37254:19;;36913:366;;;:::o;37285:419::-;37451:4;37489:2;37478:9;37474:18;37466:26;;37538:9;37532:4;37528:20;37524:1;37513:9;37509:17;37502:47;37566:131;37692:4;37566:131;:::i;:::-;37558:139;;37285:419;;;:::o;37710:147::-;37811:11;37848:3;37833:18;;37710:147;;;;:::o;37863:114::-;;:::o;37983:398::-;38142:3;38163:83;38244:1;38239:3;38163:83;:::i;:::-;38156:90;;38255:93;38344:3;38255:93;:::i;:::-;38373:1;38368:3;38364:11;38357:18;;37983:398;;;:::o;38387:379::-;38571:3;38593:147;38736:3;38593:147;:::i;:::-;38586:154;;38757:3;38750:10;;38387:379;;;:::o;38772:442::-;38921:4;38959:2;38948:9;38944:18;38936:26;;38972:71;39040:1;39029:9;39025:17;39016:6;38972:71;:::i;:::-;39053:72;39121:2;39110:9;39106:18;39097:6;39053:72;:::i;:::-;39135;39203:2;39192:9;39188:18;39179:6;39135:72;:::i;:::-;38772:442;;;;;;:::o;39220:180::-;39268:77;39265:1;39258:88;39365:4;39362:1;39355:15;39389:4;39386:1;39379:15;39406:180;39454:77;39451:1;39444:88;39551:4;39548:1;39541:15;39575:4;39572:1;39565:15;39592:143;39649:5;39680:6;39674:13;39665:22;;39696:33;39723:5;39696:33;:::i;:::-;39592:143;;;;:::o;39741:351::-;39811:6;39860:2;39848:9;39839:7;39835:23;39831:32;39828:119;;;39866:79;;:::i;:::-;39828:119;39986:1;40011:64;40067:7;40058:6;40047:9;40043:22;40011:64;:::i;:::-;40001:74;;39957:128;39741:351;;;;:::o;40098:85::-;40143:7;40172:5;40161:16;;40098:85;;;:::o;40189:158::-;40247:9;40280:61;40298:42;40307:32;40333:5;40307:32;:::i;:::-;40298:42;:::i;:::-;40280:61;:::i;:::-;40267:74;;40189:158;;;:::o;40353:147::-;40448:45;40487:5;40448:45;:::i;:::-;40443:3;40436:58;40353:147;;:::o;40506:114::-;40573:6;40607:5;40601:12;40591:22;;40506:114;;;:::o;40626:184::-;40725:11;40759:6;40754:3;40747:19;40799:4;40794:3;40790:14;40775:29;;40626:184;;;;:::o;40816:132::-;40883:4;40906:3;40898:11;;40936:4;40931:3;40927:14;40919:22;;40816:132;;;:::o;40954:108::-;41031:24;41049:5;41031:24;:::i;:::-;41026:3;41019:37;40954:108;;:::o;41068:179::-;41137:10;41158:46;41200:3;41192:6;41158:46;:::i;:::-;41236:4;41231:3;41227:14;41213:28;;41068:179;;;;:::o;41253:113::-;41323:4;41355;41350:3;41346:14;41338:22;;41253:113;;;:::o;41402:732::-;41521:3;41550:54;41598:5;41550:54;:::i;:::-;41620:86;41699:6;41694:3;41620:86;:::i;:::-;41613:93;;41730:56;41780:5;41730:56;:::i;:::-;41809:7;41840:1;41825:284;41850:6;41847:1;41844:13;41825:284;;;41926:6;41920:13;41953:63;42012:3;41997:13;41953:63;:::i;:::-;41946:70;;42039:60;42092:6;42039:60;:::i;:::-;42029:70;;41885:224;41872:1;41869;41865:9;41860:14;;41825:284;;;41829:14;42125:3;42118:10;;41526:608;;;41402:732;;;;:::o;42140:831::-;42403:4;42441:3;42430:9;42426:19;42418:27;;42455:71;42523:1;42512:9;42508:17;42499:6;42455:71;:::i;:::-;42536:80;42612:2;42601:9;42597:18;42588:6;42536:80;:::i;:::-;42663:9;42657:4;42653:20;42648:2;42637:9;42633:18;42626:48;42691:108;42794:4;42785:6;42691:108;:::i;:::-;42683:116;;42809:72;42877:2;42866:9;42862:18;42853:6;42809:72;:::i;:::-;42891:73;42959:3;42948:9;42944:19;42935:6;42891:73;:::i;:::-;42140:831;;;;;;;;:::o;42977:807::-;43226:4;43264:3;43253:9;43249:19;43241:27;;43278:71;43346:1;43335:9;43331:17;43322:6;43278:71;:::i;:::-;43359:72;43427:2;43416:9;43412:18;43403:6;43359:72;:::i;:::-;43441:80;43517:2;43506:9;43502:18;43493:6;43441:80;:::i;:::-;43531;43607:2;43596:9;43592:18;43583:6;43531:80;:::i;:::-;43621:73;43689:3;43678:9;43674:19;43665:6;43621:73;:::i;:::-;43704;43772:3;43761:9;43757:19;43748:6;43704:73;:::i;:::-;42977:807;;;;;;;;;:::o;43790:663::-;43878:6;43886;43894;43943:2;43931:9;43922:7;43918:23;43914:32;43911:119;;;43949:79;;:::i;:::-;43911:119;44069:1;44094:64;44150:7;44141:6;44130:9;44126:22;44094:64;:::i;:::-;44084:74;;44040:128;44207:2;44233:64;44289:7;44280:6;44269:9;44265:22;44233:64;:::i;:::-;44223:74;;44178:129;44346:2;44372:64;44428:7;44419:6;44408:9;44404:22;44372:64;:::i;:::-;44362:74;;44317:129;43790:663;;;;;:::o
Swarm Source
ipfs://75e2ba6660043acdff10cff29a38412f6101915413f022605d936da0c5ccc348
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.