ERC-20
Overview
Max Total Supply
1,000,000 FPT
Holders
163
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
FPT
Compiler Version
v0.8.27+commit.40a35a09
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-11-18 */ // SPDX-License-Identifier: MIT /** Tg: https://t.me/FirstPersonTube X: https://x.com/1PTube Website: https://www.fptube.stream */ pragma solidity ^0.8.27; pragma experimental ABIEncoderV2; ////// lib/openzeppelin-contracts/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) /* pragma solidity ^0.8.0; */ /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } ////// lib/openzeppelin-contracts/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) /* pragma solidity ^0.8.0; */ /* import "../utils/Context.sol"; */ /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) /* pragma solidity ^0.8.0; */ /* import "./IERC20.sol"; */ /* import "./extensions/IERC20Metadata.sol"; */ /* import "../../utils/Context.sol"; */ /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev 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 {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) /* pragma solidity ^0.8.0; */ // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } ////// src/IUniswapV2Factory.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } ////// src/IUniswapV2Pair.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } ////// src/IUniswapV2Router02.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } /* pragma solidity >=0.8.10; */ /* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */ /* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */ /* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */ /* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */ /* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */ /* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */ /* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */ contract FPT is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public marketingWallet; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; uint256 public percentForLPBurn = 0; // 25 = .25% bool public lpBurnEnabled = false; 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 = false; uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForMarketing; 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 marketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event devWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event AutoNukeLP(); event ManualNukeLP(); constructor() ERC20("FPT", "FPT") { 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 _buyMarketingFee = 23; uint256 _buyLiquidityFee = 1; uint256 _buyDevFee = 0; uint256 _sellMarketingFee = 23; uint256 _sellLiquidityFee = 1; uint256 _sellDevFee = 0; uint256 totalSupply = 1_000_000 * 1e18; maxTransactionAmount = 10_000 * 1e18; // 1% from total supply maxTransactionAmountTxn maxWallet = 10_000 * 1e18; // 1% from total supply maxWallet swapTokensAtAmount = (totalSupply * 20) / 10000; // 0.2% swap wallet buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; marketingWallet = address(0x3D8ac8b8590F9F202418d89AE24cE139d2BdeB8F); // set as marketing wallet devWallet = address(0x3D8ac8b8590F9F202418d89AE24cE139d2BdeB8F); // 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 {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; 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() * 5) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.5%" ); 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 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; require(buyTotalFees <= 25, "Must keep fees at 25% or less"); } function updateSellFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; require(sellTotalFees <= 25, "Must keep fees at 25% 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 updateMarketingWallet(address newMarketingWallet) external onlyOwner { emit marketingWalletUpdated(newMarketingWallet, marketingWallet); marketingWallet = newMarketingWallet; } function updateDevWallet(address newWallet) external onlyOwner { emit devWalletUpdated(newWallet, devWallet); devWallet = newWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } event BoughtEarly(address indexed sniper); 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; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / 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 + tokensForMarketing + 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); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div( totalTokensToSwap ); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; (success, ) = address(devWallet).call{value: ethForDev}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } 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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","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":"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":"buyMarketingFee","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":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"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":"sellMarketingFee","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":[],"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":"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":"tokensForMarketing","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":"_marketingFee","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":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","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":"_marketingFee","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
60c06040525f600b555f600c5f6101000a81548160ff021916908315150217905550610e10600d55610708600f55600160115f6101000a81548160ff0219169083151502179055505f601160016101000a81548160ff0219169083151502179055505f601160026101000a81548160ff0219169083151502179055505f60135f6101000a81548160ff02191690831515021790555034801561009f575f5ffd5b506040518060400160405280600381526020017f46505400000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4650540000000000000000000000000000000000000000000000000000000000815250816003908161011b9190610cc0565b50806004908161012b9190610cc0565b50505061014a61013f61057860201b60201c565b61057f60201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d905061017381600161064260201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156101f0573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102149190610ded565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610279573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061029d9190610ded565b6040518363ffffffff1660e01b81526004016102ba929190610e27565b6020604051808303815f875af11580156102d6573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102fa9190610ded565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff168152505061034060a051600161064260201b60201c565b61035360a051600161072260201b60201c565b5f601790505f600190505f5f90505f601790505f600190505f5f90505f69d3c21bcecceda1000000905069021e19e0c9bab240000060088190555069021e19e0c9bab2400000600a819055506127106014826103af9190610e7b565b6103b99190610ee9565b6009819055508660158190555085601681905550846017819055506017546016546015546103e79190610f19565b6103f19190610f19565b6014819055508360198190555082601a8190555081601b81905550601b54601a5460195461041f9190610f19565b6104299190610f19565b601881905550733d8ac8b8590f9f202418d89ae24ce139d2bdeb8f60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550733d8ac8b8590f9f202418d89ae24ce139d2bdeb8f60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506104f56104e86107c060201b60201c565b60016107e860201b60201c565b6105063060016107e860201b60201c565b61051961dead60016107e860201b60201c565b61053761052a6107c060201b60201c565b600161064260201b60201c565b61054830600161064260201b60201c565b61055b61dead600161064260201b60201c565b61056b338261091660201b60201c565b5050505050505050611087565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61065061057860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166106746107c060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146106ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c190610fa6565b60405180910390fd5b8060205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b8060215f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6107f661057860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1661081a6107c060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614610870576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086790610fa6565b60405180910390fd5b80601f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161090a9190610fde565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097b90611041565b60405180910390fd5b6109955f8383610a7960201b60201c565b8060025f8282546109a69190610f19565b92505081905550805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546109f89190610f19565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a5c919061106e565b60405180910390a3610a755f8383610a7e60201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610afe57607f821691505b602082108103610b1157610b10610aba565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302610b737fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610b38565b610b7d8683610b38565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f610bc1610bbc610bb784610b95565b610b9e565b610b95565b9050919050565b5f819050919050565b610bda83610ba7565b610bee610be682610bc8565b848454610b44565b825550505050565b5f5f905090565b610c05610bf6565b610c10818484610bd1565b505050565b5b81811015610c3357610c285f82610bfd565b600181019050610c16565b5050565b601f821115610c7857610c4981610b17565b610c5284610b29565b81016020851015610c61578190505b610c75610c6d85610b29565b830182610c15565b50505b505050565b5f82821c905092915050565b5f610c985f1984600802610c7d565b1980831691505092915050565b5f610cb08383610c89565b9150826002028217905092915050565b610cc982610a83565b67ffffffffffffffff811115610ce257610ce1610a8d565b5b610cec8254610ae7565b610cf7828285610c37565b5f60209050601f831160018114610d28575f8415610d16578287015190505b610d208582610ca5565b865550610d87565b601f198416610d3686610b17565b5f5b82811015610d5d57848901518255600182019150602085019450602081019050610d38565b86831015610d7a5784890151610d76601f891682610c89565b8355505b6001600288020188555050505b505050505050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610dbc82610d93565b9050919050565b610dcc81610db2565b8114610dd6575f5ffd5b50565b5f81519050610de781610dc3565b92915050565b5f60208284031215610e0257610e01610d8f565b5b5f610e0f84828501610dd9565b91505092915050565b610e2181610db2565b82525050565b5f604082019050610e3a5f830185610e18565b610e476020830184610e18565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610e8582610b95565b9150610e9083610b95565b9250828202610e9e81610b95565b91508282048414831517610eb557610eb4610e4e565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f610ef382610b95565b9150610efe83610b95565b925082610f0e57610f0d610ebc565b5b828204905092915050565b5f610f2382610b95565b9150610f2e83610b95565b9250828201905080821115610f4657610f45610e4e565b5b92915050565b5f82825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f610f90602083610f4c565b9150610f9b82610f5c565b602082019050919050565b5f6020820190508181035f830152610fbd81610f84565b9050919050565b5f8115159050919050565b610fd881610fc4565b82525050565b5f602082019050610ff15f830184610fcf565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f61102b601f83610f4c565b915061103682610ff7565b602082019050919050565b5f6020820190508181035f8301526110588161101f565b9050919050565b61106881610b95565b82525050565b5f6020820190506110815f83018461105f565b92915050565b60805160a05161597d61110a5f395f818161139701528181611b90015281816126bd015281816127700152818161279c01528181612dc201528181613e5d01528181613f120152613f3e01525f8181610f4a01528181612d6a015281816140ac0152818161418b015281816141b201528181614248015261426f015261597d5ff3fe6080604052600436106103b0575f3560e01c80638da5cb5b116101e6578063bbc0c7421161010c578063dd62ed3e1161009f578063f2fde38b1161006e578063f2fde38b14610dc7578063f637434214610def578063f8b45b0514610e19578063fe72b27a14610e43576103b7565b8063dd62ed3e14610d0d578063e2f4560514610d49578063e884f26014610d73578063f11a24d314610d9d576103b7565b8063c876d0b9116100db578063c876d0b914610c53578063c8c8ebe414610c7d578063d257b34f14610ca7578063d85ba06314610ce3576103b7565b8063bbc0c74214610bb1578063c024666814610bdb578063c17b5b8c14610c03578063c18bc19514610c2b576103b7565b80639ec22c0e11610184578063a4c82a0011610153578063a4c82a0014610ae7578063a9059cbb14610b11578063aacebbe314610b4d578063b62496f514610b75576103b7565b80639ec22c0e14610a2d5780639fccce3214610a57578063a0d82dc514610a81578063a457c2d714610aab576103b7565b8063924de9b7116101c0578063924de9b71461098957806395d89b41146109b15780639a7a23d6146109db5780639c3b4fdc14610a03576103b7565b80638da5cb5b1461090b5780638ea5220f14610935578063921369131461095f576103b7565b8063313ce567116102d6578063715018a61161026957806375f0a8741161023857806375f0a874146108795780637bce5a04146108a35780638095d564146108cd5780638a8c523c146108f5576103b7565b8063715018a6146107e9578063730c1888146107ff578063751039fc146108275780637571336a14610851576103b7565b80634fbee193116102a55780634fbee1931461071d5780636a486a8e146107595780636ddd17131461078357806370a08231146107ad576103b7565b8063313ce56714610663578063395093511461068d57806349bd5a5e146106c95780634a62bb65146106f3576103b7565b8063199ffc721161034e57806323b872dd1161031d57806323b872dd146105a957806327c8f835146105e55780632c3e486c1461060f5780632e82f1a014610639576103b7565b8063199ffc72146105035780631a8145bb1461052d5780631f3fed8f14610557578063203e727e14610581576103b7565b80631694505e1161038a5780631694505e1461045d57806318160ddd146104875780631816467f146104b1578063184c16c5146104d9576103b7565b806306fdde03146103bb578063095ea7b3146103e557806310d5de5314610421576103b7565b366103b757005b5f5ffd5b3480156103c6575f5ffd5b506103cf610e7f565b6040516103dc919061438b565b60405180910390f35b3480156103f0575f5ffd5b5061040b6004803603810190610406919061443c565b610f0f565b6040516104189190614494565b60405180910390f35b34801561042c575f5ffd5b50610447600480360381019061044291906144ad565b610f2c565b6040516104549190614494565b60405180910390f35b348015610468575f5ffd5b50610471610f48565b60405161047e9190614533565b60405180910390f35b348015610492575f5ffd5b5061049b610f6c565b6040516104a8919061455b565b60405180910390f35b3480156104bc575f5ffd5b506104d760048036038101906104d291906144ad565b610f75565b005b3480156104e4575f5ffd5b506104ed6110af565b6040516104fa919061455b565b60405180910390f35b34801561050e575f5ffd5b506105176110b5565b604051610524919061455b565b60405180910390f35b348015610538575f5ffd5b506105416110bb565b60405161054e919061455b565b60405180910390f35b348015610562575f5ffd5b5061056b6110c1565b604051610578919061455b565b60405180910390f35b34801561058c575f5ffd5b506105a760048036038101906105a29190614574565b6110c7565b005b3480156105b4575f5ffd5b506105cf60048036038101906105ca919061459f565b6111d6565b6040516105dc9190614494565b60405180910390f35b3480156105f0575f5ffd5b506105f96112c8565b60405161060691906145fe565b60405180910390f35b34801561061a575f5ffd5b506106236112ce565b604051610630919061455b565b60405180910390f35b348015610644575f5ffd5b5061064d6112d4565b60405161065a9190614494565b60405180910390f35b34801561066e575f5ffd5b506106776112e6565b6040516106849190614632565b60405180910390f35b348015610698575f5ffd5b506106b360048036038101906106ae919061443c565b6112ee565b6040516106c09190614494565b60405180910390f35b3480156106d4575f5ffd5b506106dd611395565b6040516106ea91906145fe565b60405180910390f35b3480156106fe575f5ffd5b506107076113b9565b6040516107149190614494565b60405180910390f35b348015610728575f5ffd5b50610743600480360381019061073e91906144ad565b6113cb565b6040516107509190614494565b60405180910390f35b348015610764575f5ffd5b5061076d61141d565b60405161077a919061455b565b60405180910390f35b34801561078e575f5ffd5b50610797611423565b6040516107a49190614494565b60405180910390f35b3480156107b8575f5ffd5b506107d360048036038101906107ce91906144ad565b611436565b6040516107e0919061455b565b60405180910390f35b3480156107f4575f5ffd5b506107fd61147b565b005b34801561080a575f5ffd5b5061082560048036038101906108209190614675565b611502565b005b348015610832575f5ffd5b5061083b611640565b6040516108489190614494565b60405180910390f35b34801561085c575f5ffd5b50610877600480360381019061087291906146c5565b6116dd565b005b348015610884575f5ffd5b5061088d6117b1565b60405161089a91906145fe565b60405180910390f35b3480156108ae575f5ffd5b506108b76117d6565b6040516108c4919061455b565b60405180910390f35b3480156108d8575f5ffd5b506108f360048036038101906108ee9190614703565b6117dc565b005b348015610900575f5ffd5b506109096118db565b005b348015610916575f5ffd5b5061091f611996565b60405161092c91906145fe565b60405180910390f35b348015610940575f5ffd5b506109496119be565b60405161095691906145fe565b60405180910390f35b34801561096a575f5ffd5b506109736119e3565b604051610980919061455b565b60405180910390f35b348015610994575f5ffd5b506109af60048036038101906109aa9190614753565b6119e9565b005b3480156109bc575f5ffd5b506109c5611a82565b6040516109d2919061438b565b60405180910390f35b3480156109e6575f5ffd5b50610a0160048036038101906109fc91906146c5565b611b12565b005b348015610a0e575f5ffd5b50610a17611c2a565b604051610a24919061455b565b60405180910390f35b348015610a38575f5ffd5b50610a41611c30565b604051610a4e919061455b565b60405180910390f35b348015610a62575f5ffd5b50610a6b611c36565b604051610a78919061455b565b60405180910390f35b348015610a8c575f5ffd5b50610a95611c3c565b604051610aa2919061455b565b60405180910390f35b348015610ab6575f5ffd5b50610ad16004803603810190610acc919061443c565b611c42565b604051610ade9190614494565b60405180910390f35b348015610af2575f5ffd5b50610afb611d28565b604051610b08919061455b565b60405180910390f35b348015610b1c575f5ffd5b50610b376004803603810190610b32919061443c565b611d2e565b604051610b449190614494565b60405180910390f35b348015610b58575f5ffd5b50610b736004803603810190610b6e91906144ad565b611d4b565b005b348015610b80575f5ffd5b50610b9b6004803603810190610b9691906144ad565b611e85565b604051610ba89190614494565b60405180910390f35b348015610bbc575f5ffd5b50610bc5611ea2565b604051610bd29190614494565b60405180910390f35b348015610be6575f5ffd5b50610c016004803603810190610bfc91906146c5565b611eb5565b005b348015610c0e575f5ffd5b50610c296004803603810190610c249190614703565b611fd7565b005b348015610c36575f5ffd5b50610c516004803603810190610c4c9190614574565b6120d6565b005b348015610c5e575f5ffd5b50610c676121e5565b604051610c749190614494565b60405180910390f35b348015610c88575f5ffd5b50610c916121f7565b604051610c9e919061455b565b60405180910390f35b348015610cb2575f5ffd5b50610ccd6004803603810190610cc89190614574565b6121fd565b604051610cda9190614494565b60405180910390f35b348015610cee575f5ffd5b50610cf7612351565b604051610d04919061455b565b60405180910390f35b348015610d18575f5ffd5b50610d336004803603810190610d2e919061477e565b612357565b604051610d40919061455b565b60405180910390f35b348015610d54575f5ffd5b50610d5d6123d9565b604051610d6a919061455b565b60405180910390f35b348015610d7e575f5ffd5b50610d876123df565b604051610d949190614494565b60405180910390f35b348015610da8575f5ffd5b50610db161247c565b604051610dbe919061455b565b60405180910390f35b348015610dd2575f5ffd5b50610ded6004803603810190610de891906144ad565b612482565b005b348015610dfa575f5ffd5b50610e03612578565b604051610e10919061455b565b60405180910390f35b348015610e24575f5ffd5b50610e2d61257e565b604051610e3a919061455b565b60405180910390f35b348015610e4e575f5ffd5b50610e696004803603810190610e649190614574565b612584565b604051610e769190614494565b60405180910390f35b606060038054610e8e906147e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610eba906147e9565b8015610f055780601f10610edc57610100808354040283529160200191610f05565b820191905f5260205f20905b815481529060010190602001808311610ee857829003601f168201915b5050505050905090565b5f610f22610f1b612850565b8484612857565b6001905092915050565b60208052805f5260405f205f915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b610f7d612850565b73ffffffffffffffffffffffffffffffffffffffff16610f9b611996565b73ffffffffffffffffffffffffffffffffffffffff1614610ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe890614863565b60405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a38060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6110cf612850565b73ffffffffffffffffffffffffffffffffffffffff166110ed611996565b73ffffffffffffffffffffffffffffffffffffffff1614611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90614863565b60405180910390fd5b670de0b6b3a76400006103e86005611159610f6c565b61116391906148ae565b61116d919061491c565b611177919061491c565b8110156111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b0906149bc565b60405180910390fd5b670de0b6b3a7640000816111cd91906148ae565b60088190555050565b5f6111e2848484612a1a565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f611229612850565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156112a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129f90614a4a565b60405180910390fd5b6112bc856112b4612850565b858403612857565b60019150509392505050565b61dead81565b600d5481565b600c5f9054906101000a900460ff1681565b5f6012905090565b5f61138b6112fa612850565b848460015f611307612850565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546113869190614a68565b612857565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60115f9054906101000a900460ff1681565b5f601f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b611483612850565b73ffffffffffffffffffffffffffffffffffffffff166114a1611996565b73ffffffffffffffffffffffffffffffffffffffff16146114f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ee90614863565b60405180910390fd5b6115005f613767565b565b61150a612850565b73ffffffffffffffffffffffffffffffffffffffff16611528611996565b73ffffffffffffffffffffffffffffffffffffffff161461157e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157590614863565b60405180910390fd5b6102588310156115c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ba90614b0b565b60405180910390fd5b6103e882111580156115d557505f8210155b611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b90614b99565b60405180910390fd5b82600d8190555081600b8190555080600c5f6101000a81548160ff021916908315150217905550505050565b5f611649612850565b73ffffffffffffffffffffffffffffffffffffffff16611667611996565b73ffffffffffffffffffffffffffffffffffffffff16146116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b490614863565b60405180910390fd5b5f60115f6101000a81548160ff0219169083151502179055506001905090565b6116e5612850565b73ffffffffffffffffffffffffffffffffffffffff16611703611996565b73ffffffffffffffffffffffffffffffffffffffff1614611759576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175090614863565b60405180910390fd5b8060205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6117e4612850565b73ffffffffffffffffffffffffffffffffffffffff16611802611996565b73ffffffffffffffffffffffffffffffffffffffff1614611858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184f90614863565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546118809190614a68565b61188a9190614a68565b601481905550601960145411156118d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cd90614c01565b60405180910390fd5b505050565b6118e3612850565b73ffffffffffffffffffffffffffffffffffffffff16611901611996565b73ffffffffffffffffffffffffffffffffffffffff1614611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194e90614863565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6119f1612850565b73ffffffffffffffffffffffffffffffffffffffff16611a0f611996565b73ffffffffffffffffffffffffffffffffffffffff1614611a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5c90614863565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611a91906147e9565b80601f0160208091040260200160405190810160405280929190818152602001828054611abd906147e9565b8015611b085780601f10611adf57610100808354040283529160200191611b08565b820191905f5260205f20905b815481529060010190602001808311611aeb57829003601f168201915b5050505050905090565b611b1a612850565b73ffffffffffffffffffffffffffffffffffffffff16611b38611996565b73ffffffffffffffffffffffffffffffffffffffff1614611b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8590614863565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1390614c8f565b60405180910390fd5b611c26828261382a565b5050565b60175481565b60105481565b601e5481565b601b5481565b5f5f60015f611c4f612850565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0090614d1d565b60405180910390fd5b611d1d611d14612850565b85858403612857565b600191505092915050565b600e5481565b5f611d41611d3a612850565b8484612a1a565b6001905092915050565b611d53612850565b73ffffffffffffffffffffffffffffffffffffffff16611d71611996565b73ffffffffffffffffffffffffffffffffffffffff1614611dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbe90614863565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6021602052805f5260405f205f915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611ebd612850565b73ffffffffffffffffffffffffffffffffffffffff16611edb611996565b73ffffffffffffffffffffffffffffffffffffffff1614611f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2890614863565b60405180910390fd5b80601f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611fcb9190614494565b60405180910390a25050565b611fdf612850565b73ffffffffffffffffffffffffffffffffffffffff16611ffd611996565b73ffffffffffffffffffffffffffffffffffffffff1614612053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204a90614863565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a5460195461207b9190614a68565b6120859190614a68565b601881905550601960185411156120d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c890614c01565b60405180910390fd5b505050565b6120de612850565b73ffffffffffffffffffffffffffffffffffffffff166120fc611996565b73ffffffffffffffffffffffffffffffffffffffff1614612152576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214990614863565b60405180910390fd5b670de0b6b3a76400006103e86005612168610f6c565b61217291906148ae565b61217c919061491c565b612186919061491c565b8110156121c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bf90614dab565b60405180910390fd5b670de0b6b3a7640000816121dc91906148ae565b600a8190555050565b60135f9054906101000a900460ff1681565b60085481565b5f612206612850565b73ffffffffffffffffffffffffffffffffffffffff16612224611996565b73ffffffffffffffffffffffffffffffffffffffff161461227a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227190614863565b60405180910390fd5b620186a06001612288610f6c565b61229291906148ae565b61229c919061491c565b8210156122de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d590614e39565b60405180910390fd5b6103e860056122eb610f6c565b6122f591906148ae565b6122ff919061491c565b821115612341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233890614ec7565b60405180910390fd5b8160098190555060019050919050565b60145481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60095481565b5f6123e8612850565b73ffffffffffffffffffffffffffffffffffffffff16612406611996565b73ffffffffffffffffffffffffffffffffffffffff161461245c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245390614863565b60405180910390fd5b5f60135f6101000a81548160ff0219169083151502179055506001905090565b60165481565b61248a612850565b73ffffffffffffffffffffffffffffffffffffffff166124a8611996565b73ffffffffffffffffffffffffffffffffffffffff16146124fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f590614863565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361256c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256390614f55565b60405180910390fd5b61257581613767565b50565b601a5481565b600a5481565b5f61258d612850565b73ffffffffffffffffffffffffffffffffffffffff166125ab611996565b73ffffffffffffffffffffffffffffffffffffffff1614612601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f890614863565b60405180910390fd5b600f546010546126119190614a68565b4211612652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264990614fbd565b60405180910390fd5b6103e8821115612697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268e9061504b565b60405180910390fd5b426010819055505f3073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016126f891906145fe565b602060405180830381865afa158015612713573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612737919061507d565b90505f61276161271061275386856138c890919063ffffffff16565b6138dd90919063ffffffff16565b90505f811115612799576127987f000000000000000000000000000000000000000000000000000000000000000061dead836138f2565b5b5f7f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b81526004015f604051808303815f87803b158015612802575f5ffd5b505af1158015612814573d5f5f3e3d5ffd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036128c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bc90615118565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292a906151a6565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612a0d919061455b565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7f90615234565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aed906152c2565b60405180910390fd5b5f8103612b0d57612b0883835f6138f2565b613762565b60115f9054906101000a900460ff16156131b457612b29611996565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612b975750612b67611996565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bcf57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c09575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c225750600560149054906101000a900460ff16155b156131b357601160019054906101000a900460ff16612d1657601f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612cd65750601f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b612d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0c9061532a565b60405180910390fd5b5b60135f9054906101000a900460ff1615612ed957612d32611996565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612db957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e1157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612ed8574360125f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410612e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8c906153de565b60405180910390fd5b4360125f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5b60215f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612f76575060205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561301d57600854811115612fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb79061546c565b60405180910390fd5b600a54612fcc83611436565b82612fd79190614a68565b1115613018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300f906154d4565b60405180910390fd5b6131b2565b60215f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156130ba575060205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561310957600854811115613104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130fb90615562565b60405180910390fd5b6131b1565b60205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166131b057600a5461316383611436565b8261316e9190614a68565b11156131af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a6906154d4565b60405180910390fd5b5b5b5b5b5b5f6131be30611436565b90505f60095482101590508080156131e25750601160029054906101000a900460ff165b80156131fb5750600560149054906101000a900460ff16155b801561324e575060215f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156132a15750601f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156132f45750601f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15613337576001600560146101000a81548160ff02191690831515021790555061331c613b67565b5f600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff1615801561339a575060215f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80156133b15750600c5f9054906101000a900460ff165b80156133cc5750600d54600e546133c89190614a68565b4210155b801561341f5750601f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561342e5761342c613e36565b505b5f600560149054906101000a900460ff16159050601f5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806134dd5750601f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156134e6575f90505b5f5f905081156137525760215f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561354757505f601854115b15613611576135746064613566601854886138c890919063ffffffff16565b6138dd90919063ffffffff16565b9050601854601a548261358791906148ae565b613591919061491c565b601d5f8282546135a19190614a68565b92505081905550601854601b54826135b991906148ae565b6135c3919061491c565b601e5f8282546135d39190614a68565b92505081905550601854601954826135eb91906148ae565b6135f5919061491c565b601c5f8282546136059190614a68565b9250508190555061372f565b60215f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561366857505f601454115b1561372e576136956064613687601454886138c890919063ffffffff16565b6138dd90919063ffffffff16565b9050601454601654826136a891906148ae565b6136b2919061491c565b601d5f8282546136c29190614a68565b92505081905550601454601754826136da91906148ae565b6136e4919061491c565b601e5f8282546136f49190614a68565b925050819055506014546015548261370c91906148ae565b613716919061491c565b601c5f8282546137269190614a68565b925050819055505b5b5f811115613743576137428730836138f2565b5b808561374f9190615580565b94505b61375d8787876138f2565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060215f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f81836138d591906148ae565b905092915050565b5f81836138ea919061491c565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161395790615234565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036139ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139c5906152c2565b60405180910390fd5b6139d9838383613ff0565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015613a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a5390615623565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254613aea9190614a68565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613b4e919061455b565b60405180910390a3613b61848484613ff5565b50505050565b5f613b7130611436565b90505f601e54601c54601d54613b879190614a68565b613b919190614a68565b90505f5f831480613ba157505f82145b15613bae57505050613e34565b6014600954613bbd91906148ae565b831115613bd6576014600954613bd391906148ae565b92505b5f600283601d5486613be891906148ae565b613bf2919061491c565b613bfc919061491c565b90505f613c128286613ffa90919063ffffffff16565b90505f479050613c218261400f565b5f613c358247613ffa90919063ffffffff16565b90505f613c5f87613c51601c54856138c890919063ffffffff16565b6138dd90919063ffffffff16565b90505f613c8988613c7b601e54866138c890919063ffffffff16565b6138dd90919063ffffffff16565b90505f818385613c999190615580565b613ca39190615580565b90505f601d819055505f601c819055505f601e8190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613cff9061566e565b5f6040518083038185875af1925050503d805f8114613d39576040519150601f19603f3d011682016040523d82523d5f602084013e613d3e565b606091505b5050809850505f87118015613d5257505f81115b15613d9f57613d618782614242565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613d9693929190615682565b60405180910390a15b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613de49061566e565b5f6040518083038185875af1925050503d805f8114613e1e576040519150601f19603f3d011682016040523d82523d5f602084013e613e23565b606091505b505080985050505050505050505050505b565b5f42600e819055505f3073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401613e9891906145fe565b602060405180830381865afa158015613eb3573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ed7919061507d565b90505f613f03612710613ef5600b54856138c890919063ffffffff16565b6138dd90919063ffffffff16565b90505f811115613f3b57613f3a7f000000000000000000000000000000000000000000000000000000000000000061dead836138f2565b5b5f7f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b81526004015f604051808303815f87803b158015613fa4575f5ffd5b505af1158015613fb6573d5f5f3e3d5ffd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b5f81836140079190615580565b905092915050565b5f600267ffffffffffffffff81111561402b5761402a6156b7565b5b6040519080825280602002602001820160405280156140595781602001602082028036833780820191505090505b50905030815f815181106140705761406f6156e4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614113573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906141379190615725565b8160018151811061414b5761414a6156e4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506141b0307f000000000000000000000000000000000000000000000000000000000000000084612857565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401614211959493929190615840565b5f604051808303815f87803b158015614228575f5ffd5b505af115801561423a573d5f5f3e3d5ffd5b505050505050565b61426d307f000000000000000000000000000000000000000000000000000000000000000084612857565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f5f61dead426040518863ffffffff1660e01b81526004016142d396959493929190615898565b60606040518083038185885af11580156142ef573d5f5f3e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061431491906158f7565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61435d8261431b565b6143678185614325565b9350614377818560208601614335565b61438081614343565b840191505092915050565b5f6020820190508181035f8301526143a38184614353565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6143d8826143af565b9050919050565b6143e8816143ce565b81146143f2575f5ffd5b50565b5f81359050614403816143df565b92915050565b5f819050919050565b61441b81614409565b8114614425575f5ffd5b50565b5f8135905061443681614412565b92915050565b5f5f60408385031215614452576144516143ab565b5b5f61445f858286016143f5565b925050602061447085828601614428565b9150509250929050565b5f8115159050919050565b61448e8161447a565b82525050565b5f6020820190506144a75f830184614485565b92915050565b5f602082840312156144c2576144c16143ab565b5b5f6144cf848285016143f5565b91505092915050565b5f819050919050565b5f6144fb6144f66144f1846143af565b6144d8565b6143af565b9050919050565b5f61450c826144e1565b9050919050565b5f61451d82614502565b9050919050565b61452d81614513565b82525050565b5f6020820190506145465f830184614524565b92915050565b61455581614409565b82525050565b5f60208201905061456e5f83018461454c565b92915050565b5f60208284031215614589576145886143ab565b5b5f61459684828501614428565b91505092915050565b5f5f5f606084860312156145b6576145b56143ab565b5b5f6145c3868287016143f5565b93505060206145d4868287016143f5565b92505060406145e586828701614428565b9150509250925092565b6145f8816143ce565b82525050565b5f6020820190506146115f8301846145ef565b92915050565b5f60ff82169050919050565b61462c81614617565b82525050565b5f6020820190506146455f830184614623565b92915050565b6146548161447a565b811461465e575f5ffd5b50565b5f8135905061466f8161464b565b92915050565b5f5f5f6060848603121561468c5761468b6143ab565b5b5f61469986828701614428565b93505060206146aa86828701614428565b92505060406146bb86828701614661565b9150509250925092565b5f5f604083850312156146db576146da6143ab565b5b5f6146e8858286016143f5565b92505060206146f985828601614661565b9150509250929050565b5f5f5f6060848603121561471a576147196143ab565b5b5f61472786828701614428565b935050602061473886828701614428565b925050604061474986828701614428565b9150509250925092565b5f60208284031215614768576147676143ab565b5b5f61477584828501614661565b91505092915050565b5f5f60408385031215614794576147936143ab565b5b5f6147a1858286016143f5565b92505060206147b2858286016143f5565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061480057607f821691505b602082108103614813576148126147bc565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61484d602083614325565b915061485882614819565b602082019050919050565b5f6020820190508181035f83015261487a81614841565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6148b882614409565b91506148c383614409565b92508282026148d181614409565b915082820484148315176148e8576148e7614881565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61492682614409565b915061493183614409565b925082614941576149406148ef565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b5f6149a6602f83614325565b91506149b18261494c565b604082019050919050565b5f6020820190508181035f8301526149d38161499a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f614a34602883614325565b9150614a3f826149da565b604082019050919050565b5f6020820190508181035f830152614a6181614a28565b9050919050565b5f614a7282614409565b9150614a7d83614409565b9250828201905080821115614a9557614a94614881565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e2074685f8201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b5f614af5603383614325565b9150614b0082614a9b565b604082019050919050565b5f6020820190508181035f830152614b2281614ae9565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e742062655f8201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b5f614b83603083614325565b9150614b8e82614b29565b604082019050919050565b5f6020820190508181035f830152614bb081614b77565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c6573730000005f82015250565b5f614beb601d83614325565b9150614bf682614bb7565b602082019050919050565b5f6020820190508181035f830152614c1881614bdf565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f614c79603983614325565b9150614c8482614c1f565b604082019050919050565b5f6020820190508181035f830152614ca681614c6d565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f614d07602583614325565b9150614d1282614cad565b604082019050919050565b5f6020820190508181035f830152614d3481614cfb565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b5f614d95602483614325565b9150614da082614d3b565b604082019050919050565b5f6020820190508181035f830152614dc281614d89565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f614e23603583614325565b9150614e2e82614dc9565b604082019050919050565b5f6020820190508181035f830152614e5081614e17565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f614eb1603483614325565b9150614ebc82614e57565b604082019050919050565b5f6020820190508181035f830152614ede81614ea5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f614f3f602683614325565b9150614f4a82614ee5565b604082019050919050565b5f6020820190508181035f830152614f6c81614f33565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973685f82015250565b5f614fa7602083614325565b9150614fb282614f73565b602082019050919050565b5f6020820190508181035f830152614fd481614f9b565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f5f8201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b5f615035602a83614325565b915061504082614fdb565b604082019050919050565b5f6020820190508181035f83015261506281615029565b9050919050565b5f8151905061507781614412565b92915050565b5f60208284031215615092576150916143ab565b5b5f61509f84828501615069565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f615102602483614325565b915061510d826150a8565b604082019050919050565b5f6020820190508181035f83015261512f816150f6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f615190602283614325565b915061519b82615136565b604082019050919050565b5f6020820190508181035f8301526151bd81615184565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61521e602583614325565b9150615229826151c4565b604082019050919050565b5f6020820190508181035f83015261524b81615212565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6152ac602383614325565b91506152b782615252565b604082019050919050565b5f6020820190508181035f8301526152d9816152a0565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f615314601683614325565b915061531f826152e0565b602082019050919050565b5f6020820190508181035f83015261534181615308565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c5f8201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b5f6153c8604983614325565b91506153d382615348565b606082019050919050565b5f6020820190508181035f8301526153f5816153bc565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f615456603583614325565b9150615461826153fc565b604082019050919050565b5f6020820190508181035f8301526154838161544a565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f6154be601383614325565b91506154c98261548a565b602082019050919050565b5f6020820190508181035f8301526154eb816154b2565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f61554c603683614325565b9150615557826154f2565b604082019050919050565b5f6020820190508181035f83015261557981615540565b9050919050565b5f61558a82614409565b915061559583614409565b92508282039050818111156155ad576155ac614881565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61560d602683614325565b9150615618826155b3565b604082019050919050565b5f6020820190508181035f83015261563a81615601565b9050919050565b5f81905092915050565b50565b5f6156595f83615641565b91506156648261564b565b5f82019050919050565b5f6156788261564e565b9150819050919050565b5f6060820190506156955f83018661454c565b6156a2602083018561454c565b6156af604083018461454c565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061571f816143df565b92915050565b5f6020828403121561573a576157396143ab565b5b5f61574784828501615711565b91505092915050565b5f819050919050565b5f61577361576e61576984615750565b6144d8565b614409565b9050919050565b61578381615759565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6157bb816143ce565b82525050565b5f6157cc83836157b2565b60208301905092915050565b5f602082019050919050565b5f6157ee82615789565b6157f88185615793565b9350615803836157a3565b805f5b8381101561583357815161581a88826157c1565b9750615825836157d8565b925050600181019050615806565b5085935050505092915050565b5f60a0820190506158535f83018861454c565b615860602083018761577a565b818103604083015261587281866157e4565b905061588160608301856145ef565b61588e608083018461454c565b9695505050505050565b5f60c0820190506158ab5f8301896145ef565b6158b8602083018861454c565b6158c5604083018761577a565b6158d2606083018661577a565b6158df60808301856145ef565b6158ec60a083018461454c565b979650505050505050565b5f5f5f6060848603121561590e5761590d6143ab565b5b5f61591b86828701615069565b935050602061592c86828701615069565b925050604061593d86828701615069565b915050925092509256fea2646970667358221220b26b48696bf15026c5fdacaae13f4076d475df0df297036d002ec9fd6b226ec864736f6c634300081b0033
Deployed Bytecode
0x6080604052600436106103b0575f3560e01c80638da5cb5b116101e6578063bbc0c7421161010c578063dd62ed3e1161009f578063f2fde38b1161006e578063f2fde38b14610dc7578063f637434214610def578063f8b45b0514610e19578063fe72b27a14610e43576103b7565b8063dd62ed3e14610d0d578063e2f4560514610d49578063e884f26014610d73578063f11a24d314610d9d576103b7565b8063c876d0b9116100db578063c876d0b914610c53578063c8c8ebe414610c7d578063d257b34f14610ca7578063d85ba06314610ce3576103b7565b8063bbc0c74214610bb1578063c024666814610bdb578063c17b5b8c14610c03578063c18bc19514610c2b576103b7565b80639ec22c0e11610184578063a4c82a0011610153578063a4c82a0014610ae7578063a9059cbb14610b11578063aacebbe314610b4d578063b62496f514610b75576103b7565b80639ec22c0e14610a2d5780639fccce3214610a57578063a0d82dc514610a81578063a457c2d714610aab576103b7565b8063924de9b7116101c0578063924de9b71461098957806395d89b41146109b15780639a7a23d6146109db5780639c3b4fdc14610a03576103b7565b80638da5cb5b1461090b5780638ea5220f14610935578063921369131461095f576103b7565b8063313ce567116102d6578063715018a61161026957806375f0a8741161023857806375f0a874146108795780637bce5a04146108a35780638095d564146108cd5780638a8c523c146108f5576103b7565b8063715018a6146107e9578063730c1888146107ff578063751039fc146108275780637571336a14610851576103b7565b80634fbee193116102a55780634fbee1931461071d5780636a486a8e146107595780636ddd17131461078357806370a08231146107ad576103b7565b8063313ce56714610663578063395093511461068d57806349bd5a5e146106c95780634a62bb65146106f3576103b7565b8063199ffc721161034e57806323b872dd1161031d57806323b872dd146105a957806327c8f835146105e55780632c3e486c1461060f5780632e82f1a014610639576103b7565b8063199ffc72146105035780631a8145bb1461052d5780631f3fed8f14610557578063203e727e14610581576103b7565b80631694505e1161038a5780631694505e1461045d57806318160ddd146104875780631816467f146104b1578063184c16c5146104d9576103b7565b806306fdde03146103bb578063095ea7b3146103e557806310d5de5314610421576103b7565b366103b757005b5f5ffd5b3480156103c6575f5ffd5b506103cf610e7f565b6040516103dc919061438b565b60405180910390f35b3480156103f0575f5ffd5b5061040b6004803603810190610406919061443c565b610f0f565b6040516104189190614494565b60405180910390f35b34801561042c575f5ffd5b50610447600480360381019061044291906144ad565b610f2c565b6040516104549190614494565b60405180910390f35b348015610468575f5ffd5b50610471610f48565b60405161047e9190614533565b60405180910390f35b348015610492575f5ffd5b5061049b610f6c565b6040516104a8919061455b565b60405180910390f35b3480156104bc575f5ffd5b506104d760048036038101906104d291906144ad565b610f75565b005b3480156104e4575f5ffd5b506104ed6110af565b6040516104fa919061455b565b60405180910390f35b34801561050e575f5ffd5b506105176110b5565b604051610524919061455b565b60405180910390f35b348015610538575f5ffd5b506105416110bb565b60405161054e919061455b565b60405180910390f35b348015610562575f5ffd5b5061056b6110c1565b604051610578919061455b565b60405180910390f35b34801561058c575f5ffd5b506105a760048036038101906105a29190614574565b6110c7565b005b3480156105b4575f5ffd5b506105cf60048036038101906105ca919061459f565b6111d6565b6040516105dc9190614494565b60405180910390f35b3480156105f0575f5ffd5b506105f96112c8565b60405161060691906145fe565b60405180910390f35b34801561061a575f5ffd5b506106236112ce565b604051610630919061455b565b60405180910390f35b348015610644575f5ffd5b5061064d6112d4565b60405161065a9190614494565b60405180910390f35b34801561066e575f5ffd5b506106776112e6565b6040516106849190614632565b60405180910390f35b348015610698575f5ffd5b506106b360048036038101906106ae919061443c565b6112ee565b6040516106c09190614494565b60405180910390f35b3480156106d4575f5ffd5b506106dd611395565b6040516106ea91906145fe565b60405180910390f35b3480156106fe575f5ffd5b506107076113b9565b6040516107149190614494565b60405180910390f35b348015610728575f5ffd5b50610743600480360381019061073e91906144ad565b6113cb565b6040516107509190614494565b60405180910390f35b348015610764575f5ffd5b5061076d61141d565b60405161077a919061455b565b60405180910390f35b34801561078e575f5ffd5b50610797611423565b6040516107a49190614494565b60405180910390f35b3480156107b8575f5ffd5b506107d360048036038101906107ce91906144ad565b611436565b6040516107e0919061455b565b60405180910390f35b3480156107f4575f5ffd5b506107fd61147b565b005b34801561080a575f5ffd5b5061082560048036038101906108209190614675565b611502565b005b348015610832575f5ffd5b5061083b611640565b6040516108489190614494565b60405180910390f35b34801561085c575f5ffd5b50610877600480360381019061087291906146c5565b6116dd565b005b348015610884575f5ffd5b5061088d6117b1565b60405161089a91906145fe565b60405180910390f35b3480156108ae575f5ffd5b506108b76117d6565b6040516108c4919061455b565b60405180910390f35b3480156108d8575f5ffd5b506108f360048036038101906108ee9190614703565b6117dc565b005b348015610900575f5ffd5b506109096118db565b005b348015610916575f5ffd5b5061091f611996565b60405161092c91906145fe565b60405180910390f35b348015610940575f5ffd5b506109496119be565b60405161095691906145fe565b60405180910390f35b34801561096a575f5ffd5b506109736119e3565b604051610980919061455b565b60405180910390f35b348015610994575f5ffd5b506109af60048036038101906109aa9190614753565b6119e9565b005b3480156109bc575f5ffd5b506109c5611a82565b6040516109d2919061438b565b60405180910390f35b3480156109e6575f5ffd5b50610a0160048036038101906109fc91906146c5565b611b12565b005b348015610a0e575f5ffd5b50610a17611c2a565b604051610a24919061455b565b60405180910390f35b348015610a38575f5ffd5b50610a41611c30565b604051610a4e919061455b565b60405180910390f35b348015610a62575f5ffd5b50610a6b611c36565b604051610a78919061455b565b60405180910390f35b348015610a8c575f5ffd5b50610a95611c3c565b604051610aa2919061455b565b60405180910390f35b348015610ab6575f5ffd5b50610ad16004803603810190610acc919061443c565b611c42565b604051610ade9190614494565b60405180910390f35b348015610af2575f5ffd5b50610afb611d28565b604051610b08919061455b565b60405180910390f35b348015610b1c575f5ffd5b50610b376004803603810190610b32919061443c565b611d2e565b604051610b449190614494565b60405180910390f35b348015610b58575f5ffd5b50610b736004803603810190610b6e91906144ad565b611d4b565b005b348015610b80575f5ffd5b50610b9b6004803603810190610b9691906144ad565b611e85565b604051610ba89190614494565b60405180910390f35b348015610bbc575f5ffd5b50610bc5611ea2565b604051610bd29190614494565b60405180910390f35b348015610be6575f5ffd5b50610c016004803603810190610bfc91906146c5565b611eb5565b005b348015610c0e575f5ffd5b50610c296004803603810190610c249190614703565b611fd7565b005b348015610c36575f5ffd5b50610c516004803603810190610c4c9190614574565b6120d6565b005b348015610c5e575f5ffd5b50610c676121e5565b604051610c749190614494565b60405180910390f35b348015610c88575f5ffd5b50610c916121f7565b604051610c9e919061455b565b60405180910390f35b348015610cb2575f5ffd5b50610ccd6004803603810190610cc89190614574565b6121fd565b604051610cda9190614494565b60405180910390f35b348015610cee575f5ffd5b50610cf7612351565b604051610d04919061455b565b60405180910390f35b348015610d18575f5ffd5b50610d336004803603810190610d2e919061477e565b612357565b604051610d40919061455b565b60405180910390f35b348015610d54575f5ffd5b50610d5d6123d9565b604051610d6a919061455b565b60405180910390f35b348015610d7e575f5ffd5b50610d876123df565b604051610d949190614494565b60405180910390f35b348015610da8575f5ffd5b50610db161247c565b604051610dbe919061455b565b60405180910390f35b348015610dd2575f5ffd5b50610ded6004803603810190610de891906144ad565b612482565b005b348015610dfa575f5ffd5b50610e03612578565b604051610e10919061455b565b60405180910390f35b348015610e24575f5ffd5b50610e2d61257e565b604051610e3a919061455b565b60405180910390f35b348015610e4e575f5ffd5b50610e696004803603810190610e649190614574565b612584565b604051610e769190614494565b60405180910390f35b606060038054610e8e906147e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610eba906147e9565b8015610f055780601f10610edc57610100808354040283529160200191610f05565b820191905f5260205f20905b815481529060010190602001808311610ee857829003601f168201915b5050505050905090565b5f610f22610f1b612850565b8484612857565b6001905092915050565b60208052805f5260405f205f915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b610f7d612850565b73ffffffffffffffffffffffffffffffffffffffff16610f9b611996565b73ffffffffffffffffffffffffffffffffffffffff1614610ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe890614863565b60405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a38060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6110cf612850565b73ffffffffffffffffffffffffffffffffffffffff166110ed611996565b73ffffffffffffffffffffffffffffffffffffffff1614611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90614863565b60405180910390fd5b670de0b6b3a76400006103e86005611159610f6c565b61116391906148ae565b61116d919061491c565b611177919061491c565b8110156111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b0906149bc565b60405180910390fd5b670de0b6b3a7640000816111cd91906148ae565b60088190555050565b5f6111e2848484612a1a565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f611229612850565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156112a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129f90614a4a565b60405180910390fd5b6112bc856112b4612850565b858403612857565b60019150509392505050565b61dead81565b600d5481565b600c5f9054906101000a900460ff1681565b5f6012905090565b5f61138b6112fa612850565b848460015f611307612850565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546113869190614a68565b612857565b6001905092915050565b7f00000000000000000000000024b202b2b020bfef081ca75c0b2cf5b9e061f9b581565b60115f9054906101000a900460ff1681565b5f601f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b611483612850565b73ffffffffffffffffffffffffffffffffffffffff166114a1611996565b73ffffffffffffffffffffffffffffffffffffffff16146114f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ee90614863565b60405180910390fd5b6115005f613767565b565b61150a612850565b73ffffffffffffffffffffffffffffffffffffffff16611528611996565b73ffffffffffffffffffffffffffffffffffffffff161461157e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157590614863565b60405180910390fd5b6102588310156115c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ba90614b0b565b60405180910390fd5b6103e882111580156115d557505f8210155b611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b90614b99565b60405180910390fd5b82600d8190555081600b8190555080600c5f6101000a81548160ff021916908315150217905550505050565b5f611649612850565b73ffffffffffffffffffffffffffffffffffffffff16611667611996565b73ffffffffffffffffffffffffffffffffffffffff16146116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b490614863565b60405180910390fd5b5f60115f6101000a81548160ff0219169083151502179055506001905090565b6116e5612850565b73ffffffffffffffffffffffffffffffffffffffff16611703611996565b73ffffffffffffffffffffffffffffffffffffffff1614611759576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175090614863565b60405180910390fd5b8060205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6117e4612850565b73ffffffffffffffffffffffffffffffffffffffff16611802611996565b73ffffffffffffffffffffffffffffffffffffffff1614611858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184f90614863565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546118809190614a68565b61188a9190614a68565b601481905550601960145411156118d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cd90614c01565b60405180910390fd5b505050565b6118e3612850565b73ffffffffffffffffffffffffffffffffffffffff16611901611996565b73ffffffffffffffffffffffffffffffffffffffff1614611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194e90614863565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6119f1612850565b73ffffffffffffffffffffffffffffffffffffffff16611a0f611996565b73ffffffffffffffffffffffffffffffffffffffff1614611a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5c90614863565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611a91906147e9565b80601f0160208091040260200160405190810160405280929190818152602001828054611abd906147e9565b8015611b085780601f10611adf57610100808354040283529160200191611b08565b820191905f5260205f20905b815481529060010190602001808311611aeb57829003601f168201915b5050505050905090565b611b1a612850565b73ffffffffffffffffffffffffffffffffffffffff16611b38611996565b73ffffffffffffffffffffffffffffffffffffffff1614611b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8590614863565b60405180910390fd5b7f00000000000000000000000024b202b2b020bfef081ca75c0b2cf5b9e061f9b573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1390614c8f565b60405180910390fd5b611c26828261382a565b5050565b60175481565b60105481565b601e5481565b601b5481565b5f5f60015f611c4f612850565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0090614d1d565b60405180910390fd5b611d1d611d14612850565b85858403612857565b600191505092915050565b600e5481565b5f611d41611d3a612850565b8484612a1a565b6001905092915050565b611d53612850565b73ffffffffffffffffffffffffffffffffffffffff16611d71611996565b73ffffffffffffffffffffffffffffffffffffffff1614611dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbe90614863565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6021602052805f5260405f205f915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611ebd612850565b73ffffffffffffffffffffffffffffffffffffffff16611edb611996565b73ffffffffffffffffffffffffffffffffffffffff1614611f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2890614863565b60405180910390fd5b80601f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611fcb9190614494565b60405180910390a25050565b611fdf612850565b73ffffffffffffffffffffffffffffffffffffffff16611ffd611996565b73ffffffffffffffffffffffffffffffffffffffff1614612053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204a90614863565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a5460195461207b9190614a68565b6120859190614a68565b601881905550601960185411156120d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c890614c01565b60405180910390fd5b505050565b6120de612850565b73ffffffffffffffffffffffffffffffffffffffff166120fc611996565b73ffffffffffffffffffffffffffffffffffffffff1614612152576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214990614863565b60405180910390fd5b670de0b6b3a76400006103e86005612168610f6c565b61217291906148ae565b61217c919061491c565b612186919061491c565b8110156121c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bf90614dab565b60405180910390fd5b670de0b6b3a7640000816121dc91906148ae565b600a8190555050565b60135f9054906101000a900460ff1681565b60085481565b5f612206612850565b73ffffffffffffffffffffffffffffffffffffffff16612224611996565b73ffffffffffffffffffffffffffffffffffffffff161461227a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227190614863565b60405180910390fd5b620186a06001612288610f6c565b61229291906148ae565b61229c919061491c565b8210156122de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d590614e39565b60405180910390fd5b6103e860056122eb610f6c565b6122f591906148ae565b6122ff919061491c565b821115612341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233890614ec7565b60405180910390fd5b8160098190555060019050919050565b60145481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60095481565b5f6123e8612850565b73ffffffffffffffffffffffffffffffffffffffff16612406611996565b73ffffffffffffffffffffffffffffffffffffffff161461245c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245390614863565b60405180910390fd5b5f60135f6101000a81548160ff0219169083151502179055506001905090565b60165481565b61248a612850565b73ffffffffffffffffffffffffffffffffffffffff166124a8611996565b73ffffffffffffffffffffffffffffffffffffffff16146124fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f590614863565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361256c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256390614f55565b60405180910390fd5b61257581613767565b50565b601a5481565b600a5481565b5f61258d612850565b73ffffffffffffffffffffffffffffffffffffffff166125ab611996565b73ffffffffffffffffffffffffffffffffffffffff1614612601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f890614863565b60405180910390fd5b600f546010546126119190614a68565b4211612652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264990614fbd565b60405180910390fd5b6103e8821115612697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268e9061504b565b60405180910390fd5b426010819055505f3073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000024b202b2b020bfef081ca75c0b2cf5b9e061f9b56040518263ffffffff1660e01b81526004016126f891906145fe565b602060405180830381865afa158015612713573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612737919061507d565b90505f61276161271061275386856138c890919063ffffffff16565b6138dd90919063ffffffff16565b90505f811115612799576127987f00000000000000000000000024b202b2b020bfef081ca75c0b2cf5b9e061f9b561dead836138f2565b5b5f7f00000000000000000000000024b202b2b020bfef081ca75c0b2cf5b9e061f9b590508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b81526004015f604051808303815f87803b158015612802575f5ffd5b505af1158015612814573d5f5f3e3d5ffd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036128c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bc90615118565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292a906151a6565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612a0d919061455b565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7f90615234565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aed906152c2565b60405180910390fd5b5f8103612b0d57612b0883835f6138f2565b613762565b60115f9054906101000a900460ff16156131b457612b29611996565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612b975750612b67611996565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bcf57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c09575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c225750600560149054906101000a900460ff16155b156131b357601160019054906101000a900460ff16612d1657601f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612cd65750601f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b612d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0c9061532a565b60405180910390fd5b5b60135f9054906101000a900460ff1615612ed957612d32611996565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612db957507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e1157507f00000000000000000000000024b202b2b020bfef081ca75c0b2cf5b9e061f9b573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612ed8574360125f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410612e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8c906153de565b60405180910390fd5b4360125f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5b60215f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612f76575060205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561301d57600854811115612fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb79061546c565b60405180910390fd5b600a54612fcc83611436565b82612fd79190614a68565b1115613018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300f906154d4565b60405180910390fd5b6131b2565b60215f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156130ba575060205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561310957600854811115613104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130fb90615562565b60405180910390fd5b6131b1565b60205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166131b057600a5461316383611436565b8261316e9190614a68565b11156131af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a6906154d4565b60405180910390fd5b5b5b5b5b5b5f6131be30611436565b90505f60095482101590508080156131e25750601160029054906101000a900460ff165b80156131fb5750600560149054906101000a900460ff16155b801561324e575060215f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156132a15750601f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156132f45750601f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15613337576001600560146101000a81548160ff02191690831515021790555061331c613b67565b5f600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff1615801561339a575060215f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80156133b15750600c5f9054906101000a900460ff165b80156133cc5750600d54600e546133c89190614a68565b4210155b801561341f5750601f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561342e5761342c613e36565b505b5f600560149054906101000a900460ff16159050601f5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806134dd5750601f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156134e6575f90505b5f5f905081156137525760215f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561354757505f601854115b15613611576135746064613566601854886138c890919063ffffffff16565b6138dd90919063ffffffff16565b9050601854601a548261358791906148ae565b613591919061491c565b601d5f8282546135a19190614a68565b92505081905550601854601b54826135b991906148ae565b6135c3919061491c565b601e5f8282546135d39190614a68565b92505081905550601854601954826135eb91906148ae565b6135f5919061491c565b601c5f8282546136059190614a68565b9250508190555061372f565b60215f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561366857505f601454115b1561372e576136956064613687601454886138c890919063ffffffff16565b6138dd90919063ffffffff16565b9050601454601654826136a891906148ae565b6136b2919061491c565b601d5f8282546136c29190614a68565b92505081905550601454601754826136da91906148ae565b6136e4919061491c565b601e5f8282546136f49190614a68565b925050819055506014546015548261370c91906148ae565b613716919061491c565b601c5f8282546137269190614a68565b925050819055505b5b5f811115613743576137428730836138f2565b5b808561374f9190615580565b94505b61375d8787876138f2565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060215f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f81836138d591906148ae565b905092915050565b5f81836138ea919061491c565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161395790615234565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036139ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139c5906152c2565b60405180910390fd5b6139d9838383613ff0565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015613a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a5390615623565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254613aea9190614a68565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613b4e919061455b565b60405180910390a3613b61848484613ff5565b50505050565b5f613b7130611436565b90505f601e54601c54601d54613b879190614a68565b613b919190614a68565b90505f5f831480613ba157505f82145b15613bae57505050613e34565b6014600954613bbd91906148ae565b831115613bd6576014600954613bd391906148ae565b92505b5f600283601d5486613be891906148ae565b613bf2919061491c565b613bfc919061491c565b90505f613c128286613ffa90919063ffffffff16565b90505f479050613c218261400f565b5f613c358247613ffa90919063ffffffff16565b90505f613c5f87613c51601c54856138c890919063ffffffff16565b6138dd90919063ffffffff16565b90505f613c8988613c7b601e54866138c890919063ffffffff16565b6138dd90919063ffffffff16565b90505f818385613c999190615580565b613ca39190615580565b90505f601d819055505f601c819055505f601e8190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613cff9061566e565b5f6040518083038185875af1925050503d805f8114613d39576040519150601f19603f3d011682016040523d82523d5f602084013e613d3e565b606091505b5050809850505f87118015613d5257505f81115b15613d9f57613d618782614242565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613d9693929190615682565b60405180910390a15b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613de49061566e565b5f6040518083038185875af1925050503d805f8114613e1e576040519150601f19603f3d011682016040523d82523d5f602084013e613e23565b606091505b505080985050505050505050505050505b565b5f42600e819055505f3073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000024b202b2b020bfef081ca75c0b2cf5b9e061f9b56040518263ffffffff1660e01b8152600401613e9891906145fe565b602060405180830381865afa158015613eb3573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ed7919061507d565b90505f613f03612710613ef5600b54856138c890919063ffffffff16565b6138dd90919063ffffffff16565b90505f811115613f3b57613f3a7f00000000000000000000000024b202b2b020bfef081ca75c0b2cf5b9e061f9b561dead836138f2565b5b5f7f00000000000000000000000024b202b2b020bfef081ca75c0b2cf5b9e061f9b590508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b81526004015f604051808303815f87803b158015613fa4575f5ffd5b505af1158015613fb6573d5f5f3e3d5ffd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b5f81836140079190615580565b905092915050565b5f600267ffffffffffffffff81111561402b5761402a6156b7565b5b6040519080825280602002602001820160405280156140595781602001602082028036833780820191505090505b50905030815f815181106140705761406f6156e4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614113573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906141379190615725565b8160018151811061414b5761414a6156e4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506141b0307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612857565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401614211959493929190615840565b5f604051808303815f87803b158015614228575f5ffd5b505af115801561423a573d5f5f3e3d5ffd5b505050505050565b61426d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612857565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f5f61dead426040518863ffffffff1660e01b81526004016142d396959493929190615898565b60606040518083038185885af11580156142ef573d5f5f3e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061431491906158f7565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61435d8261431b565b6143678185614325565b9350614377818560208601614335565b61438081614343565b840191505092915050565b5f6020820190508181035f8301526143a38184614353565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6143d8826143af565b9050919050565b6143e8816143ce565b81146143f2575f5ffd5b50565b5f81359050614403816143df565b92915050565b5f819050919050565b61441b81614409565b8114614425575f5ffd5b50565b5f8135905061443681614412565b92915050565b5f5f60408385031215614452576144516143ab565b5b5f61445f858286016143f5565b925050602061447085828601614428565b9150509250929050565b5f8115159050919050565b61448e8161447a565b82525050565b5f6020820190506144a75f830184614485565b92915050565b5f602082840312156144c2576144c16143ab565b5b5f6144cf848285016143f5565b91505092915050565b5f819050919050565b5f6144fb6144f66144f1846143af565b6144d8565b6143af565b9050919050565b5f61450c826144e1565b9050919050565b5f61451d82614502565b9050919050565b61452d81614513565b82525050565b5f6020820190506145465f830184614524565b92915050565b61455581614409565b82525050565b5f60208201905061456e5f83018461454c565b92915050565b5f60208284031215614589576145886143ab565b5b5f61459684828501614428565b91505092915050565b5f5f5f606084860312156145b6576145b56143ab565b5b5f6145c3868287016143f5565b93505060206145d4868287016143f5565b92505060406145e586828701614428565b9150509250925092565b6145f8816143ce565b82525050565b5f6020820190506146115f8301846145ef565b92915050565b5f60ff82169050919050565b61462c81614617565b82525050565b5f6020820190506146455f830184614623565b92915050565b6146548161447a565b811461465e575f5ffd5b50565b5f8135905061466f8161464b565b92915050565b5f5f5f6060848603121561468c5761468b6143ab565b5b5f61469986828701614428565b93505060206146aa86828701614428565b92505060406146bb86828701614661565b9150509250925092565b5f5f604083850312156146db576146da6143ab565b5b5f6146e8858286016143f5565b92505060206146f985828601614661565b9150509250929050565b5f5f5f6060848603121561471a576147196143ab565b5b5f61472786828701614428565b935050602061473886828701614428565b925050604061474986828701614428565b9150509250925092565b5f60208284031215614768576147676143ab565b5b5f61477584828501614661565b91505092915050565b5f5f60408385031215614794576147936143ab565b5b5f6147a1858286016143f5565b92505060206147b2858286016143f5565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061480057607f821691505b602082108103614813576148126147bc565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61484d602083614325565b915061485882614819565b602082019050919050565b5f6020820190508181035f83015261487a81614841565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6148b882614409565b91506148c383614409565b92508282026148d181614409565b915082820484148315176148e8576148e7614881565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61492682614409565b915061493183614409565b925082614941576149406148ef565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b5f6149a6602f83614325565b91506149b18261494c565b604082019050919050565b5f6020820190508181035f8301526149d38161499a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f614a34602883614325565b9150614a3f826149da565b604082019050919050565b5f6020820190508181035f830152614a6181614a28565b9050919050565b5f614a7282614409565b9150614a7d83614409565b9250828201905080821115614a9557614a94614881565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e2074685f8201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b5f614af5603383614325565b9150614b0082614a9b565b604082019050919050565b5f6020820190508181035f830152614b2281614ae9565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e742062655f8201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b5f614b83603083614325565b9150614b8e82614b29565b604082019050919050565b5f6020820190508181035f830152614bb081614b77565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c6573730000005f82015250565b5f614beb601d83614325565b9150614bf682614bb7565b602082019050919050565b5f6020820190508181035f830152614c1881614bdf565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f614c79603983614325565b9150614c8482614c1f565b604082019050919050565b5f6020820190508181035f830152614ca681614c6d565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f614d07602583614325565b9150614d1282614cad565b604082019050919050565b5f6020820190508181035f830152614d3481614cfb565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b5f614d95602483614325565b9150614da082614d3b565b604082019050919050565b5f6020820190508181035f830152614dc281614d89565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f614e23603583614325565b9150614e2e82614dc9565b604082019050919050565b5f6020820190508181035f830152614e5081614e17565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f614eb1603483614325565b9150614ebc82614e57565b604082019050919050565b5f6020820190508181035f830152614ede81614ea5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f614f3f602683614325565b9150614f4a82614ee5565b604082019050919050565b5f6020820190508181035f830152614f6c81614f33565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973685f82015250565b5f614fa7602083614325565b9150614fb282614f73565b602082019050919050565b5f6020820190508181035f830152614fd481614f9b565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f5f8201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b5f615035602a83614325565b915061504082614fdb565b604082019050919050565b5f6020820190508181035f83015261506281615029565b9050919050565b5f8151905061507781614412565b92915050565b5f60208284031215615092576150916143ab565b5b5f61509f84828501615069565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f615102602483614325565b915061510d826150a8565b604082019050919050565b5f6020820190508181035f83015261512f816150f6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f615190602283614325565b915061519b82615136565b604082019050919050565b5f6020820190508181035f8301526151bd81615184565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61521e602583614325565b9150615229826151c4565b604082019050919050565b5f6020820190508181035f83015261524b81615212565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6152ac602383614325565b91506152b782615252565b604082019050919050565b5f6020820190508181035f8301526152d9816152a0565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f615314601683614325565b915061531f826152e0565b602082019050919050565b5f6020820190508181035f83015261534181615308565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c5f8201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b5f6153c8604983614325565b91506153d382615348565b606082019050919050565b5f6020820190508181035f8301526153f5816153bc565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f615456603583614325565b9150615461826153fc565b604082019050919050565b5f6020820190508181035f8301526154838161544a565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f6154be601383614325565b91506154c98261548a565b602082019050919050565b5f6020820190508181035f8301526154eb816154b2565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f61554c603683614325565b9150615557826154f2565b604082019050919050565b5f6020820190508181035f83015261557981615540565b9050919050565b5f61558a82614409565b915061559583614409565b92508282039050818111156155ad576155ac614881565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61560d602683614325565b9150615618826155b3565b604082019050919050565b5f6020820190508181035f83015261563a81615601565b9050919050565b5f81905092915050565b50565b5f6156595f83615641565b91506156648261564b565b5f82019050919050565b5f6156788261564e565b9150819050919050565b5f6060820190506156955f83018661454c565b6156a2602083018561454c565b6156af604083018461454c565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061571f816143df565b92915050565b5f6020828403121561573a576157396143ab565b5b5f61574784828501615711565b91505092915050565b5f819050919050565b5f61577361576e61576984615750565b6144d8565b614409565b9050919050565b61578381615759565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6157bb816143ce565b82525050565b5f6157cc83836157b2565b60208301905092915050565b5f602082019050919050565b5f6157ee82615789565b6157f88185615793565b9350615803836157a3565b805f5b8381101561583357815161581a88826157c1565b9750615825836157d8565b925050600181019050615806565b5085935050505092915050565b5f60a0820190506158535f83018861454c565b615860602083018761577a565b818103604083015261587281866157e4565b905061588160608301856145ef565b61588e608083018461454c565b9695505050505050565b5f60c0820190506158ab5f8301896145ef565b6158b8602083018861454c565b6158c5604083018761577a565b6158d2606083018661577a565b6158df60808301856145ef565b6158ec60a083018461454c565b979650505050505050565b5f5f5f6060848603121561590e5761590d6143ab565b5b5f61591b86828701615069565b935050602061592c86828701615069565b925050604061593d86828701615069565b915050925092509256fea2646970667358221220b26b48696bf15026c5fdacaae13f4076d475df0df297036d002ec9fd6b226ec864736f6c634300081b0033
Deployed Bytecode Sourcemap
32815:19423:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9643:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11810:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34440:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32888:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10763:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41566:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33453:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33268:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34224:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34184;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38880:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12461:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32991:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33363:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33323:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10605:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13362:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32946:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33551:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41731:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34039:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33631:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10934:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2878:103;;;;;;;;;;;;;:::i;:::-;;49820:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37988:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39427:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33083:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33932;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39798:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37781:155;;;;;;;;;;;;;:::i;:::-;;2227:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33120:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34074:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39690:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9862:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40819:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34006:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33507:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34264:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34150:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14080:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33415:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11274:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41327:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34661:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33591:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40629:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40209:412;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39163:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33849:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33153:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38375:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33898:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11512:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33195:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38170:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33969:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3136:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34112:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33235:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51179:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9643:100;9697:13;9730:5;9723:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9643:100;:::o;11810:169::-;11893:4;11910:39;11919:12;:10;:12::i;:::-;11933:7;11942:6;11910:8;:39::i;:::-;11967:4;11960:11;;11810:169;;;;:::o;34440:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32888:51::-;;;:::o;10763:108::-;10824:7;10851:12;;10844:19;;10763:108;:::o;41566:157::-;2458:12;:10;:12::i;:::-;2447:23;;:7;:5;:7::i;:::-;:23;;;2439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41673:9:::1;;;;;;;;;;;41645:38;;41662:9;41645:38;;;;;;;;;;;;41706:9;41694;;:21;;;;;;;;;;;;;;;;;;41566:157:::0;:::o;33453:47::-;;;;:::o;33268:35::-;;;;:::o;34224:33::-;;;;:::o;34184:::-;;;;:::o;38880:275::-;2458:12;:10;:12::i;:::-;2447:23;;:7;:5;:7::i;:::-;:23;;;2439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39017:4:::1;39009;39004:1;38988:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38987:26;;;;:::i;:::-;38986:35;;;;:::i;:::-;38976:6;:45;;38954:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;39140:6;39130;:17;;;;:::i;:::-;39107:20;:40;;;;38880:275:::0;:::o;12461:492::-;12601:4;12618:36;12628:6;12636:9;12647:6;12618:9;:36::i;:::-;12667:24;12694:11;:19;12706:6;12694:19;;;;;;;;;;;;;;;:33;12714:12;:10;:12::i;:::-;12694:33;;;;;;;;;;;;;;;;12667:60;;12766:6;12746:16;:26;;12738:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12853:57;12862:6;12870:12;:10;:12::i;:::-;12903:6;12884:16;:25;12853:8;:57::i;:::-;12941:4;12934:11;;;12461:492;;;;;:::o;32991:53::-;33037:6;32991:53;:::o;33363:45::-;;;;:::o;33323:33::-;;;;;;;;;;;;;:::o;10605:93::-;10663:5;10688:2;10681:9;;10605:93;:::o;13362:215::-;13450:4;13467:80;13476:12;:10;:12::i;:::-;13490:7;13536:10;13499:11;:25;13511:12;:10;:12::i;:::-;13499:25;;;;;;;;;;;;;;;:34;13525:7;13499:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13467:8;:80::i;:::-;13565:4;13558:11;;13362:215;;;;:::o;32946:38::-;;;:::o;33551:33::-;;;;;;;;;;;;;:::o;41731:126::-;41797:4;41821:19;:28;41841:7;41821:28;;;;;;;;;;;;;;;;;;;;;;;;;41814:35;;41731:126;;;:::o;34039:28::-;;;;:::o;33631:31::-;;;;;;;;;;;;;:::o;10934:127::-;11008:7;11035:9;:18;11045:7;11035:18;;;;;;;;;;;;;;;;11028:25;;10934:127;;;:::o;2878:103::-;2458:12;:10;:12::i;:::-;2447:23;;:7;:5;:7::i;:::-;:23;;;2439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2943:30:::1;2970:1;2943:18;:30::i;:::-;2878:103::o:0;49820:555::-;2458:12;:10;:12::i;:::-;2447:23;;:7;:5;:7::i;:::-;:23;;;2439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50022:3:::1;49999:19;:26;;49977:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;50149:4;50137:8;:16;;:33;;;;;50169:1;50157:8;:13;;50137:33;50115:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;50275:19;50257:15;:37;;;;50324:8;50305:16;:27;;;;50359:8;50343:13;;:24;;;;;;;;;;;;;;;;;;49820:555:::0;;;:::o;37988:121::-;38040:4;2458:12;:10;:12::i;:::-;2447:23;;:7;:5;:7::i;:::-;:23;;;2439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38074:5:::1;38057:14;;:22;;;;;;;;;;;;;;;;;;38097:4;38090:11;;37988:121:::0;:::o;39427:167::-;2458:12;:10;:12::i;:::-;2447:23;;:7;:5;:7::i;:::-;:23;;;2439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39582:4:::1;39540:31;:39;39572:6;39540:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39427:167:::0;;:::o;33083:30::-;;;;;;;;;;;;;:::o;33932:::-;;;;:::o;39798:403::-;2458:12;:10;:12::i;:::-;2447:23;;:7;:5;:7::i;:::-;:23;;;2439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39966:13:::1;39948:15;:31;;;;40008:13;39990:15;:31;;;;40044:7;40032:9;:19;;;;40113:9;;40095:15;;40077;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;40062:12;:60;;;;40157:2;40141:12;;:18;;40133:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;39798:403:::0;;;:::o;37781:155::-;2458:12;:10;:12::i;:::-;2447:23;;:7;:5;:7::i;:::-;:23;;;2439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37852:4:::1;37836:13;;:20;;;;;;;;;;;;;;;;;;37881:4;37867:11;;:18;;;;;;;;;;;;;;;;;;37913:15;37896:14;:32;;;;37781:155::o:0;2227:87::-;2273:7;2300:6;;;;;;;;;;;2293:13;;2227:87;:::o;33120:24::-;;;;;;;;;;;;;:::o;34074:31::-;;;;:::o;39690:100::-;2458:12;:10;:12::i;:::-;2447:23;;:7;:5;:7::i;:::-;:23;;;2439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39775:7:::1;39761:11;;:21;;;;;;;;;;;;;;;;;;39690:100:::0;:::o;9862:104::-;9918:13;9951:7;9944:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9862:104;:::o;40819:304::-;2458:12;:10;:12::i;:::-;2447:23;;:7;:5;:7::i;:::-;:23;;;2439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40963:13:::1;40955:21;;:4;:21;;::::0;40933:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;41074:41;41103:4;41109:5;41074:28;:41::i;:::-;40819:304:::0;;:::o;34006:24::-;;;;:::o;33507:35::-;;;;:::o;34264:27::-;;;;:::o;34150:25::-;;;;:::o;14080:413::-;14173:4;14190:24;14217:11;:25;14229:12;:10;:12::i;:::-;14217:25;;;;;;;;;;;;;;;:34;14243:7;14217:34;;;;;;;;;;;;;;;;14190:61;;14290:15;14270:16;:35;;14262:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14383:67;14392:12;:10;:12::i;:::-;14406:7;14434:15;14415:16;:34;14383:8;:67::i;:::-;14481:4;14474:11;;;14080:413;;;;:::o;33415:29::-;;;;:::o;11274:175::-;11360:4;11377:42;11387:12;:10;:12::i;:::-;11401:9;11412:6;11377:9;:42::i;:::-;11437:4;11430:11;;11274:175;;;;:::o;41327:231::-;2458:12;:10;:12::i;:::-;2447:23;;:7;:5;:7::i;:::-;:23;;;2439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41487:15:::1;;;;;;;;;;;41444:59;;41467:18;41444:59;;;;;;;;;;;;41532:18;41514:15;;:36;;;;;;;;;;;;;;;;;;41327:231:::0;:::o;34661:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33591:33::-;;;;;;;;;;;;;:::o;40629:182::-;2458:12;:10;:12::i;:::-;2447:23;;:7;:5;:7::i;:::-;:23;;;2439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40745:8:::1;40714:19;:28;40734:7;40714:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40785:7;40769:34;;;40794:8;40769:34;;;;;;:::i;:::-;;;;;;;;40629:182:::0;;:::o;40209:412::-;2458:12;:10;:12::i;:::-;2447:23;;:7;:5;:7::i;:::-;:23;;;2439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40379:13:::1;40360:16;:32;;;;40422:13;40403:16;:32;;;;40459:7;40446:10;:20;;;;40531:10;;40512:16;;40493;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;40477:13;:64;;;;40577:2;40560:13;;:19;;40552:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;40209:412:::0;;;:::o;39163:256::-;2458:12;:10;:12::i;:::-;2447:23;;:7;:5;:7::i;:::-;:23;;;2439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39303:4:::1;39295;39290:1;39274:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39273:26;;;;:::i;:::-;39272:35;;;;:::i;:::-;39262:6;:45;;39240:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39404:6;39394;:17;;;;:::i;:::-;39382:9;:29;;;;39163:256:::0;:::o;33849:40::-;;;;;;;;;;;;;:::o;33153:35::-;;;;:::o;38375:497::-;38483:4;2458:12;:10;:12::i;:::-;2447:23;;:7;:5;:7::i;:::-;:23;;;2439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38562:6:::1;38557:1;38541:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38540:28;;;;:::i;:::-;38527:9;:41;;38505:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38717:4;38712:1;38696:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38695:26;;;;:::i;:::-;38682:9;:39;;38660:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38833:9;38812:18;:30;;;;38860:4;38853:11;;38375:497:::0;;;:::o;33898:27::-;;;;:::o;11512:151::-;11601:7;11628:11;:18;11640:5;11628:18;;;;;;;;;;;;;;;:27;11647:7;11628:27;;;;;;;;;;;;;;;;11621:34;;11512:151;;;;:::o;33195:33::-;;;;:::o;38170:135::-;38230:4;2458:12;:10;:12::i;:::-;2447:23;;:7;:5;:7::i;:::-;:23;;;2439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38270:5:::1;38247:20;;:28;;;;;;;;;;;;;;;;;;38293:4;38286:11;;38170:135:::0;:::o;33969:30::-;;;;:::o;3136:201::-;2458:12;:10;:12::i;:::-;2447:23;;:7;:5;:7::i;:::-;:23;;;2439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3245:1:::1;3225:22;;:8;:22;;::::0;3217:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3301:28;3320:8;3301:18;:28::i;:::-;3136:201:::0;:::o;34112:31::-;;;;:::o;33235:24::-;;;;:::o;51179:1056::-;51290:4;2458:12;:10;:12::i;:::-;2447:23;;:7;:5;:7::i;:::-;:23;;;2439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51375:19:::1;;51352:20;;:42;;;;:::i;:::-;51334:15;:60;51312:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;51484:4;51473:7;:15;;51465:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51569:15;51546:20;:38;;;;51639:28;51670:4;:14;;;51685:13;51670:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51639:60;;51749:20;51772:44;51810:5;51772:33;51797:7;51772:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;51749:67;;51936:1;51921:12;:16;51917:110;;;51954:61;51970:13;51993:6;52002:12;51954:15;:61::i;:::-;51917:110;52102:19;52139:13;52102:51;;52164:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52191:14;;;;;;;;;;52223:4;52216:11;;;;;51179:1056:::0;;;:::o;900:98::-;953:7;980:10;973:17;;900:98;:::o;17764:380::-;17917:1;17900:19;;:5;:19;;;17892:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17998:1;17979:21;;:7;:21;;;17971:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18082:6;18052:11;:18;18064:5;18052:18;;;;;;;;;;;;;;;:27;18071:7;18052:27;;;;;;;;;;;;;;;:36;;;;18120:7;18104:32;;18113:5;18104:32;;;18129:6;18104:32;;;;;;:::i;:::-;;;;;;;;17764:380;;;:::o;41915:5011::-;42063:1;42047:18;;:4;:18;;;42039:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42140:1;42126:16;;:2;:16;;;42118:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42209:1;42199:6;:11;42195:93;;42227:28;42243:4;42249:2;42253:1;42227:15;:28::i;:::-;42270:7;;42195:93;42304:14;;;;;;;;;;;42300:2487;;;42365:7;:5;:7::i;:::-;42357:15;;:4;:15;;;;:49;;;;;42399:7;:5;:7::i;:::-;42393:13;;:2;:13;;;;42357:49;:86;;;;;42441:1;42427:16;;:2;:16;;;;42357:86;:128;;;;;42478:6;42464:21;;:2;:21;;;;42357:128;:158;;;;;42507:8;;;;;;;;;;;42506:9;42357:158;42335:2441;;;42555:13;;;;;;;;;;;42550:223;;42627:19;:25;42647:4;42627:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42656:19;:23;42676:2;42656:23;;;;;;;;;;;;;;;;;;;;;;;;;42627:52;42593:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42550:223;42929:20;;;;;;;;;;;42925:641;;;43010:7;:5;:7::i;:::-;43004:13;;:2;:13;;;;:72;;;;;43060:15;43046:30;;:2;:30;;;;43004:72;:129;;;;;43119:13;43105:28;;:2;:28;;;;43004:129;42974:573;;;43297:12;43222:28;:39;43251:9;43222:39;;;;;;;;;;;;;;;;:87;43184:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43511:12;43469:28;:39;43498:9;43469:39;;;;;;;;;;;;;;;:54;;;;42974:573;42925:641;43640:25;:31;43666:4;43640:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43697:31;:35;43729:2;43697:35;;;;;;;;;;;;;;;;;;;;;;;;;43696:36;43640:92;43614:1147;;;43819:20;;43809:6;:30;;43775:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;44027:9;;44010:13;44020:2;44010:9;:13::i;:::-;44001:6;:22;;;;:::i;:::-;:35;;43967:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43614:1147;;;44205:25;:29;44231:2;44205:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44260:31;:37;44292:4;44260:37;;;;;;;;;;;;;;;;;;;;;;;;;44259:38;44205:92;44179:582;;;44384:20;;44374:6;:30;;44340:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;44179:582;;;44541:31;:35;44573:2;44541:35;;;;;;;;;;;;;;;;;;;;;;;;;44536:225;;44661:9;;44644:13;44654:2;44644:9;:13::i;:::-;44635:6;:22;;;;:::i;:::-;:35;;44601:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44536:225;44179:582;43614:1147;42335:2441;42300:2487;44799:28;44830:24;44848:4;44830:9;:24::i;:::-;44799:55;;44867:12;44906:18;;44882:20;:42;;44867:57;;44955:7;:35;;;;;44979:11;;;;;;;;;;;44955:35;:61;;;;;45008:8;;;;;;;;;;;45007:9;44955:61;:110;;;;;45034:25;:31;45060:4;45034:31;;;;;;;;;;;;;;;;;;;;;;;;;45033:32;44955:110;:153;;;;;45083:19;:25;45103:4;45083:25;;;;;;;;;;;;;;;;;;;;;;;;;45082:26;44955:153;:194;;;;;45126:19;:23;45146:2;45126:23;;;;;;;;;;;;;;;;;;;;;;;;;45125:24;44955:194;44937:326;;;45187:4;45176:8;;:15;;;;;;;;;;;;;;;;;;45208:10;:8;:10::i;:::-;45246:5;45235:8;;:16;;;;;;;;;;;;;;;;;;44937:326;45294:8;;;;;;;;;;;45293:9;:55;;;;;45319:25;:29;45345:2;45319:29;;;;;;;;;;;;;;;;;;;;;;;;;45293:55;:85;;;;;45365:13;;;;;;;;;;;45293:85;:153;;;;;45431:15;;45414:14;;:32;;;;:::i;:::-;45395:15;:51;;45293:153;:196;;;;;45464:19;:25;45484:4;45464:25;;;;;;;;;;;;;;;;;;;;;;;;;45463:26;45293:196;45275:282;;;45516:29;:27;:29::i;:::-;;45275:282;45569:12;45585:8;;;;;;;;;;;45584:9;45569:24;;45695:19;:25;45715:4;45695:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45724:19;:23;45744:2;45724:23;;;;;;;;;;;;;;;;;;;;;;;;;45695:52;45691:100;;;45774:5;45764:15;;45691:100;45803:12;45818:1;45803:16;;45908:7;45904:969;;;45960:25;:29;45986:2;45960:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;46009:1;45993:13;;:17;45960:50;45956:768;;;46038:34;46068:3;46038:25;46049:13;;46038:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;46031:41;;46141:13;;46121:16;;46114:4;:23;;;;:::i;:::-;46113:41;;;;:::i;:::-;46091:18;;:63;;;;;;;:::i;:::-;;;;;;;;46211:13;;46197:10;;46190:4;:17;;;;:::i;:::-;46189:35;;;;:::i;:::-;46173:12;;:51;;;;;;;:::i;:::-;;;;;;;;46293:13;;46273:16;;46266:4;:23;;;;:::i;:::-;46265:41;;;;:::i;:::-;46243:18;;:63;;;;;;;:::i;:::-;;;;;;;;45956:768;;;46368:25;:31;46394:4;46368:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46418:1;46403:12;;:16;46368:51;46364:360;;;46447:33;46476:3;46447:24;46458:12;;46447:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46440:40;;46548:12;;46529:15;;46522:4;:22;;;;:::i;:::-;46521:39;;;;:::i;:::-;46499:18;;:61;;;;;;;:::i;:::-;;;;;;;;46616:12;;46603:9;;46596:4;:16;;;;:::i;:::-;46595:33;;;;:::i;:::-;46579:12;;:49;;;;;;;:::i;:::-;;;;;;;;46696:12;;46677:15;;46670:4;:22;;;;:::i;:::-;46669:39;;;;:::i;:::-;46647:18;;:61;;;;;;;:::i;:::-;;;;;;;;46364:360;45956:768;46751:1;46744:4;:8;46740:91;;;46773:42;46789:4;46803;46810;46773:15;:42::i;:::-;46740:91;46857:4;46847:14;;;;;:::i;:::-;;;45904:969;46885:33;46901:4;46907:2;46911:6;46885:15;:33::i;:::-;42028:4898;;;;41915:5011;;;;:::o;3497:191::-;3571:16;3590:6;;;;;;;;;;;3571:25;;3616:8;3607:6;;:17;;;;;;;;;;;;;;;;;;3671:8;3640:40;;3661:8;3640:40;;;;;;;;;;;;3560:128;3497:191;:::o;41131:188::-;41248:5;41214:25;:31;41240:4;41214:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41305:5;41271:40;;41299:4;41271:40;;;;;;;;;;;;41131:188;;:::o;23217:98::-;23275:7;23306:1;23302;:5;;;;:::i;:::-;23295:12;;23217:98;;;;:::o;23616:::-;23674:7;23705:1;23701;:5;;;;:::i;:::-;23694:12;;23616:98;;;;:::o;14983:733::-;15141:1;15123:20;;:6;:20;;;15115:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15225:1;15204:23;;:9;:23;;;15196:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15280:47;15301:6;15309:9;15320:6;15280:20;:47::i;:::-;15340:21;15364:9;:17;15374:6;15364:17;;;;;;;;;;;;;;;;15340:41;;15417:6;15400:13;:23;;15392:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15538:6;15522:13;:22;15502:9;:17;15512:6;15502:17;;;;;;;;;;;;;;;:42;;;;15590:6;15566:9;:20;15576:9;15566:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15631:9;15614:35;;15623:6;15614:35;;;15642:6;15614:35;;;;;;:::i;:::-;;;;;;;;15662:46;15682:6;15690:9;15701:6;15662:19;:46::i;:::-;15104:612;14983:733;;;:::o;48056:1756::-;48095:23;48121:24;48139:4;48121:9;:24::i;:::-;48095:50;;48156:25;48252:12;;48218:18;;48184;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;48156:108;;48275:12;48323:1;48304:15;:20;:46;;;;48349:1;48328:17;:22;48304:46;48300:85;;;48367:7;;;;;48300:85;48440:2;48419:18;;:23;;;;:::i;:::-;48401:15;:41;48397:115;;;48498:2;48477:18;;:23;;;;:::i;:::-;48459:41;;48397:115;48573:23;48686:1;48653:17;48618:18;;48600:15;:36;;;;:::i;:::-;48599:71;;;;:::i;:::-;:88;;;;:::i;:::-;48573:114;;48698:26;48727:36;48747:15;48727;:19;;:36;;;;:::i;:::-;48698:65;;48776:25;48804:21;48776:49;;48838:36;48855:18;48838:16;:36::i;:::-;48887:18;48908:44;48934:17;48908:21;:25;;:44;;;;:::i;:::-;48887:65;;48965:23;48991:81;49044:17;48991:34;49006:18;;48991:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;48965:107;;49083:17;49103:51;49136:17;49103:28;49118:12;;49103:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;49083:71;;49167:23;49224:9;49206:15;49193:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;49167:66;;49267:1;49246:18;:22;;;;49300:1;49279:18;:22;;;;49327:1;49312:12;:16;;;;49363:9;;;;;;;;;;;49355:23;;49386:9;49355:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49341:59;;;;;49435:1;49417:15;:19;:42;;;;;49458:1;49440:15;:19;49417:42;49413:278;;;49476:46;49489:15;49506;49476:12;:46::i;:::-;49542:137;49575:18;49612:15;49646:18;;49542:137;;;;;;;;:::i;:::-;;;;;;;;49413:278;49725:15;;;;;;;;;;;49717:29;;49768:21;49717:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49703:101;;;;;48084:1728;;;;;;;;;;48056:1756;:::o;50383:788::-;50440:4;50474:15;50457:14;:32;;;;50544:28;50575:4;:14;;;50590:13;50575:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50544:60;;50654:20;50677:77;50738:5;50677:42;50702:16;;50677:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;50654:100;;50874:1;50859:12;:16;50855:110;;;50892:61;50908:13;50931:6;50940:12;50892:15;:61::i;:::-;50855:110;51040:19;51077:13;51040:51;;51102:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51129:12;;;;;;;;;;51159:4;51152:11;;;;;50383:788;:::o;18744:125::-;;;;:::o;19473:124::-;;;;:::o;22860:98::-;22918:7;22949:1;22945;:5;;;;:::i;:::-;22938:12;;22860:98;;;;:::o;46934:589::-;47060:21;47098:1;47084:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47060:40;;47129:4;47111;47116:1;47111:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;47155:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47145:4;47150:1;47145:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;47190:62;47207:4;47222:15;47240:11;47190:8;:62::i;:::-;47291:15;:66;;;47372:11;47398:1;47442:4;47469;47489:15;47291:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46989:534;46934:589;:::o;47531:517::-;47679:62;47696:4;47711:15;47729:11;47679:8;:62::i;:::-;47784:15;:31;;;47823:9;47856:4;47876:11;47902:1;47945;33037:6;48014:15;47784:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47531: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:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:329::-;3398:6;3447:2;3435:9;3426:7;3422:23;3418:32;3415:119;;;3453:79;;:::i;:::-;3415:119;3573:1;3598:53;3643:7;3634:6;3623:9;3619:22;3598:53;:::i;:::-;3588:63;;3544:117;3339:329;;;;:::o;3674:60::-;3702:3;3723:5;3716:12;;3674:60;;;:::o;3740:142::-;3790:9;3823:53;3841:34;3850:24;3868:5;3850:24;:::i;:::-;3841:34;:::i;:::-;3823:53;:::i;:::-;3810:66;;3740:142;;;:::o;3888:126::-;3938:9;3971:37;4002:5;3971:37;:::i;:::-;3958:50;;3888:126;;;:::o;4020:153::-;4097:9;4130:37;4161:5;4130:37;:::i;:::-;4117:50;;4020:153;;;:::o;4179:185::-;4293:64;4351:5;4293:64;:::i;:::-;4288:3;4281:77;4179:185;;:::o;4370:276::-;4490:4;4528:2;4517:9;4513:18;4505:26;;4541:98;4636:1;4625:9;4621:17;4612:6;4541:98;:::i;:::-;4370:276;;;;:::o;4652:118::-;4739:24;4757:5;4739:24;:::i;:::-;4734:3;4727:37;4652:118;;:::o;4776:222::-;4869:4;4907:2;4896:9;4892:18;4884:26;;4920:71;4988:1;4977:9;4973:17;4964:6;4920:71;:::i;:::-;4776:222;;;;:::o;5004:329::-;5063:6;5112:2;5100:9;5091:7;5087:23;5083:32;5080:119;;;5118:79;;:::i;:::-;5080:119;5238:1;5263:53;5308:7;5299:6;5288:9;5284:22;5263:53;:::i;:::-;5253:63;;5209:117;5004:329;;;;:::o;5339:619::-;5416:6;5424;5432;5481:2;5469:9;5460:7;5456:23;5452:32;5449:119;;;5487:79;;:::i;:::-;5449:119;5607:1;5632:53;5677:7;5668:6;5657:9;5653:22;5632:53;:::i;:::-;5622:63;;5578:117;5734:2;5760:53;5805:7;5796:6;5785:9;5781:22;5760:53;:::i;:::-;5750:63;;5705:118;5862:2;5888:53;5933:7;5924:6;5913:9;5909:22;5888:53;:::i;:::-;5878:63;;5833:118;5339:619;;;;;:::o;5964:118::-;6051:24;6069:5;6051:24;:::i;:::-;6046:3;6039:37;5964:118;;:::o;6088:222::-;6181:4;6219:2;6208:9;6204:18;6196:26;;6232:71;6300:1;6289:9;6285:17;6276:6;6232:71;:::i;:::-;6088:222;;;;:::o;6316:86::-;6351:7;6391:4;6384:5;6380:16;6369:27;;6316:86;;;:::o;6408:112::-;6491:22;6507:5;6491:22;:::i;:::-;6486:3;6479:35;6408:112;;:::o;6526:214::-;6615:4;6653:2;6642:9;6638:18;6630:26;;6666:67;6730:1;6719:9;6715:17;6706:6;6666:67;:::i;:::-;6526:214;;;;:::o;6746:116::-;6816:21;6831:5;6816:21;:::i;:::-;6809:5;6806:32;6796:60;;6852:1;6849;6842:12;6796:60;6746:116;:::o;6868:133::-;6911:5;6949:6;6936:20;6927:29;;6965:30;6989:5;6965:30;:::i;:::-;6868:133;;;;:::o;7007:613::-;7081:6;7089;7097;7146:2;7134:9;7125:7;7121:23;7117:32;7114:119;;;7152:79;;:::i;:::-;7114:119;7272:1;7297:53;7342:7;7333:6;7322:9;7318:22;7297:53;:::i;:::-;7287:63;;7243:117;7399:2;7425:53;7470:7;7461:6;7450:9;7446:22;7425:53;:::i;:::-;7415:63;;7370:118;7527:2;7553:50;7595:7;7586:6;7575:9;7571:22;7553:50;:::i;:::-;7543:60;;7498:115;7007:613;;;;;:::o;7626:468::-;7691:6;7699;7748:2;7736:9;7727:7;7723:23;7719:32;7716:119;;;7754:79;;:::i;:::-;7716:119;7874:1;7899:53;7944:7;7935:6;7924:9;7920:22;7899:53;:::i;:::-;7889:63;;7845:117;8001:2;8027:50;8069:7;8060:6;8049:9;8045:22;8027:50;:::i;:::-;8017:60;;7972:115;7626:468;;;;;:::o;8100:619::-;8177:6;8185;8193;8242:2;8230:9;8221:7;8217:23;8213:32;8210:119;;;8248:79;;:::i;:::-;8210:119;8368:1;8393:53;8438:7;8429:6;8418:9;8414:22;8393:53;:::i;:::-;8383:63;;8339:117;8495:2;8521:53;8566:7;8557:6;8546:9;8542:22;8521:53;:::i;:::-;8511:63;;8466:118;8623:2;8649:53;8694:7;8685:6;8674:9;8670:22;8649:53;:::i;:::-;8639:63;;8594:118;8100:619;;;;;:::o;8725:323::-;8781:6;8830:2;8818:9;8809:7;8805:23;8801:32;8798:119;;;8836:79;;:::i;:::-;8798:119;8956:1;8981:50;9023:7;9014:6;9003:9;8999:22;8981:50;:::i;:::-;8971:60;;8927:114;8725:323;;;;:::o;9054:474::-;9122:6;9130;9179:2;9167:9;9158:7;9154:23;9150:32;9147:119;;;9185:79;;:::i;:::-;9147:119;9305:1;9330:53;9375:7;9366:6;9355:9;9351:22;9330:53;:::i;:::-;9320:63;;9276:117;9432:2;9458:53;9503:7;9494:6;9483:9;9479:22;9458:53;:::i;:::-;9448:63;;9403:118;9054:474;;;;;:::o;9534:180::-;9582:77;9579:1;9572:88;9679:4;9676:1;9669:15;9703:4;9700:1;9693:15;9720:320;9764:6;9801:1;9795:4;9791:12;9781:22;;9848:1;9842:4;9838:12;9869:18;9859:81;;9925:4;9917:6;9913:17;9903:27;;9859:81;9987:2;9979:6;9976:14;9956:18;9953:38;9950:84;;10006:18;;:::i;:::-;9950:84;9771:269;9720:320;;;:::o;10046:182::-;10186:34;10182:1;10174:6;10170:14;10163:58;10046:182;:::o;10234:366::-;10376:3;10397:67;10461:2;10456:3;10397:67;:::i;:::-;10390:74;;10473:93;10562:3;10473:93;:::i;:::-;10591:2;10586:3;10582:12;10575:19;;10234:366;;;:::o;10606:419::-;10772:4;10810:2;10799:9;10795:18;10787:26;;10859:9;10853:4;10849:20;10845:1;10834:9;10830:17;10823:47;10887:131;11013:4;10887:131;:::i;:::-;10879:139;;10606:419;;;:::o;11031:180::-;11079:77;11076:1;11069:88;11176:4;11173:1;11166:15;11200:4;11197:1;11190:15;11217:410;11257:7;11280:20;11298:1;11280:20;:::i;:::-;11275:25;;11314:20;11332:1;11314:20;:::i;:::-;11309:25;;11369:1;11366;11362:9;11391:30;11409:11;11391:30;:::i;:::-;11380:41;;11570:1;11561:7;11557:15;11554:1;11551:22;11531:1;11524:9;11504:83;11481:139;;11600:18;;:::i;:::-;11481:139;11265:362;11217:410;;;;:::o;11633:180::-;11681:77;11678:1;11671:88;11778:4;11775:1;11768:15;11802:4;11799:1;11792:15;11819:185;11859:1;11876:20;11894:1;11876:20;:::i;:::-;11871:25;;11910:20;11928:1;11910:20;:::i;:::-;11905:25;;11949:1;11939:35;;11954:18;;:::i;:::-;11939:35;11996:1;11993;11989:9;11984:14;;11819:185;;;;:::o;12010:234::-;12150:34;12146:1;12138:6;12134:14;12127:58;12219:17;12214:2;12206:6;12202:15;12195:42;12010:234;:::o;12250:366::-;12392:3;12413:67;12477:2;12472:3;12413:67;:::i;:::-;12406:74;;12489:93;12578:3;12489:93;:::i;:::-;12607:2;12602:3;12598:12;12591:19;;12250:366;;;:::o;12622:419::-;12788:4;12826:2;12815:9;12811:18;12803:26;;12875:9;12869:4;12865:20;12861:1;12850:9;12846:17;12839:47;12903:131;13029:4;12903:131;:::i;:::-;12895:139;;12622:419;;;:::o;13047:227::-;13187:34;13183:1;13175:6;13171:14;13164:58;13256:10;13251:2;13243:6;13239:15;13232:35;13047:227;:::o;13280:366::-;13422:3;13443:67;13507:2;13502:3;13443:67;:::i;:::-;13436:74;;13519:93;13608:3;13519:93;:::i;:::-;13637:2;13632:3;13628:12;13621:19;;13280:366;;;:::o;13652:419::-;13818:4;13856:2;13845:9;13841:18;13833:26;;13905:9;13899:4;13895:20;13891:1;13880:9;13876:17;13869:47;13933:131;14059:4;13933:131;:::i;:::-;13925:139;;13652:419;;;:::o;14077:191::-;14117:3;14136:20;14154:1;14136:20;:::i;:::-;14131:25;;14170:20;14188:1;14170:20;:::i;:::-;14165:25;;14213:1;14210;14206:9;14199:16;;14234:3;14231:1;14228:10;14225:36;;;14241:18;;:::i;:::-;14225:36;14077:191;;;;:::o;14274:238::-;14414:34;14410:1;14402:6;14398:14;14391:58;14483:21;14478:2;14470:6;14466:15;14459:46;14274:238;:::o;14518:366::-;14660:3;14681:67;14745:2;14740:3;14681:67;:::i;:::-;14674:74;;14757:93;14846:3;14757:93;:::i;:::-;14875:2;14870:3;14866:12;14859:19;;14518:366;;;:::o;14890:419::-;15056:4;15094:2;15083:9;15079:18;15071:26;;15143:9;15137:4;15133:20;15129:1;15118:9;15114:17;15107:47;15171:131;15297:4;15171:131;:::i;:::-;15163:139;;14890:419;;;:::o;15315:235::-;15455:34;15451:1;15443:6;15439:14;15432:58;15524:18;15519:2;15511:6;15507:15;15500:43;15315:235;:::o;15556:366::-;15698:3;15719:67;15783:2;15778:3;15719:67;:::i;:::-;15712:74;;15795:93;15884:3;15795:93;:::i;:::-;15913:2;15908:3;15904:12;15897:19;;15556:366;;;:::o;15928:419::-;16094:4;16132:2;16121:9;16117:18;16109:26;;16181:9;16175:4;16171:20;16167:1;16156:9;16152:17;16145:47;16209:131;16335:4;16209:131;:::i;:::-;16201:139;;15928:419;;;:::o;16353:179::-;16493:31;16489:1;16481:6;16477:14;16470:55;16353:179;:::o;16538:366::-;16680:3;16701:67;16765:2;16760:3;16701:67;:::i;:::-;16694:74;;16777:93;16866:3;16777:93;:::i;:::-;16895:2;16890:3;16886:12;16879:19;;16538:366;;;:::o;16910:419::-;17076:4;17114:2;17103:9;17099:18;17091:26;;17163:9;17157:4;17153:20;17149:1;17138:9;17134:17;17127:47;17191:131;17317:4;17191:131;:::i;:::-;17183:139;;16910:419;;;:::o;17335:244::-;17475:34;17471:1;17463:6;17459:14;17452:58;17544:27;17539:2;17531:6;17527:15;17520:52;17335:244;:::o;17585:366::-;17727:3;17748:67;17812:2;17807:3;17748:67;:::i;:::-;17741:74;;17824:93;17913:3;17824:93;:::i;:::-;17942:2;17937:3;17933:12;17926:19;;17585:366;;;:::o;17957:419::-;18123:4;18161:2;18150:9;18146:18;18138:26;;18210:9;18204:4;18200:20;18196:1;18185:9;18181:17;18174:47;18238:131;18364:4;18238:131;:::i;:::-;18230:139;;17957:419;;;:::o;18382:224::-;18522:34;18518:1;18510:6;18506:14;18499:58;18591:7;18586:2;18578:6;18574:15;18567:32;18382:224;:::o;18612:366::-;18754:3;18775:67;18839:2;18834:3;18775:67;:::i;:::-;18768:74;;18851:93;18940:3;18851:93;:::i;:::-;18969:2;18964:3;18960:12;18953:19;;18612:366;;;:::o;18984:419::-;19150:4;19188:2;19177:9;19173:18;19165:26;;19237:9;19231:4;19227:20;19223:1;19212:9;19208:17;19201:47;19265:131;19391:4;19265:131;:::i;:::-;19257:139;;18984:419;;;:::o;19409:223::-;19549:34;19545:1;19537:6;19533:14;19526:58;19618:6;19613:2;19605:6;19601:15;19594:31;19409:223;:::o;19638:366::-;19780:3;19801:67;19865:2;19860:3;19801:67;:::i;:::-;19794:74;;19877:93;19966:3;19877:93;:::i;:::-;19995:2;19990:3;19986:12;19979:19;;19638:366;;;:::o;20010:419::-;20176:4;20214:2;20203:9;20199:18;20191:26;;20263:9;20257:4;20253:20;20249:1;20238:9;20234:17;20227:47;20291:131;20417:4;20291:131;:::i;:::-;20283:139;;20010:419;;;:::o;20435:240::-;20575:34;20571:1;20563:6;20559:14;20552:58;20644:23;20639:2;20631:6;20627:15;20620:48;20435:240;:::o;20681:366::-;20823:3;20844:67;20908:2;20903:3;20844:67;:::i;:::-;20837:74;;20920:93;21009:3;20920:93;:::i;:::-;21038:2;21033:3;21029:12;21022:19;;20681:366;;;:::o;21053:419::-;21219:4;21257:2;21246:9;21242:18;21234:26;;21306:9;21300:4;21296:20;21292:1;21281:9;21277:17;21270:47;21334:131;21460:4;21334:131;:::i;:::-;21326:139;;21053:419;;;:::o;21478:239::-;21618:34;21614:1;21606:6;21602:14;21595:58;21687:22;21682:2;21674:6;21670:15;21663:47;21478:239;:::o;21723:366::-;21865:3;21886:67;21950:2;21945:3;21886:67;:::i;:::-;21879:74;;21962:93;22051:3;21962:93;:::i;:::-;22080:2;22075:3;22071:12;22064:19;;21723:366;;;:::o;22095:419::-;22261:4;22299:2;22288:9;22284:18;22276:26;;22348:9;22342:4;22338:20;22334:1;22323:9;22319:17;22312:47;22376:131;22502:4;22376:131;:::i;:::-;22368:139;;22095:419;;;:::o;22520:225::-;22660:34;22656:1;22648:6;22644:14;22637:58;22729:8;22724:2;22716:6;22712:15;22705:33;22520:225;:::o;22751:366::-;22893:3;22914:67;22978:2;22973:3;22914:67;:::i;:::-;22907:74;;22990:93;23079:3;22990:93;:::i;:::-;23108:2;23103:3;23099:12;23092:19;;22751:366;;;:::o;23123:419::-;23289:4;23327:2;23316:9;23312:18;23304:26;;23376:9;23370:4;23366:20;23362:1;23351:9;23347:17;23340:47;23404:131;23530:4;23404:131;:::i;:::-;23396:139;;23123:419;;;:::o;23548:182::-;23688:34;23684:1;23676:6;23672:14;23665:58;23548:182;:::o;23736:366::-;23878:3;23899:67;23963:2;23958:3;23899:67;:::i;:::-;23892:74;;23975:93;24064:3;23975:93;:::i;:::-;24093:2;24088:3;24084:12;24077:19;;23736:366;;;:::o;24108:419::-;24274:4;24312:2;24301:9;24297:18;24289:26;;24361:9;24355:4;24351:20;24347:1;24336:9;24332:17;24325:47;24389:131;24515:4;24389:131;:::i;:::-;24381:139;;24108:419;;;:::o;24533:229::-;24673:34;24669:1;24661:6;24657:14;24650:58;24742:12;24737:2;24729:6;24725:15;24718:37;24533:229;:::o;24768:366::-;24910:3;24931:67;24995:2;24990:3;24931:67;:::i;:::-;24924:74;;25007:93;25096:3;25007:93;:::i;:::-;25125:2;25120:3;25116:12;25109:19;;24768:366;;;:::o;25140:419::-;25306:4;25344:2;25333:9;25329:18;25321:26;;25393:9;25387:4;25383:20;25379:1;25368:9;25364:17;25357:47;25421:131;25547:4;25421:131;:::i;:::-;25413:139;;25140:419;;;:::o;25565:143::-;25622:5;25653:6;25647:13;25638:22;;25669:33;25696:5;25669:33;:::i;:::-;25565:143;;;;:::o;25714:351::-;25784:6;25833:2;25821:9;25812:7;25808:23;25804:32;25801:119;;;25839:79;;:::i;:::-;25801:119;25959:1;25984:64;26040:7;26031:6;26020:9;26016:22;25984:64;:::i;:::-;25974:74;;25930:128;25714:351;;;;:::o;26071:223::-;26211:34;26207:1;26199:6;26195:14;26188:58;26280:6;26275:2;26267:6;26263:15;26256:31;26071:223;:::o;26300:366::-;26442:3;26463:67;26527:2;26522:3;26463:67;:::i;:::-;26456:74;;26539:93;26628:3;26539:93;:::i;:::-;26657:2;26652:3;26648:12;26641:19;;26300:366;;;:::o;26672:419::-;26838:4;26876:2;26865:9;26861:18;26853:26;;26925:9;26919:4;26915:20;26911:1;26900:9;26896:17;26889:47;26953:131;27079:4;26953:131;:::i;:::-;26945:139;;26672:419;;;:::o;27097:221::-;27237:34;27233:1;27225:6;27221:14;27214:58;27306:4;27301:2;27293:6;27289:15;27282:29;27097:221;:::o;27324:366::-;27466:3;27487:67;27551:2;27546:3;27487:67;:::i;:::-;27480:74;;27563:93;27652:3;27563:93;:::i;:::-;27681:2;27676:3;27672:12;27665:19;;27324:366;;;:::o;27696:419::-;27862:4;27900:2;27889:9;27885:18;27877:26;;27949:9;27943:4;27939:20;27935:1;27924:9;27920:17;27913:47;27977:131;28103:4;27977:131;:::i;:::-;27969:139;;27696:419;;;:::o;28121:224::-;28261:34;28257:1;28249:6;28245:14;28238:58;28330:7;28325:2;28317:6;28313:15;28306:32;28121:224;:::o;28351:366::-;28493:3;28514:67;28578:2;28573:3;28514:67;:::i;:::-;28507:74;;28590:93;28679:3;28590:93;:::i;:::-;28708:2;28703:3;28699:12;28692:19;;28351:366;;;:::o;28723:419::-;28889:4;28927:2;28916:9;28912:18;28904:26;;28976:9;28970:4;28966:20;28962:1;28951:9;28947:17;28940:47;29004:131;29130:4;29004:131;:::i;:::-;28996:139;;28723:419;;;:::o;29148:222::-;29288:34;29284:1;29276:6;29272:14;29265:58;29357:5;29352:2;29344:6;29340:15;29333:30;29148:222;:::o;29376:366::-;29518:3;29539:67;29603:2;29598:3;29539:67;:::i;:::-;29532:74;;29615:93;29704:3;29615:93;:::i;:::-;29733:2;29728:3;29724:12;29717:19;;29376:366;;;:::o;29748:419::-;29914:4;29952:2;29941:9;29937:18;29929:26;;30001:9;29995:4;29991:20;29987:1;29976:9;29972:17;29965:47;30029:131;30155:4;30029:131;:::i;:::-;30021:139;;29748:419;;;:::o;30173:172::-;30313:24;30309:1;30301:6;30297:14;30290:48;30173:172;:::o;30351:366::-;30493:3;30514:67;30578:2;30573:3;30514:67;:::i;:::-;30507:74;;30590:93;30679:3;30590:93;:::i;:::-;30708:2;30703:3;30699:12;30692:19;;30351:366;;;:::o;30723:419::-;30889:4;30927:2;30916:9;30912:18;30904:26;;30976:9;30970:4;30966:20;30962:1;30951:9;30947:17;30940:47;31004:131;31130:4;31004:131;:::i;:::-;30996:139;;30723:419;;;:::o;31148:297::-;31288:34;31284:1;31276:6;31272:14;31265:58;31357:34;31352:2;31344:6;31340:15;31333:59;31426:11;31421:2;31413:6;31409:15;31402:36;31148:297;:::o;31451:366::-;31593:3;31614:67;31678:2;31673:3;31614:67;:::i;:::-;31607:74;;31690:93;31779:3;31690:93;:::i;:::-;31808:2;31803:3;31799:12;31792:19;;31451:366;;;:::o;31823:419::-;31989:4;32027:2;32016:9;32012:18;32004:26;;32076:9;32070:4;32066:20;32062:1;32051:9;32047:17;32040:47;32104:131;32230:4;32104:131;:::i;:::-;32096:139;;31823:419;;;:::o;32248:240::-;32388:34;32384:1;32376:6;32372:14;32365:58;32457:23;32452:2;32444:6;32440:15;32433:48;32248:240;:::o;32494:366::-;32636:3;32657:67;32721:2;32716:3;32657:67;:::i;:::-;32650:74;;32733:93;32822:3;32733:93;:::i;:::-;32851:2;32846:3;32842:12;32835:19;;32494:366;;;:::o;32866:419::-;33032:4;33070:2;33059:9;33055:18;33047:26;;33119:9;33113:4;33109:20;33105:1;33094:9;33090:17;33083:47;33147:131;33273:4;33147:131;:::i;:::-;33139:139;;32866:419;;;:::o;33291:169::-;33431:21;33427:1;33419:6;33415:14;33408:45;33291:169;:::o;33466:366::-;33608:3;33629:67;33693:2;33688:3;33629:67;:::i;:::-;33622:74;;33705:93;33794:3;33705:93;:::i;:::-;33823:2;33818:3;33814:12;33807:19;;33466:366;;;:::o;33838:419::-;34004:4;34042:2;34031:9;34027:18;34019:26;;34091:9;34085:4;34081:20;34077:1;34066:9;34062:17;34055:47;34119:131;34245:4;34119:131;:::i;:::-;34111:139;;33838:419;;;:::o;34263:241::-;34403:34;34399:1;34391:6;34387:14;34380:58;34472:24;34467:2;34459:6;34455:15;34448:49;34263:241;:::o;34510:366::-;34652:3;34673:67;34737:2;34732:3;34673:67;:::i;:::-;34666:74;;34749:93;34838:3;34749:93;:::i;:::-;34867:2;34862:3;34858:12;34851:19;;34510:366;;;:::o;34882:419::-;35048:4;35086:2;35075:9;35071:18;35063:26;;35135:9;35129:4;35125:20;35121:1;35110:9;35106:17;35099:47;35163:131;35289:4;35163:131;:::i;:::-;35155:139;;34882:419;;;:::o;35307:194::-;35347:4;35367:20;35385:1;35367:20;:::i;:::-;35362:25;;35401:20;35419:1;35401:20;:::i;:::-;35396:25;;35445:1;35442;35438:9;35430:17;;35469:1;35463:4;35460:11;35457:37;;;35474:18;;:::i;:::-;35457:37;35307:194;;;;:::o;35507:225::-;35647:34;35643:1;35635:6;35631:14;35624:58;35716:8;35711:2;35703:6;35699:15;35692:33;35507:225;:::o;35738:366::-;35880:3;35901:67;35965:2;35960:3;35901:67;:::i;:::-;35894:74;;35977:93;36066:3;35977:93;:::i;:::-;36095:2;36090:3;36086:12;36079:19;;35738:366;;;:::o;36110:419::-;36276:4;36314:2;36303:9;36299:18;36291:26;;36363:9;36357:4;36353:20;36349:1;36338:9;36334:17;36327:47;36391:131;36517:4;36391:131;:::i;:::-;36383:139;;36110:419;;;:::o;36535:147::-;36636:11;36673:3;36658:18;;36535:147;;;;:::o;36688:114::-;;:::o;36808:398::-;36967:3;36988:83;37069:1;37064:3;36988:83;:::i;:::-;36981:90;;37080:93;37169:3;37080:93;:::i;:::-;37198:1;37193:3;37189:11;37182:18;;36808:398;;;:::o;37212:379::-;37396:3;37418:147;37561:3;37418:147;:::i;:::-;37411:154;;37582:3;37575:10;;37212:379;;;:::o;37597:442::-;37746:4;37784:2;37773:9;37769:18;37761:26;;37797:71;37865:1;37854:9;37850:17;37841:6;37797:71;:::i;:::-;37878:72;37946:2;37935:9;37931:18;37922:6;37878:72;:::i;:::-;37960;38028:2;38017:9;38013:18;38004:6;37960:72;:::i;:::-;37597:442;;;;;;:::o;38045:180::-;38093:77;38090:1;38083:88;38190:4;38187:1;38180:15;38214:4;38211:1;38204:15;38231:180;38279:77;38276:1;38269:88;38376:4;38373:1;38366:15;38400:4;38397:1;38390:15;38417:143;38474:5;38505:6;38499:13;38490:22;;38521:33;38548:5;38521:33;:::i;:::-;38417:143;;;;:::o;38566:351::-;38636:6;38685:2;38673:9;38664:7;38660:23;38656:32;38653:119;;;38691:79;;:::i;:::-;38653:119;38811:1;38836:64;38892:7;38883:6;38872:9;38868:22;38836:64;:::i;:::-;38826:74;;38782:128;38566:351;;;;:::o;38923:85::-;38968:7;38997:5;38986:16;;38923:85;;;:::o;39014:158::-;39072:9;39105:61;39123:42;39132:32;39158:5;39132:32;:::i;:::-;39123:42;:::i;:::-;39105:61;:::i;:::-;39092:74;;39014:158;;;:::o;39178:147::-;39273:45;39312:5;39273:45;:::i;:::-;39268:3;39261:58;39178:147;;:::o;39331:114::-;39398:6;39432:5;39426:12;39416:22;;39331:114;;;:::o;39451:184::-;39550:11;39584:6;39579:3;39572:19;39624:4;39619:3;39615:14;39600:29;;39451:184;;;;:::o;39641:132::-;39708:4;39731:3;39723:11;;39761:4;39756:3;39752:14;39744:22;;39641:132;;;:::o;39779:108::-;39856:24;39874:5;39856:24;:::i;:::-;39851:3;39844:37;39779:108;;:::o;39893:179::-;39962:10;39983:46;40025:3;40017:6;39983:46;:::i;:::-;40061:4;40056:3;40052:14;40038:28;;39893:179;;;;:::o;40078:113::-;40148:4;40180;40175:3;40171:14;40163:22;;40078:113;;;:::o;40227:732::-;40346:3;40375:54;40423:5;40375:54;:::i;:::-;40445:86;40524:6;40519:3;40445:86;:::i;:::-;40438:93;;40555:56;40605:5;40555:56;:::i;:::-;40634:7;40665:1;40650:284;40675:6;40672:1;40669:13;40650:284;;;40751:6;40745:13;40778:63;40837:3;40822:13;40778:63;:::i;:::-;40771:70;;40864:60;40917:6;40864:60;:::i;:::-;40854:70;;40710:224;40697:1;40694;40690:9;40685:14;;40650:284;;;40654:14;40950:3;40943:10;;40351:608;;;40227:732;;;;:::o;40965:831::-;41228:4;41266:3;41255:9;41251:19;41243:27;;41280:71;41348:1;41337:9;41333:17;41324:6;41280:71;:::i;:::-;41361:80;41437:2;41426:9;41422:18;41413:6;41361:80;:::i;:::-;41488:9;41482:4;41478:20;41473:2;41462:9;41458:18;41451:48;41516:108;41619:4;41610:6;41516:108;:::i;:::-;41508:116;;41634:72;41702:2;41691:9;41687:18;41678:6;41634:72;:::i;:::-;41716:73;41784:3;41773:9;41769:19;41760:6;41716:73;:::i;:::-;40965:831;;;;;;;;:::o;41802:807::-;42051:4;42089:3;42078:9;42074:19;42066:27;;42103:71;42171:1;42160:9;42156:17;42147:6;42103:71;:::i;:::-;42184:72;42252:2;42241:9;42237:18;42228:6;42184:72;:::i;:::-;42266:80;42342:2;42331:9;42327:18;42318:6;42266:80;:::i;:::-;42356;42432:2;42421:9;42417:18;42408:6;42356:80;:::i;:::-;42446:73;42514:3;42503:9;42499:19;42490:6;42446:73;:::i;:::-;42529;42597:3;42586:9;42582:19;42573:6;42529:73;:::i;:::-;41802:807;;;;;;;;;:::o;42615:663::-;42703:6;42711;42719;42768:2;42756:9;42747:7;42743:23;42739:32;42736:119;;;42774:79;;:::i;:::-;42736:119;42894:1;42919:64;42975:7;42966:6;42955:9;42951:22;42919:64;:::i;:::-;42909:74;;42865:128;43032:2;43058:64;43114:7;43105:6;43094:9;43090:22;43058:64;:::i;:::-;43048:74;;43003:129;43171:2;43197:64;43253:7;43244:6;43233:9;43229:22;43197:64;:::i;:::-;43187:74;;43142:129;42615:663;;;;;:::o
Swarm Source
ipfs://b26b48696bf15026c5fdacaae13f4076d475df0df297036d002ec9fd6b226ec8
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.