ERC-20
Overview
Max Total Supply
97,634,844.25348523 $TEST
Holders
38
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
167,791.786201999 $TESTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ERC20
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-14 */ /** Total Supply: 100,000,000 Max Wallet: 4% (4,000,000 Tokens) Max Buy: 4% (4,000,000 Tokens) Max Sell: 4% (4,000,000 Tokens) Buy / Sell Tax: 9% - 5% Marketing - 3% LP - 1% Development */ pragma solidity ^0.8.13; // SPDX-License-Identifier: MIT interface IERC20 { function totalSupply() external view returns (uint256); function decimals() external view returns (uint8); function symbol() external view returns (string memory); function name() external view returns (string memory); function getOwner() external view returns (address); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); function allowance(address _owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } interface IUniswapV2ERC20 { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint 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 (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint 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 (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); 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(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Router01 { function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function factory() external pure returns (address); function WETH() external pure returns (address); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getamountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getamountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getamountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getamountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } /** * @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 { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = msg.sender; _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == msg.sender, "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 onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = 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 onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } } ////////// Contract ///////////// contract ERC20 is IERC20, Ownable { using Address for address; using EnumerableSet for EnumerableSet.AddressSet; event antiBotBan(address indexed value); mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => uint256) private _sellLock; mapping (address => uint256) private _buyLock; EnumerableSet.AddressSet private _excluded; EnumerableSet.AddressSet private _excludedFromSellLock; EnumerableSet.AddressSet private _excludedFromBuyLock; EnumerableSet.AddressSet private _excludedFromStaking; EnumerableSet.AddressSet private _isBlacklisted; //Token Info string public _name = "Test"; string public _symbol = "$TEST"; uint8 private constant _decimals = 9; uint256 public constant InitialSupply= 100000000 * 10**_decimals;//equals 100 000 000 tokens //Used for anti-bot autoblacklist uint256 private tradingEnabledAt; //DO NOT CHANGE, THIS IS FOR HOLDING A TIMESTAMP uint256 public autoBanTime = 45; // Set to the amount of time in seconds after enable trading you want addresses to be auto blacklisted if they buy/sell/transfer in this time. uint256 public enableAutoBlacklist = 1; //Leave 1 if using, set to 0 if not using. //Divider for the MaxBalance based on circulating Supply (4%) uint8 public constant BalanceLimitDivider=24; //Divider for sellLimit based on circulating Supply (4%)) uint16 public constant SellLimitDivider=24; //Sellers get locked for MaxSellLockTime (put in seconds, works better especially if changing later) so they can't dump repeatedly uint16 public constant MaxSellLockTime= 0 seconds; //Buyers get locked for MaxBuyLockTime (put in seconds, works better especially if changing later) so they can't buy repeatedly uint16 public constant MaxBuyLockTime= 0 seconds; //The time Liquidity gets locked at start and prolonged once it gets released uint256 private constant DefaultLiquidityLockTime= 1800; //DevWallets address public Development=payable(0xAa4a88605692a1ef9a1b9eC11F076F4cB285C3Bd); address public Marketing=payable(0x6A91BAc0E02f646DD04da78a80daF9B572bb9C5a); //MainNet address private constant UniswapV2Router=0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; //variables that track balanceLimit and sellLimit, //can be updated based on circulating supply and Sell- and BalanceLimitDividers uint256 private _circulatingSupply =InitialSupply; uint256 public balanceLimit = _circulatingSupply; uint256 public sellLimit = _circulatingSupply; uint256 private MaxBuy = 4000000 * 10**_decimals; // 40,000,000 tokens //Tracks the current Taxes, different Taxes can be applied for buy/sell/transfer uint8 private _buyTax; uint8 private _sellTax; uint8 private _transferTax; uint8 private _burnTax; uint8 private _liquidityTax; uint8 private _stakingTax; address private _uniswapv2PairAddress; IUniswapV2Router02 private _uniswapv2Router; //Checks if address is in Team, is needed to give Team access even if contract is renounced //Team doesn't have access to critical Functions that could turn this into a Rugpull(Exept liquidity unlocks) function _isTeam(address addr) private view returns (bool){ return addr==owner()||addr==Development||addr==Marketing; } //Constructor/////////// constructor () { //contract creator gets 90% of the token to create LP-Pair uint256 deployerBalance=_circulatingSupply; _balances[msg.sender] = deployerBalance; emit Transfer(address(0), msg.sender, deployerBalance); // UniswapV2 Router _uniswapv2Router = IUniswapV2Router02(UniswapV2Router); //Creates a UniswapV2 Pair _uniswapv2PairAddress = IUniswapV2Factory(_uniswapv2Router.factory()).createPair(address(this), _uniswapv2Router.WETH()); //Sets Buy/Sell limits balanceLimit=InitialSupply/BalanceLimitDivider; sellLimit=InitialSupply/SellLimitDivider; //Sets sellLockTime sellLockTime=0; //Sets buyLockTime buyLockTime=0; //Set Starting Tax _buyTax=9; _sellTax=9; _transferTax=9; _burnTax=10; _liquidityTax=20; _stakingTax=70; //Team wallets and deployer are excluded from Taxes _excluded.add(Development); _excluded.add(Marketing); _excluded.add(msg.sender); //excludes UniswapV2 Router, pair, contract and burn address from staking _excludedFromStaking.add(address(_uniswapv2Router)); _excludedFromStaking.add(_uniswapv2PairAddress); _excludedFromStaking.add(address(this)); _excludedFromStaking.add(0x000000000000000000000000000000000000dEaD); } //Transfer functionality/// //transfer function, every transfer runs through this function function _transfer(address sender, address recipient, uint256 amount) private{ require(sender != address(0), "Transfer from zero"); require(recipient != address(0), "Transfer to zero"); //Manually Excluded adresses are transfering tax and lock free bool isExcluded = (_excluded.contains(sender) || _excluded.contains(recipient)); //Transactions from and to the contract are always tax and lock free bool isContractTransfer=(sender==address(this) || recipient==address(this)); //transfers between UniswapV2Router and UniswapV2Pair are tax and lock free address uniswapv2Router=address(_uniswapv2Router); bool isLiquidityTransfer = ((sender == _uniswapv2PairAddress && recipient == uniswapv2Router) || (recipient == _uniswapv2PairAddress && sender == uniswapv2Router)); //differentiate between buy/sell/transfer to apply different taxes/restrictions bool isBuy=sender==_uniswapv2PairAddress|| sender == uniswapv2Router; bool isSell=recipient==_uniswapv2PairAddress|| recipient == uniswapv2Router; //Pick transfer if(isContractTransfer || isLiquidityTransfer || isExcluded){ _feelessTransfer(sender, recipient, amount); } else{ //once trading is enabled, it can't be turned off again require(tradingEnabled,"trading not yet enabled"); _taxedTransfer(sender,recipient,amount,isBuy,isSell); } } //applies taxes, checks for limits, locks generates autoLP and stakingETH, and autostakes function _taxedTransfer(address sender, address recipient, uint256 amount,bool isBuy,bool isSell) private{ uint256 recipientBalance = _balances[recipient]; uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "Transfer exceeds balance"); uint8 tax; if(isSell){ if(!_excludedFromSellLock.contains(sender)){ //If seller sold less than sellLockTime(2h 50m) ago, sell is declined, can be disabled by Team require(_sellLock[sender]<=block.timestamp||sellLockDisabled,"Seller in sellLock"); //Sets the time sellers get locked(2 hours 50 mins by default) _sellLock[sender]=block.timestamp+sellLockTime; } //Sells can't exceed the sell limit(21,000 Tokens at start, can be updated to circulating supply) require(amount<=sellLimit,"Dump protection"); require(_isBlacklisted.contains(sender) == false, "Address blacklisted!"); if (block.timestamp <= tradingEnabledAt + autoBanTime && enableAutoBlacklist == 1) { _isBlacklisted.add(sender); emit antiBotBan(sender); } tax=_sellTax; } else if(isBuy){ if(!_excludedFromBuyLock.contains(recipient)){ //If buyer bought less than buyLockTime(2h 50m) ago, buy is declined, can be disabled by Team require(_buyLock[recipient]<=block.timestamp||buyLockDisabled,"Buyer in buyLock"); //Sets the time buyers get locked(2 hours 50 mins by default) _buyLock[recipient]=block.timestamp+buyLockTime; } //Checks If the recipient balance(excluding Taxes) would exceed Balance Limit require(recipientBalance+amount<=balanceLimit,"whale protection"); require(amount <= MaxBuy,"Tx amount exceeding max buy amount"); require(_isBlacklisted.contains(recipient) == false, "Address blacklisted!"); if (block.timestamp <= tradingEnabledAt + autoBanTime && enableAutoBlacklist == 1) { _isBlacklisted.add(recipient); emit antiBotBan(recipient); } tax=_buyTax; } else {//Transfer //withdraws ETH when sending less or equal to 1 Token //that way you can withdraw without connecting to any dApp. //might needs higher gas limit if(amount<=10**(_decimals)) claimETH(sender); //Checks If the recipient balance(excluding Taxes) would exceed Balance Limit require(recipientBalance+amount<=balanceLimit,"whale protection"); //Transfers are disabled in sell lock, this doesn't stop someone from transfering before //selling, but there is no satisfying solution for that, and you would need to pax additional tax if(!_excludedFromSellLock.contains(sender)) require(_sellLock[sender]<=block.timestamp||sellLockDisabled,"Sender in Lock"); require(_isBlacklisted.contains(sender) == false, "Sender address blacklisted!"); require(_isBlacklisted.contains(recipient) == false, "Recipient address blacklisted!"); if (block.timestamp <= tradingEnabledAt + autoBanTime && enableAutoBlacklist == 1) { _isBlacklisted.add(sender); emit antiBotBan(sender); } tax=_transferTax; } //Swapping AutoLP and MarketingETH is only possible if sender is not uniswapv2 pair, //if its not manually disabled, if its not already swapping and if its a Sell to avoid // people from causing a large price impact from repeatedly transfering when theres a large backlog of Tokens if((sender!=_uniswapv2PairAddress)&&(!manualConversion)&&(!_isSwappingContractModifier)&&isSell) _swapContractToken(); //Calculates the exact token amount for each tax uint256 tokensToBeBurnt=_calculateFee(amount, tax, _burnTax); //staking and liquidity Tax get treated the same, only during conversion they get split uint256 contractToken=_calculateFee(amount, tax, _stakingTax+_liquidityTax); //Subtract the Taxed Tokens from the amount uint256 taxedAmount=amount-(tokensToBeBurnt + contractToken); //Removes token and handles staking _removeToken(sender,amount); //Adds the taxed tokens to the contract wallet _balances[address(this)] += contractToken; //Burns tokens _circulatingSupply-=tokensToBeBurnt; //Adds token and handles staking _addToken(recipient, taxedAmount); emit Transfer(sender,recipient,taxedAmount); } //Feeless transfer only transfers and autostakes function _feelessTransfer(address sender, address recipient, uint256 amount) private{ uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "Transfer exceeds balance"); //Removes token and handles staking _removeToken(sender,amount); //Adds token and handles staking _addToken(recipient, amount); emit Transfer(sender,recipient,amount); } //Calculates the token that should be taxed function _calculateFee(uint256 amount, uint8 tax, uint8 taxPercent) private pure returns (uint256) { return (amount*tax*taxPercent) / 10000; } //ETH Autostake///////////////////////////////////////////////////////////////////////////////////////// //Autostake uses the balances of each holder to redistribute auto generated ETH. //Each transaction _addToken and _removeToken gets called for the transaction amount //WithdrawETH can be used for any holder to withdraw ETH at any time, like true Staking, //so unlike MRAT clones you can leave and forget your Token and claim after a while //lock for the withdraw bool private _isWithdrawing; //Multiplier to add some accuracy to profitPerShare uint256 private constant DistributionMultiplier = 2**64; //profit for each share a holder holds, a share equals a token. uint256 public profitPerShare; //the total reward distributed through staking, for tracking purposes uint256 public totalStakingReward; //the total payout through staking, for tracking purposes uint256 public totalPayouts; uint8 public marketingShare=100; //balance that is claimable by the team uint256 public marketingBalance; //Mapping of the already paid out(or missed) shares of each staker mapping(address => uint256) private alreadyPaidShares; //Mapping of shares that are reserved for payout mapping(address => uint256) private toBePaid; //Contract, uniswapv2 and burnAddress are excluded, other addresses like CEX //can be manually excluded, excluded list is limited to 30 entries to avoid a //out of gas exeption during sells function isExcludedFromStaking(address addr) public view returns (bool){ return _excludedFromStaking.contains(addr); } //Check if address is blacklisted function isBlacklisted(address addr) public view returns (bool){ return _isBlacklisted.contains(addr); } //Total shares equals circulating supply minus excluded Balances function _getTotalShares() public view returns (uint256){ uint256 shares=_circulatingSupply; //substracts all excluded from shares, excluded list is limited to 30 // to avoid creating a Honeypot through OutOfGas exeption for(uint i=0; i<_excludedFromStaking.length(); i++){ shares-=_balances[_excludedFromStaking.at(i)]; } return shares; } //adds Token to balances, adds new ETH to the toBePaid mapping and resets staking function _addToken(address addr, uint256 amount) private { //the amount of token after transfer uint256 newAmount=_balances[addr]+amount; if(isExcludedFromStaking(addr)){ _balances[addr]=newAmount; return; } //gets the payout before the change uint256 payment=_newDividentsOf(addr); //resets dividents to 0 for newAmount alreadyPaidShares[addr] = profitPerShare * newAmount; //adds dividents to the toBePaid mapping toBePaid[addr]+=payment; //sets newBalance _balances[addr]=newAmount; } //removes Token, adds ETH to the toBePaid mapping and resets staking function _removeToken(address addr, uint256 amount) private { //the amount of token after transfer uint256 newAmount=_balances[addr]-amount; if(isExcludedFromStaking(addr)){ _balances[addr]=newAmount; return; } //gets the payout before the change uint256 payment=_newDividentsOf(addr); //sets newBalance _balances[addr]=newAmount; //resets dividents to 0 for newAmount alreadyPaidShares[addr] = profitPerShare * newAmount; //adds dividents to the toBePaid mapping toBePaid[addr]+=payment; } //gets the not dividents of a staker that aren't in the toBePaid mapping //returns wrong value for excluded accounts function _newDividentsOf(address staker) private view returns (uint256) { uint256 fullPayout = profitPerShare * _balances[staker]; // if theres an overflow for some unexpected reason, return 0, instead of // an exeption to still make trades possible if(fullPayout<alreadyPaidShares[staker]) return 0; return (fullPayout - alreadyPaidShares[staker]) / DistributionMultiplier; } //distributes eth between marketing share and dividents function _distributeStake(uint256 ETHamount) private { // Deduct marketing Tax uint256 marketingSplit = (ETHamount * marketingShare) / 100; uint256 amount = ETHamount - marketingSplit; marketingBalance+=marketingSplit; if (amount > 0) { totalStakingReward += amount; uint256 totalShares=_getTotalShares(); //when there are 0 shares, add everything to marketing budget if (totalShares == 0) { marketingBalance += amount; }else{ //Increases profit per share based on current total shares profitPerShare += ((amount * DistributionMultiplier) / totalShares); } } } event OnWithdrawETH(uint256 amount, address recipient); //withdraws all dividents of address function claimETH(address addr) private{ require(!_isWithdrawing); _isWithdrawing=true; uint256 amount; if(isExcludedFromStaking(addr)){ //if excluded just withdraw remaining toBePaid ETH amount=toBePaid[addr]; toBePaid[addr]=0; } else{ uint256 newAmount=_newDividentsOf(addr); //sets payout mapping to current amount alreadyPaidShares[addr] = profitPerShare * _balances[addr]; //the amount to be paid amount=toBePaid[addr]+newAmount; toBePaid[addr]=0; } if(amount==0){//no withdraw if 0 amount _isWithdrawing=false; return; } totalPayouts+=amount; address[] memory path = new address[](2); path[0] = _uniswapv2Router.WETH(); //ETH path[1] = RewardsAddress; //BUSD Rewards - Option to enable. _uniswapv2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}( 0, path, addr, block.timestamp); emit OnWithdrawETH(amount, addr); _isWithdrawing=false; } //Launch Rewards Address - Can be Changed - Rewards not enabled at launch. address public RewardsAddress=(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48); //USDC //Swap Contract Tokens////////////////////////////////////////////////////////////////////////////////// //tracks auto generated ETH, useful for ticker etc uint256 public totalLPETH; //Locks the swap if already swapping bool private _isSwappingContractModifier; modifier lockTheSwap { _isSwappingContractModifier = true; _; _isSwappingContractModifier = false; } uint256 currentAmountToSwap = 400000 * 10**_decimals; // 400,000 tokens (0.4%) //swaps the token on the contract for Marketing ETH and LP Token. //always swaps the sellLimit of token to avoid a large price impact function _swapContractToken() private lockTheSwap{ uint256 contractBalance=_balances[address(this)]; uint16 totalTax=_liquidityTax+_stakingTax; uint256 tokenToSwap = currentAmountToSwap; //only swap if contractBalance is larger than tokenToSwap, and totalTax is unequal to 0 if(contractBalance<tokenToSwap||totalTax==0){ return; } //splits the token in TokenForLiquidity and tokenForMarketing uint256 tokenForLiquidity=(tokenToSwap*_liquidityTax)/totalTax; uint256 tokenForMarketing= tokenToSwap-tokenForLiquidity; //splits tokenForLiquidity in 2 halves uint256 liqToken=tokenForLiquidity/2; uint256 liqETHToken=tokenForLiquidity-liqToken; //swaps marktetingToken and the liquidity token half for ETH uint256 swapToken=liqETHToken+tokenForMarketing; //Gets the initial ETH balance, so swap won't touch any staked ETH uint256 initialETHBalance = address(this).balance; _swapTokenForETH(swapToken); uint256 newETH=(address(this).balance - initialETHBalance); //calculates the amount of ETH belonging to the LP-Pair and converts them to LP uint256 liqETH = (newETH*liqETHToken)/swapToken; _addLiquidity(liqToken, liqETH); //Get the ETH balance after LP generation to get the //exact amount of token left for Staking uint256 distributeETH=(address(this).balance - initialETHBalance); //distributes remaining ETH between stakers and Marketing _distributeStake(distributeETH); } //swaps tokens on the contract for ETH function _swapTokenForETH(uint256 amount) private { _approve(address(this), address(_uniswapv2Router), amount); address[] memory path = new address[](2); path[0] = address(this); path[1] = _uniswapv2Router.WETH(); _uniswapv2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( amount, 0, path, address(this), block.timestamp ); } //Adds Liquidity directly to the contract where LP are locked(unlike safemoon forks, that transfer it to the owner) function _addLiquidity(uint256 tokenamount, uint256 ethamount) private { totalLPETH+=ethamount; _approve(address(this), address(_uniswapv2Router), tokenamount); _uniswapv2Router.addLiquidityETH{value: ethamount}( address(this), tokenamount, 0, 0, address(this), block.timestamp ); } //public functions ///////////////////////////////////////////////////////////////////////////////////// function getLiquidityReleaseTimeInSeconds() public view returns (uint256){ if(block.timestamp<_liquidityUnlockTime){ return _liquidityUnlockTime-block.timestamp; } return 0; } function getBurnedTokens() public view returns(uint256){ return (InitialSupply-_circulatingSupply)/10**_decimals; } function getLimits() public view returns(uint256 balance, uint256 sell){ return(balanceLimit/10**_decimals, sellLimit/10**_decimals); } function getTaxes() public view returns(uint256 burnTax,uint256 liquidityTax,uint256 marketingTax, uint256 buyTax, uint256 sellTax, uint256 transferTax){ return (_burnTax,_liquidityTax,_stakingTax,_buyTax,_sellTax,_transferTax); } //How long is a given address still locked from selling //function getAddressSellLockTimeInSeconds(address AddressToCheck) public view returns (uint256){ // uint256 lockTime=_sellLock[AddressToCheck]; // if(lockTime<=block.timestamp) // { // return 0; // } // return lockTime-block.timestamp; //} //function getSellLockTimeInSeconds() public view returns(uint256){ // return sellLockTime; //} function getcurrentAmountToSwap() public view returns (uint256){ return currentAmountToSwap; } //How long is a given address still locked from buying - not used //function getAddressBuyLockTimeInSeconds(address AddressToCheck) public view returns (uint256){ // uint256 lockTime=_buyLock[AddressToCheck]; // if(lockTime<=block.timestamp) // { // return 0; // } // return lockTime-block.timestamp; //} //function getBuyLockTimeInSeconds() public view returns(uint256){ // return buyLockTime; //} //Functions every wallet can call - no sell lock in isde //Resets sell lock of caller to the default sellLockTime should something go very wrong //function AddressResetSellLock() public{ // _sellLock[msg.sender]=block.timestamp+sellLockTime; //} //Resets buy lock of caller to the default buyLockTime should something go very wrong - no buy lock in usde // function AddressResetBuyLock() public{ // _buyLock[msg.sender]=block.timestamp+buyLockTime; // } //withdraws dividents of sender function Rewards() public{ claimETH(msg.sender); } function getDividents(address addr) public view returns (uint256){ if(isExcludedFromStaking(addr)) return toBePaid[addr]; return _newDividentsOf(addr)+toBePaid[addr]; } //Settings////////////////////////////////////////////////////////////////////////////////////////////// bool public sellLockDisabled; uint256 public sellLockTime; bool public buyLockDisabled; uint256 public buyLockTime; bool public manualConversion; function CollectMarketingETH() public onlyOwner{ uint256 amount=marketingBalance; marketingBalance=0; payable(Development).transfer((amount*25) / 100); payable(Marketing).transfer((amount*75) / 100); } function TeamCollectXMarketingETH(uint256 amount) public onlyOwner{ require(amount<=marketingBalance); marketingBalance-=amount; payable(Development).transfer((amount*25) / 100); payable(Marketing).transfer((amount*75) / 100); } //switches autoLiquidity and marketing ETH generation during transfers function TeamSwitchManualETHConversion(bool manual) public onlyOwner{ manualConversion=manual; } function TeamChangeMaxBuy(uint256 newMaxBuy) public onlyOwner{ MaxBuy=newMaxBuy * 10**_decimals; } function TeamChangeDevelopment(address newDevelopment) public onlyOwner{ Development=payable(newDevelopment); } function TeamChangeMarketing(address newMarketing) public onlyOwner{ Marketing=payable(newMarketing); } function TeamChangeRewardsAddress(address newRewardsAddress) public onlyOwner{ RewardsAddress=(newRewardsAddress); } function updateTokenDetails(string memory newName, string memory newSymbol) public onlyOwner { _name = newName; _symbol = newSymbol; } //Disables the timeLock after selling for everyone function TeamDisableSellLock(bool disabled) public onlyOwner{ sellLockDisabled=disabled; } //Disables the timeLock after buying for everyone function TeamDisableBuyLock(bool disabled) public onlyOwner{ buyLockDisabled=disabled; } //Sets SellLockTime, needs to be lower than MaxSellLockTime function TeamSetSellLockTime(uint256 sellLockSeconds)public onlyOwner{ require(sellLockSeconds<=MaxSellLockTime,"Sell Lock time too high"); sellLockTime=sellLockSeconds; } //Sets BuyLockTime, needs to be lower than MaxBuyLockTime function TeamSetBuyLockTime(uint256 buyLockSeconds)public onlyOwner{ require(buyLockSeconds<=MaxBuyLockTime,"Buy Lock time too high"); buyLockTime=buyLockSeconds; } //Allows CA owner to change how much the contract sells to prevent massive contract sells as the token grows. function TeamUpdateAmountToSwap(uint256 newSwapAmount) public onlyOwner{ currentAmountToSwap = newSwapAmount; } //Allows wallet exclusion to be added after launch function AddWalletExclusion(address exclusionAdd) public onlyOwner{ _excluded.add(exclusionAdd); } //Sets Taxes function TeamSetTaxes(uint8 burnTaxes, uint8 liquidityTaxes, uint8 stakingTaxes,uint8 buyTax, uint8 sellTax, uint8 transferTax) public onlyOwner{ uint8 totalTax=burnTaxes+liquidityTaxes+stakingTaxes; require(totalTax==100, "burn+liq+marketing needs to equal 100%"); _burnTax=burnTaxes; _liquidityTax=liquidityTaxes; _stakingTax=stakingTaxes; _buyTax=buyTax; _sellTax=sellTax; _transferTax=transferTax; } //How much of the staking tax should be allocated for marketing function TeamChangeMarketingShare(uint8 newShare) public onlyOwner{ require(newShare<=100); marketingShare=newShare; } //manually converts contract token to LP and staking ETH function TeamCreateLPandETH() public onlyOwner{ _swapContractToken(); } //Limits need to be at least target, to avoid setting value to 0(avoid potential Honeypot) function TeamUpdateLimits(uint256 newBalanceLimit, uint256 newSellLimit) public onlyOwner{ //SellLimit needs to be below 1% to avoid a Large Price impact when generating auto LP require(newSellLimit<_circulatingSupply/100); //Adds decimals to limits newBalanceLimit=newBalanceLimit*10**_decimals; newSellLimit=newSellLimit*10**_decimals; //Calculates the target Limits based on supply uint256 targetBalanceLimit=_circulatingSupply/BalanceLimitDivider; uint256 targetSellLimit=_circulatingSupply/SellLimitDivider; require((newBalanceLimit>=targetBalanceLimit), "newBalanceLimit needs to be at least target"); require((newSellLimit>=targetSellLimit), "newSellLimit needs to be at least target"); balanceLimit = newBalanceLimit; sellLimit = newSellLimit; } //Adds address to blacklist and prevents sells, buys or transfers. function addAddressToBlacklist(address blacklistedAddress) external onlyOwner { _isBlacklisted.add(blacklistedAddress); } //Remove address from blacklist and allow sells, buys or transfers. function removeAddressFromBlacklist(address blacklistedAddress) external onlyOwner { _isBlacklisted.remove(blacklistedAddress); } //Setup Functions/////////////////////////////////////////////////////////////////////////////////////// bool public tradingEnabled; address private _liquidityTokenAddress; //Enables trading for everyone function SetupEnableTrading() public onlyOwner{ tradingEnabled=true; tradingEnabledAt=block.timestamp; } //Sets up the LP-Token Address required for LP Release function SetupLiquidityTokenAddress(address liquidityTokenAddress) public onlyOwner{ _liquidityTokenAddress=liquidityTokenAddress; } //Liquidity Lock//////////////////////////////////////////////////////////////////////////////////////// //the timestamp when Liquidity unlocks uint256 private _liquidityUnlockTime; function TeamExtendLiquidityLock(uint256 secondsUntilUnlock) public onlyOwner{ _prolongLiquidityLock(secondsUntilUnlock+block.timestamp); } function _prolongLiquidityLock(uint256 newUnlockTime) private{ // require new unlock time to be longer than old one require(newUnlockTime>_liquidityUnlockTime); _liquidityUnlockTime=newUnlockTime; } //Release Liquidity Tokens once unlock time is over function REL() public onlyOwner { //Only callable if liquidity Unlock time is over require(block.timestamp >= _liquidityUnlockTime, "Not yet unlocked"); IUniswapV2ERC20 liquidityToken = IUniswapV2ERC20(_liquidityTokenAddress); uint256 amount = liquidityToken.balanceOf(address(this)); //Liquidity release if something goes wrong at start liquidityToken.transfer(Development, amount); } //Removes Liquidity once unlock Time is over, function REM(bool addToStaking) public onlyOwner{ //Only callable if liquidity Unlock time is over require(block.timestamp >= _liquidityUnlockTime, "Not yet unlocked"); _liquidityUnlockTime=block.timestamp+DefaultLiquidityLockTime; IUniswapV2ERC20 liquidityToken = IUniswapV2ERC20(_liquidityTokenAddress); uint256 amount = liquidityToken.balanceOf(address(this)); liquidityToken.approve(address(_uniswapv2Router),amount); //Removes Liquidity and either distributes liquidity ETH to stakers, or // adds them to marketing Balance //Token will be converted //to Liquidity and Staking ETH again uint256 initialETHBalance = address(this).balance; _uniswapv2Router.removeLiquidityETHSupportingFeeOnTransferTokens( address(this), amount, 0, 0, address(this), block.timestamp ); uint256 newETHBalance = address(this).balance-initialETHBalance; if(addToStaking){ _distributeStake(newETHBalance); } else{ marketingBalance+=newETHBalance; } } //Releases all remaining ETH on the contract wallet, so ETH wont be burned function TeamCollectRemainingETH() public onlyOwner{ require(block.timestamp >= _liquidityUnlockTime, "Not yet unlocked"); _liquidityUnlockTime=block.timestamp+DefaultLiquidityLockTime; (bool sent,) =Development.call{value: (address(this).balance)}(""); require(sent); } //////////////////////////////////////////////////////////////////////////////////////////////////////// //external////////////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////////////////////// receive() external payable {} fallback() external payable {} // IERC20 function getOwner() external view override returns (address) { return owner(); } function name() external view override returns (string memory) { return _name; } function symbol() external view override returns (string memory) { return _symbol; } function decimals() external pure override returns (uint8) { return _decimals; } function totalSupply() external view override returns (uint256) { return _circulatingSupply; } function balanceOf(address account) external view override returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) external override returns (bool) { _transfer(msg.sender, recipient, amount); return true; } function allowance(address _owner, address spender) external view override returns (uint256) { return _allowances[_owner][spender]; } function approve(address spender, uint256 amount) external override returns (bool) { _approve(msg.sender, spender, amount); return true; } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "Approve from zero"); require(spender != address(0), "Approve to zero"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function transferFrom(address sender, address recipient, uint256 amount) external override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][msg.sender]; require(currentAllowance >= amount, "Transfer > allowance"); _approve(sender, msg.sender, currentAllowance - amount); return true; } // IERC20 - Helpers function increaseAllowance(address spender, uint256 addedValue) external returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender] + addedValue); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) external returns (bool) { uint256 currentAllowance = _allowances[msg.sender][spender]; require(currentAllowance >= subtractedValue, "<0 allowance"); _approve(msg.sender, spender, currentAllowance - subtractedValue); 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":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"}],"name":"OnWithdrawETH","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"value","type":"address"}],"name":"antiBotBan","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"exclusionAdd","type":"address"}],"name":"AddWalletExclusion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"BalanceLimitDivider","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CollectMarketingETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Development","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"InitialSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Marketing","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxBuyLockTime","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxSellLockTime","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"addToStaking","type":"bool"}],"name":"REM","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Rewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"RewardsAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SellLimitDivider","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SetupEnableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"liquidityTokenAddress","type":"address"}],"name":"SetupLiquidityTokenAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevelopment","type":"address"}],"name":"TeamChangeDevelopment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketing","type":"address"}],"name":"TeamChangeMarketing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"newShare","type":"uint8"}],"name":"TeamChangeMarketingShare","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxBuy","type":"uint256"}],"name":"TeamChangeMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRewardsAddress","type":"address"}],"name":"TeamChangeRewardsAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"TeamCollectRemainingETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TeamCollectXMarketingETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"TeamCreateLPandETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"disabled","type":"bool"}],"name":"TeamDisableBuyLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"disabled","type":"bool"}],"name":"TeamDisableSellLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"secondsUntilUnlock","type":"uint256"}],"name":"TeamExtendLiquidityLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buyLockSeconds","type":"uint256"}],"name":"TeamSetBuyLockTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"sellLockSeconds","type":"uint256"}],"name":"TeamSetSellLockTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"burnTaxes","type":"uint8"},{"internalType":"uint8","name":"liquidityTaxes","type":"uint8"},{"internalType":"uint8","name":"stakingTaxes","type":"uint8"},{"internalType":"uint8","name":"buyTax","type":"uint8"},{"internalType":"uint8","name":"sellTax","type":"uint8"},{"internalType":"uint8","name":"transferTax","type":"uint8"}],"name":"TeamSetTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"manual","type":"bool"}],"name":"TeamSwitchManualETHConversion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSwapAmount","type":"uint256"}],"name":"TeamUpdateAmountToSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBalanceLimit","type":"uint256"},{"internalType":"uint256","name":"newSellLimit","type":"uint256"}],"name":"TeamUpdateLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_getTotalShares","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":"_symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"blacklistedAddress","type":"address"}],"name":"addAddressToBlacklist","outputs":[],"stateMutability":"nonpayable","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":[],"name":"autoBanTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"buyLockDisabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":"enableAutoBlacklist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBurnedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getDividents","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLimits","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"sell","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLiquidityReleaseTimeInSeconds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTaxes","outputs":[{"internalType":"uint256","name":"burnTax","type":"uint256"},{"internalType":"uint256","name":"liquidityTax","type":"uint256"},{"internalType":"uint256","name":"marketingTax","type":"uint256"},{"internalType":"uint256","name":"buyTax","type":"uint256"},{"internalType":"uint256","name":"sellTax","type":"uint256"},{"internalType":"uint256","name":"transferTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getcurrentAmountToSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"addr","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isExcludedFromStaking","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualConversion","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingShare","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":"profitPerShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"blacklistedAddress","type":"address"}],"name":"removeAddressFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLockDisabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLockTime","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":"totalLPETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPayouts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalStakingReward","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":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newName","type":"string"},{"internalType":"string","name":"newSymbol","type":"string"}],"name":"updateTokenDetails","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600460808190526315195cdd60e21b60a09081526200002791600f919062000587565b506040805180820190915260058082526409151154d560da1b6020909201918252620000569160109162000587565b50602d6012556001601355601480546001600160a01b031990811673aa4a88605692a1ef9a1b9ec11f076f4cb285c3bd1790915560158054909116736a91bac0e02f646dd04da78a80daf9b572bb9c5a179055620000b76009600a62000740565b620000c7906305f5e10062000751565b60168190556017819055601855620000e26009600a62000740565b620000f190623d090062000751565b601955601f805460ff19166064179055602380546001600160a01b03191673a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48179055620001356009600a62000740565b620001449062061a8062000751565b6026553480156200015457600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350601654336000818152600160209081526040808320859055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3601b80546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000242573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000268919062000773565b6001600160a01b031663c9c6539630601b60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002cb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f1919062000773565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200033f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000365919062000773565b601a80546001600160a01b0392909216660100000000000002600160301b600160d01b03199092169190911790556018620003a36009600a62000740565b620003b3906305f5e10062000751565b620003bf9190620007a5565b6017556018620003d26009600a62000740565b620003e2906305f5e10062000751565b620003ee9190620007a5565b60185560006028819055602a55601a805465ffffffffffff19166546140a09090917905560145462000438906005906001600160a01b031662000515602090811b620021af17901c565b506015546200045f906005906001600160a01b031662000515602090811b620021af17901c565b506200047b3360056200051560201b620021af1790919060201c565b50601b54620004a290600b906001600160a01b031662000515602090811b620021af17901c565b50620004d3601a60069054906101000a90046001600160a01b0316600b6200051560201b620021af1790919060201c565b50620004ef30600b6200051560201b620021af1790919060201c565b506200050d61dead600b6200051560201b620021af1790919060201c565b505062000804565b60006200052c836001600160a01b03841662000535565b90505b92915050565b60008181526001830160205260408120546200057e575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556200052f565b5060006200052f565b8280546200059590620007c8565b90600052602060002090601f016020900481019282620005b9576000855562000604565b82601f10620005d457805160ff191683800117855562000604565b8280016001018555821562000604579182015b8281111562000604578251825591602001919060010190620005e7565b506200061292915062000616565b5090565b5b8082111562000612576000815560010162000617565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620006845781600019048211156200066857620006686200062d565b808516156200067657918102915b93841c939080029062000648565b509250929050565b6000826200069d575060016200052f565b81620006ac575060006200052f565b8160018114620006c55760028114620006d057620006f0565b60019150506200052f565b60ff841115620006e457620006e46200062d565b50506001821b6200052f565b5060208310610133831016604e8410600b841016171562000715575081810a6200052f565b62000721838362000643565b80600019048211156200073857620007386200062d565b029392505050565b60006200052c60ff8416836200068c565b60008160001904831182151516156200076e576200076e6200062d565b500290565b6000602082840312156200078657600080fd5b81516001600160a01b03811681146200079e57600080fd5b9392505050565b600082620007c357634e487b7160e01b600052601260045260246000fd5b500490565b600181811c90821680620007dd57607f821691505b602082108103620007fe57634e487b7160e01b600052602260045260246000fd5b50919050565b6140a080620008146000396000f3fe6080604052600436106104265760003560e01c8063762bb28211610227578063c3a3c0321161012d578063e68f136a116100b0578063f2c816ae11610077578063f2c816ae14610ca9578063f2fde38b14610cc9578063f88b0e4614610ce9578063fe002ec214610cff578063fe575a8714610d1457005b8063e68f136a14610c1e578063e69e03ee14610c3e578063ebddcc1d14610c53578063f00df36514610c73578063f0cc761214610c8957005b8063d28d8852116100f4578063d28d885214610b63578063d51f383b14610b78578063db886f2314610b98578063dd62ed3e14610bb8578063e2fd002a14610bfe57005b8063c3a3c03214610ad9578063c3f4f54f14610aee578063cd979a7e14610b03578063d0291d6614610b23578063d11edf7414610b4357005b8063998a8668116101b5578063b09f12661161017c578063b09f126614610a4f578063b58a56cd14610a64578063b766a38614610a84578063c054f2f414610aa4578063c280895414610ac457005b8063998a8668146109ba5780639bf65770146109cf5780639fa62d5f146109ef578063a457c2d714610a0f578063a9059cbb14610a2f57005b8063887c60fb116101f9578063887c60fb1461091b578063893d20e8146109355780638da5cb5b1461096757806394e8075d1461098557806395d89b41146109a557005b8063762bb282146108c05780637b9e987a146108d65780638650e92a146108eb57806386d0ada81461090157005b80633cc39b7a1161032c5780635b80f625116102ba5780636f89e409116102815780636f89e4091461080b57806370a0823114610835578063715018a61461086b5780637335307b1461088057806373ddf08e146108a057005b80635b80f625146107a15780635c69f690146106695780635ebbc3ca146107b6578063643daaea146107cb5780636ea4caab146107eb57005b80634ada218b116102fe5780634ada218b146107165780634cdaf0ae146107355780634f91e48c1461075557806357ad67d11461076b57806358e553651461078b57005b80633cc39b7a146106be5780633da56f18146106d45780634089b170146106ea57806344f3c83a1461070057005b8063243b529a116103b4578063313ce5671161037b578063313ce5671461063557806332ac487f146106495780633478154b1461066957806335e82f3a1461067e578063395093511461069e57005b8063243b529a14610572578063269a6aae146105875780632973ef2d1461059d5780633054f8a314610606578063311a86971461062057005b80630fd99e16116103f85780630fd99e16146104d657806314e91377146104fe57806318160ddd1461051e5780631eb25d131461053d57806323b872dd1461055257005b80630241047b1461042f57806306fdde031461044f57806309218ee71461047a578063095ea7b3146104a657005b3661042d57005b005b34801561043b57600080fd5b5061042d61044a366004613944565b610d34565b34801561045b57600080fd5b50610464610e3d565b604051610471919061395d565b60405180910390f35b34801561048657600080fd5b50601f546104949060ff1681565b60405160ff9091168152602001610471565b3480156104b257600080fd5b506104c66104c13660046139c7565b610ecf565b6040519015158152602001610471565b3480156104e257600080fd5b506104eb601881565b60405161ffff9091168152602001610471565b34801561050a57600080fd5b5061042d610519366004613a01565b610ee6565b34801561052a57600080fd5b506016545b604051908152602001610471565b34801561054957600080fd5b5061052f610f32565b34801561055e57600080fd5b506104c661056d366004613a1e565b610f4f565b34801561057e57600080fd5b5061042d610fe6565b34801561059357600080fd5b5061052f60125481565b3480156105a957600080fd5b50601a546040805160ff6301000000840481168252640100000000840481166020830152600160281b84048116928201929092528183166060820152610100830482166080820152620100009092041660a082015260c001610471565b34801561061257600080fd5b506029546104c69060ff1681565b34801561062c57600080fd5b50610494601881565b34801561064157600080fd5b506009610494565b34801561065557600080fd5b5061052f610664366004613a5f565b611029565b34801561067557600080fd5b506104eb600081565b34801561068a57600080fd5b5061042d610699366004613a5f565b611081565b3480156106aa57600080fd5b506104c66106b93660046139c7565b6110c5565b3480156106ca57600080fd5b5061052f60245481565b3480156106e057600080fd5b5061052f60135481565b3480156106f657600080fd5b5061052f601e5481565b34801561070c57600080fd5b5061052f602a5481565b34801561072257600080fd5b50602b546104c690610100900460ff1681565b34801561074157600080fd5b5061042d610750366004613a5f565b6110fc565b34801561076157600080fd5b5061052f60185481565b34801561077757600080fd5b5061042d610786366004613a92565b61115f565b34801561079757600080fd5b5061052f60205481565b3480156107ad57600080fd5b5060265461052f565b3480156107c257600080fd5b5061042d611292565b3480156107d757600080fd5b5061042d6107e6366004613944565b61135f565b3480156107f757600080fd5b5061042d610806366004613944565b6113aa565b34801561081757600080fd5b506108206113ff565b60408051928352602083019190915201610471565b34801561084157600080fd5b5061052f610850366004613a5f565b6001600160a01b031660009081526001602052604090205490565b34801561087757600080fd5b5061042d61143c565b34801561088c57600080fd5b506104c661089b366004613a5f565b6114bf565b3480156108ac57600080fd5b5061042d6108bb366004613b06565b6114cc565b3480156108cc57600080fd5b5061052f60175481565b3480156108e257600080fd5b5061042d61152c565b3480156108f757600080fd5b5061052f601c5481565b34801561090d57600080fd5b50602b546104c69060ff1681565b34801561092757600080fd5b506027546104c69060ff1681565b34801561094157600080fd5b506000546001600160a01b03165b6040516001600160a01b039091168152602001610471565b34801561097357600080fd5b506000546001600160a01b031661094f565b34801561099157600080fd5b5060145461094f906001600160a01b031681565b3480156109b157600080fd5b5061046461157f565b3480156109c657600080fd5b5061042d61158e565b3480156109db57600080fd5b5061042d6109ea366004613a01565b6116dd565b3480156109fb57600080fd5b5061042d610a0a366004613b21565b611729565b348015610a1b57600080fd5b506104c6610a2a3660046139c7565b6118ab565b348015610a3b57600080fd5b506104c6610a4a3660046139c7565b611927565b348015610a5b57600080fd5b50610464611934565b348015610a7057600080fd5b5061042d610a7f366004613a5f565b6119c2565b348015610a9057600080fd5b5061042d610a9f366004613a01565b611a1d565b348015610ab057600080fd5b5060235461094f906001600160a01b031681565b348015610ad057600080fd5b5061042d611a69565b348015610ae557600080fd5b5061052f611a72565b348015610afa57600080fd5b5061052f611a92565b348015610b0f57600080fd5b5061042d610b1e366004613a5f565b611ad1565b348015610b2f57600080fd5b5061042d610b3e366004613be6565b611b15565b348015610b4f57600080fd5b5061042d610b5e366004613944565b611b75565b348015610b6f57600080fd5b50610464611bb3565b348015610b8457600080fd5b5061042d610b93366004613944565b611bc0565b348015610ba457600080fd5b5060155461094f906001600160a01b031681565b348015610bc457600080fd5b5061052f610bd3366004613c4a565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b348015610c0a57600080fd5b5061042d610c19366004613944565b611c4c565b348015610c2a57600080fd5b5061042d610c39366004613a5f565b611cd1565b348015610c4a57600080fd5b5061052f611d2c565b348015610c5f57600080fd5b5061042d610c6e366004613a01565b611d92565b348015610c7f57600080fd5b5061052f601d5481565b348015610c9557600080fd5b5061042d610ca4366004613a5f565b611fac565b348015610cb557600080fd5b5061042d610cc4366004613a5f565b612007565b348015610cd557600080fd5b5061042d610ce4366004613a5f565b61204b565b348015610cf557600080fd5b5061052f60285481565b348015610d0b57600080fd5b5061042d612144565b348015610d2057600080fd5b506104c6610d2f366004613a5f565b6121a2565b33610d476000546001600160a01b031690565b6001600160a01b031614610d765760405162461bcd60e51b8152600401610d6d90613c83565b60405180910390fd5b602054811115610d8557600080fd5b8060206000828254610d979190613cce565b90915550506014546001600160a01b03166108fc6064610db8846019613ce5565b610dc29190613d04565b6040518115909202916000818181858888f19350505050158015610dea573d6000803e3d6000fd5b506015546001600160a01b03166108fc6064610e0784604b613ce5565b610e119190613d04565b6040518115909202916000818181858888f19350505050158015610e39573d6000803e3d6000fd5b5050565b6060600f8054610e4c90613d26565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7890613d26565b8015610ec55780601f10610e9a57610100808354040283529160200191610ec5565b820191906000526020600020905b815481529060010190602001808311610ea857829003601f168201915b5050505050905090565b6000610edc3384846121cb565b5060015b92915050565b33610ef96000546001600160a01b031690565b6001600160a01b031614610f1f5760405162461bcd60e51b8152600401610d6d90613c83565b6027805460ff1916911515919091179055565b610f3e6009600a613e3e565b610f4c906305f5e100613ce5565b81565b6000610f5c8484846122be565b6001600160a01b038416600090815260026020908152604080832033845290915290205482811015610fc75760405162461bcd60e51b81526020600482015260146024820152735472616e73666572203e20616c6c6f77616e636560601b6044820152606401610d6d565b610fdb8533610fd68685613cce565b6121cb565b506001949350505050565b33610ff96000546001600160a01b031690565b6001600160a01b03161461101f5760405162461bcd60e51b8152600401610d6d90613c83565b61102761251b565b565b6000611034826114bf565b1561105557506001600160a01b031660009081526022602052604090205490565b6001600160a01b0382166000908152602260205260409020546110778361265b565b610ee09190613e4d565b336110946000546001600160a01b031690565b6001600160a01b0316146110ba5760405162461bcd60e51b8152600401610d6d90613c83565b610e39600d826126e1565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610edc918590610fd6908690613e4d565b3361110f6000546001600160a01b031690565b6001600160a01b0316146111355760405162461bcd60e51b8152600401610d6d90613c83565b602b80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b336111726000546001600160a01b031690565b6001600160a01b0316146111985760405162461bcd60e51b8152600401610d6d90613c83565b6000846111a58789613e65565b6111af9190613e65565b90508060ff166064146112135760405162461bcd60e51b815260206004820152602660248201527f6275726e2b6c69712b6d61726b6574696e67206e6565647320746f20657175616044820152656c203130302560d01b6064820152608401610d6d565b50601a805460ff928316620100000262ff0000199484166101000261ffff19978516600160281b029790971665ff000000ffff199885166401000000000264ff00000000199a86166301000000029a909a1664ffff00000019909316929092179890981796909616959095179216919091179190911716919091179055565b336112a56000546001600160a01b031690565b6001600160a01b0316146112cb5760405162461bcd60e51b8152600401610d6d90613c83565b602c544210156112ed5760405162461bcd60e51b8152600401610d6d90613e8a565b6112f961070842613e4d565b602c556014546040516000916001600160a01b03169047908381818185875af1925050503d8060008114611349576040519150601f19603f3d011682016040523d82523d6000602084013e61134e565b606091505b505090508061135c57600080fd5b50565b336113726000546001600160a01b031690565b6001600160a01b0316146113985760405162461bcd60e51b8152600401610d6d90613c83565b61135c6113a54283613e4d565b6126f6565b336113bd6000546001600160a01b031690565b6001600160a01b0316146113e35760405162461bcd60e51b8152600401610d6d90613c83565b6113ef6009600a613e3e565b6113f99082613ce5565b60195550565b60008061140e6009600a613e3e565b60175461141b9190613d04565b6114276009600a613e3e565b6018546114349190613d04565b915091509091565b3361144f6000546001600160a01b031690565b6001600160a01b0316146114755760405162461bcd60e51b8152600401610d6d90613c83565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000610ee0600b83612709565b336114df6000546001600160a01b031690565b6001600160a01b0316146115055760405162461bcd60e51b8152600401610d6d90613c83565b60648160ff16111561151657600080fd5b601f805460ff191660ff92909216919091179055565b3361153f6000546001600160a01b031690565b6001600160a01b0316146115655760405162461bcd60e51b8152600401610d6d90613c83565b602b805461ff00191661010017905542601155565b905090565b606060108054610e4c90613d26565b336115a16000546001600160a01b031690565b6001600160a01b0316146115c75760405162461bcd60e51b8152600401610d6d90613c83565b602c544210156115e95760405162461bcd60e51b8152600401610d6d90613e8a565b602b546040516370a0823160e01b8152306004820152620100009091046001600160a01b03169060009082906370a0823190602401602060405180830381865afa15801561163b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061165f9190613eb4565b60145460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810183905291925083169063a9059cbb906044016020604051808303816000875af11580156116b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116d89190613ecd565b505050565b336116f06000546001600160a01b031690565b6001600160a01b0316146117165760405162461bcd60e51b8152600401610d6d90613c83565b602b805460ff1916911515919091179055565b3361173c6000546001600160a01b031690565b6001600160a01b0316146117625760405162461bcd60e51b8152600401610d6d90613c83565b60646016546117719190613d04565b811061177c57600080fd5b6117886009600a613e3e565b6117929083613ce5565b91506117a06009600a613e3e565b6117aa9082613ce5565b90506000601860ff166016546117c09190613d04565b90506000601861ffff166016546117d79190613d04565b90508184101561183d5760405162461bcd60e51b815260206004820152602b60248201527f6e657742616c616e63654c696d6974206e6565647320746f206265206174206c60448201526a19585cdd081d185c99d95d60aa1b6064820152608401610d6d565b8083101561189e5760405162461bcd60e51b815260206004820152602860248201527f6e657753656c6c4c696d6974206e6565647320746f206265206174206c6561736044820152671d081d185c99d95d60c21b6064820152608401610d6d565b5050601791909155601855565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561190e5760405162461bcd60e51b815260206004820152600c60248201526b3c3020616c6c6f77616e636560a01b6044820152606401610d6d565b61191d3385610fd68685613cce565b5060019392505050565b6000610edc3384846122be565b6010805461194190613d26565b80601f016020809104026020016040519081016040528092919081815260200182805461196d90613d26565b80156119ba5780601f1061198f576101008083540402835291602001916119ba565b820191906000526020600020905b81548152906001019060200180831161199d57829003601f168201915b505050505081565b336119d56000546001600160a01b031690565b6001600160a01b0316146119fb5760405162461bcd60e51b8152600401610d6d90613c83565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b33611a306000546001600160a01b031690565b6001600160a01b031614611a565760405162461bcd60e51b8152600401610d6d90613c83565b6029805460ff1916911515919091179055565b6110273361272b565b6000602c54421015611a8c5742602c5461157a9190613cce565b50600090565b6000611aa06009600a613e3e565b601654611aaf6009600a613e3e565b611abd906305f5e100613ce5565b611ac79190613cce565b61157a9190613d04565b33611ae46000546001600160a01b031690565b6001600160a01b031614611b0a5760405162461bcd60e51b8152600401610d6d90613c83565b610e396005826121af565b33611b286000546001600160a01b031690565b6001600160a01b031614611b4e5760405162461bcd60e51b8152600401610d6d90613c83565b8151611b6190600f9060208501906138ab565b5080516116d89060109060208401906138ab565b33611b886000546001600160a01b031690565b6001600160a01b031614611bae5760405162461bcd60e51b8152600401610d6d90613c83565b602655565b600f805461194190613d26565b33611bd36000546001600160a01b031690565b6001600160a01b031614611bf95760405162461bcd60e51b8152600401610d6d90613c83565b8015611c475760405162461bcd60e51b815260206004820152601760248201527f53656c6c204c6f636b2074696d6520746f6f20686967680000000000000000006044820152606401610d6d565b602855565b33611c5f6000546001600160a01b031690565b6001600160a01b031614611c855760405162461bcd60e51b8152600401610d6d90613c83565b8015611ccc5760405162461bcd60e51b8152602060048201526016602482015275084eaf24098dec6d640e8d2daca40e8dede40d0d2ced60531b6044820152606401610d6d565b602a55565b33611ce46000546001600160a01b031690565b6001600160a01b031614611d0a5760405162461bcd60e51b8152600401610d6d90613c83565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b601654600090815b611d3e600b6129dc565b811015611d8c5760016000611d54600b846129e6565b6001600160a01b03168152602081019190915260400160002054611d789083613cce565b915080611d8481613eea565b915050611d34565b50919050565b33611da56000546001600160a01b031690565b6001600160a01b031614611dcb5760405162461bcd60e51b8152600401610d6d90613c83565b602c54421015611ded5760405162461bcd60e51b8152600401610d6d90613e8a565b611df961070842613e4d565b602c55602b546040516370a0823160e01b8152306004820152620100009091046001600160a01b03169060009082906370a0823190602401602060405180830381865afa158015611e4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e729190613eb4565b601b5460405163095ea7b360e01b81526001600160a01b0391821660048201526024810183905291925083169063095ea7b3906044016020604051808303816000875af1158015611ec7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eeb9190613ecd565b50601b5460405163af2979eb60e01b815247916001600160a01b03169063af2979eb90611f279030908690600090819084904290600401613f03565b6020604051808303816000875af1158015611f46573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f6a9190613eb4565b506000611f778247613cce565b90508415611f8d57611f88816129f2565b611fa5565b8060206000828254611f9f9190613e4d565b90915550505b5050505050565b33611fbf6000546001600160a01b031690565b6001600160a01b031614611fe55760405162461bcd60e51b8152600401610d6d90613c83565b602380546001600160a01b0319166001600160a01b0392909216919091179055565b3361201a6000546001600160a01b031690565b6001600160a01b0316146120405760405162461bcd60e51b8152600401610d6d90613c83565b610e39600d826121af565b3361205e6000546001600160a01b031690565b6001600160a01b0316146120845760405162461bcd60e51b8152600401610d6d90613c83565b6001600160a01b0381166120e95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d6d565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b336121576000546001600160a01b031690565b6001600160a01b03161461217d5760405162461bcd60e51b8152600401610d6d90613c83565b6020805460009091556014546001600160a01b03166108fc6064610db8846019613ce5565b6000610ee0600d83612709565b60006121c4836001600160a01b038416612abe565b9392505050565b6001600160a01b0383166122155760405162461bcd60e51b8152602060048201526011602482015270417070726f76652066726f6d207a65726f60781b6044820152606401610d6d565b6001600160a01b03821661225d5760405162461bcd60e51b815260206004820152600f60248201526e417070726f766520746f207a65726f60881b6044820152606401610d6d565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166123095760405162461bcd60e51b81526020600482015260126024820152715472616e736665722066726f6d207a65726f60701b6044820152606401610d6d565b6001600160a01b0382166123525760405162461bcd60e51b815260206004820152601060248201526f5472616e7366657220746f207a65726f60801b6044820152606401610d6d565b600061235f600585612709565b806123705750612370600584612709565b905060006001600160a01b03851630148061239357506001600160a01b03841630145b601b54601a549192506001600160a01b0390811691600091888116600160301b909204161480156123d55750816001600160a01b0316866001600160a01b0316145b806124105750601a546001600160a01b03878116600160301b909204161480156124105750816001600160a01b0316876001600160a01b0316145b601a549091506000906001600160a01b03898116600160301b90920416148061244a5750826001600160a01b0316886001600160a01b0316145b601a549091506000906001600160a01b03898116600160301b9092041614806124845750836001600160a01b0316886001600160a01b0316145b9050848061248f5750825b806124975750855b156124ac576124a7898989612b0d565b612510565b602b54610100900460ff166125035760405162461bcd60e51b815260206004820152601760248201527f74726164696e67206e6f742079657420656e61626c65640000000000000000006044820152606401610d6d565b6125108989898585612bd8565b505050505050505050565b6025805460ff191660019081179091553060009081526020919091526040812054601a5490919061256190600160281b810460ff90811691640100000000900416613e65565b60ff169050600060265490508083108061257d575061ffff8216155b1561258a5750505061264f565b601a5460009061ffff8416906125ab90640100000000900460ff1684613ce5565b6125b59190613d04565b905060006125c38284613cce565b905060006125d2600284613d04565b905060006125e08285613cce565b905060006125ee8483613e4d565b9050476125fa82613370565b60006126068247613cce565b90506000836126158684613ce5565b61261f9190613d04565b905061262b86826134c9565b60006126378447613cce565b9050612642816129f2565b5050505050505050505050505b6025805460ff19169055565b6001600160a01b038116600090815260016020526040812054601c54829161268291613ce5565b6001600160a01b0384166000908152602160205260409020549091508110156126ae5750600092915050565b6001600160a01b038316600090815260216020526040902054600160401b906126d79083613cce565b6121c49190613d04565b60006121c4836001600160a01b038416613578565b602c54811161270457600080fd5b602c55565b6001600160a01b038116600090815260018301602052604081205415156121c4565b601b54600160a01b900460ff161561274257600080fd5b601b805460ff60a01b1916600160a01b1790556000612760826114bf565b1561278857506001600160a01b03811660009081526022602052604081208054919055612808565b60006127938361265b565b6001600160a01b038416600090815260016020526040902054601c549192506127bb91613ce5565b6001600160a01b0384166000908152602160209081526040808320939093556022905220546127eb908290613e4d565b6001600160a01b0384166000908152602260205260408120559150505b80600003612821575050601b805460ff60a01b19169055565b80601e60008282546128339190613e4d565b90915550506040805160028082526060820183526000926020830190803683375050601b54604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa1580156128a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128c69190613f3e565b816000815181106128d9576128d9613f5b565b6001600160a01b03928316602091820292909201015260235482519116908290600190811061290a5761290a613f5b565b6001600160a01b039283166020918202929092010152601b5460405163b6f9de9560e01b815291169063b6f9de9590849061295090600090869089904290600401613fb5565b6000604051808303818588803b15801561296957600080fd5b505af115801561297d573d6000803e3d6000fd5b5050604080518681526001600160a01b03881660208201527f80a489adad6e8e00b344a3e9042e6aff0ae286ce1376918078a67bbce8b905b394500191506129c29050565b60405180910390a15050601b805460ff60a01b1916905550565b6000610ee0825490565b60006121c48383613665565b601f54600090606490612a089060ff1684613ce5565b612a129190613d04565b90506000612a208284613cce565b90508160206000828254612a349190613e4d565b909155505080156116d85780601d6000828254612a519190613e4d565b9091555060009050612a61611d2c565b905080600003612a88578160206000828254612a7d9190613e4d565b90915550612ab89050565b80612a97600160401b84613ce5565b612aa19190613d04565b601c6000828254612ab29190613e4d565b90915550505b50505050565b6000818152600183016020526040812054612b0557508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610ee0565b506000610ee0565b6001600160a01b03831660009081526001602052604090205481811015612b715760405162461bcd60e51b81526020600482015260186024820152775472616e7366657220657863656564732062616c616e636560401b6044820152606401610d6d565b612b7b84836136eb565b612b8583836137ac565b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612bca91815260200190565b60405180910390a350505050565b6001600160a01b0380851660009081526001602052604080822054928816825290205484811015612c465760405162461bcd60e51b81526020600482015260186024820152775472616e7366657220657863656564732062616c616e636560401b6044820152606401610d6d565b60008315612df957612c59600789612709565b612cee576001600160a01b03881660009081526003602052604090205442101580612c86575060275460ff165b612cc75760405162461bcd60e51b815260206004820152601260248201527153656c6c657220696e2073656c6c4c6f636b60701b6044820152606401610d6d565b602854612cd49042613e4d565b6001600160a01b0389166000908152600360205260409020555b601854861115612d325760405162461bcd60e51b815260206004820152600f60248201526e223ab6b810383937ba32b1ba34b7b760891b6044820152606401610d6d565b612d3d600d89612709565b15612d815760405162461bcd60e51b81526020600482015260146024820152734164647265737320626c61636b6c69737465642160601b6044820152606401610d6d565b601254601154612d919190613e4d565b4211158015612da257506013546001145b15612de857612db2600d896121af565b506040516001600160a01b038916907f8c21268f4379683ad2b81c32b4357f44a17e83e73d741ba6e8c23e085e57135190600090a25b50601a54610100900460ff1661320d565b841561300a57612e0a600988612709565b612e9d576001600160a01b03871660009081526004602052604090205442101580612e37575060295460ff165b612e765760405162461bcd60e51b815260206004820152601060248201526f427579657220696e206275794c6f636b60801b6044820152606401610d6d565b602a54612e839042613e4d565b6001600160a01b0388166000908152600460205260409020555b601754612eaa8785613e4d565b1115612eeb5760405162461bcd60e51b815260206004820152601060248201526f3bb430b63290383937ba32b1ba34b7b760811b6044820152606401610d6d565b601954861115612f485760405162461bcd60e51b815260206004820152602260248201527f547820616d6f756e7420657863656564696e67206d61782062757920616d6f756044820152611b9d60f21b6064820152608401610d6d565b612f53600d88612709565b15612f975760405162461bcd60e51b81526020600482015260146024820152734164647265737320626c61636b6c69737465642160601b6044820152606401610d6d565b601254601154612fa79190613e4d565b4211158015612fb857506013546001145b15612ffe57612fc8600d886121af565b506040516001600160a01b038816907f8c21268f4379683ad2b81c32b4357f44a17e83e73d741ba6e8c23e085e57135190600090a25b50601a5460ff1661320d565b6130166009600a613e3e565b8611613025576130258861272b565b6017546130328785613e4d565b11156130735760405162461bcd60e51b815260206004820152601060248201526f3bb430b63290383937ba32b1ba34b7b760811b6044820152606401610d6d565b61307e600789612709565b6130e8576001600160a01b038816600090815260036020526040902054421015806130ab575060275460ff165b6130e85760405162461bcd60e51b815260206004820152600e60248201526d53656e64657220696e204c6f636b60901b6044820152606401610d6d565b6130f3600d89612709565b156131405760405162461bcd60e51b815260206004820152601b60248201527f53656e646572206164647265737320626c61636b6c69737465642100000000006044820152606401610d6d565b61314b600d88612709565b156131985760405162461bcd60e51b815260206004820152601e60248201527f526563697069656e74206164647265737320626c61636b6c69737465642100006044820152606401610d6d565b6012546011546131a89190613e4d565b42111580156131b957506013546001145b156131ff576131c9600d896121af565b506040516001600160a01b038916907f8c21268f4379683ad2b81c32b4357f44a17e83e73d741ba6e8c23e085e57135190600090a25b50601a5462010000900460ff165b601a546001600160a01b03898116600160301b90920416148015906132355750602b5460ff16155b8015613244575060255460ff16155b801561324d5750835b1561325a5761325a61251b565b60006132768783601a60039054906101000a900460ff16613877565b601a549091506000906132aa90899085906132a59060ff6401000000008204811691600160281b900416613e65565b613877565b905060006132b88284613e4d565b6132c2908a613cce565b90506132ce8b8a6136eb565b30600090815260016020526040812080548492906132ed908490613e4d565b9250508190555082601660008282546133069190613cce565b9091555061331690508a826137ac565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161335b91815260200190565b60405180910390a35050505050505050505050565b601b546133889030906001600160a01b0316836121cb565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106133bd576133bd613f5b565b6001600160a01b03928316602091820292909201810191909152601b54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015613416573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061343a9190613f3e565b8160018151811061344d5761344d613f5b565b6001600160a01b039283166020918202929092010152601b5460405163791ac94760e01b815291169063791ac94790613493908590600090869030904290600401613fea565b600060405180830381600087803b1580156134ad57600080fd5b505af11580156134c1573d6000803e3d6000fd5b505050505050565b80602460008282546134db9190613e4d565b9091555050601b546134f89030906001600160a01b0316846121cb565b601b5460405163f305d71960e01b81526001600160a01b039091169063f305d7199083906135359030908790600090819084904290600401613f03565b60606040518083038185885af1158015613553573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611fa59190614026565b6000818152600183016020526040812054801561365b57600061359c600183613cce565b85549091506000906135b090600190613cce565b905060008660000182815481106135c9576135c9613f5b565b90600052602060002001549050808760000184815481106135ec576135ec613f5b565b60009182526020808320909101929092558281526001890190915260409020849055865487908061361f5761361f614054565b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610ee0565b6000915050610ee0565b815460009082106136c35760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610d6d565b8260000182815481106136d8576136d8613f5b565b9060005260206000200154905092915050565b6001600160a01b03821660009081526001602052604081205461370f908390613cce565b905061371a836114bf565b1561373f576001600160a01b0390921660009081526001602052604090209190915550565b600061374a8461265b565b6001600160a01b0385166000908152600160205260409020839055601c54909150613776908390613ce5565b6001600160a01b038516600090815260216020908152604080832093909355602290529081208054839290612ab2908490613e4d565b6001600160a01b0382166000908152600160205260408120546137d0908390613e4d565b90506137db836114bf565b15613800576001600160a01b0390921660009081526001602052604090209190915550565b600061380b8461265b565b905081601c5461381b9190613ce5565b6001600160a01b038516600090815260216020908152604080832093909355602290529081208054839290613851908490613e4d565b9091555050506001600160a01b0390921660009081526001602052604090209190915550565b60006127108260ff168460ff168661388f9190613ce5565b6138999190613ce5565b6138a39190613d04565b949350505050565b8280546138b790613d26565b90600052602060002090601f0160209004810192826138d9576000855561391f565b82601f106138f257805160ff191683800117855561391f565b8280016001018555821561391f579182015b8281111561391f578251825591602001919060010190613904565b5061392b92915061392f565b5090565b5b8082111561392b5760008155600101613930565b60006020828403121561395657600080fd5b5035919050565b600060208083528351808285015260005b8181101561398a5785810183015185820160400152820161396e565b8181111561399c576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461135c57600080fd5b600080604083850312156139da57600080fd5b82356139e5816139b2565b946020939093013593505050565b801515811461135c57600080fd5b600060208284031215613a1357600080fd5b81356121c4816139f3565b600080600060608486031215613a3357600080fd5b8335613a3e816139b2565b92506020840135613a4e816139b2565b929592945050506040919091013590565b600060208284031215613a7157600080fd5b81356121c4816139b2565b803560ff81168114613a8d57600080fd5b919050565b60008060008060008060c08789031215613aab57600080fd5b613ab487613a7c565b9550613ac260208801613a7c565b9450613ad060408801613a7c565b9350613ade60608801613a7c565b9250613aec60808801613a7c565b9150613afa60a08801613a7c565b90509295509295509295565b600060208284031215613b1857600080fd5b6121c482613a7c565b60008060408385031215613b3457600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600082601f830112613b6a57600080fd5b813567ffffffffffffffff80821115613b8557613b85613b43565b604051601f8301601f19908116603f01168101908282118183101715613bad57613bad613b43565b81604052838152866020858801011115613bc657600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215613bf957600080fd5b823567ffffffffffffffff80821115613c1157600080fd5b613c1d86838701613b59565b93506020850135915080821115613c3357600080fd5b50613c4085828601613b59565b9150509250929050565b60008060408385031215613c5d57600080fd5b8235613c68816139b2565b91506020830135613c78816139b2565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082821015613ce057613ce0613cb8565b500390565b6000816000190483118215151615613cff57613cff613cb8565b500290565b600082613d2157634e487b7160e01b600052601260045260246000fd5b500490565b600181811c90821680613d3a57607f821691505b602082108103611d8c57634e487b7160e01b600052602260045260246000fd5b600181815b80851115613d95578160001904821115613d7b57613d7b613cb8565b80851615613d8857918102915b93841c9390800290613d5f565b509250929050565b600082613dac57506001610ee0565b81613db957506000610ee0565b8160018114613dcf5760028114613dd957613df5565b6001915050610ee0565b60ff841115613dea57613dea613cb8565b50506001821b610ee0565b5060208310610133831016604e8410600b8410161715613e18575081810a610ee0565b613e228383613d5a565b8060001904821115613e3657613e36613cb8565b029392505050565b60006121c460ff841683613d9d565b60008219821115613e6057613e60613cb8565b500190565b600060ff821660ff84168060ff03821115613e8257613e82613cb8565b019392505050565b60208082526010908201526f139bdd081e595d081d5b9b1bd8dad95960821b604082015260600190565b600060208284031215613ec657600080fd5b5051919050565b600060208284031215613edf57600080fd5b81516121c4816139f3565b600060018201613efc57613efc613cb8565b5060010190565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b600060208284031215613f5057600080fd5b81516121c4816139b2565b634e487b7160e01b600052603260045260246000fd5b600081518084526020808501945080840160005b83811015613faa5781516001600160a01b031687529582019590820190600101613f85565b509495945050505050565b848152608060208201526000613fce6080830186613f71565b6001600160a01b03949094166040830152506060015292915050565b85815284602082015260a06040820152600061400960a0830186613f71565b6001600160a01b0394909416606083015250608001529392505050565b60008060006060848603121561403b57600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052603160045260246000fdfea264697066735822122057c3ac3e7f542ed05cec8f21a06a3d4c71a0605aa325bbc879b15b8cb076d90d64736f6c634300080d0033
Deployed Bytecode
0x6080604052600436106104265760003560e01c8063762bb28211610227578063c3a3c0321161012d578063e68f136a116100b0578063f2c816ae11610077578063f2c816ae14610ca9578063f2fde38b14610cc9578063f88b0e4614610ce9578063fe002ec214610cff578063fe575a8714610d1457005b8063e68f136a14610c1e578063e69e03ee14610c3e578063ebddcc1d14610c53578063f00df36514610c73578063f0cc761214610c8957005b8063d28d8852116100f4578063d28d885214610b63578063d51f383b14610b78578063db886f2314610b98578063dd62ed3e14610bb8578063e2fd002a14610bfe57005b8063c3a3c03214610ad9578063c3f4f54f14610aee578063cd979a7e14610b03578063d0291d6614610b23578063d11edf7414610b4357005b8063998a8668116101b5578063b09f12661161017c578063b09f126614610a4f578063b58a56cd14610a64578063b766a38614610a84578063c054f2f414610aa4578063c280895414610ac457005b8063998a8668146109ba5780639bf65770146109cf5780639fa62d5f146109ef578063a457c2d714610a0f578063a9059cbb14610a2f57005b8063887c60fb116101f9578063887c60fb1461091b578063893d20e8146109355780638da5cb5b1461096757806394e8075d1461098557806395d89b41146109a557005b8063762bb282146108c05780637b9e987a146108d65780638650e92a146108eb57806386d0ada81461090157005b80633cc39b7a1161032c5780635b80f625116102ba5780636f89e409116102815780636f89e4091461080b57806370a0823114610835578063715018a61461086b5780637335307b1461088057806373ddf08e146108a057005b80635b80f625146107a15780635c69f690146106695780635ebbc3ca146107b6578063643daaea146107cb5780636ea4caab146107eb57005b80634ada218b116102fe5780634ada218b146107165780634cdaf0ae146107355780634f91e48c1461075557806357ad67d11461076b57806358e553651461078b57005b80633cc39b7a146106be5780633da56f18146106d45780634089b170146106ea57806344f3c83a1461070057005b8063243b529a116103b4578063313ce5671161037b578063313ce5671461063557806332ac487f146106495780633478154b1461066957806335e82f3a1461067e578063395093511461069e57005b8063243b529a14610572578063269a6aae146105875780632973ef2d1461059d5780633054f8a314610606578063311a86971461062057005b80630fd99e16116103f85780630fd99e16146104d657806314e91377146104fe57806318160ddd1461051e5780631eb25d131461053d57806323b872dd1461055257005b80630241047b1461042f57806306fdde031461044f57806309218ee71461047a578063095ea7b3146104a657005b3661042d57005b005b34801561043b57600080fd5b5061042d61044a366004613944565b610d34565b34801561045b57600080fd5b50610464610e3d565b604051610471919061395d565b60405180910390f35b34801561048657600080fd5b50601f546104949060ff1681565b60405160ff9091168152602001610471565b3480156104b257600080fd5b506104c66104c13660046139c7565b610ecf565b6040519015158152602001610471565b3480156104e257600080fd5b506104eb601881565b60405161ffff9091168152602001610471565b34801561050a57600080fd5b5061042d610519366004613a01565b610ee6565b34801561052a57600080fd5b506016545b604051908152602001610471565b34801561054957600080fd5b5061052f610f32565b34801561055e57600080fd5b506104c661056d366004613a1e565b610f4f565b34801561057e57600080fd5b5061042d610fe6565b34801561059357600080fd5b5061052f60125481565b3480156105a957600080fd5b50601a546040805160ff6301000000840481168252640100000000840481166020830152600160281b84048116928201929092528183166060820152610100830482166080820152620100009092041660a082015260c001610471565b34801561061257600080fd5b506029546104c69060ff1681565b34801561062c57600080fd5b50610494601881565b34801561064157600080fd5b506009610494565b34801561065557600080fd5b5061052f610664366004613a5f565b611029565b34801561067557600080fd5b506104eb600081565b34801561068a57600080fd5b5061042d610699366004613a5f565b611081565b3480156106aa57600080fd5b506104c66106b93660046139c7565b6110c5565b3480156106ca57600080fd5b5061052f60245481565b3480156106e057600080fd5b5061052f60135481565b3480156106f657600080fd5b5061052f601e5481565b34801561070c57600080fd5b5061052f602a5481565b34801561072257600080fd5b50602b546104c690610100900460ff1681565b34801561074157600080fd5b5061042d610750366004613a5f565b6110fc565b34801561076157600080fd5b5061052f60185481565b34801561077757600080fd5b5061042d610786366004613a92565b61115f565b34801561079757600080fd5b5061052f60205481565b3480156107ad57600080fd5b5060265461052f565b3480156107c257600080fd5b5061042d611292565b3480156107d757600080fd5b5061042d6107e6366004613944565b61135f565b3480156107f757600080fd5b5061042d610806366004613944565b6113aa565b34801561081757600080fd5b506108206113ff565b60408051928352602083019190915201610471565b34801561084157600080fd5b5061052f610850366004613a5f565b6001600160a01b031660009081526001602052604090205490565b34801561087757600080fd5b5061042d61143c565b34801561088c57600080fd5b506104c661089b366004613a5f565b6114bf565b3480156108ac57600080fd5b5061042d6108bb366004613b06565b6114cc565b3480156108cc57600080fd5b5061052f60175481565b3480156108e257600080fd5b5061042d61152c565b3480156108f757600080fd5b5061052f601c5481565b34801561090d57600080fd5b50602b546104c69060ff1681565b34801561092757600080fd5b506027546104c69060ff1681565b34801561094157600080fd5b506000546001600160a01b03165b6040516001600160a01b039091168152602001610471565b34801561097357600080fd5b506000546001600160a01b031661094f565b34801561099157600080fd5b5060145461094f906001600160a01b031681565b3480156109b157600080fd5b5061046461157f565b3480156109c657600080fd5b5061042d61158e565b3480156109db57600080fd5b5061042d6109ea366004613a01565b6116dd565b3480156109fb57600080fd5b5061042d610a0a366004613b21565b611729565b348015610a1b57600080fd5b506104c6610a2a3660046139c7565b6118ab565b348015610a3b57600080fd5b506104c6610a4a3660046139c7565b611927565b348015610a5b57600080fd5b50610464611934565b348015610a7057600080fd5b5061042d610a7f366004613a5f565b6119c2565b348015610a9057600080fd5b5061042d610a9f366004613a01565b611a1d565b348015610ab057600080fd5b5060235461094f906001600160a01b031681565b348015610ad057600080fd5b5061042d611a69565b348015610ae557600080fd5b5061052f611a72565b348015610afa57600080fd5b5061052f611a92565b348015610b0f57600080fd5b5061042d610b1e366004613a5f565b611ad1565b348015610b2f57600080fd5b5061042d610b3e366004613be6565b611b15565b348015610b4f57600080fd5b5061042d610b5e366004613944565b611b75565b348015610b6f57600080fd5b50610464611bb3565b348015610b8457600080fd5b5061042d610b93366004613944565b611bc0565b348015610ba457600080fd5b5060155461094f906001600160a01b031681565b348015610bc457600080fd5b5061052f610bd3366004613c4a565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b348015610c0a57600080fd5b5061042d610c19366004613944565b611c4c565b348015610c2a57600080fd5b5061042d610c39366004613a5f565b611cd1565b348015610c4a57600080fd5b5061052f611d2c565b348015610c5f57600080fd5b5061042d610c6e366004613a01565b611d92565b348015610c7f57600080fd5b5061052f601d5481565b348015610c9557600080fd5b5061042d610ca4366004613a5f565b611fac565b348015610cb557600080fd5b5061042d610cc4366004613a5f565b612007565b348015610cd557600080fd5b5061042d610ce4366004613a5f565b61204b565b348015610cf557600080fd5b5061052f60285481565b348015610d0b57600080fd5b5061042d612144565b348015610d2057600080fd5b506104c6610d2f366004613a5f565b6121a2565b33610d476000546001600160a01b031690565b6001600160a01b031614610d765760405162461bcd60e51b8152600401610d6d90613c83565b60405180910390fd5b602054811115610d8557600080fd5b8060206000828254610d979190613cce565b90915550506014546001600160a01b03166108fc6064610db8846019613ce5565b610dc29190613d04565b6040518115909202916000818181858888f19350505050158015610dea573d6000803e3d6000fd5b506015546001600160a01b03166108fc6064610e0784604b613ce5565b610e119190613d04565b6040518115909202916000818181858888f19350505050158015610e39573d6000803e3d6000fd5b5050565b6060600f8054610e4c90613d26565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7890613d26565b8015610ec55780601f10610e9a57610100808354040283529160200191610ec5565b820191906000526020600020905b815481529060010190602001808311610ea857829003601f168201915b5050505050905090565b6000610edc3384846121cb565b5060015b92915050565b33610ef96000546001600160a01b031690565b6001600160a01b031614610f1f5760405162461bcd60e51b8152600401610d6d90613c83565b6027805460ff1916911515919091179055565b610f3e6009600a613e3e565b610f4c906305f5e100613ce5565b81565b6000610f5c8484846122be565b6001600160a01b038416600090815260026020908152604080832033845290915290205482811015610fc75760405162461bcd60e51b81526020600482015260146024820152735472616e73666572203e20616c6c6f77616e636560601b6044820152606401610d6d565b610fdb8533610fd68685613cce565b6121cb565b506001949350505050565b33610ff96000546001600160a01b031690565b6001600160a01b03161461101f5760405162461bcd60e51b8152600401610d6d90613c83565b61102761251b565b565b6000611034826114bf565b1561105557506001600160a01b031660009081526022602052604090205490565b6001600160a01b0382166000908152602260205260409020546110778361265b565b610ee09190613e4d565b336110946000546001600160a01b031690565b6001600160a01b0316146110ba5760405162461bcd60e51b8152600401610d6d90613c83565b610e39600d826126e1565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610edc918590610fd6908690613e4d565b3361110f6000546001600160a01b031690565b6001600160a01b0316146111355760405162461bcd60e51b8152600401610d6d90613c83565b602b80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b336111726000546001600160a01b031690565b6001600160a01b0316146111985760405162461bcd60e51b8152600401610d6d90613c83565b6000846111a58789613e65565b6111af9190613e65565b90508060ff166064146112135760405162461bcd60e51b815260206004820152602660248201527f6275726e2b6c69712b6d61726b6574696e67206e6565647320746f20657175616044820152656c203130302560d01b6064820152608401610d6d565b50601a805460ff928316620100000262ff0000199484166101000261ffff19978516600160281b029790971665ff000000ffff199885166401000000000264ff00000000199a86166301000000029a909a1664ffff00000019909316929092179890981796909616959095179216919091179190911716919091179055565b336112a56000546001600160a01b031690565b6001600160a01b0316146112cb5760405162461bcd60e51b8152600401610d6d90613c83565b602c544210156112ed5760405162461bcd60e51b8152600401610d6d90613e8a565b6112f961070842613e4d565b602c556014546040516000916001600160a01b03169047908381818185875af1925050503d8060008114611349576040519150601f19603f3d011682016040523d82523d6000602084013e61134e565b606091505b505090508061135c57600080fd5b50565b336113726000546001600160a01b031690565b6001600160a01b0316146113985760405162461bcd60e51b8152600401610d6d90613c83565b61135c6113a54283613e4d565b6126f6565b336113bd6000546001600160a01b031690565b6001600160a01b0316146113e35760405162461bcd60e51b8152600401610d6d90613c83565b6113ef6009600a613e3e565b6113f99082613ce5565b60195550565b60008061140e6009600a613e3e565b60175461141b9190613d04565b6114276009600a613e3e565b6018546114349190613d04565b915091509091565b3361144f6000546001600160a01b031690565b6001600160a01b0316146114755760405162461bcd60e51b8152600401610d6d90613c83565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000610ee0600b83612709565b336114df6000546001600160a01b031690565b6001600160a01b0316146115055760405162461bcd60e51b8152600401610d6d90613c83565b60648160ff16111561151657600080fd5b601f805460ff191660ff92909216919091179055565b3361153f6000546001600160a01b031690565b6001600160a01b0316146115655760405162461bcd60e51b8152600401610d6d90613c83565b602b805461ff00191661010017905542601155565b905090565b606060108054610e4c90613d26565b336115a16000546001600160a01b031690565b6001600160a01b0316146115c75760405162461bcd60e51b8152600401610d6d90613c83565b602c544210156115e95760405162461bcd60e51b8152600401610d6d90613e8a565b602b546040516370a0823160e01b8152306004820152620100009091046001600160a01b03169060009082906370a0823190602401602060405180830381865afa15801561163b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061165f9190613eb4565b60145460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810183905291925083169063a9059cbb906044016020604051808303816000875af11580156116b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116d89190613ecd565b505050565b336116f06000546001600160a01b031690565b6001600160a01b0316146117165760405162461bcd60e51b8152600401610d6d90613c83565b602b805460ff1916911515919091179055565b3361173c6000546001600160a01b031690565b6001600160a01b0316146117625760405162461bcd60e51b8152600401610d6d90613c83565b60646016546117719190613d04565b811061177c57600080fd5b6117886009600a613e3e565b6117929083613ce5565b91506117a06009600a613e3e565b6117aa9082613ce5565b90506000601860ff166016546117c09190613d04565b90506000601861ffff166016546117d79190613d04565b90508184101561183d5760405162461bcd60e51b815260206004820152602b60248201527f6e657742616c616e63654c696d6974206e6565647320746f206265206174206c60448201526a19585cdd081d185c99d95d60aa1b6064820152608401610d6d565b8083101561189e5760405162461bcd60e51b815260206004820152602860248201527f6e657753656c6c4c696d6974206e6565647320746f206265206174206c6561736044820152671d081d185c99d95d60c21b6064820152608401610d6d565b5050601791909155601855565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561190e5760405162461bcd60e51b815260206004820152600c60248201526b3c3020616c6c6f77616e636560a01b6044820152606401610d6d565b61191d3385610fd68685613cce565b5060019392505050565b6000610edc3384846122be565b6010805461194190613d26565b80601f016020809104026020016040519081016040528092919081815260200182805461196d90613d26565b80156119ba5780601f1061198f576101008083540402835291602001916119ba565b820191906000526020600020905b81548152906001019060200180831161199d57829003601f168201915b505050505081565b336119d56000546001600160a01b031690565b6001600160a01b0316146119fb5760405162461bcd60e51b8152600401610d6d90613c83565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b33611a306000546001600160a01b031690565b6001600160a01b031614611a565760405162461bcd60e51b8152600401610d6d90613c83565b6029805460ff1916911515919091179055565b6110273361272b565b6000602c54421015611a8c5742602c5461157a9190613cce565b50600090565b6000611aa06009600a613e3e565b601654611aaf6009600a613e3e565b611abd906305f5e100613ce5565b611ac79190613cce565b61157a9190613d04565b33611ae46000546001600160a01b031690565b6001600160a01b031614611b0a5760405162461bcd60e51b8152600401610d6d90613c83565b610e396005826121af565b33611b286000546001600160a01b031690565b6001600160a01b031614611b4e5760405162461bcd60e51b8152600401610d6d90613c83565b8151611b6190600f9060208501906138ab565b5080516116d89060109060208401906138ab565b33611b886000546001600160a01b031690565b6001600160a01b031614611bae5760405162461bcd60e51b8152600401610d6d90613c83565b602655565b600f805461194190613d26565b33611bd36000546001600160a01b031690565b6001600160a01b031614611bf95760405162461bcd60e51b8152600401610d6d90613c83565b8015611c475760405162461bcd60e51b815260206004820152601760248201527f53656c6c204c6f636b2074696d6520746f6f20686967680000000000000000006044820152606401610d6d565b602855565b33611c5f6000546001600160a01b031690565b6001600160a01b031614611c855760405162461bcd60e51b8152600401610d6d90613c83565b8015611ccc5760405162461bcd60e51b8152602060048201526016602482015275084eaf24098dec6d640e8d2daca40e8dede40d0d2ced60531b6044820152606401610d6d565b602a55565b33611ce46000546001600160a01b031690565b6001600160a01b031614611d0a5760405162461bcd60e51b8152600401610d6d90613c83565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b601654600090815b611d3e600b6129dc565b811015611d8c5760016000611d54600b846129e6565b6001600160a01b03168152602081019190915260400160002054611d789083613cce565b915080611d8481613eea565b915050611d34565b50919050565b33611da56000546001600160a01b031690565b6001600160a01b031614611dcb5760405162461bcd60e51b8152600401610d6d90613c83565b602c54421015611ded5760405162461bcd60e51b8152600401610d6d90613e8a565b611df961070842613e4d565b602c55602b546040516370a0823160e01b8152306004820152620100009091046001600160a01b03169060009082906370a0823190602401602060405180830381865afa158015611e4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e729190613eb4565b601b5460405163095ea7b360e01b81526001600160a01b0391821660048201526024810183905291925083169063095ea7b3906044016020604051808303816000875af1158015611ec7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eeb9190613ecd565b50601b5460405163af2979eb60e01b815247916001600160a01b03169063af2979eb90611f279030908690600090819084904290600401613f03565b6020604051808303816000875af1158015611f46573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f6a9190613eb4565b506000611f778247613cce565b90508415611f8d57611f88816129f2565b611fa5565b8060206000828254611f9f9190613e4d565b90915550505b5050505050565b33611fbf6000546001600160a01b031690565b6001600160a01b031614611fe55760405162461bcd60e51b8152600401610d6d90613c83565b602380546001600160a01b0319166001600160a01b0392909216919091179055565b3361201a6000546001600160a01b031690565b6001600160a01b0316146120405760405162461bcd60e51b8152600401610d6d90613c83565b610e39600d826121af565b3361205e6000546001600160a01b031690565b6001600160a01b0316146120845760405162461bcd60e51b8152600401610d6d90613c83565b6001600160a01b0381166120e95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d6d565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b336121576000546001600160a01b031690565b6001600160a01b03161461217d5760405162461bcd60e51b8152600401610d6d90613c83565b6020805460009091556014546001600160a01b03166108fc6064610db8846019613ce5565b6000610ee0600d83612709565b60006121c4836001600160a01b038416612abe565b9392505050565b6001600160a01b0383166122155760405162461bcd60e51b8152602060048201526011602482015270417070726f76652066726f6d207a65726f60781b6044820152606401610d6d565b6001600160a01b03821661225d5760405162461bcd60e51b815260206004820152600f60248201526e417070726f766520746f207a65726f60881b6044820152606401610d6d565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166123095760405162461bcd60e51b81526020600482015260126024820152715472616e736665722066726f6d207a65726f60701b6044820152606401610d6d565b6001600160a01b0382166123525760405162461bcd60e51b815260206004820152601060248201526f5472616e7366657220746f207a65726f60801b6044820152606401610d6d565b600061235f600585612709565b806123705750612370600584612709565b905060006001600160a01b03851630148061239357506001600160a01b03841630145b601b54601a549192506001600160a01b0390811691600091888116600160301b909204161480156123d55750816001600160a01b0316866001600160a01b0316145b806124105750601a546001600160a01b03878116600160301b909204161480156124105750816001600160a01b0316876001600160a01b0316145b601a549091506000906001600160a01b03898116600160301b90920416148061244a5750826001600160a01b0316886001600160a01b0316145b601a549091506000906001600160a01b03898116600160301b9092041614806124845750836001600160a01b0316886001600160a01b0316145b9050848061248f5750825b806124975750855b156124ac576124a7898989612b0d565b612510565b602b54610100900460ff166125035760405162461bcd60e51b815260206004820152601760248201527f74726164696e67206e6f742079657420656e61626c65640000000000000000006044820152606401610d6d565b6125108989898585612bd8565b505050505050505050565b6025805460ff191660019081179091553060009081526020919091526040812054601a5490919061256190600160281b810460ff90811691640100000000900416613e65565b60ff169050600060265490508083108061257d575061ffff8216155b1561258a5750505061264f565b601a5460009061ffff8416906125ab90640100000000900460ff1684613ce5565b6125b59190613d04565b905060006125c38284613cce565b905060006125d2600284613d04565b905060006125e08285613cce565b905060006125ee8483613e4d565b9050476125fa82613370565b60006126068247613cce565b90506000836126158684613ce5565b61261f9190613d04565b905061262b86826134c9565b60006126378447613cce565b9050612642816129f2565b5050505050505050505050505b6025805460ff19169055565b6001600160a01b038116600090815260016020526040812054601c54829161268291613ce5565b6001600160a01b0384166000908152602160205260409020549091508110156126ae5750600092915050565b6001600160a01b038316600090815260216020526040902054600160401b906126d79083613cce565b6121c49190613d04565b60006121c4836001600160a01b038416613578565b602c54811161270457600080fd5b602c55565b6001600160a01b038116600090815260018301602052604081205415156121c4565b601b54600160a01b900460ff161561274257600080fd5b601b805460ff60a01b1916600160a01b1790556000612760826114bf565b1561278857506001600160a01b03811660009081526022602052604081208054919055612808565b60006127938361265b565b6001600160a01b038416600090815260016020526040902054601c549192506127bb91613ce5565b6001600160a01b0384166000908152602160209081526040808320939093556022905220546127eb908290613e4d565b6001600160a01b0384166000908152602260205260408120559150505b80600003612821575050601b805460ff60a01b19169055565b80601e60008282546128339190613e4d565b90915550506040805160028082526060820183526000926020830190803683375050601b54604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa1580156128a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128c69190613f3e565b816000815181106128d9576128d9613f5b565b6001600160a01b03928316602091820292909201015260235482519116908290600190811061290a5761290a613f5b565b6001600160a01b039283166020918202929092010152601b5460405163b6f9de9560e01b815291169063b6f9de9590849061295090600090869089904290600401613fb5565b6000604051808303818588803b15801561296957600080fd5b505af115801561297d573d6000803e3d6000fd5b5050604080518681526001600160a01b03881660208201527f80a489adad6e8e00b344a3e9042e6aff0ae286ce1376918078a67bbce8b905b394500191506129c29050565b60405180910390a15050601b805460ff60a01b1916905550565b6000610ee0825490565b60006121c48383613665565b601f54600090606490612a089060ff1684613ce5565b612a129190613d04565b90506000612a208284613cce565b90508160206000828254612a349190613e4d565b909155505080156116d85780601d6000828254612a519190613e4d565b9091555060009050612a61611d2c565b905080600003612a88578160206000828254612a7d9190613e4d565b90915550612ab89050565b80612a97600160401b84613ce5565b612aa19190613d04565b601c6000828254612ab29190613e4d565b90915550505b50505050565b6000818152600183016020526040812054612b0557508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610ee0565b506000610ee0565b6001600160a01b03831660009081526001602052604090205481811015612b715760405162461bcd60e51b81526020600482015260186024820152775472616e7366657220657863656564732062616c616e636560401b6044820152606401610d6d565b612b7b84836136eb565b612b8583836137ac565b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612bca91815260200190565b60405180910390a350505050565b6001600160a01b0380851660009081526001602052604080822054928816825290205484811015612c465760405162461bcd60e51b81526020600482015260186024820152775472616e7366657220657863656564732062616c616e636560401b6044820152606401610d6d565b60008315612df957612c59600789612709565b612cee576001600160a01b03881660009081526003602052604090205442101580612c86575060275460ff165b612cc75760405162461bcd60e51b815260206004820152601260248201527153656c6c657220696e2073656c6c4c6f636b60701b6044820152606401610d6d565b602854612cd49042613e4d565b6001600160a01b0389166000908152600360205260409020555b601854861115612d325760405162461bcd60e51b815260206004820152600f60248201526e223ab6b810383937ba32b1ba34b7b760891b6044820152606401610d6d565b612d3d600d89612709565b15612d815760405162461bcd60e51b81526020600482015260146024820152734164647265737320626c61636b6c69737465642160601b6044820152606401610d6d565b601254601154612d919190613e4d565b4211158015612da257506013546001145b15612de857612db2600d896121af565b506040516001600160a01b038916907f8c21268f4379683ad2b81c32b4357f44a17e83e73d741ba6e8c23e085e57135190600090a25b50601a54610100900460ff1661320d565b841561300a57612e0a600988612709565b612e9d576001600160a01b03871660009081526004602052604090205442101580612e37575060295460ff165b612e765760405162461bcd60e51b815260206004820152601060248201526f427579657220696e206275794c6f636b60801b6044820152606401610d6d565b602a54612e839042613e4d565b6001600160a01b0388166000908152600460205260409020555b601754612eaa8785613e4d565b1115612eeb5760405162461bcd60e51b815260206004820152601060248201526f3bb430b63290383937ba32b1ba34b7b760811b6044820152606401610d6d565b601954861115612f485760405162461bcd60e51b815260206004820152602260248201527f547820616d6f756e7420657863656564696e67206d61782062757920616d6f756044820152611b9d60f21b6064820152608401610d6d565b612f53600d88612709565b15612f975760405162461bcd60e51b81526020600482015260146024820152734164647265737320626c61636b6c69737465642160601b6044820152606401610d6d565b601254601154612fa79190613e4d565b4211158015612fb857506013546001145b15612ffe57612fc8600d886121af565b506040516001600160a01b038816907f8c21268f4379683ad2b81c32b4357f44a17e83e73d741ba6e8c23e085e57135190600090a25b50601a5460ff1661320d565b6130166009600a613e3e565b8611613025576130258861272b565b6017546130328785613e4d565b11156130735760405162461bcd60e51b815260206004820152601060248201526f3bb430b63290383937ba32b1ba34b7b760811b6044820152606401610d6d565b61307e600789612709565b6130e8576001600160a01b038816600090815260036020526040902054421015806130ab575060275460ff165b6130e85760405162461bcd60e51b815260206004820152600e60248201526d53656e64657220696e204c6f636b60901b6044820152606401610d6d565b6130f3600d89612709565b156131405760405162461bcd60e51b815260206004820152601b60248201527f53656e646572206164647265737320626c61636b6c69737465642100000000006044820152606401610d6d565b61314b600d88612709565b156131985760405162461bcd60e51b815260206004820152601e60248201527f526563697069656e74206164647265737320626c61636b6c69737465642100006044820152606401610d6d565b6012546011546131a89190613e4d565b42111580156131b957506013546001145b156131ff576131c9600d896121af565b506040516001600160a01b038916907f8c21268f4379683ad2b81c32b4357f44a17e83e73d741ba6e8c23e085e57135190600090a25b50601a5462010000900460ff165b601a546001600160a01b03898116600160301b90920416148015906132355750602b5460ff16155b8015613244575060255460ff16155b801561324d5750835b1561325a5761325a61251b565b60006132768783601a60039054906101000a900460ff16613877565b601a549091506000906132aa90899085906132a59060ff6401000000008204811691600160281b900416613e65565b613877565b905060006132b88284613e4d565b6132c2908a613cce565b90506132ce8b8a6136eb565b30600090815260016020526040812080548492906132ed908490613e4d565b9250508190555082601660008282546133069190613cce565b9091555061331690508a826137ac565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161335b91815260200190565b60405180910390a35050505050505050505050565b601b546133889030906001600160a01b0316836121cb565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106133bd576133bd613f5b565b6001600160a01b03928316602091820292909201810191909152601b54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015613416573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061343a9190613f3e565b8160018151811061344d5761344d613f5b565b6001600160a01b039283166020918202929092010152601b5460405163791ac94760e01b815291169063791ac94790613493908590600090869030904290600401613fea565b600060405180830381600087803b1580156134ad57600080fd5b505af11580156134c1573d6000803e3d6000fd5b505050505050565b80602460008282546134db9190613e4d565b9091555050601b546134f89030906001600160a01b0316846121cb565b601b5460405163f305d71960e01b81526001600160a01b039091169063f305d7199083906135359030908790600090819084904290600401613f03565b60606040518083038185885af1158015613553573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611fa59190614026565b6000818152600183016020526040812054801561365b57600061359c600183613cce565b85549091506000906135b090600190613cce565b905060008660000182815481106135c9576135c9613f5b565b90600052602060002001549050808760000184815481106135ec576135ec613f5b565b60009182526020808320909101929092558281526001890190915260409020849055865487908061361f5761361f614054565b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610ee0565b6000915050610ee0565b815460009082106136c35760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610d6d565b8260000182815481106136d8576136d8613f5b565b9060005260206000200154905092915050565b6001600160a01b03821660009081526001602052604081205461370f908390613cce565b905061371a836114bf565b1561373f576001600160a01b0390921660009081526001602052604090209190915550565b600061374a8461265b565b6001600160a01b0385166000908152600160205260409020839055601c54909150613776908390613ce5565b6001600160a01b038516600090815260216020908152604080832093909355602290529081208054839290612ab2908490613e4d565b6001600160a01b0382166000908152600160205260408120546137d0908390613e4d565b90506137db836114bf565b15613800576001600160a01b0390921660009081526001602052604090209190915550565b600061380b8461265b565b905081601c5461381b9190613ce5565b6001600160a01b038516600090815260216020908152604080832093909355602290529081208054839290613851908490613e4d565b9091555050506001600160a01b0390921660009081526001602052604090209190915550565b60006127108260ff168460ff168661388f9190613ce5565b6138999190613ce5565b6138a39190613d04565b949350505050565b8280546138b790613d26565b90600052602060002090601f0160209004810192826138d9576000855561391f565b82601f106138f257805160ff191683800117855561391f565b8280016001018555821561391f579182015b8281111561391f578251825591602001919060010190613904565b5061392b92915061392f565b5090565b5b8082111561392b5760008155600101613930565b60006020828403121561395657600080fd5b5035919050565b600060208083528351808285015260005b8181101561398a5785810183015185820160400152820161396e565b8181111561399c576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461135c57600080fd5b600080604083850312156139da57600080fd5b82356139e5816139b2565b946020939093013593505050565b801515811461135c57600080fd5b600060208284031215613a1357600080fd5b81356121c4816139f3565b600080600060608486031215613a3357600080fd5b8335613a3e816139b2565b92506020840135613a4e816139b2565b929592945050506040919091013590565b600060208284031215613a7157600080fd5b81356121c4816139b2565b803560ff81168114613a8d57600080fd5b919050565b60008060008060008060c08789031215613aab57600080fd5b613ab487613a7c565b9550613ac260208801613a7c565b9450613ad060408801613a7c565b9350613ade60608801613a7c565b9250613aec60808801613a7c565b9150613afa60a08801613a7c565b90509295509295509295565b600060208284031215613b1857600080fd5b6121c482613a7c565b60008060408385031215613b3457600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600082601f830112613b6a57600080fd5b813567ffffffffffffffff80821115613b8557613b85613b43565b604051601f8301601f19908116603f01168101908282118183101715613bad57613bad613b43565b81604052838152866020858801011115613bc657600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215613bf957600080fd5b823567ffffffffffffffff80821115613c1157600080fd5b613c1d86838701613b59565b93506020850135915080821115613c3357600080fd5b50613c4085828601613b59565b9150509250929050565b60008060408385031215613c5d57600080fd5b8235613c68816139b2565b91506020830135613c78816139b2565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082821015613ce057613ce0613cb8565b500390565b6000816000190483118215151615613cff57613cff613cb8565b500290565b600082613d2157634e487b7160e01b600052601260045260246000fd5b500490565b600181811c90821680613d3a57607f821691505b602082108103611d8c57634e487b7160e01b600052602260045260246000fd5b600181815b80851115613d95578160001904821115613d7b57613d7b613cb8565b80851615613d8857918102915b93841c9390800290613d5f565b509250929050565b600082613dac57506001610ee0565b81613db957506000610ee0565b8160018114613dcf5760028114613dd957613df5565b6001915050610ee0565b60ff841115613dea57613dea613cb8565b50506001821b610ee0565b5060208310610133831016604e8410600b8410161715613e18575081810a610ee0565b613e228383613d5a565b8060001904821115613e3657613e36613cb8565b029392505050565b60006121c460ff841683613d9d565b60008219821115613e6057613e60613cb8565b500190565b600060ff821660ff84168060ff03821115613e8257613e82613cb8565b019392505050565b60208082526010908201526f139bdd081e595d081d5b9b1bd8dad95960821b604082015260600190565b600060208284031215613ec657600080fd5b5051919050565b600060208284031215613edf57600080fd5b81516121c4816139f3565b600060018201613efc57613efc613cb8565b5060010190565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b600060208284031215613f5057600080fd5b81516121c4816139b2565b634e487b7160e01b600052603260045260246000fd5b600081518084526020808501945080840160005b83811015613faa5781516001600160a01b031687529582019590820190600101613f85565b509495945050505050565b848152608060208201526000613fce6080830186613f71565b6001600160a01b03949094166040830152506060015292915050565b85815284602082015260a06040820152600061400960a0830186613f71565b6001600160a01b0394909416606083015250608001529392505050565b60008060006060848603121561403b57600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052603160045260246000fdfea264697066735822122057c3ac3e7f542ed05cec8f21a06a3d4c71a0605aa325bbc879b15b8cb076d90d64736f6c634300080d0033
Deployed Bytecode Sourcemap
27584:36830:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53374:269;;;;;;;;;;-1:-1:-1;53374:269:0;;;;;:::i;:::-;;:::i;62072:96::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40971:31;;;;;;;;;;-1:-1:-1;40971:31:0;;;;;;;;;;;973:4:1;961:17;;;943:36;;931:2;916:18;40971:31:0;801:184:1;62953:161:0;;;;;;;;;;-1:-1:-1;62953:161:0;;;;;:::i;:::-;;:::i;:::-;;;1611:14:1;;1604:22;1586:41;;1574:2;1559:18;62953:161:0;1446:187:1;29102:42:0;;;;;;;;;;;;29142:2;29102:42;;;;;1812:6:1;1800:19;;;1782:38;;1770:2;1755:18;29102:42:0;1638:188:1;54587:104:0;;;;;;;;;;-1:-1:-1;54587:104:0;;;;;:::i;:::-;;:::i;62378:108::-;;;;;;;;;;-1:-1:-1;62460:18:0;;62378:108;;;2346:25:1;;;2334:2;2319:18;62378:108:0;2200:177:1;28425:64:0;;;;;;;;;;;;;:::i;63427:392::-;;;;;;;;;;-1:-1:-1;63427:392:0;;;;;:::i;:::-;;:::i;56644:81::-;;;;;;;;;;;;;:::i;28652:31::-;;;;;;;;;;;;;;;;50677:244;;;;;;;;;;-1:-1:-1;50848:8:0;;50677:244;;;50848:8;;;;;;3130:25:1;;50857:13:0;;;;;3186:2:1;3171:18;;3164:34;-1:-1:-1;;;50871:11:0;;;;3214:18:1;;;3207:34;;;;50883:7:0;;;3272:2:1;3257:18;;3250:34;50848:8:0;50891;;;;3315:3:1;3300:19;;3293:35;50900:12:0;;;;;3359:3:1;3344:19;;3337:35;3117:3;3102:19;50677:244:0;2843:535:1;53020:27:0;;;;;;;;;;-1:-1:-1;53020:27:0;;;;;;;;28988:44;;;;;;;;;;;;29030:2;28988:44;;62276:94;;;;;;;;;;-1:-1:-1;28417:1:0;62276:94;;52639:191;;;;;;;;;;-1:-1:-1;52639:191:0;;;;;:::i;:::-;;:::i;29287:49::-;;;;;;;;;;;;29327:9;29287:49;;58025:143;;;;;;;;;;-1:-1:-1;58025:143:0;;;;;:::i;:::-;;:::i;63854:205::-;;;;;;;;;;-1:-1:-1;63854:205:0;;;;;:::i;:::-;;:::i;46880:25::-;;;;;;;;;;;;;;;;28833:38;;;;;;;;;;;;;;;;40927:27;;;;;;;;;;;;;;;;53054:26;;;;;;;;;;;;;;;;58296;;;;;;;;;;-1:-1:-1;58296:26:0;;;;;;;;;;;58605:146;;;;;;;;;;-1:-1:-1;58605:146:0;;;;;:::i;:::-;;:::i;30222:46::-;;;;;;;;;;;;;;;;55865:492;;;;;;;;;;-1:-1:-1;55865:492:0;;;;;:::i;:::-;;:::i;41054:31::-;;;;;;;;;;;;;;;;51407:110;;;;;;;;;;-1:-1:-1;51490:19:0;;51407:110;;61233:311;;;;;;;;;;;;;:::i;58958:153::-;;;;;;;;;;-1:-1:-1;58958:153:0;;;;;:::i;:::-;;:::i;53850:110::-;;;;;;;;;;-1:-1:-1;53850:110:0;;;;;:::i;:::-;;:::i;50520:149::-;;;;;;;;;;;;;:::i;:::-;;;;4510:25:1;;;4566:2;4551:18;;4544:34;;;;4483:18;50520:149:0;4336:248:1;62494:121:0;;;;;;;;;;-1:-1:-1;62494:121:0;;;;;:::i;:::-;-1:-1:-1;;;;;62589:18:0;62562:7;62589:18;;;:9;:18;;;;;;;62494:121;9445:140;;;;;;;;;;;;;:::i;41538:132::-;;;;;;;;;;-1:-1:-1;41538:132:0;;;;;:::i;:::-;;:::i;56434:142::-;;;;;;;;;;-1:-1:-1;56434:142:0;;;;;:::i;:::-;;:::i;30166:49::-;;;;;;;;;;;;;;;;58410:127;;;;;;;;;;;;;:::i;40713:29::-;;;;;;;;;;;;;;;;53087:28;;;;;;;;;;-1:-1:-1;53087:28:0;;;;;;;;52951;;;;;;;;;;-1:-1:-1;52951:28:0;;;;;;;;61970:94;;;;;;;;;;-1:-1:-1;62022:7:0;8869:6;-1:-1:-1;;;;;8869:6:0;61970:94;;;-1:-1:-1;;;;;4940:32:1;;;4922:51;;4910:2;4895:18;61970:94:0;4776:203:1;8804:79:0;;;;;;;;;;-1:-1:-1;8842:7:0;8869:6;-1:-1:-1;;;;;8869:6:0;8804:79;;29694:78;;;;;;;;;;-1:-1:-1;29694:78:0;;;;-1:-1:-1;;;;;29694:78:0;;;62174:96;;;;;;;;;;;;;:::i;59412:466::-;;;;;;;;;;;;;:::i;53728:110::-;;;;;;;;;;-1:-1:-1;53728:110:0;;;;;:::i;:::-;;:::i;56834:895::-;;;;;;;;;;-1:-1:-1;56834:895:0;;;;;:::i;:::-;;:::i;64067:342::-;;;;;;;;;;-1:-1:-1;64067:342:0;;;;;:::i;:::-;;:::i;62623:167::-;;;;;;;;;;-1:-1:-1;62623:167:0;;;;;:::i;:::-;;:::i;28344:31::-;;;;;;;;;;;;;:::i;54103:115::-;;;;;;;;;;-1:-1:-1;54103:115:0;;;;;:::i;:::-;;:::i;54758:102::-;;;;;;;;;;-1:-1:-1;54758:102:0;;;;;:::i;:::-;;:::i;46620:74::-;;;;;;;;;;-1:-1:-1;46620:74:0;;;;-1:-1:-1;;;;;46620:74:0;;;52567:64;;;;;;;;;;;;;:::i;50155:220::-;;;;;;;;;;;;;:::i;50383:129::-;;;;;;;;;;;;;:::i;55723:112::-;;;;;;;;;;-1:-1:-1;55723:112:0;;;;;:::i;:::-;;:::i;54362:157::-;;;;;;;;;;-1:-1:-1;54362:157:0;;;;;:::i;:::-;;:::i;55530:125::-;;;;;;;;;;-1:-1:-1;55530:125:0;;;;;:::i;:::-;;:::i;28309:28::-;;;;;;;;;;;;;:::i;54933:202::-;;;;;;;;;;-1:-1:-1;54933:202:0;;;;;:::i;:::-;;:::i;29779:76::-;;;;;;;;;;-1:-1:-1;29779:76:0;;;;-1:-1:-1;;;;;29779:76:0;;;62798:147;;;;;;;;;;-1:-1:-1;62798:147:0;;;;;:::i;:::-;-1:-1:-1;;;;;62909:19:0;;;62882:7;62909:19;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;62798:147;55211:195;;;;;;;;;;-1:-1:-1;55211:195:0;;;;;:::i;:::-;;:::i;53972:123::-;;;;;;;;;;-1:-1:-1;53972:123:0;;;;;:::i;:::-;;:::i;41911:411::-;;;;;;;;;;;;;:::i;59936:1211::-;;;;;;;;;;-1:-1:-1;59936:1211:0;;;;;:::i;:::-;;:::i;40824:33::-;;;;;;;;;;;;;;;;54226:128;;;;;;;;;;-1:-1:-1;54226:128:0;;;;;:::i;:::-;;:::i;57809:135::-;;;;;;;;;;-1:-1:-1;57809:135:0;;;;;:::i;:::-;;:::i;9740:236::-;;;;;;;;;;-1:-1:-1;9740:236:0;;;;;:::i;:::-;;:::i;52986:27::-;;;;;;;;;;;;;;;;53125:242;;;;;;;;;;;;;:::i;41717:118::-;;;;;;;;;;-1:-1:-1;41717:118:0;;;;;:::i;:::-;;:::i;53374:269::-;9027:10;9016:7;8842;8869:6;-1:-1:-1;;;;;8869:6:0;;8804:79;9016:7;-1:-1:-1;;;;;9016:21:0;;9008:66;;;;-1:-1:-1;;;9008:66:0;;;;;;;:::i;:::-;;;;;;;;;53467:16:::1;;53459:6;:24;;53451:33;;;::::0;::::1;;53513:6;53495:16;;:24;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;53538:11:0::1;::::0;-1:-1:-1;;;;;53538:11:0::1;53530:48;53574:3;53561:9;:6:::0;53568:2:::1;53561:9;:::i;:::-;53560:17;;;;:::i;:::-;53530:48;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;53597:9:0::1;::::0;-1:-1:-1;;;;;53597:9:0::1;53589:46;53631:3;53618:9;:6:::0;53625:2:::1;53618:9;:::i;:::-;53617:17;;;;:::i;:::-;53589:46;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;53374:269:::0;:::o;62072:96::-;62120:13;62154:5;62147:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62072:96;:::o;62953:161::-;63030:4;63047:37;63056:10;63068:7;63077:6;63047:8;:37::i;:::-;-1:-1:-1;63102:4:0;62953:161;;;;;:::o;54587:104::-;9027:10;9016:7;8842;8869:6;-1:-1:-1;;;;;8869:6:0;;8804:79;9016:7;-1:-1:-1;;;;;9016:21:0;;9008:66;;;;-1:-1:-1;;;9008:66:0;;;;;;;:::i;:::-;54658:16:::1;:25:::0;;-1:-1:-1;;54658:25:0::1;::::0;::::1;;::::0;;;::::1;::::0;;54587:104::o;28425:64::-;28476:13;28417:1;28476:2;:13;:::i;:::-;28464:25;;:9;:25;:::i;:::-;28425:64;:::o;63427:392::-;63527:4;63544:36;63554:6;63562:9;63573:6;63544:9;:36::i;:::-;-1:-1:-1;;;;;63620:19:0;;63593:24;63620:19;;;:11;:19;;;;;;;;63640:10;63620:31;;;;;;;;63670:26;;;;63662:59;;;;-1:-1:-1;;;63662:59:0;;10022:2:1;63662:59:0;;;10004:21:1;10061:2;10041:18;;;10034:30;-1:-1:-1;;;10080:18:1;;;10073:50;10140:18;;63662:59:0;9820:344:1;63662:59:0;63734:55;63743:6;63751:10;63763:25;63782:6;63763:16;:25;:::i;:::-;63734:8;:55::i;:::-;-1:-1:-1;63807:4:0;;63427:392;-1:-1:-1;;;;63427:392:0:o;56644:81::-;9027:10;9016:7;8842;8869:6;-1:-1:-1;;;;;8869:6:0;;8804:79;9016:7;-1:-1:-1;;;;;9016:21:0;;9008:66;;;;-1:-1:-1;;;9008:66:0;;;;;;;:::i;:::-;56697:20:::1;:18;:20::i;:::-;56644:81::o:0;52639:191::-;52696:7;52718:27;52740:4;52718:21;:27::i;:::-;52715:53;;;-1:-1:-1;;;;;;52754:14:0;;;;;:8;:14;;;;;;;52639:191::o;52715:53::-;-1:-1:-1;;;;;52808:14:0;;;;;;:8;:14;;;;;;52786:21;52817:4;52786:15;:21::i;:::-;:36;;;;:::i;58025:143::-;9027:10;9016:7;8842;8869:6;-1:-1:-1;;;;;8869:6:0;;8804:79;9016:7;-1:-1:-1;;;;;9016:21:0;;9008:66;;;;-1:-1:-1;;;9008:66:0;;;;;;;:::i;:::-;58119:41:::1;:14;58141:18:::0;58119:21:::1;:41::i;63854:205::-:0;63962:10;63936:4;63983:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;63983:32:0;;;;;;;;;;63936:4;;63953:76;;63974:7;;63983:45;;64018:10;;63983:45;:::i;58605:146::-;9027:10;9016:7;8842;8869:6;-1:-1:-1;;;;;8869:6:0;;8804:79;9016:7;-1:-1:-1;;;;;9016:21:0;;9008:66;;;;-1:-1:-1;;;9008:66:0;;;;;;;:::i;:::-;58699:22:::1;:44:::0;;-1:-1:-1;;;;;58699:44:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;58699:44:0;;::::1;::::0;;;::::1;::::0;;58605:146::o;55865:492::-;9027:10;9016:7;8842;8869:6;-1:-1:-1;;;;;8869:6:0;;8804:79;9016:7;-1:-1:-1;;;;;9016:21:0;;9008:66;;;;-1:-1:-1;;;9008:66:0;;;;;;;:::i;:::-;56020:14:::1;56060:12:::0;56035:24:::1;56045:14:::0;56035:9;:24:::1;:::i;:::-;:37;;;;:::i;:::-;56020:52;;56091:8;:13;;56101:3;56091:13;56083:64;;;::::0;-1:-1:-1;;;56083:64:0;;10713:2:1;56083:64:0::1;::::0;::::1;10695:21:1::0;10752:2;10732:18;;;10725:30;10791:34;10771:18;;;10764:62;-1:-1:-1;;;10842:18:1;;;10835:36;10888:19;;56083:64:0::1;10511:402:1::0;56083:64:0::1;-1:-1:-1::0;56160:8:0::1;:18:::0;;::::1;56325:24:::0;;::::1;::::0;::::1;-1:-1:-1::0;;56298:16:0;;::::1;56160:18;56298:16;-1:-1:-1::0;;56228:24:0;;::::1;-1:-1:-1::0;;;56228:24:0::1;56298:16:::0;;;;-1:-1:-1;;56189:28:0;;::::1;::::0;::::1;-1:-1:-1::0;;56160:18:0;;::::1;::::0;::::1;56189:28:::0;;;;-1:-1:-1;;56189:28:0;;;;;;;;;;::::1;56298:16:::0;;;;;;;;56273:14;::::1;56298:16:::0;;;;;;;::::1;56325:24;::::0;;;::::1;::::0;;55865:492::o;61233:311::-;9027:10;9016:7;8842;8869:6;-1:-1:-1;;;;;8869:6:0;;8804:79;9016:7;-1:-1:-1;;;;;9016:21:0;;9008:66;;;;-1:-1:-1;;;9008:66:0;;;;;;;:::i;:::-;61322:20:::1;;61303:15;:39;;61295:68;;;;-1:-1:-1::0;;;61295:68:0::1;;;;;;;:::i;:::-;61395:40;29665:4;61395:15;:40;:::i;:::-;61374:20;:61:::0;61460:11:::1;::::0;:52:::1;::::0;61447:9:::1;::::0;-1:-1:-1;;;;;61460:11:0::1;::::0;61485:21:::1;::::0;61447:9;61460:52;61447:9;61460:52;61485:21;61460:11;:52:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61446:66;;;61531:4;61523:13;;;::::0;::::1;;61284:260;61233:311::o:0;58958:153::-;9027:10;9016:7;8842;8869:6;-1:-1:-1;;;;;8869:6:0;;8804:79;9016:7;-1:-1:-1;;;;;9016:21:0;;9008:66;;;;-1:-1:-1;;;9008:66:0;;;;;;;:::i;:::-;59046:57:::1;59068:34;59087:15;59068:18:::0;:34:::1;:::i;:::-;59046:21;:57::i;53850:110::-:0;9027:10;9016:7;8842;8869:6;-1:-1:-1;;;;;8869:6:0;;8804:79;9016:7;-1:-1:-1;;;;;9016:21:0;;9008:66;;;;-1:-1:-1;;;9008:66:0;;;;;;;:::i;:::-;53939:13:::1;28417:1;53939:2;:13;:::i;:::-;53927:25;::::0;:9;:25:::1;:::i;:::-;53920:6;:32:::0;-1:-1:-1;53850:110:0:o;50520:149::-;50561:15;;50622:13;28417:1;50622:2;:13;:::i;:::-;50609:12;;:26;;;;:::i;:::-;50647:13;28417:1;50647:2;:13;:::i;:::-;50637:9;;:23;;;;:::i;:::-;50602:59;;;;50520:149;;:::o;9445:140::-;9027:10;9016:7;8842;8869:6;-1:-1:-1;;;;;8869:6:0;;8804:79;9016:7;-1:-1:-1;;;;;9016:21:0;;9008:66;;;;-1:-1:-1;;;9008:66:0;;;;;;;:::i;:::-;9544:1:::1;9528:6:::0;;9507:40:::1;::::0;-1:-1:-1;;;;;9528:6:0;;::::1;::::0;9507:40:::1;::::0;9544:1;;9507:40:::1;9575:1;9558:19:::0;;-1:-1:-1;;;;;;9558:19:0::1;::::0;;9445:140::o;41538:132::-;41604:4;41627:35;:20;41657:4;41627:29;:35::i;56434:142::-;9027:10;9016:7;8842;8869:6;-1:-1:-1;;;;;8869:6:0;;8804:79;9016:7;-1:-1:-1;;;;;9016:21:0;;9008:66;;;;-1:-1:-1;;;9008:66:0;;;;;;;:::i;:::-;56529:3:::1;56519:8;:13;;;;56511:22;;;::::0;::::1;;56545:14;:23:::0;;-1:-1:-1;;56545:23:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;56434:142::o;58410:127::-;9027:10;9016:7;8842;8869:6;-1:-1:-1;;;;;8869:6:0;;8804:79;9016:7;-1:-1:-1;;;;;9016:21:0;;9008:66;;;;-1:-1:-1;;;9008:66:0;;;;;;;:::i;:::-;58467:14:::1;:19:::0;;-1:-1:-1;;58467:19:0::1;;;::::0;;58514:15:::1;58497:16;:32:::0;58410:127::o;62049:7::-;62042:14;;61970:94;:::o;62174:96::-;62224:13;62254:7;62247:14;;;;;:::i;59412:466::-;9027:10;9016:7;8842;8869:6;-1:-1:-1;;;;;8869:6:0;;8804:79;9016:7;-1:-1:-1;;;;;9016:21:0;;9008:66;;;;-1:-1:-1;;;9008:66:0;;;;;;;:::i;:::-;59540:20:::1;;59521:15;:39;;59513:68;;;;-1:-1:-1::0;;;59513:68:0::1;;;;;;;:::i;:::-;59651:22;::::0;59702:39:::1;::::0;-1:-1:-1;;;59702:39:0;;59735:4:::1;59702:39;::::0;::::1;4922:51:1::0;59651:22:0;;;::::1;-1:-1:-1::0;;;;;59651:22:0::1;::::0;59602:30:::1;::::0;59651:22;;59702:24:::1;::::0;4895:18:1;;59702:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;59840:11;::::0;59816:44:::1;::::0;-1:-1:-1;;;59816:44:0;;-1:-1:-1;;;;;59840:11:0;;::::1;59816:44;::::0;::::1;11836:51:1::0;11903:18;;;11896:34;;;59685:56:0;;-1:-1:-1;59816:23:0;::::1;::::0;::::1;::::0;11809:18:1;;59816:44:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;59444:434;;59412:466::o:0;53728:110::-;9027:10;9016:7;8842;8869:6;-1:-1:-1;;;;;8869:6:0;;8804:79;9016:7;-1:-1:-1;;;;;9016:21:0;;9008:66;;;;-1:-1:-1;;;9008:66:0;;;;;;;:::i;:::-;53807:16:::1;:23:::0;;-1:-1:-1;;53807:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;53728:110::o;56834:895::-;9027:10;9016:7;8842;8869:6;-1:-1:-1;;;;;8869:6:0;;8804:79;9016:7;-1:-1:-1;;;;;9016:21:0;;9008:66;;;;-1:-1:-1;;;9008:66:0;;;;;;;:::i;:::-;57070:3:::1;57051:18;;:22;;;;:::i;:::-;57038:12;:35;57030:44;;;::::0;::::1;;57152:13;28417:1;57152:2;:13;:::i;:::-;57136:29;::::0;:15;:29:::1;:::i;:::-;57120:45:::0;-1:-1:-1;57202:13:0::1;28417:1;57202:2;:13;:::i;:::-;57189:26;::::0;:12;:26:::1;:::i;:::-;57176:39;;57282:26;29030:2;57309:38;;:18;;:38;;;;:::i;:::-;57282:65;;57358:23;29142:2;57382:35;;:18;;:35;;;;:::i;:::-;57358:59;;57456:18;57439:15;:35;;57430:103;;;::::0;-1:-1:-1;;;57430:103:0;;12393:2:1;57430:103:0::1;::::0;::::1;12375:21:1::0;12432:2;12412:18;;;12405:30;12471:34;12451:18;;;12444:62;-1:-1:-1;;;12522:18:1;;;12515:41;12573:19;;57430:103:0::1;12191:407:1::0;57430:103:0::1;57567:15;57553:12;:29;;57544:94;;;::::0;-1:-1:-1;;;57544:94:0;;12805:2:1;57544:94:0::1;::::0;::::1;12787:21:1::0;12844:2;12824:18;;;12817:30;12883:34;12863:18;;;12856:62;-1:-1:-1;;;12934:18:1;;;12927:38;12982:19;;57544:94:0::1;12603:404:1::0;57544:94:0::1;-1:-1:-1::0;;57651:12:0::1;:30:::0;;;;57692:9:::1;:24:::0;56834:895::o;64067:342::-;64210:10;64154:4;64198:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;64198:32:0;;;;;;;;;;64249:35;;;;64241:60;;;;-1:-1:-1;;;64241:60:0;;13214:2:1;64241:60:0;;;13196:21:1;13253:2;13233:18;;;13226:30;-1:-1:-1;;;13272:18:1;;;13265:42;13324:18;;64241:60:0;13012:336:1;64241:60:0;64314:65;64323:10;64335:7;64344:34;64363:15;64344:16;:34;:::i;64314:65::-;-1:-1:-1;64397:4:0;;64067:342;-1:-1:-1;;;64067:342:0:o;62623:167::-;62703:4;62720:40;62730:10;62742:9;62753:6;62720:9;:40::i;28344:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54103:115::-;9027:10;9016:7;8842;8869:6;-1:-1:-1;;;;;8869:6:0;;8804:79;9016:7;-1:-1:-1;;;;;9016:21:0;;9008:66;;;;-1:-1:-1;;;9008:66:0;;;;;;;:::i;:::-;54179:9:::1;:31:::0;;-1:-1:-1;;;;;;54179:31:0::1;-1:-1:-1::0;;;;;54179:31:0;;;::::1;::::0;;;::::1;::::0;;54103:115::o;54758:102::-;9027:10;9016:7;8842;8869:6;-1:-1:-1;;;;;8869:6:0;;8804:79;9016:7;-1:-1:-1;;;;;9016:21:0;;9008:66;;;;-1:-1:-1;;;9008:66:0;;;;;;;:::i;:::-;54828:15:::1;:24:::0;;-1:-1:-1;;54828:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;54758:102::o;52567:64::-;52603:20;52612:10;52603:8;:20::i;50155:220::-;50220:7;50258:20;;50242:15;:36;50239:110;;;50322:15;50301:20;;:36;;;;:::i;50239:110::-;-1:-1:-1;50366:1:0;;50155:220::o;50383:129::-;50430:7;50491:13;28417:1;50491:2;:13;:::i;:::-;50471:18;;28476:13;28417:1;28476:2;:13;:::i;:::-;28464:25;;:9;:25;:::i;:::-;50457:32;;;;:::i;:::-;50456:48;;;;:::i;55723:112::-;9027:10;9016:7;8842;8869:6;-1:-1:-1;;;;;8869:6:0;;8804:79;9016:7;-1:-1:-1;;;;;9016:21:0;;9008:66;;;;-1:-1:-1;;;9008:66:0;;;;;;;:::i;:::-;55800:27:::1;:9;55814:12:::0;55800:13:::1;:27::i;54362:157::-:0;9027:10;9016:7;8842;8869:6;-1:-1:-1;;;;;8869:6:0;;8804:79;9016:7;-1:-1:-1;;;;;9016:21:0;;9008:66;;;;-1:-1:-1;;;9008:66:0;;;;;;;:::i;:::-;54466:15;;::::1;::::0;:5:::1;::::0;:15:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;54492:19:0;;::::1;::::0;:7:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;55530:125::-:0;9027:10;9016:7;8842;8869:6;-1:-1:-1;;;;;8869:6:0;;8804:79;9016:7;-1:-1:-1;;;;;9016:21:0;;9008:66;;;;-1:-1:-1;;;9008:66:0;;;;;;;:::i;:::-;55612:19:::1;:35:::0;55530:125::o;28309:28::-;;;;;;;:::i;54933:202::-;9027:10;9016:7;8842;8869:6;-1:-1:-1;;;;;8869:6:0;;8804:79;9016:7;-1:-1:-1;;;;;9016:21:0;;9008:66;;;;-1:-1:-1;;;9008:66:0;;;;;;;:::i;:::-;55025:32;;55017:67:::1;;;::::0;-1:-1:-1;;;55017:67:0;;13555:2:1;55017:67:0::1;::::0;::::1;13537:21:1::0;13594:2;13574:18;;;13567:30;13633:25;13613:18;;;13606:53;13676:18;;55017:67:0::1;13353:347:1::0;55017:67:0::1;55099:12;:28:::0;54933:202::o;55211:195::-;9027:10;9016:7;8842;8869:6;-1:-1:-1;;;;;8869:6:0;;8804:79;9016:7;-1:-1:-1;;;;;9016:21:0;;9008:66;;;;-1:-1:-1;;;9008:66:0;;;;;;;:::i;:::-;55301:30;;55293:64:::1;;;::::0;-1:-1:-1;;;55293:64:0;;13907:2:1;55293:64:0::1;::::0;::::1;13889:21:1::0;13946:2;13926:18;;;13919:30;-1:-1:-1;;;13965:18:1;;;13958:52;14027:18;;55293:64:0::1;13705:346:1::0;55293:64:0::1;55372:11;:26:::0;55211:195::o;53972:123::-;9027:10;9016:7;8842;8869:6;-1:-1:-1;;;;;8869:6:0;;8804:79;9016:7;-1:-1:-1;;;;;9016:21:0;;9008:66;;;;-1:-1:-1;;;9008:66:0;;;;;;;:::i;:::-;54052:11:::1;:35:::0;;-1:-1:-1;;;;;;54052:35:0::1;-1:-1:-1::0;;;;;54052:35:0;;;::::1;::::0;;;::::1;::::0;;53972:123::o;41911:411::-;41993:18;;41959:7;;;42168:123;42184:29;:20;:27;:29::i;:::-;42182:1;:31;42168:123;;;42242:9;:37;42252:26;:20;42276:1;42252:23;:26::i;:::-;-1:-1:-1;;;;;42242:37:0;;;;;;;;;;;;-1:-1:-1;42242:37:0;;42234:45;;;;:::i;:::-;;-1:-1:-1;42215:3:0;;;;:::i;:::-;;;;42168:123;;;-1:-1:-1;42308:6:0;41911:411;-1:-1:-1;41911:411:0:o;59936:1211::-;9027:10;9016:7;8842;8869:6;-1:-1:-1;;;;;8869:6:0;;8804:79;9016:7;-1:-1:-1;;;;;9016:21:0;;9008:66;;;;-1:-1:-1;;;9008:66:0;;;;;;;:::i;:::-;60080:20:::1;;60061:15;:39;;60053:68;;;;-1:-1:-1::0;;;60053:68:0::1;;;;;;;:::i;:::-;60153:40;29665:4;60153:15;:40;:::i;:::-;60132:20;:61:::0;60253:22:::1;::::0;60304:39:::1;::::0;-1:-1:-1;;;60304:39:0;;60337:4:::1;60304:39;::::0;::::1;4922:51:1::0;60253:22:0;;;::::1;-1:-1:-1::0;;;;;60253:22:0::1;::::0;60204:30:::1;::::0;60253:22;;60304:24:::1;::::0;4895:18:1;;60304:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;60387:16;::::0;60356:56:::1;::::0;-1:-1:-1;;;60356:56:0;;-1:-1:-1;;;;;60387:16:0;;::::1;60356:56;::::0;::::1;11836:51:1::0;11903:18;;;11896:34;;;60287:56:0;;-1:-1:-1;60356:22:0;::::1;::::0;::::1;::::0;11809:18:1;;60356:56:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;60689:16:0::1;::::0;:218:::1;::::0;-1:-1:-1;;;60689:218:0;;60657:21:::1;::::0;-1:-1:-1;;;;;60689:16:0::1;::::0;:64:::1;::::0;:218:::1;::::0;60776:4:::1;::::0;60796:6;;60629:25:::1;::::0;;;60776:4;;60877:15:::1;::::0;60689:218:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;60918:21:0::1;60942:39;60964:17:::0;60942:21:::1;:39;:::i;:::-;60918:63;;60995:12;60992:146;;;61023:31;61040:13;61023:16;:31::i;:::-;60992:146;;;61113:13;61095:16;;:31;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;60992:146:0::1;59984:1163;;;;59936:1211:::0;:::o;54226:128::-;9027:10;9016:7;8842;8869:6;-1:-1:-1;;;;;8869:6:0;;8804:79;9016:7;-1:-1:-1;;;;;9016:21:0;;9008:66;;;;-1:-1:-1;;;9008:66:0;;;;;;;:::i;:::-;54312:14:::1;:34:::0;;-1:-1:-1;;;;;;54312:34:0::1;-1:-1:-1::0;;;;;54312:34:0;;;::::1;::::0;;;::::1;::::0;;54226:128::o;57809:135::-;9027:10;9016:7;8842;8869:6;-1:-1:-1;;;;;8869:6:0;;8804:79;9016:7;-1:-1:-1;;;;;9016:21:0;;9008:66;;;;-1:-1:-1;;;9008:66:0;;;;;;;:::i;:::-;57898:38:::1;:14;57917:18:::0;57898::::1;:38::i;9740:236::-:0;9027:10;9016:7;8842;8869:6;-1:-1:-1;;;;;8869:6:0;;8804:79;9016:7;-1:-1:-1;;;;;9016:21:0;;9008:66;;;;-1:-1:-1;;;9008:66:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9821:22:0;::::1;9813:73;;;::::0;-1:-1:-1;;;9813:73:0;;15010:2:1;9813:73:0::1;::::0;::::1;14992:21:1::0;15049:2;15029:18;;;15022:30;15088:34;15068:18;;;15061:62;-1:-1:-1;;;15139:18:1;;;15132:36;15185:19;;9813:73:0::1;14808:402:1::0;9813:73:0::1;9923:6;::::0;;9902:38:::1;::::0;-1:-1:-1;;;;;9902:38:0;;::::1;::::0;9923:6;::::1;::::0;9902:38:::1;::::0;::::1;9951:6;:17:::0;;-1:-1:-1;;;;;;9951:17:0::1;-1:-1:-1::0;;;;;9951:17:0;;;::::1;::::0;;;::::1;::::0;;9740:236::o;53125:242::-;9027:10;9016:7;8842;8869:6;-1:-1:-1;;;;;8869:6:0;;8804:79;9016:7;-1:-1:-1;;;;;9016:21:0;;9008:66;;;;-1:-1:-1;;;9008:66:0;;;;;;;:::i;:::-;53198:16:::1;::::0;;53183:14:::1;53225:18:::0;;;53262:11:::1;::::0;-1:-1:-1;;;;;53262:11:0::1;53254:48;53298:3;53285:9;53198:16:::0;53292:2:::1;53285:9;:::i;41717:118::-:0;41775:4;41798:29;:14;41822:4;41798:23;:29::i;24491:152::-;24561:4;24585:50;24590:3;-1:-1:-1;;;;;24610:23:0;;24585:4;:50::i;:::-;24578:57;24491:152;-1:-1:-1;;;24491:152:0:o;63120:299::-;-1:-1:-1;;;;;63213:19:0;;63205:49;;;;-1:-1:-1;;;63205:49:0;;15417:2:1;63205:49:0;;;15399:21:1;15456:2;15436:18;;;15429:30;-1:-1:-1;;;15475:18:1;;;15468:47;15532:18;;63205:49:0;15215:341:1;63205:49:0;-1:-1:-1;;;;;63273:21:0;;63265:49;;;;-1:-1:-1;;;63265:49:0;;15763:2:1;63265:49:0;;;15745:21:1;15802:2;15782:18;;;15775:30;-1:-1:-1;;;15821:18:1;;;15814:45;15876:18;;63265:49:0;15561:339:1;63265:49:0;-1:-1:-1;;;;;63327:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;63379:32;;2346:25:1;;;63379:32:0;;2319:18:1;63379:32:0;;;;;;;63120:299;;;:::o;32719:1544::-;-1:-1:-1;;;;;32815:20:0;;32807:51;;;;-1:-1:-1;;;32807:51:0;;16107:2:1;32807:51:0;;;16089:21:1;16146:2;16126:18;;;16119:30;-1:-1:-1;;;16165:18:1;;;16158:48;16223:18;;32807:51:0;15905:342:1;32807:51:0;-1:-1:-1;;;;;32877:23:0;;32869:52;;;;-1:-1:-1;;;32869:52:0;;16454:2:1;32869:52:0;;;16436:21:1;16493:2;16473:18;;;16466:30;-1:-1:-1;;;16512:18:1;;;16505:46;16568:18;;32869:52:0;16252:340:1;32869:52:0;33014:15;33033:26;:9;33052:6;33033:18;:26::i;:::-;:59;;;-1:-1:-1;33063:29:0;:9;33082;33063:18;:29::i;:::-;33014:79;-1:-1:-1;33192:23:0;-1:-1:-1;;;;;33217:21:0;;33233:4;33217:21;;:49;;-1:-1:-1;;;;;;33242:24:0;;33261:4;33242:24;33217:49;33405:16;;33472:21;;33192:75;;-1:-1:-1;;;;;;33405:16:0;;;;33373:23;;33462:31;;;-1:-1:-1;;;33472:21:0;;;;33462:31;:63;;;;;33510:15;-1:-1:-1;;;;;33497:28:0;:9;-1:-1:-1;;;;;33497:28:0;;33462:63;33461:144;;;-1:-1:-1;33554:21:0;;-1:-1:-1;;;;;33541:34:0;;;-1:-1:-1;;;33554:21:0;;;;33541:34;:63;;;;;33589:15;-1:-1:-1;;;;;33579:25:0;:6;-1:-1:-1;;;;;33579:25:0;;33541:63;33727:21;;33433:173;;-1:-1:-1;33708:10:0;;-1:-1:-1;;;;;33719:29:0;;;-1:-1:-1;;;33727:21:0;;;;33719:29;;:57;;;33761:15;-1:-1:-1;;;;;33751:25:0;:6;-1:-1:-1;;;;;33751:25:0;;33719:57;33810:21;;33708:68;;-1:-1:-1;33787:11:0;;-1:-1:-1;;;;;33799:32:0;;;-1:-1:-1;;;33810:21:0;;;;33799:32;;:63;;;33847:15;-1:-1:-1;;;;;33834:28:0;:9;-1:-1:-1;;;;;33834:28:0;;33799:63;33787:75;;33903:18;:41;;;;33925:19;33903:41;:55;;;;33948:10;33903:55;33900:356;;;33974:43;33991:6;33999:9;34010:6;33974:16;:43::i;:::-;33900:356;;;34136:14;;;;;;;34128:49;;;;-1:-1:-1;;;34128:49:0;;16799:2:1;34128:49:0;;;16781:21:1;16838:2;16818:18;;;16811:30;16877:25;16857:18;;;16850:53;16920:18;;34128:49:0;16597:347:1;34128:49:0;34192:52;34207:6;34214:9;34224:6;34231:5;34237:6;34192:14;:52::i;:::-;32796:1467;;;;;;32719:1544;;;:::o;47368:1628::-;47033:27;:34;;-1:-1:-1;;47033:34:0;47063:4;47033:34;;;;;;47470:4:::1;47033:27:::0;47452:24;;;::::1;::::0;;;;;;;;47517:11:::1;::::0;47452:24;;47033:27;47503:25:::1;::::0;-1:-1:-1;;;47517:11:0;::::1;47033:34:::0;47517:11;;::::1;::::0;47503:13;;::::1;;:25;:::i;:::-;47487:41;;;;47539:19;47561;;47539:41;;47707:11;47691:15;:27;:40;;;-1:-1:-1::0;47720:11:0::1;::::0;::::1;::::0;47691:40:::1;47688:77;;;47747:7;;;;;47688:77;47885:13;::::0;47846:25:::1;::::0;47872:36:::1;::::0;::::1;::::0;47873:25:::1;::::0;47885:13;;::::1;;;47873:11:::0;:25:::1;:::i;:::-;47872:36;;;;:::i;:::-;47846:62:::0;-1:-1:-1;47919:25:0::1;47946:29;47846:62:::0;47946:11;:29:::1;:::i;:::-;47919:56:::0;-1:-1:-1;48036:16:0::1;48053:19;48071:1;48053:17:::0;:19:::1;:::i;:::-;48036:36:::0;-1:-1:-1;48083:19:0::1;48103:26;48036:36:::0;48103:17;:26:::1;:::i;:::-;48083:46:::0;-1:-1:-1;48212:17:0::1;48230:29;48242:17:::0;48083:46;48230:29:::1;:::i;:::-;48212:47:::0;-1:-1:-1;48374:21:0::1;48406:27;48212:47:::0;48406:16:::1;:27::i;:::-;48444:14;48460:41;48484:17:::0;48460:21:::1;:41;:::i;:::-;48444:58:::0;-1:-1:-1;48602:14:0::1;48640:9:::0;48620:18:::1;48627:11:::0;48444:58;48620:18:::1;:::i;:::-;48619:30;;;;:::i;:::-;48602:47;;48660:31;48674:8;48684:6;48660:13;:31::i;:::-;48814:21;48837:41;48861:17:::0;48837:21:::1;:41;:::i;:::-;48814:65;;48957:31;48974:13;48957:16;:31::i;:::-;47417:1579;;;;;;;;;;;;47078:1;47090:27:::0;:35;;-1:-1:-1;;47090:35:0;;;47368:1628::o;43948:427::-;-1:-1:-1;;;;;44069:17:0;;44011:7;44069:17;;;:9;:17;;;;;;44052:14;;44011:7;;44052:34;;;:::i;:::-;-1:-1:-1;;;;;44249:25:0;;;;;;:17;:25;;;;;;44031:55;;-1:-1:-1;44238:36:0;;44235:49;;;-1:-1:-1;44283:1:0;;43948:427;-1:-1:-1;;43948:427:0:o;44235:49::-;-1:-1:-1;;;;;44316:25:0;;;;;;:17;:25;;;;;;-1:-1:-1;;;40632:5:0;44303:38;;:10;:38;:::i;:::-;44302:65;;;;:::i;24819:158::-;24892:4;24916:53;24924:3;-1:-1:-1;;;;;24944:23:0;;24916:7;:53::i;59117:230::-;59273:20;;59259:13;:34;59251:43;;;;;;59305:20;:34;59117:230::o;25063:167::-;-1:-1:-1;;;;;25197:23:0;;25143:4;21872:19;;;:12;;;:19;;;;;;:24;;25167:55;21775:129;45318:1212;45377:14;;-1:-1:-1;;;45377:14:0;;;;45376:15;45368:24;;;;;;45403:14;:19;;-1:-1:-1;;;;45403:19:0;-1:-1:-1;;;45403:19:0;;;;45461:27;45483:4;45461:21;:27::i;:::-;45458:495;;;-1:-1:-1;;;;;;45575:14:0;;;;;;:8;:14;;;;;;;45604:16;;;45458:495;;;45661:17;45679:21;45695:4;45679:15;:21::i;:::-;-1:-1:-1;;;;;45811:15:0;;;;;;:9;:15;;;;;;45794:14;;45661:39;;-1:-1:-1;45794:32:0;;;:::i;:::-;-1:-1:-1;;;;;45768:23:0;;;;;;:17;:23;;;;;;;;:58;;;;45886:8;:14;;;;:24;;45901:9;;45886:24;:::i;:::-;-1:-1:-1;;;;;45925:14:0;;45940:1;45925:14;;;:8;:14;;;;;:16;45879:31;-1:-1:-1;;45458:495:0;45966:6;45974:1;45966:9;45963:106;;-1:-1:-1;;46016:14:0;:20;;-1:-1:-1;;;;46016:20:0;;;45318:1212::o;45963:106::-;46097:6;46083:12;;:20;;;;;;;:::i;:::-;;;;-1:-1:-1;;46138:16:0;;;46152:1;46138:16;;;;;;;;46114:21;;46138:16;;;;;;;;-1:-1:-1;;46175:16:0;;:23;;;-1:-1:-1;;;46175:23:0;;;;46114:40;;-1:-1:-1;;;;;;46175:16:0;;;;:21;;-1:-1:-1;46175:23:0;;;;;;;;;;;;;;:16;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46165:4;46170:1;46165:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;46165:33:0;;;:7;;;;;;;;;:33;46225:14;;46215:7;;46225:14;;;46215:4;;46225:14;;46215:7;;;;;;:::i;:::-;-1:-1:-1;;;;;46215:24:0;;;:7;;;;;;;;;:24;46287:16;;:151;;-1:-1:-1;;;46287:151:0;;:16;;;:67;;46362:6;;46287:151;;:16;;46392:4;;46407;;46422:15;;46287:151;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;46464:27:0;;;18492:25:1;;;-1:-1:-1;;;;;18553:32:1;;18548:2;18533:18;;18526:60;46464:27:0;;-1:-1:-1;18465:18:1;;-1:-1:-1;46464:27:0;;-1:-1:-1;18318:274:1;46464:27:0;;;;;;;;-1:-1:-1;;46502:14:0;:20;;-1:-1:-1;;;;46502:20:0;;;-1:-1:-1;45318:1212:0:o;25316:117::-;25379:7;25406:19;25414:3;22073:18;;21990:109;25777:158;25851:7;25902:22;25906:3;25918:5;25902:3;:22::i;44445:758::-;44580:14;;44542:22;;44598:3;;44568:26;;44580:14;;44568:9;:26;:::i;:::-;44567:34;;;;:::i;:::-;44542:59;-1:-1:-1;44612:14:0;44629:26;44542:59;44629:9;:26;:::i;:::-;44612:43;;44685:14;44667:16;;:32;;;;;;;:::i;:::-;;;;-1:-1:-1;;44723:10:0;;44719:477;;44772:6;44750:18;;:28;;;;;;;:::i;:::-;;;;-1:-1:-1;44793:19:0;;-1:-1:-1;44813:17:0;:15;:17::i;:::-;44793:37;;44924:11;44939:1;44924:16;44920:265;;44981:6;44961:16;;:26;;;;;;;:::i;:::-;;;;-1:-1:-1;44920:265:0;;-1:-1:-1;44920:265:0;;45157:11;45122:31;-1:-1:-1;;;45122:6:0;:31;:::i;:::-;45121:47;;;;:::i;:::-;45102:14;;:67;;;;;;;:::i;:::-;;;;-1:-1:-1;;44920:265:0;44735:461;44498:705;;44445:758;:::o;19546:414::-;19609:4;21872:19;;;:12;;;:19;;;;;;19626:327;;-1:-1:-1;19669:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;19852:18;;19830:19;;;:12;;;:19;;;;;;:40;;;;19885:11;;19626:327;-1:-1:-1;19936:5:0;19929:12;;39328:440;-1:-1:-1;;;;;39447:17:0;;39423:21;39447:17;;;:9;:17;;;;;;39483:23;;;;39475:60;;;;-1:-1:-1;;;39475:60:0;;18799:2:1;39475:60:0;;;18781:21:1;18838:2;18818:18;;;18811:30;-1:-1:-1;;;18857:18:1;;;18850:54;18921:18;;39475:60:0;18597:348:1;39475:60:0;39591:27;39604:6;39611;39591:12;:27::i;:::-;39671:28;39681:9;39692:6;39671:9;:28::i;:::-;39741:9;-1:-1:-1;;;;;39725:33:0;39734:6;-1:-1:-1;;;;;39725:33:0;;39751:6;39725:33;;;;2346:25:1;;2334:2;2319:18;;2200:177;39725:33:0;;;;;;;;39412:356;39328:440;;;:::o;34364:4902::-;-1:-1:-1;;;;;34507:20:0;;;34480:24;34507:20;;;:9;:20;;;;;;;34562:17;;;;;;;;34598:23;;;;34590:60;;;;-1:-1:-1;;;34590:60:0;;18799:2:1;34590:60:0;;;18781:21:1;18838:2;18818:18;;;18811:30;-1:-1:-1;;;18857:18:1;;;18850:54;18921:18;;34590:60:0;18597:348:1;34590:60:0;34663:9;34686:6;34683:3257;;;34712:38;:21;34743:6;34712:30;:38::i;:::-;34708:427;;-1:-1:-1;;;;;34900:17:0;;;;;;:9;:17;;;;;;34919:15;-1:-1:-1;34900:34:0;;:52;;-1:-1:-1;34936:16:0;;;;34900:52;34892:82;;;;-1:-1:-1;;;34892:82:0;;19152:2:1;34892:82:0;;;19134:21:1;19191:2;19171:18;;;19164:30;-1:-1:-1;;;19210:18:1;;;19203:48;19268:18;;34892:82:0;18950:342:1;34892:82:0;35107:12;;35091:28;;:15;:28;:::i;:::-;-1:-1:-1;;;;;35073:17:0;;;;;;:9;:17;;;;;:46;34708:427;35276:9;;35268:6;:17;;35260:44;;;;-1:-1:-1;;;35260:44:0;;19499:2:1;35260:44:0;;;19481:21:1;19538:2;19518:18;;;19511:30;-1:-1:-1;;;19557:18:1;;;19550:45;19612:18;;35260:44:0;19297:339:1;35260:44:0;35327:31;:14;35351:6;35327:23;:31::i;:::-;:40;35319:73;;;;-1:-1:-1;;;35319:73:0;;19843:2:1;35319:73:0;;;19825:21:1;19882:2;19862:18;;;19855:30;-1:-1:-1;;;19901:18:1;;;19894:50;19961:18;;35319:73:0;19641:344:1;35319:73:0;35451:11;;35432:16;;:30;;;;:::i;:::-;35413:15;:49;;:77;;;;;35466:19;;35489:1;35466:24;35413:77;35409:186;;;35511:26;:14;35530:6;35511:18;:26::i;:::-;-1:-1:-1;35561:18:0;;-1:-1:-1;;;;;35561:18:0;;;;;;;;35409:186;-1:-1:-1;35615:8:0;;;;;;;34683:3257;;;35648:5;35645:2295;;;35673:40;:20;35703:9;35673:29;:40::i;:::-;35669:427;;-1:-1:-1;;;;;35862:19:0;;;;;;:8;:19;;;;;;35883:15;-1:-1:-1;35862:36:0;;:53;;-1:-1:-1;35900:15:0;;;;35862:53;35854:81;;;;-1:-1:-1;;;35854:81:0;;20192:2:1;35854:81:0;;;20174:21:1;20231:2;20211:18;;;20204:30;-1:-1:-1;;;20250:18:1;;;20243:46;20306:18;;35854:81:0;19990:340:1;35854:81:0;36069:11;;36053:27;;:15;:27;:::i;:::-;-1:-1:-1;;;;;36033:19:0;;;;;;:8;:19;;;;;:47;35669:427;36234:12;;36209:23;36226:6;36209:16;:23;:::i;:::-;:37;;36201:65;;;;-1:-1:-1;;;36201:65:0;;20537:2:1;36201:65:0;;;20519:21:1;20576:2;20556:18;;;20549:30;-1:-1:-1;;;20595:18:1;;;20588:46;20651:18;;36201:65:0;20335:340:1;36201:65:0;36299:6;;36289;:16;;36281:62;;;;-1:-1:-1;;;36281:62:0;;20882:2:1;36281:62:0;;;20864:21:1;20921:2;20901:18;;;20894:30;20960:34;20940:18;;;20933:62;-1:-1:-1;;;21011:18:1;;;21004:32;21053:19;;36281:62:0;20680:398:1;36281:62:0;36366:34;:14;36390:9;36366:23;:34::i;:::-;:43;36358:76;;;;-1:-1:-1;;;36358:76:0;;19843:2:1;36358:76:0;;;19825:21:1;19882:2;19862:18;;;19855:30;-1:-1:-1;;;19901:18:1;;;19894:50;19961:18;;36358:76:0;19641:344:1;36358:76:0;36493:11;;36474:16;;:30;;;;:::i;:::-;36455:15;:49;;:77;;;;;36508:19;;36531:1;36508:24;36455:77;36451:192;;;36553:29;:14;36572:9;36553:18;:29::i;:::-;-1:-1:-1;36606:21:0;;-1:-1:-1;;;;;36606:21:0;;;;;;;;36451:192;-1:-1:-1;36663:7:0;;;;35645:2295;;;36910:15;28417:1;36910:2;:15;:::i;:::-;36902:6;:23;36899:44;;36927:16;36936:6;36927:8;:16::i;:::-;37082:12;;37057:23;37074:6;37057:16;:23;:::i;:::-;:37;;37049:65;;;;-1:-1:-1;;;37049:65:0;;20537:2:1;37049:65:0;;;20519:21:1;20576:2;20556:18;;;20549:30;-1:-1:-1;;;20595:18:1;;;20588:46;20651:18;;37049:65:0;20335:340:1;37049:65:0;37346:38;:21;37377:6;37346:30;:38::i;:::-;37342:139;;-1:-1:-1;;;;;37411:17:0;;;;;;:9;:17;;;;;;37430:15;-1:-1:-1;37411:34:0;;:52;;-1:-1:-1;37447:16:0;;;;37411:52;37403:78;;;;-1:-1:-1;;;37403:78:0;;21285:2:1;37403:78:0;;;21267:21:1;21324:2;21304:18;;;21297:30;-1:-1:-1;;;21343:18:1;;;21336:44;21397:18;;37403:78:0;21083:338:1;37403:78:0;37518:31;:14;37542:6;37518:23;:31::i;:::-;:40;37510:80;;;;-1:-1:-1;;;37510:80:0;;21628:2:1;37510:80:0;;;21610:21:1;21667:2;21647:18;;;21640:30;21706:29;21686:18;;;21679:57;21753:18;;37510:80:0;21426:351:1;37510:80:0;37613:34;:14;37637:9;37613:23;:34::i;:::-;:43;37605:86;;;;-1:-1:-1;;;37605:86:0;;21984:2:1;37605:86:0;;;21966:21:1;22023:2;22003:18;;;21996:30;22062:32;22042:18;;;22035:60;22112:18;;37605:86:0;21782:354:1;37605:86:0;37750:11;;37731:16;;:30;;;;:::i;:::-;37712:15;:49;;:77;;;;;37765:19;;37788:1;37765:24;37712:77;37708:186;;;37810:26;:14;37829:6;37810:18;:26::i;:::-;-1:-1:-1;37860:18:0;;-1:-1:-1;;;;;37860:18:0;;;;;;;;37708:186;-1:-1:-1;37914:12:0;;;;;;;35645:2295;38277:21;;-1:-1:-1;;;;;38269:29:0;;;-1:-1:-1;;;38277:21:0;;;;38269:29;;;;38268:52;;-1:-1:-1;38303:16:0;;;;38302:17;38268:52;:84;;;;-1:-1:-1;38324:27:0;;;;38323:28;38268:84;:92;;;;;38354:6;38268:92;38265:130;;;38375:20;:18;:20::i;:::-;38464:23;38488:36;38502:6;38510:3;38515:8;;;;;;;;;;;38488:13;:36::i;:::-;38693:13;;38464:60;;-1:-1:-1;38632:21:0;;38654:53;;38668:6;;38676:3;;38681:25;;38693:13;;;;;;;-1:-1:-1;;;38681:11:0;;;:25;:::i;:::-;38654:13;:53::i;:::-;38632:75;-1:-1:-1;38771:19:0;38799:31;38632:75;38799:15;:31;:::i;:::-;38791:40;;:6;:40;:::i;:::-;38771:60;;38889:27;38902:6;38909;38889:12;:27::i;:::-;39011:4;38993:24;;;;:9;:24;;;;;:41;;39021:13;;38993:24;:41;;39021:13;;38993:41;:::i;:::-;;;;;;;;39089:15;39069:18;;:35;;;;;;;:::i;:::-;;;;-1:-1:-1;39159:33:0;;-1:-1:-1;39169:9:0;39180:11;39159:9;:33::i;:::-;39234:9;-1:-1:-1;;;;;39218:38:0;39227:6;-1:-1:-1;;;;;39218:38:0;;39244:11;39218:38;;;;2346:25:1;;2334:2;2319:18;;2200:177;39218:38:0;;;;;;;;34469:4797;;;;;;34364:4902;;;;;:::o;49046:461::-;49139:16;;49107:58;;49124:4;;-1:-1:-1;;;;;49139:16:0;49158:6;49107:8;:58::i;:::-;49200:16;;;49214:1;49200:16;;;;;;;;49176:21;;49200:16;;;;;;;;;;-1:-1:-1;49200:16:0;49176:40;;49245:4;49227;49232:1;49227:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;49227:23:0;;;:7;;;;;;;;;;:23;;;;49271:16;;:23;;;-1:-1:-1;;;49271:23:0;;;;:16;;;;;:21;;:23;;;;;49227:7;;49271:23;;;;;:16;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49261:4;49266:1;49261:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;49261:33:0;;;:7;;;;;;;;;:33;49307:16;;:192;;-1:-1:-1;;;49307:192:0;;:16;;;:67;;:192;;49389:6;;49307:16;;49426:4;;49453;;49473:15;;49307:192;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49096:411;49046:461;:::o;49634:401::-;49728:9;49716:10;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;;49780:16:0;;49748:63;;49765:4;;-1:-1:-1;;;;;49780:16:0;49799:11;49748:8;:63::i;:::-;49822:16;;:205;;-1:-1:-1;;;49822:205:0;;-1:-1:-1;;;;;49822:16:0;;;;:32;;49862:9;;49822:205;;49895:4;;49915:11;;49822:16;;;;49895:4;;50001:15;;49822:205;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;20136:1553::-;20202:4;20341:19;;;:12;;;:19;;;;;;20377:15;;20373:1309;;20739:21;20763:14;20776:1;20763:10;:14;:::i;:::-;20812:18;;20739:38;;-1:-1:-1;20792:17:0;;20812:22;;20833:1;;20812:22;:::i;:::-;20792:42;;21079:17;21099:3;:11;;21111:9;21099:22;;;;;;;;:::i;:::-;;;;;;;;;21079:42;;21245:9;21216:3;:11;;21228:13;21216:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;21322:23;;;:12;;;:23;;;;;;:36;;;21483:17;;21322:3;;21483:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;21578:3;:12;;:19;21591:5;21578:19;;;;;;;;;;;21571:26;;;21621:4;21614:11;;;;;;;;20373:1309;21665:5;21658:12;;;;;22443:204;22538:18;;22510:7;;22538:26;-1:-1:-1;22530:73:0;;;;-1:-1:-1;;;22530:73:0;;23373:2:1;22530:73:0;;;23355:21:1;23412:2;23392:18;;;23385:30;23451:34;23431:18;;;23424:62;-1:-1:-1;;;23502:18:1;;;23495:32;23544:19;;22530:73:0;23171:398:1;22530:73:0;22621:3;:11;;22633:5;22621:18;;;;;;;;:::i;:::-;;;;;;;;;22614:25;;22443:204;;;;:::o;43154:648::-;-1:-1:-1;;;;;43289:15:0;;43271:17;43289:15;;;:9;:15;;;;;;:22;;43305:6;;43289:22;:::i;:::-;43271:40;;43335:27;43357:4;43335:21;:27::i;:::-;43332:102;;;-1:-1:-1;;;;;43377:15:0;;;;;;;:9;:15;;;;;:25;;;;-1:-1:-1;43154:648:0:o;43332:102::-;43499:15;43515:21;43531:4;43515:15;:21::i;:::-;-1:-1:-1;;;;;43574:15:0;;;;;;:9;:15;;;;;:25;;;43683:14;;43499:37;;-1:-1:-1;43683:26:0;;43590:9;;43683:26;:::i;:::-;-1:-1:-1;;;;;43657:23:0;;;;;;:17;:23;;;;;;;;:52;;;;43770:8;:14;;;;;:23;;43786:7;;43657:23;43770;;43786:7;;43770:23;:::i;42417:645::-;-1:-1:-1;;;;;42549:15:0;;42531:17;42549:15;;;:9;:15;;;;;;:22;;42565:6;;42549:22;:::i;:::-;42531:40;;42595:27;42617:4;42595:21;:27::i;:::-;42592:102;;;-1:-1:-1;;;;;42637:15:0;;;;;;;:9;:15;;;;;:25;;;;-1:-1:-1;42417:645:0:o;42592:102::-;42759:15;42775:21;42791:4;42775:15;:21::i;:::-;42759:37;;42897:9;42880:14;;:26;;;;:::i;:::-;-1:-1:-1;;;;;42854:23:0;;;;;;:17;:23;;;;;;;;:52;;;;42967:8;:14;;;;;:23;;42983:7;;42854:23;42967;;42983:7;;42967:23;:::i;:::-;;;;-1:-1:-1;;;;;;;;43029:15:0;;;;;;;:9;:15;;;;;:25;;;;-1:-1:-1;42417:645:0:o;39823:156::-;39913:7;39966:5;39952:10;39941:21;;39948:3;39941:10;;:6;:10;;;;:::i;:::-;:21;;;;:::i;:::-;39940:31;;;;:::i;:::-;39933:38;39823:156;-1:-1:-1;;;;39823:156:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:180:1;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;199:597::-;311:4;340:2;369;358:9;351:21;401:6;395:13;444:6;439:2;428:9;424:18;417:34;469:1;479:140;493:6;490:1;487:13;479:140;;;588:14;;;584:23;;578:30;554:17;;;573:2;550:26;543:66;508:10;;479:140;;;637:6;634:1;631:13;628:91;;;707:1;702:2;693:6;682:9;678:22;674:31;667:42;628:91;-1:-1:-1;780:2:1;759:15;-1:-1:-1;;755:29:1;740:45;;;;787:2;736:54;;199:597;-1:-1:-1;;;199:597:1:o;990:131::-;-1:-1:-1;;;;;1065:31:1;;1055:42;;1045:70;;1111:1;1108;1101:12;1126:315;1194:6;1202;1255:2;1243:9;1234:7;1230:23;1226:32;1223:52;;;1271:1;1268;1261:12;1223:52;1310:9;1297:23;1329:31;1354:5;1329:31;:::i;:::-;1379:5;1431:2;1416:18;;;;1403:32;;-1:-1:-1;;;1126:315:1:o;1831:118::-;1917:5;1910:13;1903:21;1896:5;1893:32;1883:60;;1939:1;1936;1929:12;1954:241;2010:6;2063:2;2051:9;2042:7;2038:23;2034:32;2031:52;;;2079:1;2076;2069:12;2031:52;2118:9;2105:23;2137:28;2159:5;2137:28;:::i;2382:456::-;2459:6;2467;2475;2528:2;2516:9;2507:7;2503:23;2499:32;2496:52;;;2544:1;2541;2534:12;2496:52;2583:9;2570:23;2602:31;2627:5;2602:31;:::i;:::-;2652:5;-1:-1:-1;2709:2:1;2694:18;;2681:32;2722:33;2681:32;2722:33;:::i;:::-;2382:456;;2774:7;;-1:-1:-1;;;2828:2:1;2813:18;;;;2800:32;;2382:456::o;3383:247::-;3442:6;3495:2;3483:9;3474:7;3470:23;3466:32;3463:52;;;3511:1;3508;3501:12;3463:52;3550:9;3537:23;3569:31;3594:5;3569:31;:::i;3635:156::-;3701:20;;3761:4;3750:16;;3740:27;;3730:55;;3781:1;3778;3771:12;3730:55;3635:156;;;:::o;3796:535::-;3888:6;3896;3904;3912;3920;3928;3981:3;3969:9;3960:7;3956:23;3952:33;3949:53;;;3998:1;3995;3988:12;3949:53;4021:27;4038:9;4021:27;:::i;:::-;4011:37;;4067:36;4099:2;4088:9;4084:18;4067:36;:::i;:::-;4057:46;;4122:36;4154:2;4143:9;4139:18;4122:36;:::i;:::-;4112:46;;4177:36;4209:2;4198:9;4194:18;4177:36;:::i;:::-;4167:46;;4232:37;4264:3;4253:9;4249:19;4232:37;:::i;:::-;4222:47;;4288:37;4320:3;4309:9;4305:19;4288:37;:::i;:::-;4278:47;;3796:535;;;;;;;;:::o;4589:182::-;4646:6;4699:2;4687:9;4678:7;4674:23;4670:32;4667:52;;;4715:1;4712;4705:12;4667:52;4738:27;4755:9;4738:27;:::i;4984:248::-;5052:6;5060;5113:2;5101:9;5092:7;5088:23;5084:32;5081:52;;;5129:1;5126;5119:12;5081:52;-1:-1:-1;;5152:23:1;;;5222:2;5207:18;;;5194:32;;-1:-1:-1;4984:248:1:o;5237:127::-;5298:10;5293:3;5289:20;5286:1;5279:31;5329:4;5326:1;5319:15;5353:4;5350:1;5343:15;5369:719;5412:5;5465:3;5458:4;5450:6;5446:17;5442:27;5432:55;;5483:1;5480;5473:12;5432:55;5519:6;5506:20;5545:18;5582:2;5578;5575:10;5572:36;;;5588:18;;:::i;:::-;5663:2;5657:9;5631:2;5717:13;;-1:-1:-1;;5713:22:1;;;5737:2;5709:31;5705:40;5693:53;;;5761:18;;;5781:22;;;5758:46;5755:72;;;5807:18;;:::i;:::-;5847:10;5843:2;5836:22;5882:2;5874:6;5867:18;5928:3;5921:4;5916:2;5908:6;5904:15;5900:26;5897:35;5894:55;;;5945:1;5942;5935:12;5894:55;6009:2;6002:4;5994:6;5990:17;5983:4;5975:6;5971:17;5958:54;6056:1;6049:4;6044:2;6036:6;6032:15;6028:26;6021:37;6076:6;6067:15;;;;;;5369:719;;;;:::o;6093:543::-;6181:6;6189;6242:2;6230:9;6221:7;6217:23;6213:32;6210:52;;;6258:1;6255;6248:12;6210:52;6298:9;6285:23;6327:18;6368:2;6360:6;6357:14;6354:34;;;6384:1;6381;6374:12;6354:34;6407:50;6449:7;6440:6;6429:9;6425:22;6407:50;:::i;:::-;6397:60;;6510:2;6499:9;6495:18;6482:32;6466:48;;6539:2;6529:8;6526:16;6523:36;;;6555:1;6552;6545:12;6523:36;;6578:52;6622:7;6611:8;6600:9;6596:24;6578:52;:::i;:::-;6568:62;;;6093:543;;;;;:::o;6641:388::-;6709:6;6717;6770:2;6758:9;6749:7;6745:23;6741:32;6738:52;;;6786:1;6783;6776:12;6738:52;6825:9;6812:23;6844:31;6869:5;6844:31;:::i;:::-;6894:5;-1:-1:-1;6951:2:1;6936:18;;6923:32;6964:33;6923:32;6964:33;:::i;:::-;7016:7;7006:17;;;6641:388;;;;;:::o;7034:356::-;7236:2;7218:21;;;7255:18;;;7248:30;7314:34;7309:2;7294:18;;7287:62;7381:2;7366:18;;7034:356::o;7395:127::-;7456:10;7451:3;7447:20;7444:1;7437:31;7487:4;7484:1;7477:15;7511:4;7508:1;7501:15;7527:125;7567:4;7595:1;7592;7589:8;7586:34;;;7600:18;;:::i;:::-;-1:-1:-1;7637:9:1;;7527:125::o;7657:168::-;7697:7;7763:1;7759;7755:6;7751:14;7748:1;7745:21;7740:1;7733:9;7726:17;7722:45;7719:71;;;7770:18;;:::i;:::-;-1:-1:-1;7810:9:1;;7657:168::o;7830:217::-;7870:1;7896;7886:132;;7940:10;7935:3;7931:20;7928:1;7921:31;7975:4;7972:1;7965:15;8003:4;8000:1;7993:15;7886:132;-1:-1:-1;8032:9:1;;7830:217::o;8052:380::-;8131:1;8127:12;;;;8174;;;8195:61;;8249:4;8241:6;8237:17;8227:27;;8195:61;8302:2;8294:6;8291:14;8271:18;8268:38;8265:161;;8348:10;8343:3;8339:20;8336:1;8329:31;8383:4;8380:1;8373:15;8411:4;8408:1;8401:15;8437:422;8526:1;8569:5;8526:1;8583:270;8604:7;8594:8;8591:21;8583:270;;;8663:4;8659:1;8655:6;8651:17;8645:4;8642:27;8639:53;;;8672:18;;:::i;:::-;8722:7;8712:8;8708:22;8705:55;;;8742:16;;;;8705:55;8821:22;;;;8781:15;;;;8583:270;;;8587:3;8437:422;;;;;:::o;8864:806::-;8913:5;8943:8;8933:80;;-1:-1:-1;8984:1:1;8998:5;;8933:80;9032:4;9022:76;;-1:-1:-1;9069:1:1;9083:5;;9022:76;9114:4;9132:1;9127:59;;;;9200:1;9195:130;;;;9107:218;;9127:59;9157:1;9148:10;;9171:5;;;9195:130;9232:3;9222:8;9219:17;9216:43;;;9239:18;;:::i;:::-;-1:-1:-1;;9295:1:1;9281:16;;9310:5;;9107:218;;9409:2;9399:8;9396:16;9390:3;9384:4;9381:13;9377:36;9371:2;9361:8;9358:16;9353:2;9347:4;9344:12;9340:35;9337:77;9334:159;;;-1:-1:-1;9446:19:1;;;9478:5;;9334:159;9525:34;9550:8;9544:4;9525:34;:::i;:::-;9595:6;9591:1;9587:6;9583:19;9574:7;9571:32;9568:58;;;9606:18;;:::i;:::-;9644:20;;8864:806;-1:-1:-1;;;8864:806:1:o;9675:140::-;9733:5;9762:47;9803:4;9793:8;9789:19;9783:4;9762:47;:::i;10169:128::-;10209:3;10240:1;10236:6;10233:1;10230:13;10227:39;;;10246:18;;:::i;:::-;-1:-1:-1;10282:9:1;;10169:128::o;10302:204::-;10340:3;10376:4;10373:1;10369:12;10408:4;10405:1;10401:12;10443:3;10437:4;10433:14;10428:3;10425:23;10422:49;;;10451:18;;:::i;:::-;10487:13;;10302:204;-1:-1:-1;;;10302:204:1:o;10918:340::-;11120:2;11102:21;;;11159:2;11139:18;;;11132:30;-1:-1:-1;;;11193:2:1;11178:18;;11171:46;11249:2;11234:18;;10918:340::o;11473:184::-;11543:6;11596:2;11584:9;11575:7;11571:23;11567:32;11564:52;;;11612:1;11609;11602:12;11564:52;-1:-1:-1;11635:16:1;;11473:184;-1:-1:-1;11473:184:1:o;11941:245::-;12008:6;12061:2;12049:9;12040:7;12036:23;12032:32;12029:52;;;12077:1;12074;12067:12;12029:52;12109:9;12103:16;12128:28;12150:5;12128:28;:::i;14056:135::-;14095:3;14116:17;;;14113:43;;14136:18;;:::i;:::-;-1:-1:-1;14183:1:1;14172:13;;14056:135::o;14196:607::-;-1:-1:-1;;;;;14555:15:1;;;14537:34;;14602:2;14587:18;;14580:34;;;;14645:2;14630:18;;14623:34;;;;14688:2;14673:18;;14666:34;;;;14737:15;;;14731:3;14716:19;;14709:44;14517:3;14769:19;;14762:35;;;;14486:3;14471:19;;14196:607::o;16949:251::-;17019:6;17072:2;17060:9;17051:7;17047:23;17043:32;17040:52;;;17088:1;17085;17078:12;17040:52;17120:9;17114:16;17139:31;17164:5;17139:31;:::i;17205:127::-;17266:10;17261:3;17257:20;17254:1;17247:31;17297:4;17294:1;17287:15;17321:4;17318:1;17311:15;17337:461;17390:3;17428:5;17422:12;17455:6;17450:3;17443:19;17481:4;17510:2;17505:3;17501:12;17494:19;;17547:2;17540:5;17536:14;17568:1;17578:195;17592:6;17589:1;17586:13;17578:195;;;17657:13;;-1:-1:-1;;;;;17653:39:1;17641:52;;17713:12;;;;17748:15;;;;17689:1;17607:9;17578:195;;;-1:-1:-1;17789:3:1;;17337:461;-1:-1:-1;;;;;17337:461:1:o;17803:510::-;18074:6;18063:9;18056:25;18117:3;18112:2;18101:9;18097:18;18090:31;18037:4;18138:57;18190:3;18179:9;18175:19;18167:6;18138:57;:::i;:::-;-1:-1:-1;;;;;18231:32:1;;;;18226:2;18211:18;;18204:60;-1:-1:-1;18295:2:1;18280:18;18273:34;18130:65;17803:510;-1:-1:-1;;17803:510:1:o;22141:582::-;22440:6;22429:9;22422:25;22483:6;22478:2;22467:9;22463:18;22456:34;22526:3;22521:2;22510:9;22506:18;22499:31;22403:4;22547:57;22599:3;22588:9;22584:19;22576:6;22547:57;:::i;:::-;-1:-1:-1;;;;;22640:32:1;;;;22635:2;22620:18;;22613:60;-1:-1:-1;22704:3:1;22689:19;22682:35;22539:65;22141:582;-1:-1:-1;;;22141:582:1:o;22728:306::-;22816:6;22824;22832;22885:2;22873:9;22864:7;22860:23;22856:32;22853:52;;;22901:1;22898;22891:12;22853:52;22930:9;22924:16;22914:26;;22980:2;22969:9;22965:18;22959:25;22949:35;;23024:2;23013:9;23009:18;23003:25;22993:35;;22728:306;;;;;:::o;23039:127::-;23100:10;23095:3;23091:20;23088:1;23081:31;23131:4;23128:1;23121:15;23155:4;23152:1;23145:15
Swarm Source
ipfs://57c3ac3e7f542ed05cec8f21a06a3d4c71a0605aa325bbc879b15b8cb076d90d
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.